diff -Nru libreoffice-7.5.1~rc2/avmedia/source/gstreamer/gstplayer.cxx libreoffice-7.5.2~rc2/avmedia/source/gstreamer/gstplayer.cxx --- libreoffice-7.5.1~rc2/avmedia/source/gstreamer/gstplayer.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/avmedia/source/gstreamer/gstplayer.cxx 2023-03-24 16:53:38.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.5.1~rc2/basctl/source/basicide/baside2b.cxx libreoffice-7.5.2~rc2/basctl/source/basicide/baside2b.cxx --- libreoffice-7.5.1~rc2/basctl/source/basicide/baside2b.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/basctl/source/basicide/baside2b.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -252,7 +252,9 @@ pCodeCompleteWnd(VclPtr::Create(this)) { set_id("EditorWindow"); - SetBackground(Wallpaper(rModulWindow.GetLayout().GetSyntaxBackgroundColor())); + const Wallpaper aBackground(rModulWindow.GetLayout().GetSyntaxBackgroundColor()); + SetBackground(aBackground); + GetWindow(GetWindowType::Border)->SetBackground(aBackground); SetPointer( PointerStyle::Text ); SetHelpId( HID_BASICIDE_EDITORWINDOW ); diff -Nru libreoffice-7.5.1~rc2/basctl/source/basicide/linenumberwindow.cxx libreoffice-7.5.2~rc2/basctl/source/basicide/linenumberwindow.cxx --- libreoffice-7.5.1~rc2/basctl/source/basicide/linenumberwindow.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/basctl/source/basicide/linenumberwindow.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -21,7 +21,9 @@ , m_pModulWindow(pModulWindow) , m_nCurYOffset(0) { - SetBackground(Wallpaper(GetSettings().GetStyleSettings().GetWindowColor())); + const Wallpaper aBackground(GetSettings().GetStyleSettings().GetWindowColor()); + SetBackground(aBackground); + GetWindow(GetWindowType::Border)->SetBackground(aBackground); m_FontColor = GetSettings().GetStyleSettings().GetWindowTextColor(); m_nBaseWidth = GetTextWidth("8"); m_nWidth = m_nBaseWidth * 3 + m_nBaseWidth / 2; diff -Nru libreoffice-7.5.1~rc2/basctl/uiconfig/basicide/ui/managelanguages.ui libreoffice-7.5.2~rc2/basctl/uiconfig/basicide/ui/managelanguages.ui --- libreoffice-7.5.1~rc2/basctl/uiconfig/basicide/ui/managelanguages.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/basctl/uiconfig/basicide/ui/managelanguages.ui 2023-03-24 16:53:38.000000000 +0000 @@ -96,6 +96,9 @@ True 68 0 + + + 0 diff -Nru libreoffice-7.5.1~rc2/basic/source/classes/sb.cxx libreoffice-7.5.2~rc2/basic/source/classes/sb.cxx --- libreoffice-7.5.1~rc2/basic/source/classes/sb.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/basic/source/classes/sb.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -744,7 +744,7 @@ } } SetModuleType( ModuleType::CLASS ); - mbVBACompat = pClassModule->mbVBACompat; + mbVBASupport = pClassModule->mbVBASupport; } SbClassModuleObject::~SbClassModuleObject() diff -Nru libreoffice-7.5.1~rc2/basic/source/classes/sbxmod.cxx libreoffice-7.5.2~rc2/basic/source/classes/sbxmod.cxx --- libreoffice-7.5.1~rc2/basic/source/classes/sbxmod.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/basic/source/classes/sbxmod.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -416,9 +416,9 @@ // A Basic module has set EXTSEARCH, so that the elements, that the module contains, // could be found from other module. -SbModule::SbModule( const OUString& rName, bool bVBACompat ) +SbModule::SbModule( const OUString& rName, bool bVBASupport ) : SbxObject( "StarBASICModule" ), - pBreaks(nullptr), mbVBACompat( bVBACompat ), bIsProxyModule( false ) + pBreaks(nullptr), mbVBASupport(bVBASupport), mbCompat(bVBASupport), bIsProxyModule(false) { SetName( rName ); SetFlag( SbxFlagBits::ExtSearch | SbxFlagBits::GlobalSearch ); @@ -802,11 +802,11 @@ void SbModule::SetSource32( const OUString& r ) { // Default basic mode to library container mode, but... allow Option VBASupport 0/1 override - SetVBACompat( getDefaultVBAMode( static_cast< StarBASIC*>( GetParent() ) ) ); + SetVBASupport( getDefaultVBAMode( static_cast< StarBASIC*>( GetParent() ) ) ); aOUSource = r; StartDefinitions(); SbiTokenizer aTok( r ); - aTok.SetCompatible( IsVBACompat() ); + aTok.SetCompatible( IsVBASupport() ); while( !aTok.IsEof() ) { @@ -837,12 +837,13 @@ eCurTok = aTok.Next(); if( eCurTok == COMPATIBLE ) { + mbCompat = true; aTok.SetCompatible( true ); } else if ( ( eCurTok == VBASUPPORT ) && ( aTok.Next() == NUMBER ) ) { bool bIsVBA = ( aTok.GetDbl()== 1 ); - SetVBACompat( bIsVBA ); + SetVBASupport( bIsVBA ); aTok.SetCompatible( bIsVBA ); } } @@ -974,15 +975,16 @@ } -void SbModule::SetVBACompat( bool bCompat ) +void SbModule::SetVBASupport( bool bSupport ) { - if( mbVBACompat == bCompat ) + if( mbVBASupport == bSupport ) return; - mbVBACompat = bCompat; + mbVBASupport = bSupport; // initialize VBA document API - if( mbVBACompat ) try + if( mbVBASupport ) try { + mbCompat = true; StarBASIC* pBasic = static_cast< StarBASIC* >( GetParent() ); uno::Reference< lang::XMultiServiceFactory > xFactory( getDocumentModel( pBasic ), uno::UNO_QUERY_THROW ); xFactory->createInstance( "ooo.vba.VBAGlobals" ); @@ -1067,7 +1069,7 @@ // Run a Basic-subprogram void SbModule::Run( SbMethod* pMeth ) { - SAL_INFO("basic","About to run " << pMeth->GetName() << ", vba compatmode is " << mbVBACompat ); + SAL_INFO("basic","About to run " << pMeth->GetName() << ", vba compatmode is " << mbVBASupport ); static sal_uInt16 nMaxCallLevel = 0; @@ -1088,7 +1090,7 @@ /* If a VBA script in a document is started, get the VBA compatibility interface from the document Basic library container, and notify all VBA script listeners about the started script. */ - if( mbVBACompat ) + if( mbVBASupport ) { StarBASIC* pBasic = static_cast< StarBASIC* >( GetParent() ); if( pBasic && pBasic->IsDocBasic() ) try @@ -1166,16 +1168,14 @@ pSbData->pInst->CalcBreakCallLevel( pMeth->GetDebugFlags() ); } - auto xRuntimeGuard(std::make_unique(this, pMeth, pMeth->nStart, pSbData, bDelInst)); - - if ( mbVBACompat ) { - pSbData->pInst->EnableCompatibility( true ); - } + RunGuard xRuntimeGuard(this, pMeth, pMeth->nStart, pSbData, bDelInst); - xRuntimeGuard->run(); + if (mbVBASupport) + pSbData->pInst->EnableCompatibility(true); - xRuntimeGuard.reset(); + xRuntimeGuard.run(); + } if( bDelInst ) { @@ -1254,9 +1254,7 @@ pSbData->bRunInit = true; // The init code starts always here - auto xRuntimeGuard(std::make_unique(this, nullptr, 0, pSbData)); - xRuntimeGuard->run(); - xRuntimeGuard.reset(); + RunInitGuard(this, nullptr, 0, pSbData).run(); pImage->bInit = true; pImage->bFirstInit = false; @@ -2504,7 +2502,7 @@ SbUserFormModuleInstance* SbUserFormModule::CreateInstance() { - SbUserFormModuleInstance* pInstance = new SbUserFormModuleInstance( this, GetName(), m_mInfo, IsVBACompat() ); + SbUserFormModuleInstance* pInstance = new SbUserFormModuleInstance( this, GetName(), m_mInfo, IsVBASupport() ); return pInstance; } diff -Nru libreoffice-7.5.1~rc2/basic/source/comp/parser.cxx libreoffice-7.5.2~rc2/basic/source/comp/parser.cxx --- libreoffice-7.5.1~rc2/basic/source/comp/parser.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/basic/source/comp/parser.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -145,7 +145,7 @@ rTypeArray = new SbxArray; // array for user defined types rEnumArray = new SbxArray; // array for Enum types - bVBASupportOn = pm->IsVBACompat(); + bVBASupportOn = pm->IsVBASupport(); if ( bVBASupportOn ) EnableCompatibility(); @@ -818,9 +818,9 @@ } // if the module setting is different // reset it to what the Option tells us - if ( bVBASupportOn != aGen.GetModule().IsVBACompat() ) + if ( bVBASupportOn != aGen.GetModule().IsVBASupport() ) { - aGen.GetModule().SetVBACompat( bVBASupportOn ); + aGen.GetModule().SetVBASupport( bVBASupportOn ); } break; } diff -Nru libreoffice-7.5.1~rc2/basic/source/runtime/runtime.cxx libreoffice-7.5.2~rc2/basic/source/runtime/runtime.cxx --- libreoffice-7.5.1~rc2/basic/source/runtime/runtime.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/basic/source/runtime/runtime.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -624,7 +624,7 @@ nForLvl = 0; nOps = 0; refExprStk = new SbxArray; - SetVBAEnabled( pMod->IsVBACompat() ); + SetVBAEnabled( pMod->IsVBASupport() ); SetParameters( pe ? pe->GetParameters() : nullptr ); } diff -Nru libreoffice-7.5.1~rc2/basic/source/runtime/stdobj.cxx libreoffice-7.5.2~rc2/basic/source/runtime/stdobj.cxx --- libreoffice-7.5.1~rc2/basic/source/runtime/stdobj.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/basic/source/runtime/stdobj.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -993,7 +993,7 @@ // No instance running => compiling a source on module level. const SbModule* pModule = GetSbData()->pCompMod; if (pModule) - bCompatibility = pModule->IsVBACompat(); + bCompatibility = pModule->IsVBASupport(); } if ((bCompatibility && (NORMONLY_ & p->nArgs)) || (!bCompatibility && (COMPATONLY_ & p->nArgs))) bFound = false; diff -Nru libreoffice-7.5.1~rc2/basic/source/sbx/sbxexec.cxx libreoffice-7.5.2~rc2/basic/source/sbx/sbxexec.cxx --- libreoffice-7.5.1~rc2/basic/source/sbx/sbxexec.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/basic/source/sbx/sbxexec.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -17,19 +17,23 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include + +#include #include #include #include #include +#include static SbxVariableRef Element ( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf, - SbxClassType ); + SbxClassType, bool bCompatible ); static const sal_Unicode* SkipWhitespace( const sal_Unicode* p ) { - while( *p && ( *p == ' ' || *p == '\t' ) ) + while( BasicCharClass::isWhitespace(*p) ) p++; return p; } @@ -37,7 +41,7 @@ // Scanning of a symbol. The symbol were inserted in rSym, the return value // is the new scan position. The symbol is at errors empty. -static const sal_Unicode* Symbol( const sal_Unicode* p, OUString& rSym ) +static const sal_Unicode* Symbol( const sal_Unicode* p, OUString& rSym, bool bCompatible ) { sal_uInt16 nLen = 0; // Did we have a nonstandard symbol? @@ -54,7 +58,7 @@ else { // A symbol had to begin with an alphabetic character or an underline - if( !rtl::isAsciiAlpha( *p ) && *p != '_' ) + if( !BasicCharClass::isAlpha( *p, bCompatible ) && *p != '_' ) { SbxBase::SetError( ERRCODE_BASIC_SYNTAX ); } @@ -62,7 +66,7 @@ { rSym = p; // The it can contain alphabetic characters, numbers or underlines - while( *p && (rtl::isAsciiAlphanumeric( *p ) || *p == '_') ) + while( *p && (BasicCharClass::isAlphaNumeric( *p, bCompatible ) || *p == '_') ) { p++; nLen++; @@ -81,15 +85,15 @@ // Qualified name. Element.Element... static SbxVariableRef QualifiedName - ( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf, SbxClassType t ) + ( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf, SbxClassType t, bool bCompatible ) { SbxVariableRef refVar; const sal_Unicode* p = SkipWhitespace( *ppBuf ); - if( rtl::isAsciiAlpha( *p ) || *p == '_' || *p == '[' ) + if( BasicCharClass::isAlpha( *p, bCompatible ) || *p == '_' || *p == '[' ) { // Read in the element - refVar = Element( pObj, pGbl, &p, t ); + refVar = Element( pObj, pGbl, &p, t, bCompatible ); while( refVar.is() && (*p == '.' || *p == '!') ) { // It follows still an objectelement. The current element @@ -103,7 +107,7 @@ break; p++; // And the next element please - refVar = Element( pObj, pGbl, &p, t ); + refVar = Element( pObj, pGbl, &p, t, bCompatible ); } } else @@ -116,7 +120,7 @@ // a function (with optional parameters). static SbxVariableRef Operand - ( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf, bool bVar ) + ( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf, bool bVar, bool bCompatible ) { SbxVariableRef refVar( new SbxVariable ); const sal_Unicode* p = SkipWhitespace( *ppBuf ); @@ -159,7 +163,7 @@ } else { - refVar = QualifiedName( pObj, pGbl, &p, SbxClassType::DontCare ); + refVar = QualifiedName( pObj, pGbl, &p, SbxClassType::DontCare, bCompatible ); } *ppBuf = p; return refVar; @@ -168,15 +172,15 @@ // Read in of a simple term. The operands +, -, * and / // are supported. -static SbxVariableRef MulDiv( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf ) +static SbxVariableRef MulDiv( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf, bool bCompatible ) { const sal_Unicode* p = *ppBuf; - SbxVariableRef refVar( Operand( pObj, pGbl, &p, false ) ); + SbxVariableRef refVar( Operand( pObj, pGbl, &p, false, bCompatible ) ); p = SkipWhitespace( p ); while( refVar.is() && ( *p == '*' || *p == '/' ) ) { sal_Unicode cOp = *p++; - SbxVariableRef refVar2( Operand( pObj, pGbl, &p, false ) ); + SbxVariableRef refVar2( Operand( pObj, pGbl, &p, false, bCompatible ) ); if( refVar2.is() ) { // temporary variable! @@ -198,15 +202,15 @@ return refVar; } -static SbxVariableRef PlusMinus( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf ) +static SbxVariableRef PlusMinus( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf, bool bCompatible ) { const sal_Unicode* p = *ppBuf; - SbxVariableRef refVar( MulDiv( pObj, pGbl, &p ) ); + SbxVariableRef refVar( MulDiv( pObj, pGbl, &p, bCompatible ) ); p = SkipWhitespace( p ); while( refVar.is() && ( *p == '+' || *p == '-' ) ) { sal_Unicode cOp = *p++; - SbxVariableRef refVar2( MulDiv( pObj, pGbl, &p ) ); + SbxVariableRef refVar2( MulDiv( pObj, pGbl, &p, bCompatible ) ); if( refVar2.is() ) { // temporary Variable! @@ -228,10 +232,10 @@ return refVar; } -static SbxVariableRef Assign( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf ) +static SbxVariableRef Assign( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf, bool bCompatible ) { const sal_Unicode* p = *ppBuf; - SbxVariableRef refVar( Operand( pObj, pGbl, &p, true ) ); + SbxVariableRef refVar( Operand( pObj, pGbl, &p, true, bCompatible ) ); p = SkipWhitespace( p ); if( refVar.is() ) { @@ -246,7 +250,7 @@ else { p++; - SbxVariableRef refVar2( PlusMinus( pObj, pGbl, &p ) ); + SbxVariableRef refVar2( PlusMinus( pObj, pGbl, &p, bCompatible ) ); if( refVar2.is() ) { SbxVariable* pVar = refVar.get(); @@ -270,10 +274,10 @@ static SbxVariableRef Element ( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode** ppBuf, - SbxClassType t ) + SbxClassType t, bool bCompatible ) { OUString aSym; - const sal_Unicode* p = Symbol( *ppBuf, aSym ); + const sal_Unicode* p = Symbol( *ppBuf, aSym, bCompatible ); SbxVariableRef refVar; if( !aSym.isEmpty() ) { @@ -299,7 +303,7 @@ // Search parameter always global! while( *p && *p != ')' && *p != ']' ) { - SbxVariableRef refArg = PlusMinus( pGbl, pGbl, &p ); + SbxVariableRef refArg = PlusMinus( pGbl, pGbl, &p, bCompatible ); if( !refArg.is() ) { // Error during the parsing @@ -346,7 +350,7 @@ { SetError( ERRCODE_BASIC_SYNTAX ); break; } - pVar = Assign( this, this, &p ); + pVar = Assign( this, this, &p, IsModuleCompatible() ); if( !pVar.is() ) { break; @@ -369,7 +373,7 @@ { return nullptr; } - pVar = QualifiedName( this, this, &p, t ); + pVar = QualifiedName( this, this, &p, t, IsModuleCompatible() ); p = SkipWhitespace( p ); if( *p ) { @@ -378,4 +382,16 @@ return pVar.get(); } +bool SbxObject::IsModuleCompatible() const +{ + const SbxObject* pObj = this; + while (pObj) + { + if (auto pMod = dynamic_cast(pObj)) + return pMod->IsCompatible(); + pObj = pObj->GetParent(); + } + return false; +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.5.1~rc2/bin/create-dmg-from-merged-app-bundle libreoffice-7.5.2~rc2/bin/create-dmg-from-merged-app-bundle --- libreoffice-7.5.1~rc2/bin/create-dmg-from-merged-app-bundle 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/bin/create-dmg-from-merged-app-bundle 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,81 @@ +#!/usr/bin/env bash + +# 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/. + +# Exit on errors +set -e + +# Use of unset variable is an error +set -u + +# If any part of a pipeline of commands fails, the whole pipeline fails +set -o pipefail + +if [ `uname` != Darwin ]; then + echo This is for macOS only >&2 + exit 1 +fi + +if [ $# != 1 ]; then + echo Usage: $0 signed-app-bundle + exit 1 +fi + +if [ ! -d "$1" ]; then + echo No such directory: $1 >&2 + exit 1 +fi + +if [[ "$1" != *.app ]]; then + echo "signed-app-bundle argument $1 does not end with .app" >&2 + exit 1 +fi + +IN=$(cd "$1" && /bin/pwd) +INAPP=$(basename "$IN") +INDIR=$(dirname "$IN") +OUTVOLUME=$(basename "$IN" .app) +OUTTMPDIR=$(dirname "$IN")/"$OUTVOLUME" +OUTFILE="$OUTTMPDIR".dmg +SRCDIR=$(cd `dirname "$0"`/.. && /bin/pwd) + +# Create $OUTTMPDIR directory in the same directory as the output .dmg and +# assemble assets + +if [ -f "$OUTFILE" ]; then + echo The file $OUTFILE exists already >&2 + exit 1 +fi + +if [ -d "$OUTFILE" ]; then + echo $OUTFILE exists and is a directory >&2 + exit 1 +fi + +if [ -d "$OUTTMPDIR" ]; then + echo The directory $OUTTMPDIR exists already >&2 + exit 1 +fi + +if [ -f "$OUTTMPDIR" ]; then + echo $OUTTMPDIR exists and is a file >&2 + exit 1 +fi + +mkdir "$OUTTMPDIR" +mkdir "$OUTTMPDIR"/.background +tar cf - "$INAPP" -C "$INDIR" | tar xvpf - -C "$OUTTMPDIR" +ln -s /Applications "$OUTTMPDIR"/Applications +cp "$SRCDIR"/setup_native/source/packinfo/DS_Store "$OUTTMPDIR"/.DS_Store +cp "$SRCDIR"/setup_native/source/packinfo/VolumeIcon.icns "$OUTTMPDIR"/.VolumeIcon.icns +cp "$SRCDIR"/setup_native/source/packinfo/osxdndinstall.png "$OUTTMPDIR"/.background/background.png + +# Create and mount empty .dmg + +# Copied and adapted to bash from solenv/bin/modules/installer/simplepackage.pm +# tdf#151341 Use lzfse compression instead of bzip2 +hdiutil create -srcfolder "$OUTTMPDIR" "$OUTFILE" -ov -fs HFS+ -volname "$OUTVOLUME" -format ULFO diff -Nru libreoffice-7.5.1~rc2/bin/merge-app-bundles libreoffice-7.5.2~rc2/bin/merge-app-bundles --- libreoffice-7.5.1~rc2/bin/merge-app-bundles 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/bin/merge-app-bundles 2023-03-24 16:53:38.000000000 +0000 @@ -76,6 +76,8 @@ elif test -f "$fname"; then case "$fname" in *.so | \ + *.jnilib | \ + *.jnilib.* | \ *.dylib | \ *.dylib.* | \ */Frameworks/LibreOfficePython.framework/Versions/*/LibreOfficePython | \ diff -Nru libreoffice-7.5.1~rc2/ChangeLog libreoffice-7.5.2~rc2/ChangeLog --- libreoffice-7.5.1~rc2/ChangeLog 2023-02-22 19:55:31.000000000 +0000 +++ libreoffice-7.5.2~rc2/ChangeLog 2023-03-24 16:55:51.000000000 +0000 @@ -1,603 +1,3085 @@ -2023-02-22 Christian Lohmaier [fcbaee479e84c6cd81291587d2ee68cba099e129] +2023-03-24 Christian Lohmaier [53bb9681a964705cf672590721dbc85eb4d0c3a2] - Version 7.5.1.2, tag libreoffice-7.5.1.2 + Version 7.5.2.2, tag libreoffice-7.5.2.2 -2023-02-22 Christian Lohmaier [6e4f57ed953860343f26142f6f8667f38be6daf4] +2023-03-24 Christian Lohmaier [69c812df6ca1156f0b7b7b893560f46285e707f4] - bump product version to 7.5.1.2 + bump product version to 7.5.2.2 - Change-Id: I0e9762fe2ffc9221354aca081f5a466f5411cc41 + Change-Id: I6c737556733b6a51407a805127e549f5bd6f0047 -2023-02-22 Christian Lohmaier [3ca7ee3db95d6913bb624dca6cd5261a93417fe4] +2023-03-24 Caolán McNamara [6ea328bc2d3700059d77b110c7825f995ef6c5b3] + + 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 252b27e3ce340526c6e5dc2e9bd38f1398e6f2f8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149514 + Reviewed-by: Miklos Vajna + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2023-03-24 Paris Oplopoios [41ffe9b42bad5085072c94c18fc9b6d17528a7ef] + + tdf#154061 Make sure table column attributes size is correct + + Resize maTableColumnAttributes to match the amount of columns, fixes + crash upon undoing a column insertion on a table + + Change-Id: Iad4b8ac5c38d5d1065d6ef1267ce3f5d3b28afa8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148492 + Tested-by: Jenkins + Reviewed-by: Tomaž Vajngerl + (cherry picked from commit 2135706397d36aa7ea24650b65859be0b6860a65) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148972 + Reviewed-by: Xisco Fauli + (cherry picked from commit 3abe8c150d72eaef8dd2998ee13cdd2226ac2360) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149020 + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2023-03-24 Xisco Fauli [ace3079172ed55d7408193a2f37bc9b16d1b3c39] + + 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/+/149018 + Reviewed-by: Michael Stahl + (cherry picked from commit b524e2fcb52a28bd24854c23a8f5eedf10d9552e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149099 + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2023-03-24 Christian Lohmaier [07c77bc32e1e34f882ced16ba6bfac83def8689a] update credits - Change-Id: Ic974dbd48cb9b1b2e417430325e4611a66d1aa7c - (cherry picked from commit 1e12a4cc980ebabadde592d3159b93cc12e733a7) - (cherry picked from commit c6db0c2bc445a32097cdf48c6e391e1d0d43c917) + Change-Id: Iea1190aa7e0b9d81a8cf73ebbafd318e73fca757 + (cherry picked from commit 9469044db420f280bf60765e0d94bc7d94e6641e) + (cherry picked from commit 952608294edfad6f91d93a976c1b004acf94ad33) -2023-02-22 Christian Lohmaier [b508440597f5af3597f504b5e7ec71792993d781] +2023-03-24 Christian Lohmaier [6cee2ac1946ddbf7dc6a6be863260bde0fa559d4] Update git submodules - * Update translations from branch 'libreoffice-7-5-1' - to 84ec4f715b82f3e83aa66ed7ee1c977ebcbf6f13 - - update translations for 7.5.1 rc2 + * Update translations from branch 'libreoffice-7-5-2' + to 7943dccb54146ab9a78d86fc590163eeee3c7c13 + - update translations for 7.5.2 rc2 and force-fix errors using pocheck - Change-Id: I275b498852041a5f928c0df95c2ad50fc2256013 - (cherry picked from commit 70a23c0afa2982325334d4c9975a501e4b9a13ce) - (cherry picked from commit a7ff4b698706b05ec9b1caef9afc99ad5777eed3) + Change-Id: Idde67f8e180cbca1aa4521f70add10b46834c7a7 + (cherry picked from commit 2d7b06eb9700bd2f6c0b2aa7be432d4d83a3d922) -2023-02-22 Eike Rathke [58c84f408c4a2d5f1067b4ca5e7c204d6a9c9372] +2023-03-24 László Németh [0a74936870937b64ef841d5ae78ac3bea876f16d] - Resolves: tdf#139934 always apply cellXfs xf explicits (tdf#123139 related) + tdf#153255 DOCX import: fix footnote order - Change-Id: Id1e12ee8677a25a645bfd53b4968a17c9a1eabe5 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146599 - Reviewed-by: Eike Rathke + 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 - (cherry picked from commit 909a25d30b09ebd3a023105a9c3cc4d20add094a) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146533 + Reviewed-by: László Németh + (cherry picked from commit 93a20c1d9c2f379906970bbe8a15905fc1a328bc) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149299 Reviewed-by: Xisco Fauli - (cherry picked from commit 321c1a6db442a6d2afee25d1d1256ff36bdb004e) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146918 Reviewed-by: Michael Stahl - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier + Reviewed-by: Caolán McNamara + Tested-by: Caolán McNamara -2023-02-22 Caolán McNamara [f6720de7b5793a6adc93dedd94aae67d233ef3b0] +2023-03-24 Caolán McNamara [69ca62c2fa66263f0239709446ea0b43fd9daa3d] - crashtesting: threaded import crash seen in forum-mso-en4-802501.xlsx + crashreporting: BitmapEx::operator=(BitmapEx const &) crashes - sporadically reproducible with tsan and - ./instdir/program/soffice.bin --headless --convert-to pdf ~/forum-mso-en4-802501.xlsx + e.g. + https://crashreport.libreoffice.org/stats/crash_details/b68d5267-16b1-4ee9-bd42-bdcecdb7043c - move getTables().applyAutoFilters(), which wants to query tab 1 while - tab 1 is still getting imported, until after the threaded import has - completed. + this went wrong with: - This call was moved before in: + commit 91bc1e6a8c92a7c895f0ba9dcad9ac4d35f3f791 + Date: Sat Jun 25 10:21:17 2022 +1000 - commit edd51b813005c2159426d8f2917eede5b14a4577 - Date: Thu Aug 15 16:23:46 2013 +0100 + vcl: extract function Animation::RenderNextFrameInAllRenderers() - fix for bnc#834705 missing drop downs for autofilter + Change-Id: Iaccf12b251ffe06e24813c48ba3a169d0eaaa61c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/76416 - ================== - WARNING: ThreadSanitizer: data race (pid=3791886) - Read of size 8 at 0x7b5000040f20 by thread T7 (mutexes: write M0, write M1): - #0 __gnu_cxx::__normal_iterator>>::__normal_iterator(unsigned long const* const&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/stl_iterator.h:1073:20 (libsclo.so+0x3d31c4) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #1 std::vector>::cend() const /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/stl_vector.h:960:16 (libsclo.so+0x3d31c4) - #2 mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::cbegin() const core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:3771:34 (libsclo.so+0x3d31c4) - #3 mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::begin() const core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:3753:12 (libsclo.so+0x3d31c4) - #4 ScColumn::InitBlockPosition(sc::ColumnBlockConstPosition&) const core/sc/source/core/data/column3.cxx:1135:35 (libsclo.so+0x3d31c4) - #5 ScTable::GetDataArea(short&, int&, short&, int&, bool, bool) const core/sc/source/core/data/table1.cxx:908:19 (libsclo.so+0x637b39) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #6 ScDocument::GetDataArea(short, short&, int&, short&, int&, bool, bool) const core/sc/source/core/data/document.cxx:1104:23 (libsclo.so+0x49b696) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #7 ScDBData::ExtendDataArea(ScDocument const&) core/sc/source/core/tool/dbdata.cxx:654:10 (libsclo.so+0x741e77) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #8 ScDocument::GetFilterEntries(short, int, short, ScFilterEntries&) core/sc/source/core/data/documen3.cxx:1577:14 (libsclo.so+0x46e7a6) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #9 (anonymous namespace)::fillQueryParam(ScQueryParam&, ScDocument*, com::sun::star::uno::Sequence const&) core/sc/source/ui/unoobj/datauno.cxx:1164:27 (libsclo.so+0xf7dd72) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #10 ScFilterDescriptorBase::setFilterFields3(com::sun::star::uno::Sequence const&) core/sc/source/ui/unoobj/datauno.cxx:1380:5 (libsclo.so+0xf7dd72) - #11 non-virtual thunk to ScFilterDescriptorBase::setFilterFields3(com::sun::star::uno::Sequence const&) core/sc/source/ui/unoobj/datauno.cxx (libsclo.so+0xf7e2c2) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #12 oox::xls::AutoFilter::finalizeImport(com::sun::star::uno::Reference const&, short) core/sc/source/filter/oox/autofilterbuffer.cxx:803:22 (libscfiltlo.so+0x3cca2c) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #13 oox::xls::AutoFilterBuffer::finalizeImport(com::sun::star::uno::Reference const&, short) core/sc/source/filter/oox/autofilterbuffer.cxx:950:22 (libscfiltlo.so+0x3cdc0b) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #14 oox::xls::Table::applyAutoFilters() core/sc/source/filter/oox/tablebuffer.cxx:143:23 (libscfiltlo.so+0x4b9268) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #15 void std::__invoke_impl(std::__invoke_memfun_ref, void (oox::xls::Table::*&)(), oox::xls::Table&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/invoke.h:67:14 (libscfiltlo.so+0x4b9d96) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #16 std::__invoke_result::type std::__invoke(void (oox::xls::Table::*&)(), oox::xls::Table&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/invoke.h:96:14 (libscfiltlo.so+0x4b9d96) - #17 void std::_Bind))()>::__call(std::tuple&&, std::_Index_tuple<0ul>) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/functional:495:11 (libscfiltlo.so+0x4b9d96) - #18 void std::_Bind))()>::operator()(oox::xls::Table&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/functional:580:17 (libscfiltlo.so+0x4b9d96) - #19 oox::RefMap>::ForEachFunctor))()>>::operator()(std::pair> const&) core/include/oox/helper/refmap.hxx:122:89 (libscfiltlo.so+0x4b9d96) - #20 oox::RefMap>::ForEachFunctor))()>> std::for_each>>, oox::RefMap>::ForEachFunctor))()>>>(std::_Rb_tree_const_iterator>>, std::_Rb_tree_const_iterator>>, oox::RefMap>::ForEachFunctor))()>>) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/stl_algo.h:3787:2 (libscfiltlo.so+0x4b9d96) - #21 void oox::RefMap>::forEach))()>>(std::_Bind))()> const&) const core/include/oox/helper/refmap.hxx:71:29 (libscfiltlo.so+0x4b9d96) - #22 void oox::RefMap>::forEachMem(void (oox::xls::Table::*)()) const core/include/oox/helper/refmap.hxx:79:29 (libscfiltlo.so+0x4b9d96) - #23 oox::xls::TableBuffer::applyAutoFilters() core/sc/source/filter/oox/tablebuffer.cxx:179:16 (libscfiltlo.so+0x4b9d96) - #24 oox::xls::WorksheetGlobals::finalizeWorksheetImport() core/sc/source/filter/oox/worksheethelper.cxx:943:17 (libscfiltlo.so+0x4ee58e) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #25 oox::xls::WorksheetHelper::finalizeWorksheetImport() core/sc/source/filter/oox/worksheethelper.cxx:1625:17 (libscfiltlo.so+0x4f2cff) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #26 oox::xls::WorksheetFragment::finalizeImport() core/sc/source/filter/oox/worksheetfragment.cxx:632:5 (libscfiltlo.so+0x4e91cc) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #27 oox::core::FragmentHandler2::endDocument() core/oox/source/core/fragmenthandler2.cxx:53:5 (libooxlo.so+0x1c20d9) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) - #28 non-virtual thunk to oox::core::FragmentHandler2::endDocument() core/oox/source/core/fragmenthandler2.cxx (libooxlo.so+0x1c20d9) - #29 sax_fastparser::FastSaxParserImpl::parseStream(com::sun::star::xml::sax::InputSource const&) core/sax/source/fastparser/fastparser.cxx:910:36 (libexpwraplo.so+0x2a06a) (BuildId: 4c8d8739ce3b93f891afa1e160f975a2892a4af4) - #30 sax_fastparser::FastSaxParser::parseStream(com::sun::star::xml::sax::InputSource const&) core/sax/source/fastparser/fastparser.cxx:1482:13 (libexpwraplo.so+0x31738) (BuildId: 4c8d8739ce3b93f891afa1e160f975a2892a4af4) - #31 oox::core::FastParser::parseStream(com::sun::star::xml::sax::InputSource const&, bool) core/oox/source/core/fastparser.cxx:121:15 (libooxlo.so+0x1ae980) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) - #32 oox::core::FastParser::parseStream(com::sun::star::uno::Reference const&, rtl::OUString const&) core/oox/source/core/fastparser.cxx:129:5 (libooxlo.so+0x1aebdf) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) - #33 oox::core::XmlFilterBase::importFragment(rtl::Reference const&, oox::core::FastParser&) core/oox/source/core/xmlfilterbase.cxx:412:21 (libooxlo.so+0x1d01ac) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) - #34 oox::xls::WorkbookHelper::importOoxFragment(rtl::Reference const&, oox::core::FastParser&) core/sc/source/filter/oox/workbookhelper.cxx:1024:27 (libscfiltlo.so+0x4dbbd2) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #35 oox::xls::(anonymous namespace)::WorkerThread::doWork() core/sc/source/filter/oox/workbookfragment.cxx:249:27 (libscfiltlo.so+0x4d3347) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #36 comphelper::ThreadTask::exec() core/comphelper/source/misc/threadpool.cxx:319:9 (libcomphelper.so+0x17dbc1) (BuildId: 30a9bf106ea764f860a55d99b75dd87a0f268335) - #37 comphelper::ThreadPool::ThreadWorker::execute() core/comphelper/source/misc/threadpool.cxx:85:24 (libcomphelper.so+0x17dbc1) - #38 salhelper::Thread::run() core/salhelper/source/thread.cxx:39:5 (libuno_salhelpergcc3.so.3+0x5267) (BuildId: d146f721ac5d8da923b02df0d671788655b81eb6) - #39 non-virtual thunk to salhelper::Thread::run() core/salhelper/source/thread.cxx (libuno_salhelpergcc3.so.3+0x5267) - #40 threadFunc core/include/osl/thread.hxx:189:15 (libuno_salhelpergcc3.so.3+0x551e) (BuildId: d146f721ac5d8da923b02df0d671788655b81eb6) - #41 osl_thread_start_Impl(void*) core/sal/osl/unx/thread.cxx:265:9 (libuno_sal.so.3+0x6a9d5) (BuildId: 767a6cd7c58bf820064a10cf0ab0f15b30c2f4ac) + which substituted mnAnimCount with nAnimCount which is a subtle one char + difference, but mnAnimCount is a different thing entirely than the (then + local variable) nAnimCount. mnAnimCount is the count of animations + active, not the number of animation frames in a specific animation. - Previous write of size 8 at 0x7b5000040f20 by thread T6 (mutexes: write M2): - #0 std::vector>::_M_fill_insert(__gnu_cxx::__normal_iterator>>, unsigned long, unsigned long const&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/vector.tcc:556:29 (libsclo.so+0x2f6766) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #1 std::vector>::insert(__gnu_cxx::__normal_iterator>>, unsigned long, unsigned long const&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/stl_vector.h:1435:2 (libsclo.so+0x2ffd3a) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #2 mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::blocks_type::insert(unsigned long, unsigned long) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:99:15 (libsclo.so+0x2ffd3a) - #3 mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::set_new_block_to_middle(unsigned long, unsigned long, unsigned long, bool) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:4326:19 (libsclo.so+0x2ffd3a) - #4 mdds::mtv::soa::detail::iterator_base, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::iterator_trait> mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::set_cell_to_middle_of_block(unsigned long, unsigned long, double const&) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:3999:19 (libsclo.so+0x3259fe) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #5 mdds::mtv::soa::detail::iterator_base, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::iterator_trait> mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::set_cell_to_empty_block(unsigned long, unsigned long, double const&) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:3313:12 (libsclo.so+0x3259fe) - #6 mdds::mtv::soa::detail::iterator_base, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::iterator_trait> mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::set_impl(unsigned long, unsigned long, double const&) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:1260:16 (libsclo.so+0x32492f) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #7 mdds::mtv::soa::detail::iterator_base, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::iterator_trait> mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::set(mdds::mtv::soa::detail::iterator_base, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::iterator_trait> const&, unsigned long, double const&) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:754:20 (libsclo.so+0x4cc138) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) - #8 ScDocumentImport::setNumericCell(ScAddress const&, double) core/sc/source/core/data/documentimport.cxx:259:35 (libsclo.so+0x4cc138) - #9 oox::xls::SheetDataBuffer::setValueCell(oox::xls::CellModel const&, double) core/sc/source/filter/oox/sheetdatabuffer.cxx:107:20 (libscfiltlo.so+0x4833c0) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #10 oox::xls::SheetDataContext::onEndElement() core/sc/source/filter/oox/sheetdatacontext.cxx:185:25 (libscfiltlo.so+0x48fed2) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #11 non-virtual thunk to oox::xls::SheetDataContext::onEndElement() core/sc/source/filter/oox/sheetdatacontext.cxx (libscfiltlo.so+0x48fff9) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #12 oox::core::ContextHandler2Helper::implEndElement(int) core/oox/source/core/contexthandler2.cxx:125:9 (libooxlo.so+0x1ac82b) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) - #13 oox::core::ContextHandler2::endFastElement(int) core/oox/source/core/contexthandler2.cxx:220:5 (libooxlo.so+0x1ac82b) - #14 non-virtual thunk to oox::core::ContextHandler2::endFastElement(int) core/oox/source/core/contexthandler2.cxx (libooxlo.so+0x1ac82b) - #15 (anonymous namespace)::Entity::endElement() core/sax/source/fastparser/fastparser.cxx:515:27 (libexpwraplo.so+0x3042f) (BuildId: 4c8d8739ce3b93f891afa1e160f975a2892a4af4) - #16 sax_fastparser::FastSaxParserImpl::consume((anonymous namespace)::EventList&) core/sax/source/fastparser/fastparser.cxx:1029:25 (libexpwraplo.so+0x29d37) (BuildId: 4c8d8739ce3b93f891afa1e160f975a2892a4af4) - #17 sax_fastparser::FastSaxParserImpl::parseStream(com::sun::star::xml::sax::InputSource const&) core/sax/source/fastparser/fastparser.cxx:869:22 (libexpwraplo.so+0x29d37) - #18 sax_fastparser::FastSaxParser::parseStream(com::sun::star::xml::sax::InputSource const&) core/sax/source/fastparser/fastparser.cxx:1482:13 (libexpwraplo.so+0x31738) (BuildId: 4c8d8739ce3b93f891afa1e160f975a2892a4af4) - #19 oox::core::FastParser::parseStream(com::sun::star::xml::sax::InputSource const&, bool) core/oox/source/core/fastparser.cxx:121:15 (libooxlo.so+0x1ae980) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) - #20 oox::core::FastParser::parseStream(com::sun::star::uno::Reference const&, rtl::OUString const&) core/oox/source/core/fastparser.cxx:129:5 (libooxlo.so+0x1aebdf) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) - #21 oox::core::XmlFilterBase::importFragment(rtl::Reference const&, oox::core::FastParser&) core/oox/source/core/xmlfilterbase.cxx:412:21 (libooxlo.so+0x1d01ac) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) - #22 oox::xls::WorkbookHelper::importOoxFragment(rtl::Reference const&, oox::core::FastParser&) core/sc/source/filter/oox/workbookhelper.cxx:1024:27 (libscfiltlo.so+0x4dbbd2) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #23 oox::xls::(anonymous namespace)::WorkerThread::doWork() core/sc/source/filter/oox/workbookfragment.cxx:249:27 (libscfiltlo.so+0x4d3347) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) - #24 comphelper::ThreadTask::exec() core/comphelper/source/misc/threadpool.cxx:319:9 (libcomphelper.so+0x17dbc1) (BuildId: 30a9bf106ea764f860a55d99b75dd87a0f268335) - #25 comphelper::ThreadPool::ThreadWorker::execute() core/comphelper/source/misc/threadpool.cxx:85:24 (libcomphelper.so+0x17dbc1) - #26 salhelper::Thread::run() core/salhelper/source/thread.cxx:39:5 (libuno_salhelpergcc3.so.3+0x5267) (BuildId: d146f721ac5d8da923b02df0d671788655b81eb6) - #27 non-virtual thunk to salhelper::Thread::run() core/salhelper/source/thread.cxx (libuno_salhelpergcc3.so.3+0x5267) - #28 threadFunc core/include/osl/thread.hxx:189:15 (libuno_salhelpergcc3.so.3+0x551e) (BuildId: d146f721ac5d8da923b02df0d671788655b81eb6) - #29 osl_thread_start_Impl(void*) core/sal/osl/unx/thread.cxx:265:9 (libuno_sal.so.3+0x6a9d5) (BuildId: 767a6cd7c58bf820064a10cf0ab0f15b30c2f4ac) + orig code was const size_t nAnimCount = maFrames.size(); + so replace mnAnimCount here with maFrames.size() to get back to the + original logic - Change-Id: I7542432749fded8ab5e35f79cb221ad712f7802d - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146430 - Tested-by: Jenkins + Change-Id: I11d1797eb0b9ef61addb3769d12d8364872071df + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149443 + Reviewed-by: Xisco Fauli + Reviewed-by: Noel Grandin Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara - (cherry picked from commit 6652768ef832f4e1555a01a2962c087fa8937e30) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146531 - Reviewed-by: Xisco Fauli - (cherry picked from commit a1f175f01ffa6102b9fdc54177ca53940a43897c) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146695 - Reviewed-by: Michael Stahl - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier -2023-02-22 László Németh [e1b078e55f0be014521e5d0bc1907b9e0815d0f6] +2023-03-22 Michael Stahl [f3bee7eff23f01942ceb723b6ebc8eddc6fa0cf4] - tdf#132714 sw: fix crash at table row deletion associated to a chart + Revert "avmedia : use std::mutex instead of osl::Mutex" - Using the table toolbar, deletion of the row of a text table - resulted crashing in ActualizeSelection(), if the text table - is associated to a chart, and the deleted row was the first - data row of the chart. Fix this by emptying the outdated table - selection cache m_SelectedBoxes in GetCellRangeName(). + This reverts commit 477fa6c3cb92f578032dee60482718efdb8f44f2. - Note: since commit eea37aa26932d06ed8e93d001862bf45175c4446 - "tdf#122995 Trigger Chart refresh directly in UpdateCharts for SW", - the crash occurred immediately, i.e. without double clicking on - the chart after the row deletion. + MissingPluginInstaller requires a recursive lock: - Note: uitest needed to get the crash, not uiwriter. + 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: I78d126f245839ec1d8a8cc01257fe96d94ac0a21 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147224 - Tested-by: László Németh - Reviewed-by: László Németh - (cherry picked from commit 5b9855acc7fa6d1e4a5f53ff0bc47e1dd4729827) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147250 + Change-Id: Ia8e7fef4d4cee2dde7189702af6dddf883b6cceb + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149233 Tested-by: Jenkins Reviewed-by: Michael Stahl - (cherry picked from commit 8c62a74561649ee06a4949931ae85559fa6ded5d) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147289 + (cherry picked from commit 621143588b3cb438baf27fb6893ab02e7b06f9dd) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149300 Reviewed-by: Xisco Fauli - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier + Reviewed-by: Caolán McNamara + Tested-by: Thorsten Behrens + Reviewed-by: Thorsten Behrens -2023-02-22 Caolán McNamara [303dacdbf3a66c148ee1ec0d6b7a8bead03faa3e] +2023-03-22 Patrick Luby [ea0e721246222c3d470c07d429137f0634592833] - Resolves: tdf#153566 set darkmode menubar background color + tdf#152406 Disable anti-jitter code for scroll wheel events - because we use it for custom menu titles backgrounds + After moving thousands of columns to the right via horizontal + scroll wheel or trackpad swipe events, most vertical scroll + wheel or trackpad swipe events will trigger the anti-jitter code + because nScrollPos and nPrevDragPos will be equal and nDelta + will be overriden and set to zero. So, only use the anti-jitter + code for mouse drag events. - Change-Id: I1ae679bc032d29c4901befc2f1b0cbb53d0a5d1e - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146801 + Change-Id: I9a22b31e1e012a97a058ab36e040629a71f5d24f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149183 Tested-by: Jenkins - Reviewed-by: Adolfo Jayme Barrientos - (cherry picked from commit aa6e42c4a46104115947625edb9d7eb34c418758) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146805 - Reviewed-by: Xisco Fauli - Tested-by: Michael Stahl - Reviewed-by: Michael Stahl + Tested-by: Caolán McNamara + Reviewed-by: Caolán McNamara + (cherry picked from commit d82a734c07b85cbd7861699b7fa6d3ebbb3122f2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149239 + Reviewed-by: Patrick Luby + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier -2023-02-22 Caolán McNamara [1654e4c55a4a37958eed959701d948bbc2e04e3d] +2023-03-22 Caolán McNamara [ee55e17b556753e9853219dbeee9a10da18cd608] - crashreporting: divide by zero, aPrefSize.Width() must have been 0 here + tdf#154232 signal_drag_begin callback can delete current GtkTargetList - Change-Id: I5ee2c1f4386c95c12fb821a3514cb732b220bb86 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147125 - Tested-by: Jenkins - Reviewed-by: Xisco Fauli - (cherry picked from commit bc4080c7fdb81eff5cc71d88ba1d7c5714047490) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147131 + 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/+/149102 + Reviewed-by: Adolfo Jayme Barrientos Reviewed-by: Caolán McNamara - Reviewed-by: Michael Stahl - Tested-by: Xisco Fauli + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier -2023-02-22 Xisco Fauli [c4e357a148f1dc1e16fbc3935064de78af9c9c1e] +2023-03-22 Michael Stahl [27a804909fd5b70424b9a26d05bbcae87e0c60ba] - sc: avoid divide by zero in ScEEImport::GraphicSize + curl: upgrade to release 8.0.1 - See https://crashreport.libreoffice.org/stats/signature/ScEEImport::GraphicSize(short,long,ScEEParseEntry%20*) + Apparently 8.0.0 had a serious regression. - Change-Id: Ia5acccb1118aff2486d23eabd536053e67f346ba - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146915 + 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/+/149296 Reviewed-by: Xisco Fauli - (cherry picked from commit 1e7ee035992a0b29f42eac56ad82e2a1b0fe8ccd) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146919 - Reviewed-by: Michael Weghorn - Reviewed-by: Caolán McNamara - Tested-by: Xisco Fauli + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier -2023-02-22 Xisco Fauli [58433bc30cb24a60c1eae4a9f75cd6ae95adbaeb] +2023-03-22 Michael Weghorn [43db0608b7423faf74eee5c6a36e3360db3735c9] - sc: fix divide by zero in ScGridWindow::DrawPagePreview + tdf#154303 wina11y: Don't truncate 64-bit states - Seen in https://crashreport.libreoffice.org/stats/signature/ScGridWindow::DrawPagePreview(short,long,short,long,OutputDevice%20&) + commit 8d8e6c84e512c1a8b33aac75965b84481d1a1d13 + Date: Sun Jul 3 20:29:28 2022 +0200 - Change-Id: Iff64d0fe84c7d53b18db38598709ac47475a6715 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147234 + [API CHANGE] Drop css::accessibility::XAccessibleStateSet + + had introduced the use of a 64-bit integer with + bit flags for the accessible states. + + However, `AccObjectWinManager::DecreaseState` and + `AccObjectWinManager::IncreaseState` were still using + unsigned short, resulting in truncation. + + As one result, the `AccessibleEventId::STATE_CHANGED` + event with state `AccessibleStateType::VISIBLE` + from `OAccessibleMenuBaseComponent::SetVisible` would no + longer result in the `STATE_SYSTEM_INVISIBLE` being unset + and thus the the JAWS screen reader would no longer announce + the focused (but considered invisible) menu item. + + Fix this by switching the param for those two methods to + sal_Int64 as well. + + Change-Id: I714573e2691e82c6287a4b83f872f87568e46495 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149255 Tested-by: Jenkins - Reviewed-by: Caolán McNamara - (cherry picked from commit 8afc7788b83152528ff2a72b16ae829bde9ace54) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147364 Reviewed-by: Michael Weghorn - Tested-by: Xisco Fauli + (cherry picked from commit 2f206b84385ed62bb56982270dce57ad4dace472) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149295 Reviewed-by: Xisco Fauli + Reviewed-by: Michael Stahl + Reviewed-by: Caolán McNamara + Tested-by: Caolán McNamara -2023-02-22 Szymon Kłos [dd0247d27624062ba4e39b9efa799f289cf16e6a] +2023-03-22 Caolán McNamara [2cc892527f5455a06dba637bcb2f60163894bc13] - tdf#153244 apply caption options + crashreporting: CreateEmbeddedObject might fail - Change-Id: I2aa53a85ab9f38ddf74caac85047235ea85a40af - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146590 + Change-Id: I0e1ccbea92343d18e5ff3a9af1f54ed5e0dd796b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149113 Tested-by: Jenkins - Reviewed-by: Szymon Kłos - (cherry picked from commit 6a7b3d59d790cb8ea55353fe4173d71a13931d50) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146630 Reviewed-by: Xisco Fauli - (cherry picked from commit efbf1fad61882a52e92b9c4d9d277a5e8c7750ab) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146711 - Reviewed-by: Adolfo Jayme Barrientos + (cherry picked from commit 130e002051d2f57d1518f8ce89dd2db76be8a6a9) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149241 Reviewed-by: Caolán McNamara - Tested-by: Caolán McNamara + Tested-by: Michael Stahl + Reviewed-by: Michael Stahl -2023-02-22 Xisco Fauli [836ebe837d900d92f96e4d7952c1d9d1e6540284] +2023-03-22 Michael Stahl [cf046bed1fde2bdf79e377a9081ed3b260d6aa32] - sw: fix crash in SwModule::InsertLab + curl: upgrade to release 8.0.0 - Seen in https://crashreport.libreoffice.org/stats/crash_details/e17357e9-d5e2-4eee-868e-ecf72e04dc41 + Fixes CVE-2023-27535. - Change-Id: I32f239249e72b6644b3a38d4dd9bbae65f7bede0 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146704 + 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 15e08e498a64eca1d4305682d6055a9ab1d568c6) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146710 - Reviewed-by: Michael Weghorn - Reviewed-by: Caolán McNamara - Tested-by: Xisco Fauli + (cherry picked from commit bbe0d0534abe6480c4502ce8fb543a736d3399d8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149105 Reviewed-by: Xisco Fauli + (cherry picked from commit f2736b09046af9e9461fb13faae37b09ac941163) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149109 + Reviewed-by: Adolfo Jayme Barrientos + Tested-by: Xisco Fauli -2023-02-22 Michael Stahl [11982723e07e1ffe5d66e20857dcb0ed8e0048ad] +2023-03-17 Khaled Hosny [0337d29475bcf9374e58d37935408a9ba4fce3fe] - nss: upgrade to release 3.88.1 + tdf#153704: Make sure the last script segment is also added - Fixes CVE-2023-0767 CVE-2022-3479 - - Change-Id: I688dc7d0785ed3344c33e331c7e9ef37baa720ee - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147387 - Tested-by: Jenkins + Change-Id: Id6381d77cdf05c24a1b557206f530f4e004e8e52 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148971 + Reviewed-by: Adolfo Jayme Barrientos Reviewed-by: Michael Stahl - (cherry picked from commit 538975a0e511ad79a7dd3c71300b993d1554cd03) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147359 - Reviewed-by: Caolán McNamara - (cherry picked from commit e18506a032515eb05bb02de669d8e492ec9f2e04) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147373 - Reviewed-by: Xisco Fauli - Reviewed-by: Michael Weghorn - Tested-by: Michael Weghorn + Tested-by: خالد حسني + Reviewed-by: خالد حسني -2023-02-22 Xisco Fauli [c45a72b38e3e994da6b1597f4b34ca8e8a03be03] +2023-03-16 Patrick Luby [34f4184969ff1484af967836763a64620490095e] - check GetActiveWrtShell() and CheckAndGetWrtShell() + Reset dark mode colors in HITheme controls after printing - See https://crashreport.libreoffice.org/stats/signature/SwModule::ApplyItemSet(unsigned%20short,SfxItemSet%20const%20&) - Change-Id: I7c719c5fe4cda9f6571592c30f39bd440053dbe9 + In dark mode, after an NSPrintOperation has completed, macOS draws + HITheme controls with light mode colors so reset all dark mode + colors when an NSWindow gains focus. - Change-Id: Iaa4448dccd1a0ec1aefa539e476b5046ed50f7b7 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147201 + Change-Id: Ifdbb7d2eff8157ed0d711cf975c2ad1fdcf63495 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148570 Tested-by: Jenkins Reviewed-by: Caolán McNamara - (cherry picked from commit a7f4de4573082e9455542a961ab610cd09f01b34) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147238 - Reviewed-by: Michael Stahl - Reviewed-by: Michael Weghorn - Tested-by: Michael Weghorn + Reviewed-by: Patrick Luby + (cherry picked from commit 57b88be1e10e131aea429e205fd426b7dab2ba2d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148619 + Reviewed-by: Adolfo Jayme Barrientos + (cherry picked from commit 9d1faa2ed169cb07e24a722bc37e7f6a6755aa53) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148698 + Reviewed-by: Stéphane Guillou + Tested-by: Xisco Fauli + Reviewed-by: Xisco Fauli -2023-02-22 Eike Rathke [d0b16405f3b4e68dc50cd775bcaf5ccca66565b7] +2023-03-09 Christian Lohmaier [9f4c1e284a4d12aeacb8ffed20b89f6ddbb0b0ea] - Stack check safety belt before fishing in muddy waters + bump product version to 7.5.2.1.0+ - Have it hit hard in debug builds. + Change-Id: I6c3fb0c6d50480aa1db9e8d42bab9c0840d056fb + +2023-03-09 Christian Lohmaier [04e7f8df15e5cdf2df8056d543915f5450958b19] + + Branch libreoffice-7-5-2 - Change-Id: I9ea54844a0661fd7a75616a2876983a74b2d5bad - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147205 - Reviewed-by: Eike Rathke + This is 'libreoffice-7-5-2' - the stable branch for the 7.5.2 release. + Only very safe changes, reviewed by three people are allowed. + + If you want to commit more complicated fix for the next 7.5.x release, + please use the 'libreoffice-7-5' branch. + + If you want to build something cool, unstable, and risky, use master. + +2023-03-09 Julien Nabet [dc4c79b80d8ec24e54744841b2e2ce815e3ace2f] + + tdf#153538: blacklist GeForce GTX 1070 Ti for Skia hardware rendering + + Change-Id: I4ec53d9bcde229f3df3f19e952536ba64e1dc3d3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148447 Tested-by: Jenkins - (cherry picked from commit 9d91fbba6f374fa1c10b38eae003da89bd4e6d4b) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147244 - Reviewed-by: Caolán McNamara - (cherry picked from commit cf43a5ca4c00648a29bc70ef4d3a8039466f3a8f) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147434 - Reviewed-by: Michael Stahl + Reviewed-by: Julien Nabet + (cherry picked from commit c0ed486d96fca70704a7f7e24199de9c663003cc) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148409 Reviewed-by: Michael Weghorn - Tested-by: Michael Weghorn -2023-02-22 Xisco Fauli [befe66da8ff16291f90e6815f9691eb02bab9d15] +2023-03-09 Mike Kaganski [e8c46d0067d88832896798678993dc77edd9c493] - check SmGetActiveView() - - it might be null + tdf#153791: paragraph's/character's shd overrides shape style's fontRef - See https://crashreport.libreoffice.org/stats/signature/SmPrintOptionsTabPage::~SmPrintOptionsTabPage() + I couldn't find any references to this in documentation (ECMA-376, MS-OE376) + regarding this, but Word ignores the font properties (including color) defined + in the shape style's fontRef for txbxContent's paragraphs / runs that have shd + elements with non-auto fill color. - Change-Id: I7bc17da230784e6e3fc9c0b33848423ac113ab29 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147221 - Reviewed-by: Caolán McNamara + Change-Id: Ice634a5eed7b51379649462303300f55358a566f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147630 Tested-by: Jenkins - Reviewed-by: Xisco Fauli - (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/+/147288 - Reviewed-by: Michael Stahl - Reviewed-by: Michael Weghorn - Tested-by: Michael Weghorn + Reviewed-by: Mike Kaganski + (cherry picked from commit c15412eb96bda1037c12811f5818ed8ce1e603bd) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147844 + Reviewed-by: Christian Lohmaier -2023-02-22 Xisco Fauli [4e8c7a31df8d353eb562152c347441a6bbcca5b3] +2023-03-09 Ilhan Yesil [f933248c042e6fa8ed29daf19fd8bba47a5cc3d6] - check GetFEShell() + Related: tdf#132110 use the container child size as default size - Similar to 24889135773204c6e3002dcb417c75ff1a99ccd0 - "check GetEditShell()" + if the container size wasn't changed - 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*) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147382 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 9c978e4c75e342b2345ff4fcbd1b5751627d8baf) - Change-Id: I7ce286f7be933b34af270abd11a4c9c4c58fe4a8 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147114 + also includes: + + tdf#152508 Initiate container request size after call of createPage + + As the container's request size of wizard pages can't be changed + directly by the UNO call setPosSize, the UNO caller can set the size + in the callback function createPage, this size will then taken as + request size. This doesn't solve the problem entirely as descriped + in tdf#152508, but the most important is, that the wizard page can + be initialized with an appropriate size at startup. + + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144287 Tested-by: Jenkins Reviewed-by: Caolán McNamara - (cherry picked from commit 3f1da0d66dc2379e822f96c75a68674f50ebb0af) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147118 - Reviewed-by: Michael Stahl Reviewed-by: Michael Weghorn - Tested-by: Michael Weghorn + (cherry picked from commit aef2ee893c7b76794bc9db869f08bbbea60606a8) + + Change-Id: I0bd4843768b727b8b75cbcb7ec92bd2b501b550d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147412 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier -2023-02-22 Mike Kaganski [1ef9c47bdd357157979412c99e1412eeb4777e1f] +2023-03-09 Caolán McNamara [76d95da3d253dca847f78037275c1a29b5516885] - tdf#153724: make sure to retrieve the variable value before checking the type + Resolves: tdf#153885 keep popovers with application window parent inside that - Commit 5760c94b8847164f9a7a181f031c7c86643944af tried to avoid all cases - which could set an error in SbiRuntime::PushForEach. To do that, it checked - the type of xObjVar before trying to get an object from it, which otherwise - could set an error. + for wayland. If the popover window is the application window, contrain + it within the application window so it won't be cut off off screen, + because gtk under wayland just puts it when it wants to be regardless of + screen bounds. - But the type of the contained value can be not known until it is retrieved - (which can happen inside SbxValue::Get in a call to SbxValue::Broadcast with - SfxHintId::BasicDataWanted). This happens e.g. when the container passed to - 'for each' is a call to some special function, like VBA's 'Selection'. Then - SbxValue::GetFullType would return SbxEMPTY prior to SbxValue::Get. + Leave dialog hosted ones alone, like format, watermark, which are likely + presented in the middle of the screen and are too small to constrain the + popover inside. - Let's make sure to call SbxValue::Get first (asking for a Variant, to avoid - errors on type mismatch), and only then, check the actual result data type. + Change-Id: Ibdc0749613a3b587414e88be7d0aea81c637f31a + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148095 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + +2023-03-09 Caolán McNamara [6169709cea1f72c55fadab27291dc878cb422ad1] + + tdf#148776 for scrolling set step size as height of a row - Change-Id: Iaa697f38285505e50504ae09f9307fbd29e09a53 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147273 + similar to FontFeaturesDialog. + + FWIW gtk's viewport implementation automatically overwrites the step + size to be 10% of the visible height (and page size of 90% of the + visible height) + + Change-Id: If356724a47b0a10069f129bed4a40cfdee57bfa8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148138 Tested-by: Jenkins - Reviewed-by: Mike Kaganski - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147297 - Reviewed-by: Xisco Fauli - (cherry picked from commit bcd6333952d4d1fe2bbe1c08616f8210ee0d3f7e) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147283 - Reviewed-by: Eike Rathke Reviewed-by: Caolán McNamara - Tested-by: Caolán McNamara + (cherry picked from commit 4a88c5840e022ca896ce26ce1dfde2db7fb7df29) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148318 + Reviewed-by: Christian Lohmaier -2023-02-22 Eike Rathke [89f87051ea5117ebded3787d8843fb56f60fd34c] +2023-03-09 Caolán McNamara [bd42cd1a325cd53db9fca0865f851bcd6e09ccc6] - Obtain actual 0-parameter count for OR(), AND() and 1-parameter functions + tdf#153672 Use RelativeMapMode so text in gdis are scaled/offset correctly - 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. + otherwise it overrides the outer GdiMetaFiles efforts to position the + origin and the text is rendered off-canvas in this scenario - Change-Id: Ie05398c112a98021ac2875cf7b6de994aee9d882 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147173 - Reviewed-by: Eike Rathke + Change-Id: If81692dce81fb6f00d5051228e1de13cdcae1770 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148102 Tested-by: Jenkins - (cherry picked from commit e7ce9bddadb2db222eaa5f594ef1de2e36d57e5c) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147130 - Reviewed-by: Xisco Fauli - Tested-by: Caolán McNamara - Reviewed-by: Caolán McNamara + Reviewed-by: Christian Lohmaier -2023-02-21 Caolán McNamara [2c3baf8b1268fb34b6be3ee0afc59f32dd1c994f] +2023-03-09 Caolán McNamara [73e307eb0c7811b84b6fb72f3241ea91a0b760ff] - gtk4: occasional crash at exit + Resolves: tdf#153787 highlighted entry text overdraws selected entry text - Change-Id: I2008d44f5dae0f22e9213f46a740146d6eb85666 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146703 + Change-Id: Iabf1d4a672aa508c5143f12169678278186ddd47 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148099 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + +2023-03-09 Patrick Luby [a076f13d8db533de01f54978ef8349df16330e56] + + Enable building non-Mac App Store Universal .dmg from merged and signed .app + + Add a new bin/create-dmg-from-merged-app-bundle script which is used to + package a merged and signed .app folder (created with the + bin/merge-app-bundles and manually signed) into a distributable .dmg. + + Also, add .jnilib files to the lipo list in bin/merge-app-bundles since + these are really .dylib files for Java. + + Change-Id: I1da4105b0820251580401f975f499b8d59a20499 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148101 + Tested-by: Jenkins + Reviewed-by: Patrick Luby + (cherry picked from commit 4637080c28ac082ca44ee37e05e1b0c0a6183ba6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148216 + Reviewed-by: Christian Lohmaier + +2023-03-09 Christian Lohmaier [490f410b914a16c134b7ac58e6e4e6425ece8d42] + + Update git submodules + + * Update translations from branch 'libreoffice-7-5' + to 03fbb6a606dff8622b1f97537ed0b556ca3def59 + - update translations for 7.5.2 rc1 + + and force-fix errors using pocheck + + Change-Id: Ic55b1e33decad739171dd3b154553bbfdc325599 + +2023-03-09 László Németh [a35189a5962aaa9843923f87972a3811e9ae83b5] + + 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/+/148497 Reviewed-by: Michael Stahl - Tested-by: Caolán McNamara - (cherry picked from commit e3068e43679aa4d29e9c28ee056590769e021788) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146809 - Reviewed-by: Xisco Fauli - Reviewed-by: Michael Weghorn - Reviewed-by: Caolán McNamara -2023-02-21 Caolán McNamara [29ffe7c818f3f06bfc4bf31dc182c285dbc53b6d] +2023-03-09 Maxim Monastirsky [25dd1b089fedec1a7ba45f3a3be7d10217165106] - crashreporter: apparent null dereference + tdf#154050 Unset external pointer before destroying - Change-Id: I83f0765311ffdb34a0c08aaf616fdbde4e5110a7 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147054 + Regression of 48ca2336251d62ac2e90300cd9945fb84b1cddd8 + ("tdf#125040 Avoid flickering on context change"). + Before that commit the state of toolbar commands was + updating async, which is how it managed to not crash. + + Change-Id: I07e2ce25faf848c7db33dd029b54a98bafcf8fa9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148518 + Tested-by: Jenkins + Reviewed-by: Maxim Monastirsky + (cherry picked from commit 37b2bb1f6c18b915286264682bf0b3c25f0d552a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148501 Reviewed-by: Michael Stahl + +2023-03-09 Rizal Muttaqin [72f44054e158545dd8642bb2d99ae87a116bea18] + + tdf#152887 Add status bar icons for Accessibility Check + + Change-Id: Ied2b876938824c3504231988943851bd97265e44 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148466 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + (cherry picked from commit 6002b5ff598ed63ad8de259b04fc7a17789a1751) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148499 + +2023-03-08 Mike Kaganski [3b17f67f35a771c75e683f0671b9b9d2a010ffd4] + + tdf#153617: percent-encode the text sent to LanguageTool API. + + Change-Id: I0bb55c70f5602444440fca6e3c13b3d75418e49d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148236 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148299 + +2023-03-08 Czeber László Ádám [2860a771f93e43b95250beee78351a58bffba1ff] + + tdf#153681 RTF export: fix extra cell regression at nested tables + + Table rows exported with an extra empty cell, if there was a + nested table in them (and not in the last cell). + + Partial revert of commit 1f77a5e8d5bf8a7f1b7bd7206996d2b2efc59462 + "n#203704 fix RTF export table output for subtables". + + Note: the partially reverted code was for the old table format + (used before OOo 2.3). This old format is partially converted to the + new table format since commit e366c928819c44b5c253c45dca6dae40b71c9808 + "sw: ODF import: convert the simplest sub-tables to rowspan tables". + + Change-Id: I63ebefbb99e1a95cd60ce8d8dc34c307573d4b58 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147887 + Reviewed-by: László Németh + Tested-by: László Németh + (cherry picked from commit 6ddffa9841a20b7fddd3f742c88dba7d51cf9114) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147984 Tested-by: Jenkins - (cherry picked from commit acb9c4ff1b3cd6a4fca29bb0d7551776e6957c32) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147058 Reviewed-by: Xisco Fauli - Reviewed-by: Michael Weghorn - Reviewed-by: Caolán McNamara - Tested-by: Caolán McNamara -2023-02-16 Caolán McNamara [a6ca1b3ef0c53264e2a695e92791acdec3998b2e] +2023-03-08 Tibor Nagy [5308d68a7cc0a4b38216438150adba2ac62e2bbe] - disable script dump + tdf#149756 tdf#152545 PPTX import: position of standard connector - part2 - Change-Id: I04d740cc0fcf87daa192a0a6af34138278043a19 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146987 - Reviewed-by: Michael Stahl - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier + and add new compatibility option "ConnectorUseSnapRect". + + Standard connectors (bentConnector3, bentConnector4, bentConnector5) + are improved. MSO calculates the edge track differently, so have + to add "ConnectorUseSnapRect" compatibility option: + + - For PPTX file format, it is set to true and use the snap rectangle + + - For ODP format, it is set to false by default and use the bounding + rectangle. + + Follow-up to commit eec48130271188cab63665acedbabf1ff5e850a2 + "tdf#148926 tdf#151678 PPTX import: position of standard + connector - part1" (bentConnector2) + + Change-Id: Icca84708d6e10d44ebf7262415d055ce9cfc157d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146162 + 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/+/148480 + Tested-by: Jenkins -2023-02-16 Noel Grandin [02ecb94a9b522d15501649af00979e9345f90489] +2023-03-08 Stephan Bergmann [1c7b700179afda772af0f004e7ba497ba42fd8fc] - tdf#150380 Calc crash clicking on the title of the Border Color toolbar popdown + Restore .git-hooks/commit-msg - There is probably a better fix for this, but we have a popup inside a - popup here, so some weirdness is to be expected. + ...that 729ae5135042427b62a856d792f51afad1026622 "Update Sifr Mimetype Icons" + had modified, presumably in error - At least it doesn't crash now. + Change-Id: I077eeb2d304d145a68edceae7196417b329adaee + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148458 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit ff5d23638b198438906fa3f91cee38a8b1dbc82e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148410 + Reviewed-by: Adolfo Jayme Barrientos + +2023-03-08 Jaume Pujantell [84d5dcc7365246352a7126ae15c54cd66bf344d9] + + Fix a bug parsing pdf arrays - Change-Id: Ifaa928c47c3cbfaec8379f01f007b0c1daf4e5a6 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146359 - Tested-by: Noel Grandin - Reviewed-by: Noel Grandin - (cherry picked from commit f4a24366dd111c7c7434f4a887d7097ced6b5f55) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146329 + The parser ignored number elements in some situations, like before + a reference element. This manifested in creating an invalid pdf + file when exporting as pdf a document that contains a pdf. + + Change-Id: I98625c8da8631056079814f7e824f36177cf41c7 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148198 Tested-by: Jenkins + Reviewed-by: Andras Timar + (cherry picked from commit 574e89ccda1b389faca9f3e44d909a71b5599473) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148394 Reviewed-by: Xisco Fauli - (cherry picked from commit 4262e6cca32952ec3d2d130b1c86dc757977d54b) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146713 + +2023-03-08 Caolán McNamara [e6e37d2de2e78c8d0d4c7d9ee45e8c9094b9076a] + + tdf#152278 a YoavKtav Black font reported as claiming its name is in 0x4800 encoding + + Change-Id: Ie1f190cd4e550a21b5614d565b03422332594ede + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148397 + Tested-by: Jenkins Reviewed-by: Michael Stahl - Reviewed-by: Michael Weghorn - Tested-by: Michael Weghorn -2023-02-16 Caolán McNamara [429a5851b84f83fd8401c99a2b8c2da34cecfe09] +2023-03-08 Michael Weghorn [f7ae8fb0c612988a308b16284ce659e860e7ad99] - Resolves: tdf#153622 crash in SvListView::SelectListEntry + tdf#154039 wina11y: Increase refcount for returned COM interface - probably since: + 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. - commit 4c8b1fa44d4f49510d3910981e649dcb08bceb36 - Date: Fri Oct 28 13:15:00 2022 -0400 + Regression from - tdf#151794 sc validate: honor NO_BLANK in Cell range dropdown + commit 00c0ee8cf0fac0c933c5ae600e99a64b1c7d4397 + Author: Michael Weghorn + Date: Mon Jan 31 07:41:14 2022 +0000 - Change-Id: Id6752126c0c8df8d813bc862e5533d05bba1b622 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146993 - Reviewed-by: Xisco Fauli - Reviewed-by: Eike Rathke + 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 - Tested-by: Michael Weghorn + (cherry picked from commit 38e2dde00da0207c5f7157bb427a006d32dfeb5b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148399 + Reviewed-by: Michael Stahl -2023-02-15 Martin Srebotnjak [5084cd1c52e179e7b5aad53cf305e4d1976e1f93] +2023-03-08 Galdam [2dba67b95227cfe25258ee4b3eebebc24058600c] - Update git submodules + tdf#15259 Update Sifr Mimetype Icons - * Update translations from branch 'libreoffice-7-5-1' - to ea0ee14450abcaf5ecaf298a7e10f86a0e921f56 - - Updated Slovenian translation - - Change-Id: I3b753a56606e5b041f3afc0d5f9f69ed1c2ba728 - -2023-02-15 Caolán McNamara [6dbe895a22e4571e024a2a7e38f9971e83abdf3e] + Updated Sifr mimetype icons to match new app/mimetype icons + + Change-Id: I4dda9bd4f342ed068bf1a10f9ffb23246685cc94 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148429 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + Tested-by: Rizal Muttaqin + (cherry picked from commit 729ae5135042427b62a856d792f51afad1026622) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148405 - tdf#153229 add a switch to override honoring system dark mode +2023-03-07 Caolán McNamara [d5a97bbafe02b7d51bb5a6f609acc25f03c8469d] + + tdf#154042 Use an initial height of one row for toolbar layout - Change-Id: Iafb6182e05dc65d20d0809476ee58908f7426d39 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146597 + 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/+/148402 Tested-by: Jenkins - Reviewed-by: Caolán McNamara - (cherry picked from commit f7c03364e24da285ea95cea0cc688a7a120fc163) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146745 - Reviewed-by: Sophie Gautier - Reviewed-by: Xisco Fauli - (cherry picked from commit f0814dca8f05f524068b8217a9f1eabd8266cdc4) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147056 - Reviewed-by: Christian Lohmaier - Tested-by: Adolfo Jayme Barrientos Reviewed-by: Adolfo Jayme Barrientos -2023-02-15 Christian Lohmaier [30c252f83bbd2b43a1bc3261e1837cd66870f6db] +2023-03-07 László Németh [ad3fe5c2e71deb7cd51d40549331371022cfb3b4] - fix openssl build on aarch64 - _umul128 is not available on non x64 + tdf#153859 sw: crash fix for setting chart with deleted data table - adding upstream patch that uses __umulh as a fallback + Opening Data Ranges dialog window of a chart with + deleted data table crashed Writer immediately. - Change-Id: Ib95de30d3f7208c38421df0c63eb1ceafccd9354 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146839 + Follow-up to commit 5b9855acc7fa6d1e4a5f53ff0bc47e1dd4729827 + "tdf#132714 sw: fix crash at table row deletion associated + to a chart". + + Change-Id: I96e901db75d40ae234f58827a957204bca13aa92 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147893 + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit e706698353a7187f46ddbf0faf1f6f7772753df6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147904 Tested-by: Jenkins - Reviewed-by: Christian Lohmaier - (cherry picked from commit 821f4d6f0987450233e4f63e01f89484ec737258) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146916 - Reviewed-by: Michael Stahl - (cherry picked from commit ae24dd7bf521c960b7d03a19f9e64396ceaafdcc) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146979 - Reviewed-by: Thorsten Behrens Reviewed-by: Caolán McNamara - Tested-by: Caolán McNamara -2023-02-10 Khaled Hosny [6a006674c2cf62742ae0653f397aea1166fb43d8] +2023-03-07 László Németh [78373e81c79a8afe67ffe3ac84aef5649fcf489a] - Require HarfBuzz 5.1.0 + tdf#153858 sw: crash fix for chart with deleted data table - This is the minimal version to provide the functionality we currently - check for. Some important LO functionality currently depend on idfdef'd - HarfBuzz code, and some distributions build against old system HarfBuzz - leading to user bug reports that are tricky to track down, e.g: - tdf#153048 and tdf#153470. + Using mouse, e.g. simply moving the mouse pointer + during editing a chart with a deleted data table + crashed Writer immediately. - Change-Id: I7d58ec46f8fd340d2592887c0088876d71351771 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146674 + Follow-up to commit 5b9855acc7fa6d1e4a5f53ff0bc47e1dd4729827 + "tdf#132714 sw: fix crash at table row deletion associated + to a chart". + + Change-Id: I6d89eabc84565c548e2d9ded922789d623367ce4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147882 + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit 4f2dcc4bc70c3602e2612dab611b610410637920) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147898 Tested-by: Jenkins - Reviewed-by: خالد حسني - (cherry picked from commit 8c1e91444c78db1093c3db54d98efb16294f82ea) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146700 - Reviewed-by: Adolfo Jayme Barrientos - Tested-by: René Engelhard + Reviewed-by: Caolán McNamara + +2023-03-07 Xisco Fauli [bd323bb9554265ec093fed3274cb232fbf0cd2ec] -2023-02-09 Christian Lohmaier [a6c9f0de4ac8bf68eebc05d12a8aef6922184df2] + check GetShell + + it might return nullptr + + Change-Id: I65b43d69f4757b6c331582ca2e256cdea01377af + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148194 + Tested-by: Jenkins + Tested-by: Caolán McNamara + Reviewed-by: Caolán McNamara + (cherry picked from commit 9eb083ab732512c3ab64007c3be1c54be97172f6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148231 + +2023-03-07 Miklos Vajna [ebc60f5ccab910d6974b5c386b2c0243f9eb030b] - bump product version to 7.5.1.1.0+ + 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: I9f036effd0524565b339f7373930d8fff069a135 + Change-Id: If162602f6a1cc2108c0de385652e93e23be920be + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148395 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli -2023-02-09 Christian Lohmaier [f811c325a88009ce9ca8a56798d4c63b46c5714d] +2023-03-07 Caolán McNamara [f8effc25fee223b267f736494a297866c61b60cd] - Branch libreoffice-7-5-1 + eFormat modified inside GetDateArea, but change not propogated to the caller - This is 'libreoffice-7-5-1' - the stable branch for the 7.5.1 release. - Only very safe changes, reviewed by three people are allowed. + regression from: - If you want to commit more complicated fix for the next 7.5.x release, - please use the 'libreoffice-7-5' branch. + commit 6e7e19d9c300dbdd279789b09f94781e946fad52 + Date: Wed Jul 15 12:10:32 2020 +0100 - If you want to build something cool, unstable, and risky, use master. + weld DateControl + + Change-Id: I74bc01383f04fd4e54a45058fbbc3bc082eef0e5 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148321 + Reviewed-by: Noel Grandin + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2023-03-07 Michael Weghorn [41570cf09b171a6ee1f04d39dd72399e2726d381] + + tdf#152073 tdf#153895 basicide: Set bg color for border win + + As described in the original commit to address tdf#152073 + ("Glitch rendering line numbers in Basic IDE editor (kf5 only)"), + the fact that the KDE Breeze style's frame border is partly + transparent was causing artifacts in the Basic IDE: + + commit 6f4b8b7cfe2907b7da46eec6951a0e09b836a6de + Author: Michael Weghorn + Date: Tue Jan 31 16:08:53 2023 +0100 + + tdf#152073 qt: Draw background when drawing frame + + For native drawing of a frame (border), use + the window background color as default color. + + As mentioned in commit f39f21d92ec83c3a5062f29dd26214fc83012c06 + ("tdf#138010 (IV) VclScrolledWindow: Use actual border width"), + the Qt/KDE Breeze style uses a frame width of 2, with the + actual 1 pixel border being surrounded by a 1 pixel + padding/margin. + + Transparent background did not ensure that the 1 pixel + padding/margin is repainted and could thus result + in artifacts from what was painted to that location + previously (s. the Basic IDE editor example from + tdf#152073). + + [...] + + However, there are cases when a transparent background + is actually wanted, like in the print dialog (tdf#153895). + + Therefore, revert the original commit mentioned above + and explicitly set a background color for the border windows + of the involved windows in the Basic IDE instead, which is + in line with the alternative already mentioned in the above commit + ("An alternative might be to explicitly draw the + background further up the call stack, [...]."), but enables + transparency in the qt5/qt6/kf5-specific drawing for + the frame again. + + Change-Id: Ifb4deb80c6ae245ec630a4fdc23f675e5587836c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148117 + Tested-by: Jenkins + Reviewed-by: Michael Weghorn + (cherry picked from commit 699a1745f30cc0e89d59c6fc6ea742da5ff0ccea) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148098 + Reviewed-by: Adolfo Jayme Barrientos + +2023-03-07 Adolfo Jayme Barrientos [88e517f361a57c1f78eab0678ba1a2ae3f64ac9b] + + tdf#150045 A few more supplemental labels + + Change-Id: Ifc0afe5c04145378b5fe32b12791c774d96f8a9c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146903 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + (cherry picked from commit 41c3c2dfaeee7fbd410fd76d4254ae9696a173a2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148324 + Reviewed-by: Vernon, Stuart Foote + +2023-03-07 Caolán McNamara [596c7331e07038e229bad9e817f835fb9107f11d] + + tdf#153699 workaround cairo 1.17.8 problem + + Change-Id: I5290dd93d06a6812acf97fe0eeec581a233a898c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148317 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + +2023-03-07 Caolán McNamara [8fd61209c9aede44b30f74d8d630236f79504a5e] + + 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. + + 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/+/148074 + Reviewed-by: Eike Rathke + +2023-03-07 Caolán McNamara [5e9df4ffa753ac038bc6b94c48f393f81545a322] + + 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) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145811 + Reviewed-by: Eike Rathke + +2023-03-07 Caolán McNamara [58eafa815edf054492eaed247d01407b9defc781] + + ofz#56734 Abrt + + Change-Id: I0426c0d3a56789b2f2d24fc87ed9e88653700ca5 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148319 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + +2023-03-07 Caolán McNamara [d9b722ed4c38f8a510d3fe3a2645d0e445d22b73] + + drop TooLargeScaleForMapMode import check + + revert this part of: + + commit 32dc2d14287a4210589c33dbd62c6e36e095aa6e + Author: Caolán McNamara + Date: Fri Mar 18 19:50:12 2022 +0000 + + ofz#45583 detect some invalid scale cases at import time + + Change-Id: Ib80eda465d5b9d975a5b30974241d9f824c6741d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148100 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-03-07 Mike Kaganski [6da66f1b6e86ac9b1305bdbb120077a2079600c6] + + tdf#153948: LanguageTool: cache the prepared request + + So that when the same text is re-checked using different + settings (e.g., language), the cached result is not used. + + Change-Id: Ic4ed63c6835f9d3935f1b9541c80822bb52313c2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148200 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148298 + +2023-03-07 Samuel Mehrbrodt [e82777b1cd6b91277942b35590c18bb073c01bf5] + + 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/+/148228 + Reviewed-by: Caolán McNamara + +2023-03-06 László Németh [415b6b7e692122af679ab74979cbe475e3b19679] + + 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 + +2023-03-06 Mike Kaganski [21db28345999ee840542532224d67f1f2527f16e] + + tdf#152459: fallback to language-only when looking for grammar checker + + LanguageTool registers itself for languages like "en-US", "es-AR", "de-DE"; + but also for generic "en", "es", "de". When the requested language, like + "fr-CH" or "es-PH", is not found in the registered grammar checkers, the + fallback strings will be attempted. + + Change-Id: Id460db8d378f246ea98191d22bdb3537fd1aee1c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148201 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + (cherry picked from commit e7ae5b4793fb74309d5d1f32c3c696d07071d676) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148232 + Reviewed-by: Xisco Fauli + +2023-03-06 Kohei Yoshida [b032101f1e253e83dbed58632882853021d11647] + + tdf#148143: Reset the position hint when flat_segment_tree gets copied + + std::optional stores the wrapped object as part of its memory footprint, + and when it gets copied, it copy-constructs the wrapped object too. We + need to be aware of this when using std::optional inside std::vector + which may reallocate its internal buffer and copy the stored elements. + + Change-Id: Ib8fab1295388ae2ee9ef3d044943ac3c2bc8e529 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148152 + Tested-by: Jenkins + Reviewed-by: Kohei Yoshida + (cherry picked from commit c4187189060a104cf36d8a8c9b2958b8c28cde0b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148233 + +2023-03-06 Rizal Muttaqin [20b7903f823416c98152c9e21023b3b9124438bc] + + tdf#153465 Sukapura Dark: Fix Impress Presenter Console & Floating Insertion + + Change-Id: Ia284cdf9a01f754f23ff23b6c1bdedd0e1316282 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148225 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + +2023-03-06 Caolán McNamara [24fcb3d16d28ac78d5ce80e46c2cc8f4300242ca] + + don't crash with --disable-pdfium + + Change-Id: I8a02e9c5367a5fc73674963d31c48a6114e92299 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148177 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-03-06 Tomaž Vajngerl [7742a400da3e9c8b939542f3b949681596e5547f] + + remove icons causing troubles from sukapura_dark{_svg} + + These cause trouble when building - seems they were added by mistake + as the icons don't match other spacing icons. + + Change-Id: I93538eed3fc913a5da0566d77bf2e6bc44031744 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148290 + Tested-by: Tomaž Vajngerl + Reviewed-by: Tomaž Vajngerl + (cherry picked from commit 928db79c823a55c1d2b2b7d7a64d5fbc8055a2af) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148226 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-03-05 Rizal Muttaqin [dbbd2306146f4798af11b4a818ab9345f7f477c3] + + tdf#153465 Add Sukapura's dark variant + + Change-Id: I9f97c3990064db88fccf9269deb62414bfb6c3b8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148011 + Tested-by: Rizal Muttaqin + Reviewed-by: Rizal Muttaqin + (cherry picked from commit 6271aff7dcd530a7e8c5452200267960e27a7513) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148223 + +2023-03-05 Rizal Muttaqin [cf205699154258424b07e6ab6be8492c10da4044] + + tdf#153465 Simplify Sukapura's light variant to make easier for + + generating dark variant + + Change-Id: I7d4d961b970be3ccdc261505b5ad4ab7ae982a6b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148017 + Tested-by: Rizal Muttaqin + Reviewed-by: Rizal Muttaqin + (cherry picked from commit e7780530b92ed898f32fb8bca9a0c150096592d6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148224 + Tested-by: Jenkins + +2023-03-04 Eike Rathke [c8a033f0bbcc61feef3b42ea6a8833bcbc6ac552] + + 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/+/148217 + Reviewed-by: Caolán McNamara + +2023-03-04 Michael Stahl [198b138bc14bff7d334ecf5b1d1d5b5c8bba82fa] + + tdf#153925 xmloff,sw: decorative flag on frame styles + + * sw API SwXStyle property "Decorative" + * UI checkbox "Decorative" - split up the GtkFrame to always show it + * ODF import/export as loext:decorative on style:graphic-properties + * test for ODF filters + + Change-Id: If124cb50ee7776b5807720e65f41a07e7b9f4cf9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148143 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 2721520ca37654056c3d509657c50ee42e3dcae4) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148110 + Reviewed-by: Caolán McNamara + +2023-03-03 Christian Lohmaier [d6b4a259c5e1cc14df4c90d1409080f7134c83fb] + + update credits + + Change-Id: I6d5a9f661041361e7c516887a298c84ac71e14ff + (cherry picked from commit 7545f47eb93373324eed35a7253e55448bbbdfbd) + +2023-03-03 László Németh [2a7ec5f17e01041418262dcb0229fe537fa8139f] + + 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 + +2023-03-03 Mike Kaganski [2456bcee922851a7538d2a34e3bad9c4e05239b6] + + tdf#153923: close 'dd' tag properly + + Change-Id: I4ae3b23c616fc2ea40a5fdf8640bf5db0bb371ae + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148122 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 74cd34d54d16cb68fbaf1e8cb9844b1048491965) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148097 + Reviewed-by: Michael Stahl + +2023-03-02 Samuel Mehrbrodt [227cafdcab3843aef52e13b4b3e37ccfba36dcb9] + + Fix viewsettings count + + Was missed in d0cacf09a1105d89bf3df84b18623d790e3aeb82 + + Change-Id: I43c1c9b595a8fc8e2982027093695556e182074e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148081 + Tested-by: Jenkins + Reviewed-by: Samuel Mehrbrodt + (cherry picked from commit 31a503a0a10aea0489ac2ebe5abd745f37e6402b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147993 + Reviewed-by: Michael Stahl + +2023-03-02 Caolán McNamara [cb1eed1cbb2b33d5d8244bfcc075de4cd61a01f1] + + Related: tdf#153784 margin_bottom is a cnp nonsense, should be margin_end + + 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 3b279889daa9c37fe91663d16dd2d8c5938cc0d5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147991 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-03-02 Michael Weghorn [7eacbe2c6d1b304aadc80159296e542c7bb91cf8] + + tdf#142942 Drop unused checkbox col in sw AutoCorrect opts dialog + + While the extra checkbox column enabled by + + weld::TreeView::enable_toggle_buttons(weld::ColumnToggleType::Check) + + is used for the non-Writer case in the "Options" and + "Localized Options" tabs in the AutoCorrect options + dialog, they are not used in the case of Writer, + where there are two columns of checkboxes handled + separately ("[M]: Replace while modifying existing text" + and "[T]: AutoCorrect while typing"). + + Before + + commit 714b2b617e9baef02510c482c6fd028e6e72acd8 + Date: Tue Jun 30 15:03:31 2020 +0100 + + tdf#134270 rearrange so we know the final treeview width + + , setting column widths manually by calling + `weld::TreeView::set_column_fixed_widths` would disable + the extra space for the (unused) checkboxes (by setting + `m_bDisableCheckBoxAutoWidth`). + + Since that commit, it no longer does, causing the + separately handled real checkbox in the first visible + column to be unnecessarily positioned further to the right + in this dialog for Writer for the non-gtk case. + + Fix this by dropping the use of the unused + checkbox column for the Writer case, i.e. the `bShowSWOptions` + case in `OfaQuoteTabPage::OfaQuoteTabPage` and + in `OfaSwAutoFmtOptionsPage::OfaSwAutoFmtOptionsPage`. + The handling for the non-Writer modules (i.e. `!bShowSWOptions` + case in `OfaQuoteTabPage::OfaQuoteTabPage` and + `OfaAutocorrOptionsPage`) remains unchanged. + + Change-Id: If7bd216fc4efda506817cffb55230722bb2ac89b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147454 + Tested-by: Jenkins + Reviewed-by: Michael Weghorn + (cherry picked from commit abdb918f146ceb6ea7d310968a96cdeb6f801a8f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147437 + Reviewed-by: Caolán McNamara + +2023-03-02 Michael Weghorn [feb965b13dd3d5c34b0aa62280b65f9d0bf78c23] + + tdf#153869 qt: Unminimize window when requested + + Remove the `Qt::WindowMinimized` state from the widget's + window states if the `SalFrameToTop::RestoreWhenMin` + flag is set to request restoring the minimized window. + + Change-Id: I0cb67f28c1e9c3f48a9a234702a4aaa7e3ffec8d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148036 + Tested-by: Jenkins + Reviewed-by: Michael Weghorn + (cherry picked from commit 00a602ca8e75ab5cf050e092289ef7165b343165) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147988 + Reviewed-by: Caolán McNamara + +2023-03-02 Michael Stahl [cc1c04346861afba69215115c026174f758d7272] + + tdf#143311 writerfilter: import decorative flag on as-char flys too + + Change-Id: I9704d35a8286b92169dffd8de7e57e286884f607 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148016 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit d4355f14d1483a57fa08579b143a762f0aad4631) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148019 + Reviewed-by: Caolán McNamara + +2023-03-02 Michael Stahl [e420f47ec10bf6be73972da2c1afbe1c0e02cb9e] + + tdf#153874 writerfilter: fix anchoring of decorative shapes + + Turns out as-char flys can be decorative too. + + The confusing GraphicImport takes a GraphicImportType by value but + everything else is a reference to a DomainMapper_Impl member. + + The latter appears to work better so handle GraphicImportType the same + way and remove the function parameter. + + (regression from commit 31084ebb59093be7dfe5ab53a20fdb3bcfde34b6) + + Change-Id: I18c1d47d39751e8ddcaa52498077d89c43a934e9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147998 + Tested-by: Michael Stahl + Reviewed-by: Michael Stahl + (cherry picked from commit 043c349f144b615836091707147e57616a1261e7) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148012 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2023-03-02 Michael Stahl [6f077add4f8c9ca909374dcd45c21d87eb3c0938] + + tdf#114973 sw: don't allow every body SwTextFrame to be hidden + + Check this in SwTextFrame::IsHiddenNow() for the first one in the body. + + Also fix a bad entry in SwScriptInfo::m_HiddenChg that is then possible + because it wasn't called on empty frames before. + + Change-Id: If57f8d1a30229cfbf97225b386365ae384c5083c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147347 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit b1814b7cc851c4346f6cfa81c5be74c46f42e90f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147440 + Reviewed-by: Caolán McNamara + +2023-03-02 Stephan Bergmann [c0ff30d6feba77105662f7ab91d65254e082f15b] + + Re-enable Skia in Flatpak builds + + ...as requested at + "Can Skia be + reenabled in the Flatpak build?" and implemented on Flathub for now with + + "Re-enable Skia". (This partially reverts + 9d88f11de57bcbeb29fa6f1299d5d0867c1a75a4 "Flatpak: Upgrade to 21.08 runtime, + disable Skia".) + + Change-Id: I50039d431fd3e6ba4c0d859d71e42e744433806b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148054 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit 6a4015b636f99adb58ad91e0caa3add0ef73a936) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147990 + Reviewed-by: Caolán McNamara + +2023-03-02 Eike Rathke [862fab8244319bf3f5d481f73ed873aaff933878] + + Related: tdf#153842 {dsb-DE} group separator is '.' dot instead of NBSP + + See also + https://icu4c-demos.unicode.org/icu-bin/locexp?d_=en&_=dsb_DE + + Change-Id: I1f6797829812893aaab711ab670a722673a86a42 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148025 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 86942a85b32efeb0b7fee25f00991e69f4446ddc) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147980 + Reviewed-by: Caolán McNamara + +2023-03-01 Taichi Haradaguchi <20001722@ymail.ne.jp> [efff34d7bdccf210a5e878bd9bc4d35ec72b71ab] + + postgresql: upgrade to release 13.10 + + Fixes CVE-2022-41862 + + Reference: https://www.postgresql.org/support/security/CVE-2022-41862/ + + Change-Id: I6075838972fec1c091f3150b19c5da4dc80ad6d3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147834 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-03-01 Taichi Haradaguchi <20001722@ymail.ne.jp> [993752d043c7ed7aa7ec120094bc91c5652bed37] + + 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/+/147833 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-03-01 Mike Kaganski [5e6597d4a0b5035df080830733697c46343f3fbb] + + tdf#114773: only add space between entry number and text + + Modify the hack from commit ce95e39f8e952159844e9dc04a1df402bb103634 + (tdf#44282 fix missing space for numbered lists in TOC, 2016-08-16), + which added the space after entry numbers unconditionally. + + There are other possibilities, like custom separators between the entry + number and text (e.g., [E#][T][E][T][#]); or the entry number (maybe + with limited depth) used with page number (like in [E#][E][T][E#]-[#]). + Generally, when entry number is not immediately followed by entry text, + the space is not needed. + + Additionally, the space is not needed when the number text already ends + with a space character. + + Change-Id: Ifa6c474574bfb74466ab721eca49f421a3750942 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147997 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + (cherry picked from commit b7a5ac03e03066d36e05da786669a9243ad0116f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147985 + Reviewed-by: Michael Stahl + +2023-03-01 Eike Rathke [816b0e97f32df82a1ffc23950d5bf21760a4cd39] + + Resolves: tdf#153767 Try harder to import OOXML bool shared formula result + + ... by setting the result value or if necessary recalculating even if + AutoCalc is turned off for the document. Similar for other implicitly + recalculating formula types. + Also set a boolean number format if none. + + Change-Id: I2f75735707180eccf4b2c525738ac0b763901230 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147425 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 05ac57f85eb622b798719db03bbdd07b79e1703a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147444 + Reviewed-by: Xisco Fauli + +2023-03-01 Caolán McNamara [c025220d9e22f90c416b7eac186c531ba5b3f40c] + + upgrade to libjpeg-turbo 2.1.5 + + Change-Id: Ia6355beaf19765e6255f9388d60e2179206ddc5b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147910 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-03-01 Justin Luth [729ebba19d9a3d7a1de24654366e0517e30a999e] + + tdf#146168 tdf#150613 list attributes: limit hack to RTF + + This fixes an ODT regression from LO 7.2's + commit 0a32371cc2f93fad7954e0fe9c48976aae6c5b9f. + + The hack applies the last character formatting in the paragraph + to the numbering characters. This was a hack that existed for + DOC and DOCX and RTF in various troublesome modes for quite a while. + However, recently since 6.4ish era there have been some + improvements for DOC and DOCX, so these have been excluded and + now only RTF remains. + + Most of the time an RTF file also looks like a DOC + (from a compat settings point of view), + so even RTF files usually don't have this clause apply. + In fact, I looked for the RTF files that this hack still applies to, + but couldn't find a single example. Really? Did something change? + + I also looked for examples of files I will be excluding (!isOnlyRTF) + and only found tdf135973.odt and tdf146955.odt. Neither one has + character formatting on their numbered lists, so they can't + be used effectively for a unit test. + + It is somewhat pointless to make a test. I don't even think we + can round-trip an RTF that has these characteristics. + Likely the best thing is to just drop the hack altogether, + especially since it would pass the unit tests now. + (I'm sure it was failing before.) + + If we can't round-trip it, is there any point in having this + non-import hack in place? + + Change-Id: I2f95c10e1d0a9dc53b01027e9c97e5ded29c6750 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147939 + Tested-by: Jenkins + Reviewed-by: Justin Luth + (cherry picked from commit 27df5ef405826875340645b9b979bd5c2c0b92cc) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147978 + +2023-03-01 Stephan Bergmann [99cec1cb708d0094150647fa9939e0589641d3c0] + + Sync flatpak-manifest.in with Flathub + + ...including + + "Update gvfs to the current master" + + Change-Id: I23cbf8aec7771eda59f66733bcde6cdbed3d0ddd + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147994 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit cc460f5b8f67470d1c3b2fc069466191a0773d2a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147979 + Reviewed-by: Xisco Fauli + +2023-02-28 Kohei Yoshida [33b6c065a1629afd36c9ae0fe5daa18b972620e5] + + tdf#153669: Track formulas that stopped listening ... + + ... 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: 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 + +2023-02-28 Rizal Muttaqin [567bd3c1dc9a568ffa70cf488600a1e0bbd1b411] + + tdf#153848 Update Sukapura icons in Start Center to match new branding + + Change-Id: I6be2739b551f1dd26265a26d4476658e5a85b3cd + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147976 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + +2023-02-28 Olivier Hallot [fbb70f40a0cad61ad5e6c763d32facac78c81a56] + + Update git submodules + + * Update helpcontent2 from branch 'libreoffice-7-5' + to 4faac784e3d903aae9169cad23bb064037205f1f + - tdf#149056 Bad Help link for Address book wizard + + Change-Id: I3093fb88733b444b9a074d43d9971ad92ce384e2 + Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147063 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-28 Rizal Muttaqin [f498e61cc9d68360e3d2f5e20976cd6222dea863] + + Sukapura: Add initial preparation for dark mode support + + Change-Id: Ida7c68864c0ecb3bbd00cb6b87e4657b29447ec0 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147870 + Tested-by: Rizal Muttaqin + Reviewed-by: Rizal Muttaqin + (cherry picked from commit 173ba4dedd16785506a635949fe6aef3424a3b64) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147913 + Tested-by: Jenkins + +2023-02-27 Eike Rathke [69f04e96ff22f7cd18453a784ed5b3f23b0d7b11] + + Always push a result, even if it's only an error + + PERCENTILE() and QUARTILE() if an error was passed as argument (or + an error encountered during obtaining arguments) omitted to push + an error result, only setting the error. + + Fallout from + + commit f336f63da900d76c2bf6e5690f1c8a7bd15a0aa2 + CommitDate: Thu Mar 3 16:28:59 2016 +0000 + + tdf#94635 Add FORECAST.ETS functions to Calc + + Change-Id: I23e276fb0ce735cfd6383cc963446499dcf819f4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147922 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 64914560e279c71ff1233f4bab851e2a292797e6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147899 + Reviewed-by: Caolán McNamara + +2023-02-27 László Németh [bc48f2656c9a7bc1f41541bff66ec2c4496466a4] + + 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/+/147605 + Tested-by: Jenkins + +2023-02-27 Andras Timar [319fa4ff50e8379b0683d996eb2c90837f6a32eb] + + OpenSSL 3 is covered by Apache License v2 + + Change-Id: I20b30ce01b08787f560cd00cd87db9cec1699240 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147832 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + +2023-02-27 Caolán McNamara [02e03c5312b41a5714c56fdaddf3396ea404dc73] + + RES_LR_SPACE should fall through to default not RES_BACKGROUND + + due to + + 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/+/147689 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-27 Caolán McNamara [af07387ade5218a5f584d122e022c2575db852ed] + + cid#1521509 Logically dead code + + and + + cid#1521507 Logically dead code + + Change-Id: I1d2c9ee4a4099fadb5da7a6850b4124488e2ebe8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147726 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-27 خالد حسني [4b53ed912331e457722cf51cf3fe034d784de172] + + Revert "Mark ssXX and cvXX off by default in font features dialog" + + This reverts commit 3f9a8a3b7656470cfcf04c18a46a7b7bbeca8950. + + Reason for revert: Needs more work, currently causes all ssXX and cvXX to be added to font string when the dialog is used. + + Change-Id: I07eff710a2813e60fa4de3c23eb0a3c31d40e41d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147811 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-26 Xisco Fauli [aca7aba0dfd232650ec70ed22a2d18ef74b8851a] + + tdf#153802: make it possible to change the UI with read-only docs + + Change-Id: I392ae68ef086a8c857e0d9d9e6117e27a85c9ba9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147655 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit c2de9708f1041d230b4688151116ff9c3c9e5184) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147727 + Reviewed-by: Caolán McNamara + +2023-02-26 Rizal Muttaqin [39d67830fe9891dbb6ef965f0cad34f24dbfd994] + + tdf#152595 Colibre: Update icons in Start Center to match new branding + + Change-Id: I2991bd9b68e2148b8852b95544f3e187148540d1 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147734 + Tested-by: Jenkins + Reviewed-by: Rizal Muttaqin + (cherry picked from commit beb1479b9b2957d63d1bdadc3cc6839a92bf0144) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147728 + +2023-02-25 Gabor Kelemen [90b5817217bea5d789ca727a881e2ad458837a55] + + tdf#63965 Hide one extra Rename Sheet command from Customize dialog + + from sc/source/ui/view/tabvwshf.cxx: + // FID_TAB_MENU_RENAME - "rename" in menu + // FID_TAB_RENAME - "name"-property for basic + FID_TAB_RENAME is not meant for the menu - it also just showed + the sheet name when added as .uno:Name + + Change-Id: I2ed7b51bece688e50260e639012b9b1b68cf5df4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147222 + Tested-by: Jenkins + Reviewed-by: Heiko Tietze + (cherry picked from commit 5b7e54ce8fb57203068f1c2e610758523687ef9a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147438 + Reviewed-by: Gabor Kelemen + +2023-02-24 Michael Weghorn [091f56e50748e3fd807b9bae88652b68834aac3a] + + tdf#144302 tdf#153333 qt: Load cursor from icon theme + + Load cursor from the icon theme similar to how the + gtk VCL plugins do it. + + This not only allows using the themed cursor icons, + but also helps avoid QTBUG-95434 [1] + ("Bitmap cursors not supported on QtWayland") + that would result in no cursor being shown on Wayland at all + when our custom bitmap cursors are used. + + [1] https://bugreports.qt.io/browse/QTBUG-95434 + + Change-Id: Id65db4e7d71b8cee8a514c06c21c59dcc2afa889 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147379 + Tested-by: Jenkins + Reviewed-by: Michael Weghorn + (cherry picked from commit db6ed07f4c1a086e4962ff16d3ede9aea9e60952) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147357 + Reviewed-by: Michael Stahl + +2023-02-24 Khaled Hosny [6327fdc149edab1eedabe5b0d4dde6bcf08a113e] + + tdf#151968: Fix vertical position of RTL spelling wavy line + + The code was guessing orientation based on the start and end points and + mistakenly considered Arabic text to be 180° rotated which ended up + raising the wavy line above baseline and covering the RTL text. + + Use font orientation instead of guessing it. Caching wavy line seems + broken with RTL text as well (it was skipped for RTL before because of + the wrong guessed orientation, so probably never worked), so we skip it + explicitly as well for now. + + Change-Id: I4b0f5c4d6be2c6e3d33ea79b917b14927374acfa + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147488 + Tested-by: Jenkins + Reviewed-by: خالد حسني + (cherry picked from commit 5899b27e71430e490c2d3a6b87ae52c10f383ba7) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147441 + Reviewed-by: Michael Stahl + +2023-02-24 Caolán McNamara [09d6e6c81633eef6eaecf011dc766cdc68e52fd7] + + crashtesting: null-deref seen on loading forum-mso-en4-399427.xlsx + + and others. A problem since: + + commit 8c9a6abf30e9ff1ebd5647f7c271e0d64643860a + Date: Thu Feb 2 20:16:04 2023 +0100 + + tdf#138601 XLSX import: fix priority of conditional formatting rules + + Change-Id: I663b193c5bd7c5c92d3c423e70b0f7a24e3e5d76 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147552 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-23 Caolán McNamara [0f305c976c4a619f53154d13be134d3bbe6f3302] + + crashtesting: crash on import of forum-mso-en4-702161.xlsx + + vConditions is empty at this point for row 5 + + git show -w + + Change-Id: I05d984d73d4dd5a0ece894f854263528c9c00be9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147303 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 35e3c499cb64ed647fc8cc0a42a2d83948abcbdf) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147287 + Reviewed-by: Eike Rathke + +2023-02-23 Noel Grandin [34b50f81ac899d8430682e6087b27de38b3333e0] + + blind fix for crashes in RegressionCurveCalculator + + if mPeriod is < 0, then we could crash in calculateValuesCentral + + Change-Id: I554b46ed7bf5b5b0a32fcf69829aa1c2c75833f8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147508 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 37751d878b87765a4d2cfb50d0a39280c585ece1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147453 + +2023-02-23 Samuel Mehrbrodt [7530ac2ee376d9778b974dd4065df18d4361e886] + + 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/+/147445 + Reviewed-by: Xisco Fauli + +2023-02-23 Samuel Mehrbrodt [505bb358c0cda60577ceb47daa0347b219b6c147] + + tdf#151745 Fix input line redraw issue after resizing calc window + + Change-Id: Ia8a7e1ab6b68f10f19733d8ce7f36d9ea02d4785 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147352 + Tested-by: Jenkins + Reviewed-by: Samuel Mehrbrodt + (cherry picked from commit 228caa2bafe214a0b502db4ac288dd70169ac2b8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147447 + Reviewed-by: Xisco Fauli + +2023-02-23 Justin Luth [bf9e8ce3a810e2989fb0b486b3398d523f69da97] + + tdf#153526 writerfilter: catch exception from no NumberingRules + + This fixes a LO 7.5 regression (well, exposed some other flaws) from + commit cf02b94bc513ee1b742b4c5d7174632b568e8b72. + + I first tried testing if hasPropertyByName, + but that returns true(????), even though this is an editeng component. + + Well, ignoring the fundamental issues at play here + (and there are many - like having a comment + take over m_xPreviousParagraph) + the issue is easily solved with a try/catch + instead of a redundant if clause. + + Change-Id: I4f27fce3e2984235df19dc3ed4be558891b28a90 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147486 + Tested-by: Jenkins + Reviewed-by: Justin Luth + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147494 + Reviewed-by: Miklos Vajna + +2023-02-22 Christian Lohmaier [c6db0c2bc445a32097cdf48c6e391e1d0d43c917] + + update credits + + Change-Id: Ic974dbd48cb9b1b2e417430325e4611a66d1aa7c + (cherry picked from commit 1e12a4cc980ebabadde592d3159b93cc12e733a7) + +2023-02-22 Christian Lohmaier [6e0ab6f8a1827a1efd7e0732fc8f465b32538c85] + + Update git submodules + + * Update translations from branch 'libreoffice-7-5' + to a7ff4b698706b05ec9b1caef9afc99ad5777eed3 + - update translations for 7.5.1 rc2 + + and force-fix errors using pocheck + + Change-Id: I275b498852041a5f928c0df95c2ad50fc2256013 + (cherry picked from commit 70a23c0afa2982325334d4c9975a501e4b9a13ce) + +2023-02-22 Caolán McNamara [0ed7b3fe06168e66b8b8c2fca0307092bb69b3c7] + + Resolves: tdf#148047 don't move focus if dropdown is active + + a bit of a corner case, for the popover gtk sets the focus in two + steps, one to null, then to the final widget, not in just one step. + On seeing the interim null case we assume that focus was lost and + set it to the parent, which causes the popover to be dismissed + while it's still appearing. Workaround this by ignoring the grab + to parent while the popover is active. + + Change-Id: I1bdef51731bf714de2df93fbe6694e9ed3e366d3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147368 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-22 Xisco Fauli [59cfe55463526332e0ae91882cd8ccd187aa91e2] + + sw: check GetWrtShellPtr() + + Change-Id: I8d99e9108f6163eafb7576603826f8d02a0ff416 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147336 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 6cb076f6b08668cf2a0490fe17ce34e74969702a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147362 + Reviewed-by: Xisco Fauli + +2023-02-22 Mike Kaganski [2074fd1b6c97e0b9b605297ad87e88647e3d05f9] + + tdf#153752: SbxObject::Execute: extra characters in Option Compatible mode + + Change-Id: Ib3e4bd9eb9a249123a686f2434ded7b529fb050f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147345 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147389 + +2023-02-22 Mike Kaganski [ab07e43f38455f3ba4f97275e72dd4eba1027040] + + Simplify a bit + + Change-Id: Ib3507d5083116fc621def9c8168c95267a914bed + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146192 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147388 + +2023-02-22 Caolán McNamara [73d02cde39d964aae9beebfc4dca5891dc5814f0] + + tdf#142783 consider the Calendar Edit and DropDown as one compound control + + for the purpose of notification of loss of focus from the control + + Change-Id: I9191b413978549c6f8e1775dc96a696059150e4e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147367 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-21 Michael Stahl [e18506a032515eb05bb02de669d8e492ec9f2e04] + + 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/+/147359 + Reviewed-by: Caolán McNamara + +2023-02-21 Caolán McNamara [e7dd0fa490c671267a4419a6c2ef8a1367114209] + + tdf#132110 page ids might not be state ids + + Change-Id: I9f8946acbcf593e9adf6d31631b82cdafcd3f472 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147327 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit cdf7b51229f2353376fb4e9de309fb9ee5580b3a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147356 + Reviewed-by: Michael Stahl + +2023-02-21 Caolán McNamara [f02c2912e50df357125c93eaaadfc96f02a05db0] + + Resolves: tdf#153763 first/last buttons in tabbar not responding + + Change-Id: Id6e70eca7c2d523643d9e38e8c7402879464bf5a + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147291 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-20 Olivier Hallot [7d01a83fc166e171a1ab8b142eac76ece73ce565] + + Update git submodules + + * Update helpcontent2 from branch 'libreoffice-7-5' + to 7a321cf864aa31914f3fc31caf2e541091a125bb + - tdf#149286 Missing Help links for Customize toolbars + + Change-Id: I702b2ab1759decee9c283e2f2abb09b1a282ab52 + Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147065 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-20 Michael Weghorn [fd7cb42f7d17d03e4fac6d8c5f1d6c7c49a36fc6] + + tdf#153520 vcl: Align listbox invalidation with mouseover check + + Before + + commit 4cb11d8a6682fecd661b926a417ae7f26f76e7db + Date: Fri Oct 7 16:40:23 2022 +0100 + + Related: tdf#98067 do RollOver for Edit as well as SpinButton + + , the check whether the mouse is over a control + was only checking the control's child windows. + The above commit introduced a check for the control's + window as well in `ImplSmallBorderWindowView::DrawWindow`. + + When moving the mouse inside or outside a `ListBox` control, + the invalidation of the corresponding border window happened + when the mouse cursor would enter or leave the `ListBox`'s + `ImplWin` child (in `ImplWin::PreNotify`). + + The `ImplWin` only covers a part of the `ListBox` area. As + a consequence, when moving the mouse out of the `ImplWin` + area, the mouse would still be over the parent `ListBox` area, + so the `ControlState::ROLLOVER` state would still be set + in `ImplSmallBorderWindowView::DrawWindow` from the above + commit on. + + Since there was no additional invalidation when the mouse + moved out of the `ListBox` area, the `ROLLOVER` state would + remain set even when the mouse left the `ListBox` area as well. + + Move the invalidation from `ImplWin` to `ListBox` so + this gets processed when the mouse cursor actually enters or + leaves the `ListBox`, not just the `ImplWin` child. + + Also align the mouse over check in + `ImplWin::ImplDraw` with the one in + `ImplSmallBorderWindowView::DrawWindow` again. + (Take the parent into account there as well.) + + Change-Id: I8974e370819719489e3d9f091d96b3353888d26b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147018 + Tested-by: Jenkins + Reviewed-by: Rafael Lima + (cherry picked from commit d5ace6bf0f1e48ee02e5eb22ce0f9f8953517f60) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147285 + Reviewed-by: Michael Weghorn + Reviewed-by: Caolán McNamara + +2023-02-20 Michael Weghorn [700940765a7641f0d0535223470aa3a66d13a892] + + tdf#153614 qt: Set keyboard focus state when focused, too + + For example the Breeze theme only draws a light blue + focus rectangle for list boxes when the + `QStyle::State_KeyboardFocusChange` state is set in addition + to `QStyle::State_HasFocus`. + Therefore, set that state in addition to ensure that the focused + control actually gets a focus indicator when moving there + using the keyboard. + + Change-Id: Ib4b85f9140629e6b69c80b85e85913392a6c000f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147019 + Tested-by: Jenkins + Reviewed-by: Michael Weghorn + (cherry picked from commit b845ba1900387b8ea44a27a1f7d045ca0091adf2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147286 + Reviewed-by: Caolán McNamara + +2023-02-20 László Németh [8c62a74561649ee06a4949931ae85559fa6ded5d] + + tdf#132714 sw: fix crash at table row deletion associated to a chart + + Using the table toolbar, deletion of the row of a text table + resulted crashing in ActualizeSelection(), if the text table + is associated to a chart, and the deleted row was the first + data row of the chart. Fix this by emptying the outdated table + selection cache m_SelectedBoxes in GetCellRangeName(). + + Note: since commit eea37aa26932d06ed8e93d001862bf45175c4446 + "tdf#122995 Trigger Chart refresh directly in UpdateCharts for SW", + the crash occurred immediately, i.e. without double clicking on + the chart after the row deletion. + + Note: uitest needed to get the crash, not uiwriter. + + Change-Id: I78d126f245839ec1d8a8cc01257fe96d94ac0a21 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147224 + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit 5b9855acc7fa6d1e4a5f53ff0bc47e1dd4729827) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147250 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-20 Xisco Fauli [b905b793be520b9fdece8d12614566be82ce3c92] + + 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 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit a7fd1e067eb2af0ef329719c4c7dbb32cc5926b2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147246 + +2023-02-20 Caolán McNamara [ab74d794fedff8b9d67e4d3e8c4f9c502b5287a1] + + ofz: Use-of-uninitialized-value + + Change-Id: I033fab3ea016d3b57891a35602920b7de811ccb4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146784 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit d6b590feda1c61fd5ed14c0be66379b8e5de0c6a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146976 + Reviewed-by: Xisco Fauli + +2023-02-20 Mike Kaganski [bcd6333952d4d1fe2bbe1c08616f8210ee0d3f7e] + + tdf#153724: make sure to retrieve the variable value before checking the type + + Commit 5760c94b8847164f9a7a181f031c7c86643944af tried to avoid all cases + which could set an error in SbiRuntime::PushForEach. To do that, it checked + the type of xObjVar before trying to get an object from it, which otherwise + could set an error. + + But the type of the contained value can be not known until it is retrieved + (which can happen inside SbxValue::Get in a call to SbxValue::Broadcast with + SfxHintId::BasicDataWanted). This happens e.g. when the container passed to + 'for each' is a call to some special function, like VBA's 'Selection'. Then + SbxValue::GetFullType would return SbxEMPTY prior to SbxValue::Get. + + Let's make sure to call SbxValue::Get first (asking for a Variant, to avoid + errors on type mismatch), and only then, check the actual result data type. + + Change-Id: Iaa697f38285505e50504ae09f9307fbd29e09a53 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147273 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147297 + Reviewed-by: Xisco Fauli + +2023-02-18 Khaled Hosny [a36b806c0c4649f7d2a1dd35d2ebea5b2102077e] + + tdf#147739: Medium is not a synonym of normal + + For some reason, medium was thought to be a synonym of normal, but that + is not the case. Seems to be from: + + commit b05701988492b051b3bb07bb46ae0397e23f032f + Author: th + Date: Fri Mar 9 14:44:26 2001 +0000 + + #83090# - Extensions for localized sytle names + #77189# - FontAlias should now also work + Extensions for Chinese fontsize numbers + + Change-Id: Ic5e463b6e77c0fa88701108597c99c9fa0c6bf4e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147258 + Tested-by: Jenkins + Reviewed-by: خالد حسني + (cherry picked from commit 0c9448bb31a32a3bf4004d45c4b1305debf1b5e2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147249 + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-17 Eike Rathke [cf43a5ca4c00648a29bc70ef4d3a8039466f3a8f] + + 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/+/147244 + Reviewed-by: Caolán McNamara + +2023-02-17 Xisco Fauli [8afc7788b83152528ff2a72b16ae829bde9ace54] + + sc: fix divide by zero in ScGridWindow::DrawPagePreview + + 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/+/147234 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2023-02-17 Xisco Fauli [a7f4de4573082e9455542a961ab610cd09f01b34] + + 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/+/147201 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2023-02-17 Caolán McNamara [07858f9fb48776ca4d5e380490d008640185db47] + + Resolves: tdf#151395 need to track tiff offset from start of stream + + when importing them from EPS + + Change-Id: Ia3ba2aa188f8dcee0ede6d43311c5dcdccb1eb25 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147124 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-17 Caolán McNamara [bc4080c7fdb81eff5cc71d88ba1d7c5714047490] + + crashreporting: divide by zero, aPrefSize.Width() must have been 0 here + + Change-Id: I5ee2c1f4386c95c12fb821a3514cb732b220bb86 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147125 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-02-17 Eike Rathke [dfffc53dc7fbf9ddfd3bc3b871a7cbc5a135dabb] + + Obtain actual 0-parameter count for OR(), AND() and 1-parameter functions + + 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. + + 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/+/147128 + Reviewed-by: Caolán McNamara + +2023-02-16 Xisco Fauli [3f1da0d66dc2379e822f96c75a68674f50ebb0af] + + check GetFEShell() + + 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/+/147114 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2023-02-16 Miklos Vajna [4b46aa3a20205eed7500545c79a7e8b92c488583] + + tdf#147258 DOCX import: fix bad char format w/ inline and data binding + + The bugdoc had an inline SDT in placeholder mode, where the placeholder + had a char style to define a red text color. This red color is not in + Word, but it was in Writer. + + This went wrong with commit de90c192cb8f1f03a4028493d8bfe9a127a76b2a (sw + content controls, plain text: enable DOCX filter with data binding, + 2022-09-19), because previously we didn't map to Writer content + controls for plain text with data binding. + + Fix the problem by resetting the char style back to default when the + value of the content control comes from data binding. + + Interestingly office.com renders the document the way Writer did + previously, but let's try to match what desktop Word does, that's + probably the reference for DOCX files. + + Change-Id: I7eccdb843d5ab63ccf573644c61832e2ef7dae14 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147088 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit 1c45e1971cdd88f54a3cfb89622fdfa6fa8fcf31) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147073 + Reviewed-by: Xisco Fauli + +2023-02-16 Tünde Tóth [134df0c64da6392648b8d4f7020d95e337307e67] + + 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 + +2023-02-16 Caolán McNamara [de7a636cb5a5527a7e9ab506c3a7829607cd6f11] + + tdf#153633 color description in chart colors options always black + + even in dark mode. There are some other visual glitches here, just + erase the rendercontext before drawing to it. + + Change-Id: I487375614c654124e116c3e9f28d78bf7f87da4e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147072 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-02-15 Martin Srebotnjak [210309068999bed735cc6138f316c3190494835d] + + Update git submodules + + * Update translations from branch 'libreoffice-7-5' + to d118d383063e1116d8c82fe222047e5237a1160c + - Updated Slovenian translation + + Change-Id: I3b753a56606e5b041f3afc0d5f9f69ed1c2ba728 + +2023-02-15 Miklos Vajna [3820e23c9f1547fe8c1dc9ece1686a405d101e78] + + sw: fix crash in SwView::AttrChangedNotify() + + Crashreport signature: + + program/../program/libswlo.so + SwView::AttrChangedNotify(LinkParamNone*) + sw/source/uibase/uiview/view.cxx:507 + program/../program/libswlo.so + SwWrtShell::DrawSelChanged() + sw/source/uibase/wrtsh/wrtsh3.cxx:261 + program/../program/libswlo.so + SwDrawView::MarkListHasChanged() + sw/source/core/draw/dview.cxx:767 + program/libmergedlo.so + SdrMarkView::MarkObj(SdrObject*, SdrPageView*, bool, bool, std::vector >&&) + svx/source/svdraw/svdmrkv.cxx:2196 + program/../program/libswlo.so + SwDrawContact::DisconnectFromLayout(bool) + /opt/rh/devtoolset-10/root/usr/include/c++/10/bits/stl_vector.h:336 + + This seems to happen when the SwDrawContent delete is in progress, so + we no longer have the shells at hand that are usually present. + + Change-Id: Iba0601654c946b85e7c2de33fe76d99b26a20eae + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147052 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit dab3de66e057f8d6794c427fb38cb2e333dfc93f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147059 + Reviewed-by: Xisco Fauli + +2023-02-15 Tibor Nagy [90f4ea09cbe34e26e473ed2cf1c3457cf0f41e5e] + + tdf#138601 XLSX import: fix priority of conditional formatting rules + + Multiple conditional formattings can intersect or have the same + range of cell with different rules. Without sorting the rules + by their priority, the cells got bad formatting, e.g. different + colors than what was set in MSO. + + Change-Id: I619359877f1a3e55fc8f895d5ba6f0f4f30e07f2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146513 + Tested-by: Jenkins + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit 8c9a6abf30e9ff1ebd5647f7c271e0d64643860a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147057 + Reviewed-by: Xisco Fauli + +2023-02-15 Noel Grandin [ba52bd3c43ab786224f4bf24be1a140a7c3bb536] + + tdf#153172 Options > Charts > Default Colors no longer persistent + + regression from + commit b95142c11e80c58b70dff68bfd7f3792657b9ee2 + Author: Noel Grandin + Date: Mon Jun 20 19:17:00 2022 +0200 + tdf#58134 Reset Button in Options Dialogs + + Change-Id: Idef9880e29c322ae2d11641354baf8a241fc7fb0 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147049 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 9d6c5f13ff031c18d3c117e4de212e2550d24e8c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147061 + Reviewed-by: Xisco Fauli + +2023-02-15 Caolán McNamara [80cb24c37bba6ebbcd711d03e57a39b4827f3904] + + Resolves: tdf#153622 crash in SvListView::SelectListEntry + + probably since: + + commit 4c8b1fa44d4f49510d3910981e649dcb08bceb36 + Date: Fri Oct 28 13:15:00 2022 -0400 + + tdf#151794 sc validate: honor NO_BLANK in Cell range dropdown + + Change-Id: Id6752126c0c8df8d813bc862e5533d05bba1b622 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146992 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-02-15 Caolán McNamara [acb9c4ff1b3cd6a4fca29bb0d7551776e6957c32] + + crashreporter: apparent null dereference + + Change-Id: I83f0765311ffdb34a0c08aaf616fdbde4e5110a7 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147054 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + +2023-02-15 Caolán McNamara [f0814dca8f05f524068b8217a9f1eabd8266cdc4] + + tdf#153229 add a switch to override honoring system dark mode + + Change-Id: Iafb6182e05dc65d20d0809476ee58908f7426d39 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146597 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit f7c03364e24da285ea95cea0cc688a7a120fc163) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146745 + Reviewed-by: Sophie Gautier + Reviewed-by: Xisco Fauli + +2023-02-15 Caolán McNamara [df0c21b8ff4d033d584d91f12d7baf3308c2b687] + + disable script dump + + Change-Id: I04d740cc0fcf87daa192a0a6af34138278043a19 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146985 + Tested-by: Jenkins + Reviewed-by: Thorsten Behrens + +2023-02-15 Caolán McNamara [364e08622c7f852af82f252acf1a42393a56328a] + + base section Titles are invisible in dark mode + + Change-Id: I46848169f9376588e91d9684e47f388074c41493 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146997 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit db6fbb0317fcb0a7babca9f71adbbb7c126b9e4e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146981 + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-15 Caolán McNamara [6b756ce38364b568c28f0eba48b90a1ae4676f24] + + tdf#153541 NotebookBar not getting settings change notifications + + NotebookBar is a child of a BorderWindow, which is an unusual parent + for a widget, special handling is needed in that case to get updated + when Settings change + + Change-Id: I1eca5188cb3aca974281987b7b3619b77bb5f26a + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146983 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-15 Caolán McNamara [0287cf59e2f6a1f74e4df3ea580970465f996726] + + tdf#153541 notify listeners when any of the icon sizes change + + not just the "normal" toolbar, but also the "notebookbar" and + "sidebar" ones. Existing listeners have assume that this is the + case, so match their expectations to get the notebookbar to + track the config when it changes. + + Change-Id: Ia6024217ad97374f753e1db6305eda011e42b85d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146984 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-14 Kohei Yoshida [bad4f41a69fe3fb08191b839f0c9389683685855] + + tdf#153604: include the root element when traversing the tree + + Change-Id: I35098e687eea832c075f68861e04be7b492ed25e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146966 + Tested-by: Jenkins + Reviewed-by: Kohei Yoshida + (cherry picked from commit 4d9a8f07b77917b0756dc2d8d8082c6e63e560a2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146982 + +2023-02-14 Bjoern Michaelsen [24c05688ad0db805196765a409c49f9ac6f2b6e7] + + tdf#134283: MakeSetList should iterate Setters, not Getters + + Change-Id: I811a3b562ead942c98705da29774b77c593eabc4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146828 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 75a863ee7fea133ae6bcd010d1aac46815fa49e2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146977 + Reviewed-by: Caolán McNamara + +2023-02-14 Caolán McNamara [2f1b0d9a89ade17c9e42b584669fa8a0892e06b3] + + Resolves: tdf#149482 don't insert if the mouse is not still pressed + + In repeat callback, if we didn't see a mouse up, but find that the mouse + is no longer pressed at this point, then bail + + Change-Id: I6e5d1d7201065fadcc2242fd52323ffb56766383 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146921 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-14 László Németh [4eb34d281260d7c9b6f2268ca1fa439655238a55] + + 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) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146795 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-14 Caolán McNamara [e21416088d73fb805a0bfdbdbeee7e4081d2c300] + + tdf#153332 reset background to default if new preview has no bg + + but the old did + + Change-Id: I59ebd4d5974c5d67c4ac572b091febed879fc290 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146923 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-14 Christian Lohmaier [ae24dd7bf521c960b7d03a19f9e64396ceaafdcc] + + fix openssl build on aarch64 - _umul128 is not available on non x64 + + adding upstream patch that uses __umulh as a fallback + + Change-Id: Ib95de30d3f7208c38421df0c63eb1ceafccd9354 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146839 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit 821f4d6f0987450233e4f63e01f89484ec737258) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146916 + Reviewed-by: Michael Stahl + +2023-02-14 Caolán McNamara [257c94df934e23e240a9d904b9e5137e9fb750de] + + operator [] out of range assert + + presumably since: + + commit 0e45f8318ee73361fecb049b33b0662fabe295d3 + Date: Sat Nov 5 15:59:27 2022 +0100 + + -Werror,-Wdeprecated-declarations (sprintf, macOS 13 SDK): hwpfilter + + Change-Id: I1e93526d46d1357a8f11f7ff7ed4c3f2274b9c7a + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146757 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-13 Xisco Fauli [1e7ee035992a0b29f42eac56ad82e2a1b0fe8ccd] + + sc: avoid divide by zero in ScEEImport::GraphicSize + + See https://crashreport.libreoffice.org/stats/signature/ScEEImport::GraphicSize(short,long,ScEEParseEntry%20*) + + Change-Id: Ia5acccb1118aff2486d23eabd536053e67f346ba + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146915 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-02-13 Eike Rathke [321c1a6db442a6d2afee25d1d1256ff36bdb004e] + + Resolves: tdf#139934 always apply cellXfs xf explicits (tdf#123139 related) + + Change-Id: Id1e12ee8677a25a645bfd53b4968a17c9a1eabe5 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146599 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 909a25d30b09ebd3a023105a9c3cc4d20add094a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146533 + Reviewed-by: Xisco Fauli + +2023-02-13 Bartosz Kosiorek [78ca5b0421562a6204a561d390ac8a8692411421] + + tdf#142018 Properly create Pen width if style is COSMETIC + + Change-Id: I6453058c4af352a3b0e14cbccbc1a67c73cd1426 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146551 + Tested-by: Jenkins + Reviewed-by: Bartosz Kosiorek + (cherry picked from commit bbdbe8ea2ef176ef6f08b30b3c18876c2c4f0c22) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146808 + Reviewed-by: Xisco Fauli + +2023-02-13 Mike Kaganski [fed875f35be3204a7d77bf315a07caaa3bf635e9] + + tdf#153510: STYLE: try harder to detect when there's nothing to do + + 1. Find the real style names early, to avoid re-triggering style + application when STYLE arguments use wrong case; + 2. Also check a (rare) case when both immediate and delayed styles + are the same as currently applied. + + Change-Id: Id8ab2e321ede6d0f8f05ac5d1e63ade0212e5865 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146775 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + (cherry picked from commit 208a4ecafafa97ea7fcc5a135fa8160e91ea0a74) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146765 + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-13 Mike Kaganski [18e16b05503eafb81797a8bd13157b1a6fc6e828] + + Flatten ScInterpreter::ScStyle + + Change-Id: I64c622d2c2cacccc7eda02e8739657fe345f9be8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146777 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + (cherry picked from commit 2844670d2a47c606cbebb99f73389f30154a3c5e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146764 + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-13 Mike Kaganski [b8efa9e460f358d42662e385ef5101cca053d8c7] + + tdf#153514: try to find exact match, even when searching case-insensitively + + Change-Id: Ib3bec382ef80a9078ffde8612c395cb0154fd476 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146747 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + (cherry picked from commit 2a984c77ccb1aa77d9bbd02218d4dc76aaff4a9e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146763 + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-12 Caolán McNamara [aa6e42c4a46104115947625edb9d7eb34c418758] + + Resolves: tdf#153566 set darkmode menubar background color + + because we use it for custom menu titles backgrounds + + Change-Id: I1ae679bc032d29c4901befc2f1b0cbb53d0a5d1e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146801 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-10 Caolán McNamara [71a37d733cb81d478af61425859e4c80f0f1e2f0] + + Resolves: tdf#153497 update automatic icon-theme name on dark mode change + + Change-Id: I6b41d04ad902d5b123a110b52426ea2c2de79e4c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146774 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 88cee07ee023899ffd482bbe52bf0c02c58890d0) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146794 + Reviewed-by: Adolfo Jayme Barrientos + +2023-02-10 Caolán McNamara [e3068e43679aa4d29e9c28ee056590769e021788] + + gtk4: occasional crash at exit + + Change-Id: I2008d44f5dae0f22e9213f46a740146d6eb85666 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146703 + Reviewed-by: Michael Stahl + Tested-by: Caolán McNamara + +2023-02-10 Mike Kaganski [a01f4a1c317520a7a3090cfb2f1c9f21bbc50922] + + Related: tdf#153510 Avoid modification of iterated container + + A crash is seen when resizing a document locally; the problem is + range-based for loop, which indirectly modifies its range: + + sclo.dll!ScAutoStyleList::AddInitial(const ScRange & rRange, const rtl::OUString & rStyle1, unsigned __int64 nTimeout, const rtl::OUString & rStyle2) Line 81 C++ + sclo.dll!ScDocShell::Notify(SfxBroadcaster & __formal, const SfxHint & rHint) Line 685 C++ + svllo.dll!SfxBroadcaster::Broadcast(const SfxHint & rHint) Line 41 C++ + sclo.dll!ScInterpreter::ScStyle() Line 2628 C++ + sclo.dll!ScInterpreter::Interpret() Line 4441 C++ + sclo.dll!ScFormulaCell::InterpretTail(ScInterpreterContext & rContext, ScFormulaCell::ScInterpretTailParameter eTailParam) Line 1947 C++ + sclo.dll!ScFormulaCell::Interpret(long nStartOffset, long nEndOffset) Line 1619 C++ + sclo.dll!ScFormulaCell::MaybeInterpret() Line 470 C++ + sclo.dll!ScFormulaCell::IsValue() Line 2763 C++ + sclo.dll!ScConditionEntry::Interpret(const ScAddress & rPos) Line 670 C++ + sclo.dll!ScConditionEntry::IsCellValid(ScRefCellValue & rCell, const ScAddress & rPos) Line 1238 C++ + sclo.dll!ScConditionalFormat::GetData(ScRefCellValue & rCell, const ScAddress & rPos) Line 1836 C++ + sclo.dll!`anonymous namespace'::handleConditionalFormat(ScConditionalFormatList & rCondFormList, const o3tl::sorted_vector,o3tl::find_unique,1> & rCondFormats, ScCellInfo * pInfo, ScTableInfo * pTableInfo, ScStyleSheetPool * pStlPool, const ScAddress & rAddr, bool & bHidden, bool & bHideFormula, bool bTabProtect) Line 297 C++ + sclo.dll!ScDocument::FillInfo(ScTableInfo & rTabInfo, short nCol1, long nRow1, short nCol2, long nRow2, short nTab, double fColScale, double fRowScale, bool bPageMode, bool bFormulaMode, const ScMarkData * pMarkData) Line 569 C++ + sclo.dll!ScGridWindow::Draw(short nX1, long nY1, short nX2, long nY2, ScUpdateMode eMode) Line 556 C++ + sclo.dll!ScGridWindow::Paint(OutputDevice & __formal, const tools::Rectangle & rRect) Line 458 C++ + vcllo.dll!PaintHelper::DoPaint(const vcl::Region * pRegion) Line 313 C++ + vcllo.dll!vcl::Window::ImplCallPaint(const vcl::Region * pRegion, ImplPaintFlags nPaintFlags) Line 617 C++ + vcllo.dll!PaintHelper::~PaintHelper() Line 553 C++ + vcllo.dll!vcl::Window::ImplCallPaint(const vcl::Region * pRegion, ImplPaintFlags nPaintFlags) Line 623 C++ + vcllo.dll!PaintHelper::~PaintHelper() Line 553 C++ + vcllo.dll!vcl::Window::ImplCallPaint(const vcl::Region * pRegion, ImplPaintFlags nPaintFlags) Line 623 C++ + vcllo.dll!PaintHelper::~PaintHelper() Line 553 C++ + vcllo.dll!vcl::Window::ImplCallPaint(const vcl::Region * pRegion, ImplPaintFlags nPaintFlags) Line 623 C++ + vcllo.dll!PaintHelper::~PaintHelper() Line 553 C++ + vcllo.dll!vcl::Window::ImplCallPaint(const vcl::Region * pRegion, ImplPaintFlags nPaintFlags) Line 623 C++ + vcllo.dll!PaintHelper::~PaintHelper() Line 553 C++ + vcllo.dll!vcl::Window::ImplCallPaint(const vcl::Region * pRegion, ImplPaintFlags nPaintFlags) Line 623 C++ + vcllo.dll!vcl::Window::ImplCallOverlapPaint() Line 646 C++ + vcllo.dll!vcl::Window::ImplHandlePaintHdl(Timer * __formal) Line 668 C++ + vcllo.dll!vcl::Window::LinkStubImplHandlePaintHdl(void * instance, Timer * data) Line 648 C++ + vcllo.dll!Link::Call(Timer * data) Line 111 C++ + vcllo.dll!Timer::Invoke(Timer * arg) Line 81 C++ + vcllo.dll!vcl::Window::ImplHandleResizeTimerHdl(Timer * __formal) Line 684 C++ + vcllo.dll!vcl::Window::LinkStubImplHandleResizeTimerHdl(void * instance, Timer * data) Line 674 C++ + vcllo.dll!Link::Call(Timer * data) Line 111 C++ + vcllo.dll!Timer::Invoke(Timer * arg) Line 81 C++ + vcllo.dll!vcl::Window::GetSizePixel() Line 2420 C++ + sclo.dll!ScTabView::GetGridWidth(ScHSplitPos eWhich) Line 3032 C++ + sclo.dll!ScViewData::CellsAtX(short nPosX, short nDir, ScHSplitPos eWhichX, unsigned short nScrSizeX) Line 2634 C++ + sclo.dll!ScViewData::VisibleCellsX(ScHSplitPos eWhichX) Line 2710 C++ + sclo.dll!ScTabView::PaintArea(short nStartCol, long nStartRow, short nEndCol, long nEndRow, ScUpdateMode eMode) Line 2386 C++ + sclo.dll!ScTabViewShell::Notify(SfxBroadcaster & rBC, const SfxHint & rHint) Line 63 C++ + svllo.dll!SfxBroadcaster::Broadcast(const SfxHint & rHint) Line 41 C++ + sclo.dll!ScDocShell::PostPaint(const ScRangeList & rRanges, PaintPartFlags nPart, unsigned short nExtFlags) Line 172 C++ + sclo.dll!ScDocShell::PostPaint(short nStartCol, long nStartRow, short nStartTab, short nEndCol, long nEndRow, short nEndTab, PaintPartFlags nPart, unsigned short nExtFlags) Line 106 C++ + sclo.dll!ScDocShell::DoAutoStyle(const ScRange & rRange, const rtl::OUString & rStyle) Line 1580 C++ + sclo.dll!ScAutoStyleList::InitHdl(Timer * __formal) Line 92 C++ + sclo.dll!ScAutoStyleList::LinkStubInitHdl(void * instance, Timer * data) Line 84 C++ + vcllo.dll!Link::Call(Timer * data) Line 111 C++ + vcllo.dll!Timer::Invoke() Line 76 C++ + vcllo.dll!Scheduler::CallbackTaskScheduling() Line 481 C++ + vcllo.dll!SalTimer::CallCallback() Line 55 C++ + vclplug_winlo.dll!WinSalTimer::ImplHandleElapsedTimer() Line 166 C++ + vclplug_winlo.dll!ImplSalYield(bool bWait, bool bHandleAllCurrentEvents) Line 525 C++ + vclplug_winlo.dll!WinSalInstance::DoYield(bool bWait, bool bHandleAllCurrentEvents) Line 581 C++ + vcllo.dll!ImplYield(bool i_bWait, bool i_bAllEvents) Line 475 C++ + vcllo.dll!Application::Yield() Line 560 C++ + vcllo.dll!Application::Execute() Line 453 C++ + sofficeapp.dll!desktop::Desktop::Main() Line 1604 C++ + vcllo.dll!ImplSVMain() Line 203 C++ + vcllo.dll!SVMain() Line 236 C++ + sofficeapp.dll!soffice_main() Line 94 C++ + soffice.bin!sal_main() Line 51 C + soffice.bin!main(int argc, char * * argv) Line 49 C + + ScAutoStyleList::InitHdl iterated over aInitials, and called + pDocSh->DoAutoStyle, which eventually called ScAutoStyleList::AddInitial, + which modified aInitials, resulting in dangling reference rInitial back + in the ScAutoStyleList::InitHdl. + + Change-Id: Id4e2aac2f5b0b27a7a57f22c0c9cdf8a1e950f30 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146690 + Tested-by: Mike Kaganski + Reviewed-by: Mike Kaganski + (cherry picked from commit a80630b6ee6e7636d2c93c42724ce815c991311c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146709 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + +2023-02-10 Aron Budea [09939fab624db498c9055aa384151a91ce6a2462] + + vcl: fix online crash in vcl::Window::IsTracking() + + Crashreport signature: + + program/libmergedlo.so + vcl::Window::IsTracking() const + vcl/source/window/window2.cxx:340 + program/libmergedlo.so + (anonymous namespace)::LOKPostAsyncEvent(void*, void*) + sfx2/source/view/lokhelper.cxx:812 + program/libmergedlo.so + LokChartHelper::postMouseEvent(int, int, int, int, int, int, double, double) + include/rtl/ref.hxx:128 + program/libmergedlo.so + SfxLokHelper::testInPlaceComponentMouseEventHit(SfxViewShell*, int, int, int, int, int, int, double, double, bool) + sfx2/source/view/lokhelper.cxx:980 + /program/libswlo.so + SwXTextDocument::postMouseEvent(int, int, int, int, int, int) + sw/source/uibase/uno/unotxdoc.cxx:3663 + program/libmergedlo.so + doc_postMouseEvent + desktop/source/lib/init.cxx:4831 + + Change-Id: Iab7d24a901e57dc8af3fb2c77fbea3b4fdad9fb9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146483 + Tested-by: Jenkins CollaboraOffice + Reviewed-by: Miklos Vajna + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146549 + Tested-by: Jenkins + Reviewed-by: Andras Timar + (cherry picked from commit d4c99f07ed4a795519797f56be29c24a242f4db2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146697 + Reviewed-by: Xisco Fauli + +2023-02-10 Balazs Varga [a5e765e67ef6527486771caaf6c89962136ec07e] + + Related: tdf#150098 sc validation: allowing formulas for validity test + + Clean-up and a little optimization. + + Change-Id: Ib56d959188912f4b18acb5466ce55bc7b5b4ee4b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146391 + Tested-by: Jenkins + Reviewed-by: Balazs Varga + (cherry picked from commit d8ae6d1388f28c405c4de2dfe93dbfe2d8acd470) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146696 + Reviewed-by: Xisco Fauli + +2023-02-10 Xisco Fauli [15e08e498a64eca1d4305682d6055a9ab1d568c6] + + sw: fix crash in SwModule::InsertLab + + Seen in https://crashreport.libreoffice.org/stats/crash_details/e17357e9-d5e2-4eee-868e-ecf72e04dc41 + + Change-Id: I32f239249e72b6644b3a38d4dd9bbae65f7bede0 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146704 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-02-10 Rafael Lima [43c1de9f68a589304f060d2e662dc37c842a2a67] + + tdf#150451 Fix borders in Editbox controls (kf5) + + The bounding rectangle calculated for an Editbox in + QtGraphics_Controls::getNativeControlRegion was not + always enough to accommodate content and the borders. + + The KDE Breeze does not draw any borders if the total + height of the bounding rectangle is smaller than the + minimum size needed for content + frame at top and bottom, + s. Style::drawFrameLineEditPrimitive in the Breeze + style [1]. + + Therefore, ensure a minimum height of that size. + The Breeze style also considers the type of the + passed widget when retrieving the frame width using + QStyle::pixelMetric [2], so pass a dummy `QLineEdit` + in order to get the actual frame width of 6 + that the Breeze style uses for line edits, rather + than the default value of 2 that is returned when not + passing any widget. + + Just do that for the minimum size calculation for now + and not everywhere, because the handling for edit boxes + here in the qt VCL plugins and in the calling code + currently does all kinds of "interesting" things like doing + extra size adjustments or passing the content rect where the + bounding rect would be expected,... + + Ideally this should be cleaned up in the callers and all + platform integrations in a follow-up commit + to adhere to what the doc in vcl/inc/WidgetDrawInterface.hxx + says, but this here keeps it working with existing code for now. + + (s.a. discussion in the Gerrit change for more details) + + Tested using various scaling factors: 1, 1.25, 1.5, 1.75 and 2.0. + + [1] https://invent.kde.org/plasma/breeze/-/blob/144ea45018d28758db07afd987d97318d56c4981/kstyle/breezestyle.cpp#L3527 + [2] https://invent.kde.org/plasma/breeze/-/blob/144ea45018d28758db07afd987d97318d56c4981/kstyle/breezestyle.cpp#L555 + + Co-authored-by: Michael Weghorn + + Change-Id: If8cb4794c7f3ce1be4d1ee421c9c27ad5adf5da2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146516 + Tested-by: Jenkins + Reviewed-by: Michael Weghorn + (cherry picked from commit 5c96e813bed3293605f8d746f188cc051d1e5949) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146706 + Reviewed-by: Caolán McNamara + +2023-02-09 Khaled Hosny [a29c338fe8689924328cf56c59d36ed561a702b9] + + Require HarfBuzz 5.1.0 + + This is the minimal version to provide the functionality we currently + check for. Some important LO functionality currently depend on idfdef'd + HarfBuzz code, and some distributions build against old system HarfBuzz + leading to user bug reports that are tricky to track down, e.g: + tdf#153048 and tdf#153470. + + Change-Id: I7d58ec46f8fd340d2592887c0088876d71351771 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146674 + Tested-by: Jenkins + Reviewed-by: خالد حسني + (cherry picked from commit 8c1e91444c78db1093c3db54d98efb16294f82ea) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146699 + Reviewed-by: Xisco Fauli + +2023-02-09 Michael Stahl [0590cd2857f68f48b8847071a9c1a7dbef135721] + + tdf#114973 sw: enable SelectAll with hidden para at start/end + + If there's a hidden para the shell cursor can't be positioned in it + ordinarily, so SelectAll will exclude these at the start or end of the + document. + + There is already special code to handle a table at the start of the + document body, and it's relatively simple to adapt it to handle hidden + paragraphs as well. + + This appears to work surprisingly well, the point is at the start of the + first node of the document, and moving it right immediately puts it to + the first non-hidden paragraph. + + But it only works for paragraphs hidden by character formatting or + hidden paragraph field, not if there's a hidden section - there are no + (not even 0-height) SwTextFrames in hidden sections. + + Change-Id: Ifd3c11f4169a037fdae2c2b376d0138bec46774f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146257 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit bb733957dd39e6f0b9d80bb59eb0177188794797) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146206 + Reviewed-by: Thorsten Behrens + +2023-02-09 Balazs Varga [d86aa3a0711a09aeae752086f8fdf5e89b552ec5] + + tdf#150098 sc validation: allowing formulas for validity test + + Calculate the formula results, before checking the validity test. + + Change-Id: I7420982a8cbcd2df6ab0adea6e3cf61aaccb1600 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146011 + Tested-by: Jenkins + Tested-by: Gabor Kelemen + Reviewed-by: Gabor Kelemen + Reviewed-by: Balazs Varga + (cherry picked from commit 5f2d7db094fc0f4e7ae40987c3c6762b11184419) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146084 + Reviewed-by: Xisco Fauli + +2023-02-09 Caolán McNamara [a1f175f01ffa6102b9fdc54177ca53940a43897c] + + crashtesting: threaded import crash seen in forum-mso-en4-802501.xlsx + + sporadically reproducible with tsan and + ./instdir/program/soffice.bin --headless --convert-to pdf ~/forum-mso-en4-802501.xlsx + + move getTables().applyAutoFilters(), which wants to query tab 1 while + tab 1 is still getting imported, until after the threaded import has + completed. + + This call was moved before in: + + commit edd51b813005c2159426d8f2917eede5b14a4577 + Date: Thu Aug 15 16:23:46 2013 +0100 + + fix for bnc#834705 missing drop downs for autofilter + + ================== + WARNING: ThreadSanitizer: data race (pid=3791886) + Read of size 8 at 0x7b5000040f20 by thread T7 (mutexes: write M0, write M1): + #0 __gnu_cxx::__normal_iterator>>::__normal_iterator(unsigned long const* const&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/stl_iterator.h:1073:20 (libsclo.so+0x3d31c4) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #1 std::vector>::cend() const /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/stl_vector.h:960:16 (libsclo.so+0x3d31c4) + #2 mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::cbegin() const core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:3771:34 (libsclo.so+0x3d31c4) + #3 mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::begin() const core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:3753:12 (libsclo.so+0x3d31c4) + #4 ScColumn::InitBlockPosition(sc::ColumnBlockConstPosition&) const core/sc/source/core/data/column3.cxx:1135:35 (libsclo.so+0x3d31c4) + #5 ScTable::GetDataArea(short&, int&, short&, int&, bool, bool) const core/sc/source/core/data/table1.cxx:908:19 (libsclo.so+0x637b39) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #6 ScDocument::GetDataArea(short, short&, int&, short&, int&, bool, bool) const core/sc/source/core/data/document.cxx:1104:23 (libsclo.so+0x49b696) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #7 ScDBData::ExtendDataArea(ScDocument const&) core/sc/source/core/tool/dbdata.cxx:654:10 (libsclo.so+0x741e77) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #8 ScDocument::GetFilterEntries(short, int, short, ScFilterEntries&) core/sc/source/core/data/documen3.cxx:1577:14 (libsclo.so+0x46e7a6) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #9 (anonymous namespace)::fillQueryParam(ScQueryParam&, ScDocument*, com::sun::star::uno::Sequence const&) core/sc/source/ui/unoobj/datauno.cxx:1164:27 (libsclo.so+0xf7dd72) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #10 ScFilterDescriptorBase::setFilterFields3(com::sun::star::uno::Sequence const&) core/sc/source/ui/unoobj/datauno.cxx:1380:5 (libsclo.so+0xf7dd72) + #11 non-virtual thunk to ScFilterDescriptorBase::setFilterFields3(com::sun::star::uno::Sequence const&) core/sc/source/ui/unoobj/datauno.cxx (libsclo.so+0xf7e2c2) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #12 oox::xls::AutoFilter::finalizeImport(com::sun::star::uno::Reference const&, short) core/sc/source/filter/oox/autofilterbuffer.cxx:803:22 (libscfiltlo.so+0x3cca2c) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #13 oox::xls::AutoFilterBuffer::finalizeImport(com::sun::star::uno::Reference const&, short) core/sc/source/filter/oox/autofilterbuffer.cxx:950:22 (libscfiltlo.so+0x3cdc0b) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #14 oox::xls::Table::applyAutoFilters() core/sc/source/filter/oox/tablebuffer.cxx:143:23 (libscfiltlo.so+0x4b9268) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #15 void std::__invoke_impl(std::__invoke_memfun_ref, void (oox::xls::Table::*&)(), oox::xls::Table&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/invoke.h:67:14 (libscfiltlo.so+0x4b9d96) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #16 std::__invoke_result::type std::__invoke(void (oox::xls::Table::*&)(), oox::xls::Table&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/invoke.h:96:14 (libscfiltlo.so+0x4b9d96) + #17 void std::_Bind))()>::__call(std::tuple&&, std::_Index_tuple<0ul>) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/functional:495:11 (libscfiltlo.so+0x4b9d96) + #18 void std::_Bind))()>::operator()(oox::xls::Table&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/functional:580:17 (libscfiltlo.so+0x4b9d96) + #19 oox::RefMap>::ForEachFunctor))()>>::operator()(std::pair> const&) core/include/oox/helper/refmap.hxx:122:89 (libscfiltlo.so+0x4b9d96) + #20 oox::RefMap>::ForEachFunctor))()>> std::for_each>>, oox::RefMap>::ForEachFunctor))()>>>(std::_Rb_tree_const_iterator>>, std::_Rb_tree_const_iterator>>, oox::RefMap>::ForEachFunctor))()>>) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/stl_algo.h:3787:2 (libscfiltlo.so+0x4b9d96) + #21 void oox::RefMap>::forEach))()>>(std::_Bind))()> const&) const core/include/oox/helper/refmap.hxx:71:29 (libscfiltlo.so+0x4b9d96) + #22 void oox::RefMap>::forEachMem(void (oox::xls::Table::*)()) const core/include/oox/helper/refmap.hxx:79:29 (libscfiltlo.so+0x4b9d96) + #23 oox::xls::TableBuffer::applyAutoFilters() core/sc/source/filter/oox/tablebuffer.cxx:179:16 (libscfiltlo.so+0x4b9d96) + #24 oox::xls::WorksheetGlobals::finalizeWorksheetImport() core/sc/source/filter/oox/worksheethelper.cxx:943:17 (libscfiltlo.so+0x4ee58e) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #25 oox::xls::WorksheetHelper::finalizeWorksheetImport() core/sc/source/filter/oox/worksheethelper.cxx:1625:17 (libscfiltlo.so+0x4f2cff) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #26 oox::xls::WorksheetFragment::finalizeImport() core/sc/source/filter/oox/worksheetfragment.cxx:632:5 (libscfiltlo.so+0x4e91cc) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #27 oox::core::FragmentHandler2::endDocument() core/oox/source/core/fragmenthandler2.cxx:53:5 (libooxlo.so+0x1c20d9) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) + #28 non-virtual thunk to oox::core::FragmentHandler2::endDocument() core/oox/source/core/fragmenthandler2.cxx (libooxlo.so+0x1c20d9) + #29 sax_fastparser::FastSaxParserImpl::parseStream(com::sun::star::xml::sax::InputSource const&) core/sax/source/fastparser/fastparser.cxx:910:36 (libexpwraplo.so+0x2a06a) (BuildId: 4c8d8739ce3b93f891afa1e160f975a2892a4af4) + #30 sax_fastparser::FastSaxParser::parseStream(com::sun::star::xml::sax::InputSource const&) core/sax/source/fastparser/fastparser.cxx:1482:13 (libexpwraplo.so+0x31738) (BuildId: 4c8d8739ce3b93f891afa1e160f975a2892a4af4) + #31 oox::core::FastParser::parseStream(com::sun::star::xml::sax::InputSource const&, bool) core/oox/source/core/fastparser.cxx:121:15 (libooxlo.so+0x1ae980) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) + #32 oox::core::FastParser::parseStream(com::sun::star::uno::Reference const&, rtl::OUString const&) core/oox/source/core/fastparser.cxx:129:5 (libooxlo.so+0x1aebdf) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) + #33 oox::core::XmlFilterBase::importFragment(rtl::Reference const&, oox::core::FastParser&) core/oox/source/core/xmlfilterbase.cxx:412:21 (libooxlo.so+0x1d01ac) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) + #34 oox::xls::WorkbookHelper::importOoxFragment(rtl::Reference const&, oox::core::FastParser&) core/sc/source/filter/oox/workbookhelper.cxx:1024:27 (libscfiltlo.so+0x4dbbd2) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #35 oox::xls::(anonymous namespace)::WorkerThread::doWork() core/sc/source/filter/oox/workbookfragment.cxx:249:27 (libscfiltlo.so+0x4d3347) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #36 comphelper::ThreadTask::exec() core/comphelper/source/misc/threadpool.cxx:319:9 (libcomphelper.so+0x17dbc1) (BuildId: 30a9bf106ea764f860a55d99b75dd87a0f268335) + #37 comphelper::ThreadPool::ThreadWorker::execute() core/comphelper/source/misc/threadpool.cxx:85:24 (libcomphelper.so+0x17dbc1) + #38 salhelper::Thread::run() core/salhelper/source/thread.cxx:39:5 (libuno_salhelpergcc3.so.3+0x5267) (BuildId: d146f721ac5d8da923b02df0d671788655b81eb6) + #39 non-virtual thunk to salhelper::Thread::run() core/salhelper/source/thread.cxx (libuno_salhelpergcc3.so.3+0x5267) + #40 threadFunc core/include/osl/thread.hxx:189:15 (libuno_salhelpergcc3.so.3+0x551e) (BuildId: d146f721ac5d8da923b02df0d671788655b81eb6) + #41 osl_thread_start_Impl(void*) core/sal/osl/unx/thread.cxx:265:9 (libuno_sal.so.3+0x6a9d5) (BuildId: 767a6cd7c58bf820064a10cf0ab0f15b30c2f4ac) + + Previous write of size 8 at 0x7b5000040f20 by thread T6 (mutexes: write M2): + #0 std::vector>::_M_fill_insert(__gnu_cxx::__normal_iterator>>, unsigned long, unsigned long const&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/vector.tcc:556:29 (libsclo.so+0x2f6766) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #1 std::vector>::insert(__gnu_cxx::__normal_iterator>>, unsigned long, unsigned long const&) /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../include/c++/12/bits/stl_vector.h:1435:2 (libsclo.so+0x2ffd3a) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #2 mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::blocks_type::insert(unsigned long, unsigned long) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:99:15 (libsclo.so+0x2ffd3a) + #3 mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::set_new_block_to_middle(unsigned long, unsigned long, unsigned long, bool) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:4326:19 (libsclo.so+0x2ffd3a) + #4 mdds::mtv::soa::detail::iterator_base, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::iterator_trait> mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::set_cell_to_middle_of_block(unsigned long, unsigned long, double const&) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:3999:19 (libsclo.so+0x3259fe) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #5 mdds::mtv::soa::detail::iterator_base, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::iterator_trait> mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::set_cell_to_empty_block(unsigned long, unsigned long, double const&) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:3313:12 (libsclo.so+0x3259fe) + #6 mdds::mtv::soa::detail::iterator_base, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::iterator_trait> mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::set_impl(unsigned long, unsigned long, double const&) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:1260:16 (libsclo.so+0x32492f) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #7 mdds::mtv::soa::detail::iterator_base, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::iterator_trait> mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::set(mdds::mtv::soa::detail::iterator_base, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell>>, sc::CellStoreTrait>::iterator_trait> const&, unsigned long, double const&) core/workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:754:20 (libsclo.so+0x4cc138) (BuildId: 4582437348063bd1c461478348ce37a0dbd28def) + #8 ScDocumentImport::setNumericCell(ScAddress const&, double) core/sc/source/core/data/documentimport.cxx:259:35 (libsclo.so+0x4cc138) + #9 oox::xls::SheetDataBuffer::setValueCell(oox::xls::CellModel const&, double) core/sc/source/filter/oox/sheetdatabuffer.cxx:107:20 (libscfiltlo.so+0x4833c0) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #10 oox::xls::SheetDataContext::onEndElement() core/sc/source/filter/oox/sheetdatacontext.cxx:185:25 (libscfiltlo.so+0x48fed2) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #11 non-virtual thunk to oox::xls::SheetDataContext::onEndElement() core/sc/source/filter/oox/sheetdatacontext.cxx (libscfiltlo.so+0x48fff9) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #12 oox::core::ContextHandler2Helper::implEndElement(int) core/oox/source/core/contexthandler2.cxx:125:9 (libooxlo.so+0x1ac82b) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) + #13 oox::core::ContextHandler2::endFastElement(int) core/oox/source/core/contexthandler2.cxx:220:5 (libooxlo.so+0x1ac82b) + #14 non-virtual thunk to oox::core::ContextHandler2::endFastElement(int) core/oox/source/core/contexthandler2.cxx (libooxlo.so+0x1ac82b) + #15 (anonymous namespace)::Entity::endElement() core/sax/source/fastparser/fastparser.cxx:515:27 (libexpwraplo.so+0x3042f) (BuildId: 4c8d8739ce3b93f891afa1e160f975a2892a4af4) + #16 sax_fastparser::FastSaxParserImpl::consume((anonymous namespace)::EventList&) core/sax/source/fastparser/fastparser.cxx:1029:25 (libexpwraplo.so+0x29d37) (BuildId: 4c8d8739ce3b93f891afa1e160f975a2892a4af4) + #17 sax_fastparser::FastSaxParserImpl::parseStream(com::sun::star::xml::sax::InputSource const&) core/sax/source/fastparser/fastparser.cxx:869:22 (libexpwraplo.so+0x29d37) + #18 sax_fastparser::FastSaxParser::parseStream(com::sun::star::xml::sax::InputSource const&) core/sax/source/fastparser/fastparser.cxx:1482:13 (libexpwraplo.so+0x31738) (BuildId: 4c8d8739ce3b93f891afa1e160f975a2892a4af4) + #19 oox::core::FastParser::parseStream(com::sun::star::xml::sax::InputSource const&, bool) core/oox/source/core/fastparser.cxx:121:15 (libooxlo.so+0x1ae980) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) + #20 oox::core::FastParser::parseStream(com::sun::star::uno::Reference const&, rtl::OUString const&) core/oox/source/core/fastparser.cxx:129:5 (libooxlo.so+0x1aebdf) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) + #21 oox::core::XmlFilterBase::importFragment(rtl::Reference const&, oox::core::FastParser&) core/oox/source/core/xmlfilterbase.cxx:412:21 (libooxlo.so+0x1d01ac) (BuildId: eba40a8f6e1e986eafb2008b5a61a9060f9b6c0b) + #22 oox::xls::WorkbookHelper::importOoxFragment(rtl::Reference const&, oox::core::FastParser&) core/sc/source/filter/oox/workbookhelper.cxx:1024:27 (libscfiltlo.so+0x4dbbd2) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #23 oox::xls::(anonymous namespace)::WorkerThread::doWork() core/sc/source/filter/oox/workbookfragment.cxx:249:27 (libscfiltlo.so+0x4d3347) (BuildId: 798032f9cb60957d86e47827d9e882b8931326ba) + #24 comphelper::ThreadTask::exec() core/comphelper/source/misc/threadpool.cxx:319:9 (libcomphelper.so+0x17dbc1) (BuildId: 30a9bf106ea764f860a55d99b75dd87a0f268335) + #25 comphelper::ThreadPool::ThreadWorker::execute() core/comphelper/source/misc/threadpool.cxx:85:24 (libcomphelper.so+0x17dbc1) + #26 salhelper::Thread::run() core/salhelper/source/thread.cxx:39:5 (libuno_salhelpergcc3.so.3+0x5267) (BuildId: d146f721ac5d8da923b02df0d671788655b81eb6) + #27 non-virtual thunk to salhelper::Thread::run() core/salhelper/source/thread.cxx (libuno_salhelpergcc3.so.3+0x5267) + #28 threadFunc core/include/osl/thread.hxx:189:15 (libuno_salhelpergcc3.so.3+0x551e) (BuildId: d146f721ac5d8da923b02df0d671788655b81eb6) + #29 osl_thread_start_Impl(void*) core/sal/osl/unx/thread.cxx:265:9 (libuno_sal.so.3+0x6a9d5) (BuildId: 767a6cd7c58bf820064a10cf0ab0f15b30c2f4ac) + + Change-Id: I7542432749fded8ab5e35f79cb221ad712f7802d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146430 + Tested-by: Jenkins + Tested-by: Caolán McNamara + Reviewed-by: Caolán McNamara + (cherry picked from commit 6652768ef832f4e1555a01a2962c087fa8937e30) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146531 + Reviewed-by: Xisco Fauli + +2023-02-09 Noel Grandin [4262e6cca32952ec3d2d130b1c86dc757977d54b] + + tdf#150380 Calc crash clicking on the title of the Border Color toolbar popdown + + There is probably a better fix for this, but we have a popup inside a + popup here, so some weirdness is to be expected. + + At least it doesn't crash now. + + Change-Id: Ifaa928c47c3cbfaec8379f01f007b0c1daf4e5a6 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146359 + Tested-by: Noel Grandin + Reviewed-by: Noel Grandin + (cherry picked from commit f4a24366dd111c7c7434f4a887d7097ced6b5f55) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146329 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-02-09 Szymon Kłos [efbf1fad61882a52e92b9c4d9d277a5e8c7750ab] + + tdf#153244 apply caption options + + Change-Id: I2aa53a85ab9f38ddf74caac85047235ea85a40af + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146590 + Tested-by: Jenkins + Reviewed-by: Szymon Kłos + (cherry picked from commit 6a7b3d59d790cb8ea55353fe4173d71a13931d50) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146630 + Reviewed-by: Xisco Fauli + +2023-02-09 Christian Lohmaier [f7f465eab1aee31e3cd1f863208becec0c288106] + + bump product version to 7.5.2.0.0+ + + Change-Id: I1563ddc2f963bda30df7276f4dcbaff653790ee3 2023-02-09 Szymon Kłos [db1c7c55fe0cd35ead3174b3eb7f0cdad1a475f3] diff -Nru libreoffice-7.5.1~rc2/chart2/source/controller/dialogs/DialogModel.cxx libreoffice-7.5.2~rc2/chart2/source/controller/dialogs/DialogModel.cxx --- libreoffice-7.5.1~rc2/chart2/source/controller/dialogs/DialogModel.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/chart2/source/controller/dialogs/DialogModel.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -631,13 +631,20 @@ OUString DialogModel::getCategoriesRange() const { - uno::Reference< chart2::data::XLabeledDataSequence > xLSeq( getCategories()); OUString aRange; - if( xLSeq.is()) + try { - Reference< data::XDataSequence > xSeq( xLSeq->getValues()); - if( xSeq.is()) - aRange = xSeq->getSourceRangeRepresentation(); + uno::Reference< chart2::data::XLabeledDataSequence > xLSeq( getCategories()); + if( xLSeq.is()) + { + Reference< data::XDataSequence > xSeq( xLSeq->getValues()); + if( xSeq.is()) + aRange = xSeq->getSourceRangeRepresentation(); + } + } + catch (const lang::DisposedException&) + { + TOOLS_WARN_EXCEPTION( "chart2", "unexpected exception caught" ); } return aRange; } diff -Nru libreoffice-7.5.1~rc2/chart2/source/controller/dialogs/ObjectNameProvider.cxx libreoffice-7.5.2~rc2/chart2/source/controller/dialogs/ObjectNameProvider.cxx --- libreoffice-7.5.1~rc2/chart2/source/controller/dialogs/ObjectNameProvider.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/chart2/source/controller/dialogs/ObjectNameProvider.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -124,13 +124,15 @@ uno::Reference xDataSequence( aDataSequences[nN]->getValues()); if( !xDataSequence.is() ) continue; - Sequence< Any > aData( xDataSequence->getData() ); - if( nPointIndex >= aData.getLength() ) - continue; - uno::Reference xProp(xDataSequence, uno::UNO_QUERY ); - if( xProp.is()) + + try { - try + Sequence< Any > aData( xDataSequence->getData() ); + + if( nPointIndex >= aData.getLength() ) + continue; + uno::Reference xProp(xDataSequence, uno::UNO_QUERY ); + if( xProp.is()) { uno::Any aARole = xProp->getPropertyValue( "Role" ); OUString aRole; @@ -179,10 +181,14 @@ a_Size = aNumberFormatterWrapper.getFormattedString( nNumberFormatKey, fValue, nLabelColor, bColorChanged ); } } - catch( const uno::Exception& ) - { - TOOLS_WARN_EXCEPTION("chart2", "" ); - } + } + catch (const lang::DisposedException&) + { + TOOLS_WARN_EXCEPTION( "chart2", "unexpected exception caught" ); + } + catch( const uno::Exception& ) + { + TOOLS_WARN_EXCEPTION("chart2", "" ); } } diff -Nru libreoffice-7.5.1~rc2/chart2/source/controller/sidebar/ChartAreaPanel.cxx libreoffice-7.5.2~rc2/chart2/source/controller/sidebar/ChartAreaPanel.cxx --- libreoffice-7.5.1~rc2/chart2/source/controller/sidebar/ChartAreaPanel.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/chart2/source/controller/sidebar/ChartAreaPanel.cxx 2023-03-24 16:53:38.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.5.1~rc2/chart2/source/tools/DataSeriesHelper.cxx libreoffice-7.5.2~rc2/chart2/source/tools/DataSeriesHelper.cxx --- libreoffice-7.5.1~rc2/chart2/source/tools/DataSeriesHelper.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/chart2/source/tools/DataSeriesHelper.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -208,10 +208,17 @@ if( ! xSource.is()) return aNoResult; const Sequence< Reference< chart2::data::XLabeledDataSequence > > aLabeledSeq( xSource->getDataSequences()); - for (auto const & i : aLabeledSeq) + try { - if (lcl_MatchesRole(aRole, bMatchPrefix)(i)) - return i; + for (auto const & i : aLabeledSeq) + { + if (lcl_MatchesRole(aRole, bMatchPrefix)(i)) + return i; + } + } + catch (const lang::DisposedException&) + { + TOOLS_WARN_EXCEPTION( "chart2", "unexpected exception caught" ); } return aNoResult; diff -Nru libreoffice-7.5.1~rc2/chart2/source/tools/RegressionCurveCalculator.cxx libreoffice-7.5.2~rc2/chart2/source/tools/RegressionCurveCalculator.cxx --- libreoffice-7.5.1~rc2/chart2/source/tools/RegressionCurveCalculator.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/chart2/source/tools/RegressionCurveCalculator.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -75,6 +75,8 @@ sal_Int32 aPeriod, sal_Int32 nMovingType ) { + if( aPeriod < 0 ) + throw lang::IllegalArgumentException("aPeriod may not be < 0", static_cast(this), 3); mDegree = aDegree; mForceIntercept = aForceIntercept; mInterceptValue = aInterceptValue; diff -Nru libreoffice-7.5.1~rc2/configure libreoffice-7.5.2~rc2/configure --- libreoffice-7.5.1~rc2/configure 2023-02-22 19:55:33.000000000 +0000 +++ libreoffice-7.5.2~rc2/configure 2023-03-24 16:55:53.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.70 for LibreOffice 7.5.1.2. +# Generated by GNU Autoconf 2.70 for LibreOffice 7.5.2.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.5.1.2' -PACKAGE_STRING='LibreOffice 7.5.1.2' +PACKAGE_VERSION='7.5.2.2' +PACKAGE_STRING='LibreOffice 7.5.2.2' PACKAGE_BUGREPORT='' PACKAGE_URL='http://documentfoundation.org/' @@ -2536,7 +2536,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.5.1.2 to adapt to many kinds of systems. +\`configure' configures LibreOffice 7.5.2.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -2606,7 +2606,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of LibreOffice 7.5.1.2:";; + short | recursive ) echo "Configuration of LibreOffice 7.5.2.2:";; esac cat <<\_ACEOF @@ -3011,7 +3011,7 @@ Define the product name. Default is LibreOffice. --with-package-version='3.1.4.5' Define the package version. Default is - 7.5.1.2. Use only if you distribute an + 7.5.2.2. Use only if you distribute an own build for macOS. --with-main-module= Specify which main module to build for wasm. Default @@ -3047,7 +3047,8 @@ *breeze_svg, *colibre, *colibre_svg, *colibre_dark, *colibre_dark_svg, *elementary, *elementary_svg, *karasa_jaga, *karasa_jaga_svg, *sifr, *sifr_dark, - *sifr_dark_svg, *sifr_svg, *sukapura, *sukapura_svg. + *sifr_dark_svg, *sifr_svg, *sukapura, + *sukapura_dark, *sukapura_dark_svg, *sukapura_svg. --without-helppack-integration It will not integrate the helppacks to the installer of the product. Please use this switch to use the @@ -3815,7 +3816,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -LibreOffice configure 7.5.1.2 +LibreOffice configure 7.5.2.2 generated by GNU Autoconf 2.70 Copyright (C) 2020 Free Software Foundation, Inc. @@ -4563,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.5.1.2, which was +It was created by LibreOffice $as_me 7.5.2.2, which was generated by GNU Autoconf 2.70. Invocation command line was $ $0$ac_configure_args_raw @@ -23782,7 +23783,7 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the assembler ($NASM $NAFLAGS) works" >&5 printf %s "checking whether the assembler ($NASM $NAFLAGS) works... " >&6; } cat > conftest.asm << EOF - %line 23785 "configure" + %line 23786 "configure" section .text global _main,main _main: @@ -43750,14 +43751,14 @@ printf %s "checking which themes to include... " >&6; } # 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_dark sukapura_dark_svg sukapura_svg" fi WITH_THEMES="" 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_dark|sukapura_dark_svg|sukapura_svg) real_theme="$theme" ;; default) real_theme=colibre ;; *) as_fn_error $? "Unknown value for --with-theme: $theme" "$LINENO" 5 ;; esac @@ -47133,7 +47134,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.5.1.2, which was +This file was extended by LibreOffice $as_me 7.5.2.2, which was generated by GNU Autoconf 2.70. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -47202,7 +47203,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -LibreOffice config.status 7.5.1.2 +LibreOffice config.status 7.5.2.2 configured by $0, generated by GNU Autoconf 2.70, with options \\"\$ac_cs_config\\" diff -Nru libreoffice-7.5.1~rc2/configure.ac libreoffice-7.5.2~rc2/configure.ac --- libreoffice-7.5.1~rc2/configure.ac 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/configure.ac 2023-03-24 16:53:38.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.5.1.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[7.5.2.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 @@ -2129,7 +2129,7 @@ *elementary, *elementary_svg, *karasa_jaga, *karasa_jaga_svg, *sifr, *sifr_dark, *sifr_dark_svg, *sifr_svg, - *sukapura, *sukapura_svg.]), + *sukapura, *sukapura_dark, *sukapura_dark_svg, *sukapura_svg.]), ,) libo_FUZZ_ARG_WITH(helppack-integration, @@ -13260,14 +13260,14 @@ 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_dark sukapura_dark_svg sukapura_svg" fi WITH_THEMES="" 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_dark|sukapura_dark_svg|sukapura_svg) real_theme="$theme" ;; default) real_theme=colibre ;; *) AC_MSG_ERROR([Unknown value for --with-theme: $theme]) ;; esac diff -Nru libreoffice-7.5.1~rc2/cui/source/dialogs/FontFeaturesDialog.cxx libreoffice-7.5.2~rc2/cui/source/dialogs/FontFeaturesDialog.cxx --- libreoffice-7.5.1~rc2/cui/source/dialogs/FontFeaturesDialog.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/source/dialogs/FontFeaturesDialog.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -158,15 +158,7 @@ else { if (nValue < 0) - { - // If feature is not set, we don’t know if it is enabled by - // default or not. But we know that stylistic sets and - // character variants are not enabled by default. - if (rFontFeature.isStylisticSet() || rFontFeature.isCharacterVariant()) - aCurrentItem.m_xCheck->set_state(TRISTATE_FALSE); - else - aCurrentItem.m_xCheck->set_state(TRISTATE_INDET); - } + aCurrentItem.m_xCheck->set_state(TRISTATE_INDET); else aCurrentItem.m_xCheck->set_state(nValue > 0 ? TRISTATE_TRUE : TRISTATE_FALSE); aCurrentItem.m_xCheck->set_label(aDefinition.getDescription()); diff -Nru libreoffice-7.5.1~rc2/cui/source/options/optchart.cxx libreoffice-7.5.2~rc2/cui/source/options/optchart.cxx --- libreoffice-7.5.1~rc2/cui/source/options/optchart.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/source/options/optchart.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -157,16 +157,7 @@ void SvxDefaultColorOptPage::Reset( const SfxItemSet* ) { - if( m_SvxChartColorTableUniquePtr ) - { - m_SvxChartColorTableUniquePtr->useDefault(); - - FillBoxChartColorLB(); - - m_xLbChartColors->grab_focus(); - m_xLbChartColors->select( 0 ); - m_xPBRemove->set_sensitive(true); - } + m_xLbChartColors->select( 0 ); } void SvxDefaultColorOptPage::FillPaletteLB() diff -Nru libreoffice-7.5.1~rc2/cui/source/options/optgdlg.cxx libreoffice-7.5.2~rc2/cui/source/options/optgdlg.cxx --- libreoffice-7.5.1~rc2/cui/source/options/optgdlg.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/source/options/optgdlg.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -548,6 +548,7 @@ , m_xMouseMiddleLB(m_xBuilder->weld_combo_box("mousemiddle")) , m_xMoreIcons(m_xBuilder->weld_button("btnMoreIcons")) , m_xRunGPTests(m_xBuilder->weld_button("btn_rungptest")) + , m_sAutoStr(m_xIconStyleLB->get_text(0)) { OUString sToolKitName(Application::GetToolkitName()); if (sToolKitName.startsWith("gtk")) @@ -561,8 +562,18 @@ m_xUseSkia->connect_toggled(LINK(this, OfaViewTabPage, OnUseSkiaToggled)); + UpdateIconThemes(); + + m_xIconStyleLB->set_active(0); + + m_xMoreIcons->set_from_icon_name("cmd/sc_additionsdialog.png"); + m_xMoreIcons->connect_clicked(LINK(this, OfaViewTabPage, OnMoreIconsClick)); + m_xRunGPTests->connect_clicked( LINK( this, OfaViewTabPage, OnRunGPTestClick)); +} + +void OfaViewTabPage::UpdateIconThemes() +{ // Set known icon themes - OUString sAutoStr( m_xIconStyleLB->get_text( 0 ) ); m_xIconStyleLB->clear(); StyleSettings aStyleSettings = Application::GetSettings().GetStyleSettings(); mInstalledIconThemes = aStyleSettings.GetInstalledIconThemes(); @@ -572,9 +583,7 @@ OUString autoThemeId = aStyleSettings.GetAutomaticallyChosenIconTheme(); const vcl::IconThemeInfo& autoIconTheme = vcl::IconThemeInfo::FindIconThemeById(mInstalledIconThemes, autoThemeId); - OUString entryForAuto = sAutoStr + " (" + - autoIconTheme.GetDisplayName() + - ")"; + OUString entryForAuto = m_sAutoStr + " (" + autoIconTheme.GetDisplayName() + ")"; m_xIconStyleLB->append("auto", entryForAuto); // index 0 means choose style automatically // separate auto and other icon themes @@ -582,12 +591,6 @@ for (auto const& installIconTheme : mInstalledIconThemes) m_xIconStyleLB->append(installIconTheme.GetThemeId(), installIconTheme.GetDisplayName()); - - m_xIconStyleLB->set_active(0); - - m_xMoreIcons->set_from_icon_name("cmd/sc_additionsdialog.png"); - m_xMoreIcons->connect_clicked(LINK(this, OfaViewTabPage, OnMoreIconsClick)); - m_xRunGPTests->connect_clicked( LINK( this, OfaViewTabPage, OnRunGPTestClick)); } OfaViewTabPage::~OfaViewTabPage() @@ -921,6 +924,9 @@ m_xNotebookbarIconSizeLB->set_active(nNotebookbarSizeLB_InitialSelection); m_xNotebookbarIconSizeLB->save_value(); + // tdf#153497 set name of automatic icon theme, it may have changed due to "Apply" while this page is visible + UpdateIconThemes(); + if (aMiscOptions.IconThemeWasSetAutomatically()) { nStyleLB_InitialSelection = 0; } diff -Nru libreoffice-7.5.1~rc2/cui/source/options/optgdlg.hxx libreoffice-7.5.2~rc2/cui/source/options/optgdlg.hxx --- libreoffice-7.5.1~rc2/cui/source/options/optgdlg.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/source/options/optgdlg.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -115,6 +115,8 @@ std::unique_ptr m_xMoreIcons; std::unique_ptr m_xRunGPTests; + OUString m_sAutoStr; + DECL_LINK(OnAntialiasingToggled, weld::Toggleable&, void); DECL_LINK(OnUseSkiaToggled, weld::Toggleable&, void); DECL_STATIC_LINK(OfaViewTabPage, OnMoreIconsClick, weld::Button&, void); @@ -122,6 +124,7 @@ void UpdateSkiaStatus(); void HideSkiaWidgets(); void UpdateHardwareAccelStatus(); + void UpdateIconThemes(); public: OfaViewTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet); diff -Nru libreoffice-7.5.1~rc2/cui/source/tabpages/autocdlg.cxx libreoffice-7.5.2~rc2/cui/source/tabpages/autocdlg.cxx --- libreoffice-7.5.1~rc2/cui/source/tabpages/autocdlg.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/source/tabpages/autocdlg.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -375,7 +375,6 @@ { m_xCheckLB->connect_changed(LINK(this, OfaSwAutoFmtOptionsPage, SelectHdl)); m_xCheckLB->connect_row_activated(LINK(this, OfaSwAutoFmtOptionsPage, DoubleClickEditHdl)); - m_xCheckLB->enable_toggle_buttons(weld::ColumnToggleType::Check); std::vector aWidths { @@ -1586,7 +1585,6 @@ if ( bShowSWOptions ) { - m_xSwCheckLB->enable_toggle_buttons(weld::ColumnToggleType::Check); std::vector aWidths { o3tl::narrowing(m_xSwCheckLB->get_pixel_size(m_xSwCheckLB->get_column_title(0)).Width() * 2), diff -Nru libreoffice-7.5.1~rc2/cui/uiconfig/ui/aboutdialog.ui libreoffice-7.5.2~rc2/cui/uiconfig/ui/aboutdialog.ui --- libreoffice-7.5.1~rc2/cui/uiconfig/ui/aboutdialog.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/uiconfig/ui/aboutdialog.ui 2023-03-24 16:53:38.000000000 +0000 @@ -349,9 +349,6 @@ True 60 0 - - - 1 diff -Nru libreoffice-7.5.1~rc2/cui/uiconfig/ui/connpooloptions.ui libreoffice-7.5.2~rc2/cui/uiconfig/ui/connpooloptions.ui --- libreoffice-7.5.1~rc2/cui/uiconfig/ui/connpooloptions.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/uiconfig/ui/connpooloptions.ui 2023-03-24 16:53:38.000000000 +0000 @@ -100,6 +100,9 @@ False Current driver: 0 + + + False @@ -113,6 +116,9 @@ False True 0 + + + False diff -Nru libreoffice-7.5.1~rc2/cui/uiconfig/ui/javastartparametersdialog.ui libreoffice-7.5.2~rc2/cui/uiconfig/ui/javastartparametersdialog.ui --- libreoffice-7.5.1~rc2/cui/uiconfig/ui/javastartparametersdialog.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/uiconfig/ui/javastartparametersdialog.ui 2023-03-24 16:53:38.000000000 +0000 @@ -193,6 +193,9 @@ False For example: -Dmyprop=c:\\program files\\java 0 + + + 0 diff -Nru libreoffice-7.5.1~rc2/cui/uiconfig/ui/optadvancedpage.ui libreoffice-7.5.2~rc2/cui/uiconfig/ui/optadvancedpage.ui --- libreoffice-7.5.1~rc2/cui/uiconfig/ui/optadvancedpage.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/uiconfig/ui/optadvancedpage.ui 2023-03-24 16:53:38.000000000 +0000 @@ -284,6 +284,9 @@ False Location: 0 + + + 0 diff -Nru libreoffice-7.5.1~rc2/cui/uiconfig/ui/optonlineupdatepage.ui libreoffice-7.5.2~rc2/cui/uiconfig/ui/optonlineupdatepage.ui --- libreoffice-7.5.1~rc2/cui/uiconfig/ui/optonlineupdatepage.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/uiconfig/ui/optonlineupdatepage.ui 2023-03-24 16:53:38.000000000 +0000 @@ -269,6 +269,9 @@ False Download destination: 0 + + + Click to select the destination folder for downloaded files. @@ -287,6 +290,9 @@ False end 0 + + + False diff -Nru libreoffice-7.5.1~rc2/cui/uiconfig/ui/optviewpage.ui libreoffice-7.5.2~rc2/cui/uiconfig/ui/optviewpage.ui --- libreoffice-7.5.1~rc2/cui/uiconfig/ui/optviewpage.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/cui/uiconfig/ui/optviewpage.ui 2023-03-24 16:53:38.000000000 +0000 @@ -650,6 +650,9 @@ 12 Skia is currently enabled. 0 + + + 0 @@ -662,6 +665,9 @@ 12 Skia is currently disabled. 0 + + + 0 diff -Nru libreoffice-7.5.1~rc2/debian/changelog libreoffice-7.5.2~rc2/debian/changelog --- libreoffice-7.5.1~rc2/debian/changelog 2023-02-22 18:46:23.000000000 +0000 +++ libreoffice-7.5.2~rc2/debian/changelog 2023-03-24 17:16:59.000000000 +0000 @@ -1,6 +1,6 @@ -libreoffice (4:7.5.1~rc2-0ubuntu0.18.04.1~lo4) bionic; urgency=medium +libreoffice (4:7.5.2~rc2-0ubuntu0.18.04.1~lo1) bionic; urgency=medium - * Backport from lunar (LP: #) + * Backport from lunar * Lower dpkg-dev requirement - buildopts.mk is not available in dpkg-dev < 1.20.1 * Use internal abseil, gpgmepp, libmwaw, libwps, mdds, orcus, @@ -8,7 +8,33 @@ libvisio, libwpd, libwpg to meat upstream requirements * Apparmor 2.13 is not available - -- Rico Tzschichholz Wed, 22 Feb 2023 19:46:23 +0100 + -- Rico Tzschichholz Fri, 24 Mar 2023 18:16:59 +0100 + +libreoffice (4:7.5.2~rc2-0ubuntu1) lunar; urgency=medium + + * New upstream release candidate + + -- Rico Tzschichholz Fri, 24 Mar 2023 18:16:59 +0100 + +libreoffice (4:7.5.2~rc1-0ubuntu1) lunar; urgency=medium + + * New upstream release candidate + * tests/patches/s390x-skip-tests.diff: + - Skip four more failing tests on s390x + + -- Rico Tzschichholz Thu, 09 Mar 2023 21:29:44 +0100 + +libreoffice (4:7.5.2~rc1-1) experimental; urgency=medium + + * New upstream release candidate + + * debian/rules: + - actually generate ucf snippets for ca-valencia, kmr-Latn, sr-Latn and + the new bn-IN in their langpacks + * merge from Ubuntu: + - Enable bn-IN and merge into l10n-bn + + -- Rene Engelhard Sun, 12 Mar 2023 09:56:17 +0100 libreoffice (4:7.5.1~rc2-0ubuntu1) lunar; urgency=medium @@ -17,11 +43,11 @@ -- Rico Tzschichholz Wed, 22 Feb 2023 19:46:23 +0100 -libreoffice (4:7.5.1~rc2~git20230210-1) UNRELEASED; urgency=medium +libreoffice (4:7.5.1~rc2-1) experimental; urgency=medium - * New upstream snapshot + * New upstream release candidate - -- Rene Engelhard Thu, 09 Feb 2023 21:40:58 +0100 + -- Rene Engelhard Thu, 23 Feb 2023 18:56:29 +0100 libreoffice (4:7.5.1~rc1-1) experimental; urgency=medium diff -Nru libreoffice-7.5.1~rc2/debian/patches/add-yaru-theme.diff libreoffice-7.5.2~rc2/debian/patches/add-yaru-theme.diff --- libreoffice-7.5.1~rc2/debian/patches/add-yaru-theme.diff 2023-02-22 18:46:23.000000000 +0000 +++ libreoffice-7.5.2~rc2/debian/patches/add-yaru-theme.diff 2023-03-23 17:07:01.000000000 +0000 @@ -6,16 +6,16 @@ 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" +- 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_dark sukapura_dark_svg 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_dark sukapura_dark_svg sukapura_svg yaru yaru_svg yaru_mate yaru_mate_svg" fi WITH_THEMES="" 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_dark|sukapura_dark_svg|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_dark|sukapura_dark_svg|sukapura_svg|yaru|yaru_svg|yaru_mate|yaru_mate_svg) real_theme="$theme" ;; default) real_theme=colibre ;; *) AC_MSG_ERROR([Unknown value for --with-theme: $theme]) ;; esac diff -Nru libreoffice-7.5.1~rc2/debian/rules libreoffice-7.5.2~rc2/debian/rules --- libreoffice-7.5.1~rc2/debian/rules 2023-02-22 18:46:23.000000000 +0000 +++ libreoffice-7.5.2~rc2/debian/rules 2023-03-24 17:16:59.000000000 +0000 @@ -74,11 +74,11 @@ GIT_BASEURL:=git://anongit.freedesktop.org/libreoffice # bootstraping this from the source tree is breaking get-orig-source #lo_sources_ver=$(shell grep AC_INIT $(SOURCE_TREE)/configure.ac | grep documentfoundation | cut -d, -f2 | sed -e 's,\[,,' -e 's,\],,') -lo_sources_ver=7.5.1.2 +lo_sources_ver=7.5.2.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-5-1 +GIT_BRANCH=libreoffice-7-5-2 endif ifeq "$(USE_SOURCE_TARBALLS)" "y" lo_sources_ver=$(shell cat $(CURDIR)/sources.ver | cut -d= -f2) @@ -337,9 +337,7 @@ 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_svg sifr_dark sifr_dark_svg breeze breeze_dark breeze_dark_svg breeze_svg elementary elementary_svg karasa_jaga karasa_jaga_svg sukapura sukapura_svg sukapura_dark sukapura_dark_svg yaru yaru_svg yaru_mate yaru_mate_svg CONFIGURE_FLAGS_INDEP += --with-theme="$(IMAGES)" ENABLE_MARIADB=y ifeq "$(ENABLE_MARIADB)" "y" @@ -1110,7 +1108,7 @@ # one to that gid_Module_Root always is english and the other langpacks # have gid_Module_Root.$iso #ISOS=$(shell $(SOURCE_TREE)/bin/lo-xlate-lang -i all') - ISOS:=en-US af am ar as ast be bg bn br bs ca ca-valencia cs cy da de dz el \ + ISOS:=en-US af am ar as ast be bg bn bn-IN br bs ca ca-valencia cs cy da de dz el \ en-GB en-ZA eo es et eu fa fi fr ga gd gl gu gug he hi hr hu id is it ja \ ka kk km kmr-Latn kn ko lt lv mk mn ml mr nb ne nl nn nr nso oc om or \ pa-IN pl pt pt-BR ro ru rw si sk sl sr sr-Latn ss st sv szl \ @@ -1123,7 +1121,7 @@ ja km ko nl om pl pt pt-BR ru sk sl sv tr vi zh-CN zh-TW endif #LANGPACKISOS:=$(shell $(SOURCE_TREE)/bin/lo-xlate-lang -i all') - LANGPACKISOS:=en-US af am ar as ast be bg bn br bs ca ca-valencia cs cy da de dz el \ + LANGPACKISOS:=en-US af am ar as ast be bg bn bn-IN br bs ca ca-valencia cs cy da de dz el \ en-GB en-ZA eo es et eu fa fi fr ga gd gl gu gug he hi hr hu id is it ja \ ka kk km kmr-Latn kn ko lt lv mk mn ml mr nb ne nl nn nr nso oc om or \ pa-IN pl pt pt-BR ro ru rw si sk sl sr sr-Latn ss st sv szl \ @@ -1897,6 +1895,7 @@ for LNUM in $(filter-out en-US,$(LANGPACKISOS)) ; do \ LNAME=`$(SOURCE_TREE)/bin/lo-xlate-lang -l $$LNUM | perl -e 'print ucfirst();'`; \ LCODE=`$(SOURCE_TREE)/bin/lo-xlate-lang -i $$LNUM | tr A-Z a-z`; \ + [ "$$LNUM" = bn-IN ] && continue; \ [ "$$LNUM" = ca-valencia ] && continue; \ [ "$$LNUM" = sr-Latn ] && continue; \ [ "$$LCODE" = kmr-latn ] && LCODE=kmr; \ @@ -2444,6 +2443,14 @@ cat debian/libreoffice-l10n-en-US.install >> debian/libreoffice-common.install rm -f debian/libreoffice-l10n-en-US.dirs debian/libreoffice-l10n-en-US.install + # and bn-IN in -bn... +ifeq (bn-IN,$(findstring bn-IN,$(LANGPACKISOS))) + if [ -f debian/libreoffice-l10n-bn-IN.dirs -a -f debian/libreoffice-l10n-bn-IN.install ]; then \ + cat debian/libreoffice-l10n-bn-IN.dirs >> debian/libreoffice-l10n-bn.dirs; \ + cat debian/libreoffice-l10n-bn-IN.install >> debian/libreoffice-l10n-bn.install; \ + rm -f debian/libreoffice-l10n-bn-IN.dirs debian/libreoffice-l10n-bn-IN.install; \ + fi +endif # and ca-valencia in -ca... ifeq (ca-valencia,$(findstring ca-valencia,$(LANGPACKISOS))) if [ -f debian/libreoffice-l10n-ca-valencia.dirs -a -f debian/libreoffice-l10n-ca-valencia.install ]; then \ @@ -2865,11 +2872,17 @@ # create .ucf files for libreoffice-l10n-*. First generic ones # libreoffice-l10n.ucf.in, but there also are CJK/CTL specific # files, too... + rm -f debian/libreoffice-l10n-*.ucf for iso in $(filter-out en-US,$(LANGPACKISOS)); do \ - pkgiso=`echo $$iso | tr \[:upper:\] \[:lower:\]`; \ + if [ "$$iso" = "bn-IN" ]; then pkgiso=bn; \ + elif [ "$$iso" = "ca-valencia" ]; then pkgiso=ca; \ + elif [ "$$iso" = "sr-Latn" ]; then pkgiso=sr; \ + elif [ "$$iso" = "kmr-Latn" ]; then pkgiso=kmr; \ + else pkgiso=`echo $$iso | tr \[:upper:\] \[:lower:\]`; \ + fi; \ cat debian/libreoffice-l10n.ucf.in \ | sed -e "s/\@ISO\@/$$iso/g" \ - > debian/libreoffice-l10n-$$pkgiso.ucf; \ + >> debian/libreoffice-l10n-$$pkgiso.ucf; \ if [ -f instdir/share/registry/ctl_$$iso.xcd ]; then \ echo "/usr/lib/libreoffice/share/.registry/ctl_$$iso.xcd /etc/libreoffice/registry/ctl_$$iso.xcd" \ >> debian/libreoffice-l10n-$$pkgiso.ucf; \ @@ -2921,6 +2934,7 @@ # install technical.dic for iso in $(LANGPACKISOS); do \ if [ "$$iso" = "en-US" ]; then pkg=common; \ + elif [ "$$iso" = "bn-IN" ]; then pkg=l10n-bn; \ elif [ "$$iso" = "ca-valencia" ]; then pkg=l10n-ca; \ elif [ "$$iso" = "sr-Latn" ]; then pkg=l10n-sr; \ elif [ "$$iso" = "kmr-Latn" ]; then pkg=l10n-kmr; \ @@ -2937,6 +2951,7 @@ for iso in $(LANGPACKISOS); do \ [ "$$iso" = "en-US" ] && continue; \ pkgiso=`echo $$iso | tr \[:upper:\] \[:lower:\]`; \ + [ "$$pkgiso" = "bn-IN" ] && pkgiso=bn; \ [ "$$pkgiso" = "ca-valencia" ] && pkgiso=ca; \ [ "$$pkgiso" = "sr-latn" ] && pkgiso=sr; \ [ "$$pkgiso" = "kmr-latn" ] && pkgiso=kmr; \ @@ -3485,10 +3500,14 @@ 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_svg" ]; then p=sifr; 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" = "karasa_jaga_svg" ]; then p=karasa-jaga; fi; \ if [ "$$i" = "sukapura_svg" ]; then p=sukapura; fi; \ + if [ "$$i" = "sukapura_dark" ]; then p=sukapura; fi; \ + if [ "$$i" = "sukapura_dark_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; \ diff -Nru libreoffice-7.5.1~rc2/debian/tests/patches/s390x-skip-tests.diff libreoffice-7.5.2~rc2/debian/tests/patches/s390x-skip-tests.diff --- libreoffice-7.5.1~rc2/debian/tests/patches/s390x-skip-tests.diff 2023-02-22 18:46:23.000000000 +0000 +++ libreoffice-7.5.2~rc2/debian/tests/patches/s390x-skip-tests.diff 2023-03-23 17:07:01.000000000 +0000 @@ -47,3 +47,125 @@ with self.ui_test.create_doc_in_start_center("calc"): xCalcDoc = self.xUITest.getTopFocusWindow() gridwin = xCalcDoc.getChild("grid_window") + + +# Traceback (most recent call last): +# File "/tmp/autopkgtest.d0OoUv/build.pHY/src/sc/qa/uitest/calc_tests3/clearCells.py", line 220, in test_clear_cells_formats +# self.assertEqual(get_state_as_dict(xstylelb)["Text"], "Regular") +# AssertionError: 'Book' != 'Regular' +# - Book +# + Regular + +diff --git a/sc/qa/uitest/calc_tests3/clearCells.py b/sc/qa/uitest/calc_tests3/clearCells.py +index a94f2c174f38..3641a042892e 100644 +--- a/sc/qa/uitest/calc_tests3/clearCells.py ++++ b/sc/qa/uitest/calc_tests3/clearCells.py +@@ -6,6 +6,7 @@ + # 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/. + # ++import platform + from uitest.framework import UITestCase + from uitest.uihelper.common import get_state_as_dict + from uitest.uihelper.common import select_pos +@@ -175,6 +176,9 @@ class clearCells(UITestCase): + + + def test_clear_cells_formats(self): ++ if platform.machine().lower().startswith('s390'): ++ return ++ + with self.ui_test.create_doc_in_start_center("calc"): + xCalcDoc = self.xUITest.getTopFocusWindow() + gridwin = xCalcDoc.getChild("grid_window") + + +# Traceback (most recent call last): +# File "/tmp/autopkgtest.d0OoUv/build.pHY/src/sc/qa/uitest/chart/chartDataLabels.py", line 275, in test_tdf136573 +# self.assertEqual("0.5", get_state_as_dict(xDialog.getChild("MTR_FLD_POS_X"))['Value']) +# AssertionError: '0.5' != '0.49' +# - 0.5 +# + 0.49 + +diff --git a/sc/qa/uitest/chart/chartDataLabels.py b/sc/qa/uitest/chart/chartDataLabels.py +index 132f7ae2c656..e68f554f7201 100644 +--- a/sc/qa/uitest/chart/chartDataLabels.py ++++ b/sc/qa/uitest/chart/chartDataLabels.py +@@ -6,6 +6,7 @@ + # 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/. + # ++import platform + from uitest.framework import UITestCase + from uitest.uihelper.common import change_measurement_unit + from uitest.uihelper.common import get_state_as_dict, get_url_for_data_file +@@ -255,6 +256,9 @@ class chartDataLabels(UITestCase): + self.assertEqual(xDataSeries[0].NumberFormat, xFormat) + + def test_tdf136573(self): ++ if platform.machine().lower().startswith('s390'): ++ return ++ + with self.ui_test.load_file(get_url_for_data_file("dataLabels.ods")): + xCalcDoc = self.xUITest.getTopFocusWindow() + gridwin = xCalcDoc.getChild("grid_window") + + +# Traceback (most recent call last): +# File "/tmp/autopkgtest.d0OoUv/build.pHY/src/sd/qa/uitest/impress_tests/tdf91762.py", line 28, in test_tdf91762 +# self.assertEqual(1929, document.DrawPages[0].getByIndex(1).BoundRect.Height) +# AssertionError: 1929 != 1981 + +diff --git a/sd/qa/uitest/impress_tests2/tdf91762.py b/sd/qa/uitest/impress_tests2/tdf91762.py +index 2b3282413e15..f90ab77dd115 100644 +--- a/sd/qa/uitest/impress_tests2/tdf91762.py ++++ b/sd/qa/uitest/impress_tests2/tdf91762.py +@@ -7,6 +7,7 @@ + # file, You can obtain one at http://mozilla.org/MPL/2.0/. + # + ++import platform + from uitest.framework import UITestCase + from uitest.uihelper.common import get_state_as_dict + from libreoffice.uno.propertyvalue import mkPropertyValues +@@ -14,6 +15,9 @@ from libreoffice.uno.propertyvalue import mkPropertyValues + class tdf91762(UITestCase): + + def test_tdf91762(self): ++ if platform.machine().lower().startswith('s390'): ++ return ++ + with self.ui_test.create_doc_in_start_center("impress") as document: + xTemplateDlg = self.xUITest.getTopFocusWindow() + xCancelBtn = xTemplateDlg.getChild("close") + + +# Traceback (most recent call last): +# File "/tmp/autopkgtest.d0OoUv/build.pHY/src/sw/qa/uitest/writer_tests4/tdf122449.py", line 30, in test_tdf122449_crash_edit_index_entry +# self.assertEqual(get_state_as_dict(xWriterEdit)["CurrentPage"], "6") +# AssertionError: '7' != '6' +# - 7 +# + 6 + +diff --git a/sw/qa/uitest/writer_tests4/tdf122449.py b/sw/qa/uitest/writer_tests4/tdf122449.py +index 4c4f91e75dfd..436afc8d4b8a 100644 +--- a/sw/qa/uitest/writer_tests4/tdf122449.py ++++ b/sw/qa/uitest/writer_tests4/tdf122449.py +@@ -7,6 +7,7 @@ + # file, You can obtain one at http://mozilla.org/MPL/2.0/. + # + ++import platform + from uitest.framework import UITestCase + from libreoffice.uno.propertyvalue import mkPropertyValues + from uitest.uihelper.common import get_state_as_dict, get_url_for_data_file +@@ -16,6 +17,9 @@ from uitest.uihelper.common import get_state_as_dict, get_url_for_data_file + class tdf122449(UITestCase): + + def test_tdf122449_crash_edit_index_entry(self): ++ if platform.machine().lower().startswith('s390'): ++ return ++ + with self.ui_test.load_file(get_url_for_data_file("tdf122449.odt")): + xWriterDoc = self.xUITest.getTopFocusWindow() + xWriterEdit = xWriterDoc.getChild("writer_edit") diff -Nru libreoffice-7.5.1~rc2/debian/tests/uicheck-sc libreoffice-7.5.2~rc2/debian/tests/uicheck-sc --- libreoffice-7.5.1~rc2/debian/tests/uicheck-sc 2023-02-22 18:46:23.000000000 +0000 +++ libreoffice-7.5.2~rc2/debian/tests/uicheck-sc 2023-03-23 17:07:01.000000000 +0000 @@ -17,6 +17,7 @@ function unapply() { echo echo "====== Unapplying the patch ======" + patch -p1 --no-backup-if-mismatch -R < ./debian/tests/patches/s390x-skip-tests.diff patch -p1 -R < ./debian/tests/patches/uicheck-standalone.diff } @@ -25,6 +26,7 @@ echo echo "====== Patching the tree to build uicheck against an existing installation ======" patch -p1 < ./debian/tests/patches/uicheck-standalone.diff +patch -p1 --no-backup-if-mismatch < ./debian/tests/patches/s390x-skip-tests.diff if [ ! -f config_host.mk ]; then # this normally shouldn't be needed but otherwise it wants a automatic diff -Nru libreoffice-7.5.1~rc2/debian/tests/uicheck-sd libreoffice-7.5.2~rc2/debian/tests/uicheck-sd --- libreoffice-7.5.1~rc2/debian/tests/uicheck-sd 2022-11-10 16:14:58.000000000 +0000 +++ libreoffice-7.5.2~rc2/debian/tests/uicheck-sd 2023-03-14 19:58:17.000000000 +0000 @@ -17,6 +17,7 @@ function unapply() { echo echo "====== Unapplying the patch ======" + patch -p1 --no-backup-if-mismatch -R < ./debian/tests/patches/s390x-skip-tests.diff patch -p1 -R < ./debian/tests/patches/uicheck-standalone.diff } @@ -25,6 +26,7 @@ echo echo "====== Patching the tree to build uicheck against an existing installation ======" patch -p1 < ./debian/tests/patches/uicheck-standalone.diff +patch -p1 --no-backup-if-mismatch < ./debian/tests/patches/s390x-skip-tests.diff if [ ! -f config_host.mk ]; then # this normally shouldn't be needed but otherwise it wants a automatic diff -Nru libreoffice-7.5.1~rc2/distro-configs/LibreOfficeFlatpak.conf libreoffice-7.5.2~rc2/distro-configs/LibreOfficeFlatpak.conf --- libreoffice-7.5.1~rc2/distro-configs/LibreOfficeFlatpak.conf 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/distro-configs/LibreOfficeFlatpak.conf 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,4 @@ --disable-odk ---disable-skia --enable-release-build --with-ant-home=/run/build/libreoffice/ant --with-extra-buildid=Flatpak diff -Nru libreoffice-7.5.1~rc2/download.lst libreoffice-7.5.2~rc2/download.lst --- libreoffice-7.5.1~rc2/download.lst 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/download.lst 2023-03-24 16:53:38.000000000 +0000 @@ -75,8 +75,8 @@ # three static lines # so that git cherry-pick # will not run into conflicts -CURL_SHA256SUM := ee5f1a1955b0ed413435ef79db28b834ea5f0fb7c8cfb1ce47175cc3bee08fff -CURL_TARBALL := curl-7.87.0.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 @@ -270,8 +270,8 @@ # three static lines # so that git cherry-pick # will not run into conflicts -LIBJPEG_TURBO_SHA256SUM := d3ed26a1131a13686dfca4935e520eb7c90ae76fbc45d98bb50a8dc86230342b -LIBJPEG_TURBO_TARBALL := libjpeg-turbo-2.1.4.tar.gz +LIBJPEG_TURBO_SHA256SUM := bc12bc9dce55300c6bf4342bc233bcc26bd38bf289eedf147360d731c668ddaf +LIBJPEG_TURBO_TARBALL := libjpeg-turbo-2.1.5.tar.gz # three static lines # so that git cherry-pick # will not run into conflicts @@ -461,8 +461,8 @@ # three static lines # so that git cherry-pick # will not run into conflicts -POSTGRESQL_SHA256SUM := 73876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded -POSTGRESQL_TARBALL := postgresql-13.8.tar.bz2 +POSTGRESQL_SHA256SUM := 5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2 +POSTGRESQL_TARBALL := postgresql-13.10.tar.bz2 # three static lines # so that git cherry-pick # will not run into conflicts diff -Nru libreoffice-7.5.1~rc2/drawinglayer/source/processor2d/vclprocessor2d.cxx libreoffice-7.5.2~rc2/drawinglayer/source/processor2d/vclprocessor2d.cxx --- libreoffice-7.5.1~rc2/drawinglayer/source/processor2d/vclprocessor2d.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/drawinglayer/source/processor2d/vclprocessor2d.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -389,7 +389,7 @@ if (bChangeMapMode) { mpOutputDevice->Push(vcl::PushFlags::MAPMODE); - mpOutputDevice->SetMapMode(aMapMode); + mpOutputDevice->SetRelativeMapMode(aMapMode); } } else diff -Nru libreoffice-7.5.1~rc2/emfio/qa/cppunit/emf/EmfImportTest.cxx libreoffice-7.5.2~rc2/emfio/qa/cppunit/emf/EmfImportTest.cxx --- libreoffice-7.5.1~rc2/emfio/qa/cppunit/emf/EmfImportTest.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/emfio/qa/cppunit/emf/EmfImportTest.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -180,14 +180,19 @@ assertXPath(pDocument, aXPathPrefix + "mask/polypolygoncolor[2]/polypolygon", "path", "m2574 13194v-12065h15303v12065z"); - assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke", 116); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke", 44); assertXPathContent(pDocument, aXPathPrefix + "mask/polygonstroke[1]/polygon", - "2574,13194 2574,1129 17877,1129 17877,13194"); - assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[1]/line", "color", "#ffffff"); - + "2574,13194 2574,1129"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[1]/line", "color", "#000000"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[1]/line", "width", "0"); + assertXPathContent(pDocument, aXPathPrefix + "mask/polygonstroke[2]/polygon", + "2574,1129 2574,1129"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[2]/line", "color", "#000000"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[2]/line", "width", "0"); assertXPathContent(pDocument, aXPathPrefix + "mask/polygonstroke[10]/polygon", - "8674,13194 8674,1129"); + "8674,1129 8674,1129"); assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[10]/line", "color", "#000000"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[10]/line", "width", "0"); assertXPath(pDocument, aXPathPrefix + "mask/textsimpleportion", 28); assertXPath(pDocument, aXPathPrefix + "mask/textsimpleportion[6]", "width", "459"); @@ -1547,7 +1552,7 @@ void Test::TestCreatePen() { // Check import of EMF image with records: RESTOREDC, SAVEDC, MOVETOEX, LINETO, POLYLINE16, EXTTEXTOUTW with DxBuffer - // The CREATEPEN record is used with PS_COSMETIC line style, which sometimes will be displayed as solid hairline + // The CREATEPEN record is used with PS_COSMETIC line style, and in this case width must be set to 0 Primitive2DSequence aSequence = parseEmf(u"/emfio/qa/cppunit/emf/data/TestCreatePen.emf"); CPPUNIT_ASSERT_EQUAL(1, static_cast(aSequence.getLength())); drawinglayer::Primitive2dXmlDump dumper; @@ -1556,29 +1561,29 @@ assertXPath(pDocument, aXPathPrefix + "mask/polypolygon", "path", "m0 0h31250v18192h-31250z"); - assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke", 748); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke", 3); assertXPathContent(pDocument, aXPathPrefix + "mask/polygonstroke[1]/polygon", - "27875,16523 27875,1453"); - assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[1]/line", "color", "#ff0000"); - assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[1]/line", "width", "6"); + "17898,5693 20172,5693"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[1]/line", "color", "#008000"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[1]/line", "width", "0"); assertXPathContent(pDocument, aXPathPrefix + "mask/polygonstroke[2]/polygon", - "27975,16453 27875,16453"); - assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[2]/line", "color", "#ff0000"); - assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[2]/line", "width", "6"); + "17898,6959 20172,6959"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[2]/line", "color", "#000080"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[2]/line", "width", "0"); assertXPathContent(pDocument, aXPathPrefix + "mask/polygonstroke[3]/polygon", - "27925,16078 27875,16078"); + "17898,7381 20172,7381"); assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[3]/line", "color", "#ff0000"); - assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[3]/line", "width", "6"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonstroke[3]/line", "width", "0"); - assertXPath(pDocument, aXPathPrefix + "mask/polygonhairline", 10); - assertXPath(pDocument, aXPathPrefix + "mask/polygonhairline[5]", "color", "#008000"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonhairline", 755); + assertXPath(pDocument, aXPathPrefix + "mask/polygonhairline[5]", "color", "#ff0000"); assertXPathContent(pDocument, aXPathPrefix + "mask/polygonhairline[5]/polygon", - "25850,2179 25844,1958"); - assertXPath(pDocument, aXPathPrefix + "mask/polygonhairline[10]", "color", "#000080"); + "27925,16078 27875,16078"); + assertXPath(pDocument, aXPathPrefix + "mask/polygonhairline[10]", "color", "#ff0000"); assertXPathContent(pDocument, aXPathPrefix + "mask/polygonhairline[10]/polygon", - "2025,1642 2025,1501"); + "27925,14180 27875,14180"); assertXPath(pDocument, aXPathPrefix + "mask/textsimpleportion", 69); assertXPath(pDocument, aXPathPrefix + "mask/textsimpleportion[1]", "width", "374"); diff -Nru libreoffice-7.5.1~rc2/emfio/source/reader/emfreader.cxx libreoffice-7.5.2~rc2/emfio/source/reader/emfreader.cxx --- libreoffice-7.5.1~rc2/emfio/source/reader/emfreader.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/emfio/source/reader/emfreader.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1154,13 +1154,17 @@ mpInputStream->ReadUInt32(nIndex); if ((nIndex & ENHMETA_STOCK_OBJECT) == 0) { - sal_uInt32 nStyle(0); + sal_uInt32 nPenStyle(0); sal_Int32 nPenWidth(0), nIgnored; - mpInputStream->ReadUInt32(nStyle).ReadInt32(nPenWidth).ReadInt32(nIgnored); + mpInputStream->ReadUInt32(nPenStyle).ReadInt32(nPenWidth).ReadInt32(nIgnored); SAL_INFO("emfio", "\t\tIndex: " << nIndex << " Style: 0x" << std::hex - << nStyle << std::dec + << nPenStyle << std::dec << " PenWidth: " << nPenWidth); - CreateObjectIndexed(nIndex, std::make_unique(ReadColor(), nStyle, nPenWidth)); + if ((nPenStyle & PS_STYLE_MASK) > PS_INSIDEFRAME) + nPenStyle = PS_COSMETIC; + if ((nPenStyle & PS_GEOMETRIC) == 0) + nPenWidth = 0; + CreateObjectIndexed(nIndex, std::make_unique(ReadColor(), nPenStyle, nPenWidth)); } } break; @@ -1170,12 +1174,15 @@ mpInputStream->ReadUInt32(nIndex); if ((nIndex & ENHMETA_STOCK_OBJECT) == 0) { - sal_uInt32 offBmi, cbBmi, offBits, cbBits, nStyle, nWidth, nBrushStyle, elpNumEntries; + sal_uInt32 offBmi, cbBmi, offBits, cbBits, nPenStyle, nWidth, nBrushStyle, elpNumEntries; sal_Int32 elpHatch; mpInputStream->ReadUInt32(offBmi).ReadUInt32(cbBmi).ReadUInt32(offBits).ReadUInt32(cbBits); - mpInputStream->ReadUInt32(nStyle).ReadUInt32(nWidth).ReadUInt32(nBrushStyle); - - SAL_INFO("emfio", "\t\tStyle: 0x" << std::hex << nStyle << std::dec); + mpInputStream->ReadUInt32(nPenStyle).ReadUInt32(nWidth).ReadUInt32(nBrushStyle); + SAL_INFO("emfio", "\t\tStyle: 0x" << std::hex << nPenStyle << std::dec); + if ((nPenStyle & PS_STYLE_MASK) > PS_INSIDEFRAME) + nPenStyle = PS_COSMETIC; + if ((nPenStyle & PS_GEOMETRIC) == 0) + nWidth = 0; SAL_INFO("emfio", "\t\tWidth: " << nWidth); Color aColorRef = ReadColor(); mpInputStream->ReadInt32(elpHatch).ReadUInt32(elpNumEntries); @@ -1183,7 +1190,7 @@ if (!mpInputStream->good()) bStatus = false; else - CreateObjectIndexed(nIndex, std::make_unique(aColorRef, nStyle, nWidth)); + CreateObjectIndexed(nIndex, std::make_unique(aColorRef, nPenStyle, nWidth)); } } break; diff -Nru libreoffice-7.5.1~rc2/emfio/source/reader/mtftools.cxx libreoffice-7.5.2~rc2/emfio/source/reader/mtftools.cxx --- libreoffice-7.5.1~rc2/emfio/source/reader/mtftools.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/emfio/source/reader/mtftools.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -791,12 +791,12 @@ break; case StockObject::WHITE_PEN : { - maLineStyle = WinMtfLineStyle( COL_WHITE ); + maLineStyle = WinMtfLineStyle(COL_WHITE, PS_COSMETIC, 0); } break; case StockObject::BLACK_PEN : { - maLineStyle = WinMtfLineStyle( COL_BLACK ); + maLineStyle = WinMtfLineStyle(COL_BLACK, PS_COSMETIC, 0); } break; case StockObject::NULL_PEN : diff -Nru libreoffice-7.5.1~rc2/external/curl/asan-poison-nsspem.patch.0 libreoffice-7.5.2~rc2/external/curl/asan-poison-nsspem.patch.0 --- libreoffice-7.5.1~rc2/external/curl/asan-poison-nsspem.patch.0 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/external/curl/asan-poison-nsspem.patch.0 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ --- lib/vtls/nss.c +++ lib/vtls/nss.c -@@ -1945,7 +1945,7 @@ +@@ -1926,7 +1926,7 @@ PK11_SetPasswordFunc(nss_get_password); diff -Nru libreoffice-7.5.1~rc2/external/curl/curl-nss.patch.1 libreoffice-7.5.2~rc2/external/curl/curl-nss.patch.1 --- libreoffice-7.5.1~rc2/external/curl/curl-nss.patch.1 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/external/curl/curl-nss.patch.1 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ diff -ur curl.org/configure curl/configure ---- curl.org/configure 2016-03-13 15:14:07.177000076 +0100 -+++ curl/configure 2016-03-13 15:16:44.132000076 +0100 -@@ -28230,7 +28230,12 @@ +--- curl.orig/configure 2023-02-20 16:11:55.000000000 +0900 ++++ curl/configure 2023-02-23 15:40:58.617432471 +0900 +@@ -28675,7 +28675,12 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: Using hard-wired libraries and compilation flags for NSS." >&5 printf "%s\n" "$as_me: WARNING: Using hard-wired libraries and compilation flags for NSS." >&2;} addld="-L$OPT_NSS/lib" diff -Nru libreoffice-7.5.1~rc2/external/libjpeg-turbo/jconfigint.h libreoffice-7.5.2~rc2/external/libjpeg-turbo/jconfigint.h --- libreoffice-7.5.1~rc2/external/libjpeg-turbo/jconfigint.h 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/external/libjpeg-turbo/jconfigint.h 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ #include /* libjpeg-turbo build number */ -#define BUILD "20221122" +#define BUILD "20230228" /* Compiler's inline keyword */ #undef inline @@ -19,11 +19,14 @@ #define PACKAGE_NAME "libjpeg-turbo" /* Version number of package */ -#define VERSION "2.1.4" +#define VERSION "2.1.5" /* The size of `size_t', as computed by sizeof. */ /* #undef SIZEOF_SIZE_T */ +/* How to obtain thread-local storage */ +#define THREAD_LOCAL + #if defined(__GNUC__) && SAL_TYPES_SIZEOFLONG == SIZEOF_SIZE_T /* Define if your compiler has __builtin_ctzl() and sizeof(unsigned long) == sizeof(size_t). */ #define HAVE_BUILTIN_CTZL diff -Nru libreoffice-7.5.1~rc2/external/postgresql/arm64.patch.1 libreoffice-7.5.2~rc2/external/postgresql/arm64.patch.1 --- libreoffice-7.5.1~rc2/external/postgresql/arm64.patch.1 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/external/postgresql/arm64.patch.1 2023-03-24 16:53:38.000000000 +0000 @@ -28,7 +28,7 @@ my $includes = $self->{includes}; unless ($includes eq '' or $includes =~ /;$/) -@@ -347,7 +347,6 @@ +@@ -347,7 +346,6 @@ .\\$cfgname\\$self->{name}\\$self->{name}.pdb false .\\$cfgname\\$self->{name}\\$self->{name}.map diff -Nru libreoffice-7.5.1~rc2/external/postgresql/postgresql.exit.patch.0 libreoffice-7.5.2~rc2/external/postgresql/postgresql.exit.patch.0 --- libreoffice-7.5.1~rc2/external/postgresql/postgresql.exit.patch.0 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/external/postgresql/postgresql.exit.patch.0 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ # error: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' [-Werror,-Wimplicit-function-declaration] --- configure +++ configure -@@ -16821,6 +16821,7 @@ +@@ -16997,6 +16997,7 @@ else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -9,7 +9,7 @@ typedef long int ac_int64; /* -@@ -16905,6 +16905,7 @@ +@@ -17081,6 +17082,7 @@ else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ diff -Nru libreoffice-7.5.1~rc2/framework/source/accelerators/acceleratorconfiguration.cxx libreoffice-7.5.2~rc2/framework/source/accelerators/acceleratorconfiguration.cxx --- libreoffice-7.5.1~rc2/framework/source/accelerators/acceleratorconfiguration.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/framework/source/accelerators/acceleratorconfiguration.cxx 2023-03-24 16:53:38.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.5.1~rc2/.gitreview libreoffice-7.5.2~rc2/.gitreview --- libreoffice-7.5.1~rc2/.gitreview 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/.gitreview 2023-03-24 16:53:38.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-7-5-1 +defaultbranch=libreoffice-7-5-2 diff -Nru libreoffice-7.5.1~rc2/helpcontent2/source/text/shared/01/06140400.xhp libreoffice-7.5.2~rc2/helpcontent2/source/text/shared/01/06140400.xhp --- libreoffice-7.5.1~rc2/helpcontent2/source/text/shared/01/06140400.xhp 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/helpcontent2/source/text/shared/01/06140400.xhp 2023-03-24 16:53:38.000000000 +0000 @@ -41,8 +41,10 @@ Displays the results of the combination of the search string and category of the desired function.

Description

The text box contains a short description of the selected command. +

Scope

Select the location where the toolbar is to be attached. If attached to a %PRODUCTNAME module, the toolbar is available for all files opened in that module. If attached to the file, the toolbar will be available only when that file is opened and active. +

Target

Select the toolbar where the customization is to be applied. The current set of functions is displayed in the box below.

Add

diff -Nru libreoffice-7.5.1~rc2/helpcontent2/source/text/shared/autopi/01170000.xhp libreoffice-7.5.2~rc2/helpcontent2/source/text/shared/autopi/01170000.xhp --- libreoffice-7.5.1~rc2/helpcontent2/source/text/shared/autopi/01170000.xhp 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/helpcontent2/source/text/shared/autopi/01170000.xhp 2023-03-24 16:53:38.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.5.1~rc2/hwpfilter/source/hbox.cxx libreoffice-7.5.2~rc2/hwpfilter/source/hbox.cxx --- libreoffice-7.5.1~rc2/hwpfilter/source/hbox.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/hwpfilter/source/hbox.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -579,11 +579,11 @@ case OLSTY_NUMS2: { OStringBuffer buf; - int i; - - buf[0] = 0; - for (i = 0; i <= level; i++) + for (unsigned int i = 0; i <= level; ++i) { + if (i >= std::size(number)) + break; + levelnum = ((number[i] < 1) ? 1 : number[i]); buf.append(OString::number(levelnum)); if (!(shape == OLSTY_NUMS2 && i && i == level)) diff -Nru libreoffice-7.5.1~rc2/i18npool/source/localedata/data/dsb_DE.xml libreoffice-7.5.2~rc2/i18npool/source/localedata/data/dsb_DE.xml --- libreoffice-7.5.1~rc2/i18npool/source/localedata/data/dsb_DE.xml 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/i18npool/source/localedata/data/dsb_DE.xml 2023-03-24 16:53:38.000000000 +0000 @@ -31,7 +31,7 @@ . -   + . , : , @@ -63,13 +63,13 @@ 0,00 - # ##0 + #.##0 - # ##0,00 + #.##0,00 - # ###,00 + #.###,00 0,00E+000 @@ -87,22 +87,22 @@ 0,00" "% - # ##0 [CURRENCY];-# ##0 [CURRENCY] + #.##0 [CURRENCY];-#.##0 [CURRENCY] - # ##0,00 [CURRENCY];-# ##0,00 [CURRENCY] + #.##0,00 [CURRENCY];-#.##0,00 [CURRENCY] - # ##0 [CURRENCY];[RED]-# ##0 [CURRENCY] + #.##0 [CURRENCY];[RED]-#.##0 [CURRENCY] - # ##0,00 [CURRENCY];[RED]-# ##0,00 [CURRENCY] + #.##0,00 [CURRENCY];[RED]-#.##0,00 [CURRENCY] - CCC# ##0,00 + #.##0,00 CCC - # ##0,-- [CURRENCY];[RED]-# ##0,-- [CURRENCY] + #.##0,-- [CURRENCY];[RED]-#.##0,-- [CURRENCY] D.MM.YY Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/breeze/svx/res/a11y_check_issues_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/breeze/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/breeze/svx/res/a11y_check_issues_not_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/breeze/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/breeze_dark/svx/res/a11y_check_issues_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/breeze_dark/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/breeze_dark/svx/res/a11y_check_issues_not_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/breeze_dark/svx/res/a11y_check_issues_not_found.png differ diff -Nru libreoffice-7.5.1~rc2/icon-themes/breeze_dark_svg/svx/res/a11y_check_issues_found.svg libreoffice-7.5.2~rc2/icon-themes/breeze_dark_svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.5.1~rc2/icon-themes/breeze_dark_svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/breeze_dark_svg/svx/res/a11y_check_issues_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/breeze_dark_svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.5.2~rc2/icon-themes/breeze_dark_svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.5.1~rc2/icon-themes/breeze_dark_svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/breeze_dark_svg/svx/res/a11y_check_issues_not_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/breeze_svg/svx/res/a11y_check_issues_found.svg libreoffice-7.5.2~rc2/icon-themes/breeze_svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.5.1~rc2/icon-themes/breeze_svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/breeze_svg/svx/res/a11y_check_issues_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/breeze_svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.5.2~rc2/icon-themes/breeze_svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.5.1~rc2/icon-themes/breeze_svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/breeze_svg/svx/res/a11y_check_issues_not_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/cmd/32/opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/cmd/32/opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/cmd/32/templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/cmd/32/templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/cmd/lc_opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/cmd/lc_opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/cmd/lc_templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/cmd/lc_templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/cmd/sc_opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/cmd/sc_opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/cmd/sc_templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/cmd/sc_templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/base128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/base128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/calc128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/calc128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/draw128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/draw128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/impress128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/impress128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03123.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03123.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03126.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03126.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03127.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03127.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03129.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03129.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03130.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03130.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03162.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03162.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03163.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03163.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03226.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03226.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03245.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03245.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03246.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03246.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03247.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03247.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03248.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03248.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03249.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03249.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03250.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03250.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03251.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03251.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/lx03255.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/lx03255.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/main128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/main128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/mainapp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/mainapp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/mainapp_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/mainapp_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/mainapp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/mainapp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/mainapp_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/mainapp_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/mainapp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/mainapp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/math128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/math128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odb_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odb_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odb_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odb_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odb_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odb_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odf_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odf_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odg_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odg_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odm_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odm_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odm_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odm_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odm_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odm_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odp_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odp_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ods_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ods_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ods_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ods_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ods_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ods_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ods_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ods_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odt_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odt_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odt_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odt_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odt_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odt_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/odt_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/odt_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otf_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otf_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otg_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otg_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/otp_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/otp_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ots_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ots_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ots_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ots_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ots_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ots_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ots_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ots_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ott_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ott_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ott_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ott_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ott_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ott_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/ott_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/ott_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/printeradmin_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/printeradmin_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/printeradmin_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/printeradmin_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/sx03123.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/sx03123.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/sx03126.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/sx03126.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/sx03127.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/sx03127.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/sx03129.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/sx03129.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/sx03130.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/sx03130.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/sx03162.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/sx03162.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/sx03163.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/sx03163.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/sx03226.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/sx03226.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/writer128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/writer128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/res/writer32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/res/writer32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/sfx2/res/128x128_math_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/svx/res/a11y_check_issues_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre/svx/res/a11y_check_issues_not_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/cmd/32/opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/cmd/32/opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/cmd/32/templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/cmd/32/templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/cmd/lc_opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/cmd/lc_opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/cmd/lc_templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/cmd/lc_templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/cmd/sc_opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/cmd/sc_opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/cmd/sc_templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/cmd/sc_templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/base128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/base128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/calc128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/calc128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/draw128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/draw128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/impress128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/impress128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03123.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03123.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03126.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03126.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03127.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03127.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03129.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03129.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03130.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03130.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03162.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03162.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03163.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03163.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03226.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03226.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03245.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03245.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03246.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03246.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03247.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03247.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03248.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03248.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03249.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03249.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03250.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03250.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03251.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03251.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/lx03255.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/lx03255.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/main128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/main128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/mainapp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/mainapp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/mainapp_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/mainapp_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/mainapp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/mainapp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/mainapp_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/mainapp_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/mainapp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/mainapp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/math128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/math128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odb_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odb_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odb_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odb_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odb_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odb_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odf_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odf_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odg_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odg_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odm_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odm_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odm_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odm_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odm_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odm_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odp_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odp_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ods_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ods_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ods_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ods_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ods_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ods_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ods_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ods_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odt_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odt_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odt_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odt_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odt_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odt_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/odt_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/odt_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otf_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otf_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otg_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otg_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/otp_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/otp_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ots_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ots_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ots_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ots_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ots_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ots_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ots_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ots_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ott_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ott_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ott_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ott_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ott_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ott_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/ott_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/ott_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/printeradmin_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/printeradmin_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/printeradmin_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/printeradmin_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/sx03123.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/sx03123.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/sx03126.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/sx03126.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/sx03127.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/sx03127.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/sx03129.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/sx03129.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/sx03130.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/sx03130.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/sx03162.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/sx03162.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/sx03163.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/sx03163.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/sx03226.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/sx03226.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/writer128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/writer128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/res/writer32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/res/writer32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/sfx2/res/128x128_math_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/svx/res/a11y_check_issues_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/colibre_dark/svx/res/a11y_check_issues_not_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/colibre_dark/svx/res/a11y_check_issues_not_found.png differ diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/32/opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/32/opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/32/opentemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/32/opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/32/templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/32/templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/32/templatemanager.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/32/templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/lc_opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/lc_opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/lc_opentemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/lc_opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/lc_templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/lc_templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/lc_templatemanager.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/lc_templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/sc_opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/sc_opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/sc_opentemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/sc_opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/sc_templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/sc_templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/cmd/sc_templatemanager.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/cmd/sc_templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/base128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/base128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/base128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/base128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/calc128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/calc128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/calc128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/calc128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/draw128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/draw128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/draw128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/draw128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/impress128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/impress128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/impress128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/impress128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03123.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03123.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03123.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03123.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03126.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03126.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03126.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03126.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03127.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03127.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03127.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03127.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03129.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03129.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03129.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03129.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03130.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03130.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03130.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03130.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03162.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03162.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03162.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03162.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03163.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03163.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03163.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03163.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03226.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03226.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03226.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03226.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03245.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03245.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03245.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03245.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03246.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03246.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03246.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03246.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03247.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03247.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03247.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03247.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03248.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03248.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03248.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03248.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03249.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03249.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03249.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03249.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03250.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03250.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03250.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03250.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03251.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03251.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03251.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03251.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03255.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03255.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/lx03255.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/lx03255.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/main128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/main128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/main128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/main128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/mainapp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/mainapp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/mainapp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/mainapp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/mainapp_16.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/mainapp_16.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/mainapp_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/mainapp_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/mainapp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/mainapp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/mainapp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/mainapp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/mainapp_32.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/mainapp_32.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/mainapp_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/mainapp_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/mainapp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/mainapp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/mainapp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/mainapp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/math128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/math128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/math128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/math128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odb_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odb_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odb_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odb_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odb_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odb_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odb_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odb_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odb_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odb_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odb_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odb_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odf_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odf_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odf_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odf_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odf_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odf_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odf_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odg_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odg_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odg_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odg_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odg_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odg_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odg_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odm_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odm_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odm_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odm_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odm_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odm_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odm_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odm_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odm_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odm_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odm_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odm_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odp_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odp_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odp_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odp_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ods_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ods_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ods_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ods_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ods_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ods_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ods_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ods_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ods_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ods_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ods_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ods_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ods_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ods_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ods_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ods_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odt_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odt_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odt_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odt_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odt_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odt_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odt_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odt_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odt_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odt_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odt_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odt_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odt_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odt_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/odt_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/odt_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otf_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otf_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otf_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otf_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otf_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otf_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otf_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otg_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otg_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otg_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otg_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otg_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otg_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otg_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otp_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otp_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/otp_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/otp_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ots_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ots_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ots_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ots_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ots_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ots_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ots_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ots_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ots_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ots_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ots_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ots_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ots_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ots_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ots_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ots_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ott_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ott_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ott_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ott_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ott_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ott_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ott_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ott_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ott_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ott_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ott_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ott_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ott_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ott_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/ott_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/ott_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/printeradmin_16.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/printeradmin_16.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/printeradmin_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/printeradmin_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;amp;amp;gt; \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/printeradmin_32.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/printeradmin_32.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/printeradmin_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/printeradmin_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03123.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03123.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03123.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03123.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03126.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03126.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03126.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03126.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03127.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03127.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03127.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03127.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03129.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03129.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03129.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03129.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03130.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03130.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03130.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03130.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03162.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03162.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03162.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03162.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03163.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03163.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03163.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03163.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03226.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03226.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/sx03226.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/sx03226.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/writer128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/writer128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/writer128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/writer128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/writer32.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/writer32.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/res/writer32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/res/writer32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_calc_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_draw_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_impress_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_math_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_math_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_writer_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/svx/res/a11y_check_issues_found.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/svx/res/a11y_check_issues_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_dark_svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_dark_svg/svx/res/a11y_check_issues_not_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/32/opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/32/opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/32/opentemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/32/opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/32/templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/32/templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/32/templatemanager.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/32/templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/lc_opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/lc_opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/lc_opentemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/lc_opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/lc_templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/lc_templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/lc_templatemanager.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/lc_templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/sc_opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/sc_opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/sc_opentemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/sc_opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/sc_templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/sc_templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/cmd/sc_templatemanager.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/cmd/sc_templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/base128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/base128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/base128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/base128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/calc128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/calc128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/calc128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/calc128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/draw128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/draw128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/draw128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/draw128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/impress128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/impress128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/impress128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/impress128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03123.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03123.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03123.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03123.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03126.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03126.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03126.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03126.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03127.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03127.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03127.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03127.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03129.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03129.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03129.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03129.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03130.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03130.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03130.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03130.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03162.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03162.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03162.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03162.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03163.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03163.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03163.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03163.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03226.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03226.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03226.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03226.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03245.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03245.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03245.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03245.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03246.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03246.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03246.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03246.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03247.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03247.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03247.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03247.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03248.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03248.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03248.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03248.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03249.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03249.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03249.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03249.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03250.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03250.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03250.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03250.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03251.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03251.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03251.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03251.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03255.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03255.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/lx03255.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/lx03255.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/main128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/main128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/main128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/main128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/mainapp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/mainapp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/mainapp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/mainapp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/mainapp_16.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/mainapp_16.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/mainapp_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/mainapp_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/mainapp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/mainapp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/mainapp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/mainapp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/mainapp_32.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/mainapp_32.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/mainapp_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/mainapp_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/mainapp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/mainapp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/mainapp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/mainapp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/math128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/math128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/math128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/math128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odb_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odb_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odb_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odb_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odb_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odb_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odb_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odb_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odb_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odb_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odb_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odb_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odf_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odf_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odf_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odf_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odf_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odf_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odf_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odg_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odg_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odg_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odg_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odg_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odg_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odg_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odm_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odm_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odm_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odm_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odm_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odm_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odm_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odm_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odm_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odm_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odm_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odm_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odp_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odp_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odp_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odp_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ods_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ods_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ods_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ods_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ods_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ods_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ods_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ods_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ods_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ods_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ods_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ods_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ods_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ods_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ods_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ods_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odt_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odt_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odt_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odt_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odt_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odt_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odt_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odt_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odt_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odt_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odt_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odt_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odt_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odt_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/odt_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/odt_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otf_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otf_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otf_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otf_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otf_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otf_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otf_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otg_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otg_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otg_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otg_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otg_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otg_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otg_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otp_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otp_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/otp_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/otp_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ots_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ots_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ots_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ots_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ots_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ots_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ots_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ots_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ots_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ots_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ots_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ots_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ots_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ots_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ots_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ots_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ott_16_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ott_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ott_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ott_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ott_32_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ott_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ott_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ott_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ott_48_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ott_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ott_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ott_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ott_96_8.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ott_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/ott_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/ott_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/printeradmin_16.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/printeradmin_16.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/printeradmin_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/printeradmin_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;amp;gt; \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/printeradmin_32.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/printeradmin_32.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/printeradmin_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/printeradmin_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03123.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03123.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03123.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03123.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03126.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03126.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03126.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03126.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03127.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03127.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03127.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03127.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03129.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03129.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03129.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03129.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03130.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03130.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03130.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03130.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03162.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03162.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03162.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03162.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03163.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03163.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03163.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03163.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03226.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03226.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/sx03226.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/sx03226.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/writer128.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/writer128.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/writer128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/writer128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/writer32.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/writer32.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/res/writer32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/res/writer32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/sfx2/res/128x128_calc_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/sfx2/res/128x128_draw_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/sfx2/res/128x128_impress_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/sfx2/res/128x128_math_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/sfx2/res/128x128_math_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/sfx2/res/128x128_writer_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/svx/res/a11y_check_issues_found.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/svx/res/a11y_check_issues_found.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/svx/res/a11y_check_issues_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/colibre_svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.5.2~rc2/icon-themes/colibre_svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.5.1~rc2/icon-themes/colibre_svg/svx/res/a11y_check_issues_not_found.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/colibre_svg/svx/res/a11y_check_issues_not_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ -/&gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/karasa_jaga/svx/res/a11y_check_issues_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/karasa_jaga/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/karasa_jaga/svx/res/a11y_check_issues_not_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/karasa_jaga/svx/res/a11y_check_issues_not_found.png differ diff -Nru libreoffice-7.5.1~rc2/icon-themes/karasa_jaga_svg/svx/res/a11y_check_issues_found.svg libreoffice-7.5.2~rc2/icon-themes/karasa_jaga_svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.5.1~rc2/icon-themes/karasa_jaga_svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/karasa_jaga_svg/svx/res/a11y_check_issues_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/karasa_jaga_svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.5.2~rc2/icon-themes/karasa_jaga_svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.5.1~rc2/icon-themes/karasa_jaga_svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/karasa_jaga_svg/svx/res/a11y_check_issues_not_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/base128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/base128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/calc128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/calc128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/draw128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/draw128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/impress128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/impress128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/math128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/math128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odb_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odb_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odb_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odb_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odb_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odb_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odb_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odb_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odf_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odf_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odg_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odg_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odm_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odm_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odm_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odm_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odm_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odm_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odm_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odm_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odp_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odp_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ods_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ods_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ods_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ods_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ods_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ods_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ods_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ods_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odt_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odt_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odt_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odt_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odt_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odt_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/odt_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/odt_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otf_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otf_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otg_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otg_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otp_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otp_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/otp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/otp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ots_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ots_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ots_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ots_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ots_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ots_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ots_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ots_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ott_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ott_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ott_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ott_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ott_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ott_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/ott_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/ott_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/res/writer128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/res/writer128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/sfx2/res/128x128_math_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/svx/res/a11y_check_issues_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr/svx/res/a11y_check_issues_not_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/base128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/base128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/calc128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/calc128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/draw128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/draw128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/impress128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/impress128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/math128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/math128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odb_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odb_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odb_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odb_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odb_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odb_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odb_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odb_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odf_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odf_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odg_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odg_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odm_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odm_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odm_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odm_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odm_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odm_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odm_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odm_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odp_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odp_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ods_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ods_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ods_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ods_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ods_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ods_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ods_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ods_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odt_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odt_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odt_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odt_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odt_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odt_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/odt_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/odt_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otf_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otf_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otg_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otg_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otp_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otp_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/otp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/otp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ots_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ots_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ots_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ots_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ots_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ots_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ots_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ots_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ott_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ott_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ott_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ott_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ott_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ott_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/ott_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/ott_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/res/writer128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/res/writer128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/sfx2/res/128x128_math_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/svx/res/a11y_check_issues_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sifr_dark/svx/res/a11y_check_issues_not_found.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sifr_dark/svx/res/a11y_check_issues_not_found.png differ diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/base128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/base128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/base128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/base128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/calc128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/calc128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/calc128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/calc128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/draw128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/draw128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/draw128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/draw128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/impress128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/impress128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/impress128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/impress128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/math128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/math128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/math128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/math128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odb_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odb_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odb_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odb_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odb_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odb_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odb_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odb_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odb_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odb_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odb_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odb_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odb_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odb_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odb_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odb_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odf_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odf_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odf_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odf_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odf_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odf_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odf_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odg_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odg_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odg_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odg_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odg_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odg_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odg_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odm_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odm_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odm_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odm_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odm_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odm_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odm_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odm_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odm_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odm_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odm_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odm_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odm_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odm_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odm_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odm_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odp_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odp_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odp_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odp_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ods_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ods_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ods_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ods_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ods_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ods_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ods_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ods_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ods_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ods_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ods_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ods_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ods_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ods_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ods_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ods_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odt_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odt_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odt_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odt_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odt_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odt_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odt_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odt_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odt_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odt_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odt_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odt_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odt_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odt_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/odt_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/odt_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otf_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otf_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otf_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otf_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otf_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otf_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otf_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otg_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otg_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otg_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otg_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otg_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otg_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otg_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otp_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otp_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otp_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otp_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/otp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/otp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ots_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ots_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ots_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ots_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ots_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ots_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ots_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ots_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ots_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ots_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ots_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ots_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ots_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ots_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ots_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ots_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ott_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ott_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ott_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ott_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ott_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ott_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ott_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ott_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ott_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ott_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ott_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ott_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ott_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ott_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/ott_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/ott_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/writer128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/writer128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/res/writer128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/res/writer128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_calc_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_draw_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_impress_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_math_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_math_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_writer_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/svx/res/a11y_check_issues_found.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/svx/res/a11y_check_issues_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_dark_svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_dark_svg/svx/res/a11y_check_issues_not_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/base128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/base128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/base128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/base128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/calc128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/calc128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/calc128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/calc128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/draw128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/draw128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/draw128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/draw128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/impress128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/impress128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/impress128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/impress128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/math128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/math128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/math128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/math128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odb_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odb_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odb_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odb_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odb_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odb_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odb_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odb_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odb_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odb_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odb_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odb_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odb_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odb_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odb_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odb_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odf_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odf_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odf_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odf_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odf_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odf_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odf_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odg_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odg_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odg_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odg_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odg_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odg_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odg_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odm_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odm_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odm_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odm_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odm_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odm_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odm_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odm_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odm_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odm_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odm_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odm_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odm_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odm_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odm_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odm_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odp_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odp_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odp_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odp_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ods_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ods_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ods_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ods_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ods_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ods_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ods_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ods_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ods_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ods_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ods_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ods_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ods_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ods_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ods_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ods_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odt_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odt_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odt_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odt_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odt_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odt_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odt_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odt_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odt_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odt_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odt_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odt_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odt_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odt_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/odt_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/odt_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otf_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otf_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otf_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otf_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otf_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otf_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otf_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otg_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otg_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otg_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otg_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otg_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otg_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otg_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otp_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otp_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otp_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otp_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/otp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/otp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ots_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ots_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ots_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ots_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ots_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ots_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ots_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ots_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ots_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ots_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ots_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ots_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ots_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ots_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ots_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ots_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ott_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ott_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ott_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ott_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ott_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ott_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ott_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ott_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ott_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ott_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ott_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ott_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ott_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ott_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/ott_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/ott_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/writer128.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/writer128.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/res/writer128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/res/writer128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/sfx2/res/128x128_calc_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/sfx2/res/128x128_draw_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/sfx2/res/128x128_impress_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/sfx2/res/128x128_math_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/sfx2/res/128x128_math_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/sfx2/res/128x128_writer_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/svx/res/a11y_check_issues_found.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/svx/res/a11y_check_issues_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sifr_svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.5.2~rc2/icon-themes/sifr_svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.5.1~rc2/icon-themes/sifr_svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sifr_svg/svx/res/a11y_check_issues_not_found.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura/AUTHORS libreoffice-7.5.2~rc2/icon-themes/sukapura/AUTHORS --- libreoffice-7.5.1~rc2/icon-themes/sukapura/AUTHORS 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura/AUTHORS 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ ------------------------ Sukapura Icon Theme for LibreOffice ------------------------ -Copyright (c) 2019-2020 Rizal Muttaqin +Copyright (c) 2019-2023 Rizal Muttaqin -Sukapura whose the name is taken after a kingdom of my hometown Tasikmalaya is +Sukapura whose the name is taken after a kingdom of my hometown Tasikmalaya is derived from Colibre, designed to fit macOS desktop. The Colibre Icon Theme in icons/ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/avmedia/res/avaudiologo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/avmedia/res/avaudiologo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/avmedia/res/avemptylogo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/avmedia/res/avemptylogo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/areas3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/areas3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/areas_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/areas_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/areasfull3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/areasfull3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/areasfull_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/areasfull_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/areaspiled3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/areaspiled3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/areaspiled_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/areaspiled_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/bar3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/bar3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/bar3ddeep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/bar3ddeep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/bar_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/bar_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/barpercent3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/barpercent3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/barpercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/barpercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/barstack3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/barstack3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/barstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/barstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/bubble_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/bubble_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/columnline_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/columnline_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/columnpercent3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/columnpercent3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/columnpercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/columnpercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/columns3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/columns3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/columns3ddeep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/columns3ddeep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/columns_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/columns_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/columnstack3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/columnstack3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/columnstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/columnstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/columnstackline_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/columnstackline_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/cone_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/cone_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/conedeep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/conedeep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/conehori_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/conehori_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/conehorideep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/conehorideep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/conehoripercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/conehoripercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/conehoristack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/conehoristack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/conepercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/conepercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/conestack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/conestack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/cylinder_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/cylinder_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/cylinderdeep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/cylinderdeep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/cylinderhori_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/cylinderhori_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/cylinderhorideep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/cylinderhorideep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/cylinderhoriprocent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/cylinderhoriprocent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/cylinderhoristack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/cylinderhoristack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/cylinderpercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/cylinderpercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/cylinderstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/cylinderstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/dataeditor_icon05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/dataeditor_icon05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/dataeditor_icon06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/dataeditor_icon06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/dataeditor_icon07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/dataeditor_icon07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/dataeditor_icon08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/dataeditor_icon08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/dataeditor_icon09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/dataeditor_icon09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/donut3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/donut3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/donut3dexploded_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/donut3dexploded_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/donut_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/donut_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/donutexploded_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/donutexploded_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/errorbothhori_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/errorbothhori_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/errorbothverti_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/errorbothverti_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/errordown_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/errordown_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/errorleft_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/errorleft_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/errorright_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/errorright_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/errorup_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/errorup_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/net_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/net_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/netfill_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/netfill_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/netlinepoint_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/netlinepoint_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/netlinepointstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/netlinepointstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/netpoint_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/netpoint_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/netpointstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/netpointstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/netstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/netstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/netstackfill_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/netstackfill_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/nostackdirect3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/nostackdirect3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/nostackdirectboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/nostackdirectboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/nostackdirectlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/nostackdirectlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/nostackdirectpoints_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/nostackdirectpoints_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/nostacksmooth3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/nostacksmooth3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/nostacksmoothboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/nostacksmoothboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/nostacksmoothlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/nostacksmoothlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/nostackstepped3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/nostackstepped3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/nostacksteppedboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/nostacksteppedboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/nostacksteppedlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/nostacksteppedlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pie3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pie3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pie3dexploded_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pie3dexploded_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pie_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pie_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pieexploded_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pieexploded_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pyramind_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pyramind_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pyraminddeep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pyraminddeep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pyramindhori_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pyramindhori_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pyramindhorideep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pyramindhorideep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pyramindhoripercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pyramindhoripercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pyramindhoristack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pyramindhoristack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pyramindpercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pyramindpercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/pyramindstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/pyramindstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/regavg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/regavg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/regexp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/regexp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/reglin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/reglin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/reglog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/reglog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/regno.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/regno.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/regpoly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/regpoly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/regpow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/regpow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stackdirect3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stackdirect3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stackdirectboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stackdirectboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stackdirectlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stackdirectlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stackdirectpoints_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stackdirectpoints_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stacksmooth3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stacksmooth3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stacksmoothboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stacksmoothboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stacksmoothlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stacksmoothlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stackstepped3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stackstepped3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stacksteppedboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stacksteppedboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stacksteppedlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stacksteppedlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/step_center_x_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/step_center_x_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/step_center_y_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/step_center_y_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/step_end_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/step_end_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/step_start_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/step_start_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stock_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stock_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stockblock_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stockblock_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stockcolumns_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stockcolumns_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/stockcolumnsattach_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/stockcolumnsattach_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/typearea_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/typearea_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/typebar_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/typebar_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/typebubble_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/typebubble_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/typecolumn_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/typecolumn_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/typecolumnline_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/typecolumnline_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/typenet_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/typenet_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/typepie_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/typepie_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/typepointline_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/typepointline_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/typestock_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/typestock_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/typexy_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/typexy_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/valueaxisdirect3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/valueaxisdirect3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/valueaxisdirectboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/valueaxisdirectboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/valueaxisdirectlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/valueaxisdirectlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/valueaxisdirectpoints_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/valueaxisdirectpoints_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/valueaxissmooth3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/valueaxissmooth3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/valueaxissmoothboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/valueaxissmoothboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/valueaxissmoothlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/valueaxissmoothlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/valueaxisstepped3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/valueaxisstepped3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/valueaxissteppedboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/valueaxissteppedboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/chart2/res/valueaxissteppedlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/chart2/res/valueaxissteppedlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/accent1cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/accent1cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/accent2cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/accent2cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/accent3cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/accent3cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/acceptalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/acceptalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/accepttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/accepttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/accepttrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/accepttrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/accepttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/accepttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/actionmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/actionmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/adddirect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/adddirect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/addfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/addfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/additionsdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/additionsdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/addname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/addname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/addprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/addprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/addressbooksource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/addressbooksource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/addtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/addtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/addwatch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/addwatch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/advancedmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/advancedmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/alignblock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/alignblock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/alignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/alignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/aligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/aligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/aligndown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/aligndown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/alignhorizontalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/alignhorizontalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/alignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/alignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/alignmiddle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/alignmiddle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/alignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/alignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/aligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/aligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/alignup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/alignup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/alignverticalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/alignverticalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/animationeffects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/animationeffects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/animationmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/animationmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/animationobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/animationobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ar/setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ar/setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.chevron.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.chevron.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.circular-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.circular-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.corner-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.corner-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.left-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.left-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.left-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.left-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.left-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.left-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.notched-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.notched-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.pentagon-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.pentagon-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.quad-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.quad-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.quad-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.quad-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.split-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.split-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.split-round-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.split-round-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.s-sharped-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.s-sharped-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.striped-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.striped-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-right-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/arrowshapes.up-right-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/assignlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/assignlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/assignmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/assignmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/attributepagesize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/attributepagesize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/auditingfillmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/auditingfillmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/auditmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/auditmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/autocontrolfocus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/autocontrolfocus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/autoformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/autoformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/autooutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/autooutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/autopilotmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/autopilotmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/autoredactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/autoredactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/autosum.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/autosum.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/avmediaplayer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/avmediaplayer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/backcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/backcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/backgroundcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/backgroundcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/backward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/backward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicideappear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicideappear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.block-arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.block-arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.can.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.can.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.cross.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.cross.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.diamond.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.diamond.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.frame.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.frame.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.hexagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.hexagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.isosceles-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.isosceles-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.octagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.octagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.paper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.paper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.pentagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.pentagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.right-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.right-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.ring.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.ring.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.round-quadrat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.round-quadrat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicshapes.trapezoid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicshapes.trapezoid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicstepinto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicstepinto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicstepout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicstepout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicstepover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicstepover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/basicstop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/basicstop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/beforeobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/beforeobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/behindobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/behindobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bezierappend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bezierappend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bezierclose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bezierclose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bezierconvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bezierconvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/beziercutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/beziercutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bezierdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bezierdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bezieredge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bezieredge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/beziereliminatepoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/beziereliminatepoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bezierfill.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bezierfill.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bezierinsert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bezierinsert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/beziermove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/beziermove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/beziersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/beziersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/beziersymmetric.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/beziersymmetric.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bezier_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bezier_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/backcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/backcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bg/wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bg/wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bibliographycomponent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bibliographycomponent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bmpmask.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bmpmask.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/borderdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/borderdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/break.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/break.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bringtofront.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bringtofront.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/browseview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/browseview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/calculate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/calculate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/calloutshapes.cloud-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/calloutshapes.cloud-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/calloutshapes.line-callout-1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/calloutshapes.line-callout-1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/calloutshapes.line-callout-2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/calloutshapes.line-callout-2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/calloutshapes.line-callout-3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/calloutshapes.line-callout-3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/calloutshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/calloutshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/calloutshapes.rectangular-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/calloutshapes.rectangular-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/calloutshapes.round-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/calloutshapes.round-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/cancel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/cancel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/capturepoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/capturepoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/cellprotection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/cellprotection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/chainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/chainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/changebezier.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/changebezier.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/changecasetolower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/changecasetolower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/changecasetoupper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/changecasetoupper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/changedatabasefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/changedatabasefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/changepicture.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/changepicture.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/changepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/changepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/charmapcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/charmapcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/checkbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/checkbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/choosecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/choosecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/choosedesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/choosedesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/choosemacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/choosemacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/choosepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/choosepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/circlearc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/circlearc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/circlecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/circlecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/circlecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/circlecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/circlepie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/circlepie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/circlepie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/circlepie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/circle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/circle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/circle_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/circle_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/cleararrowdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/cleararrowdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/cleararrowprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/cleararrowprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/cleararrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/cleararrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/closedoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/closedoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/closedocs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/closedocs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/closemasterview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/closemasterview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/closepreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/closepreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/colorscaleformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/colorscaleformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/colorsettings.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/colorsettings.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/combine.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/combine.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/combobox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/combobox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/commentchangetracking.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/commentchangetracking.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/comparedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/comparedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/compilebasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/compilebasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/compressgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/compressgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/conddateformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/conddateformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/conditionalformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/conditionalformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/cone.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/cone.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/configuredialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/configuredialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorcircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorcircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorcircles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorcircles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorcirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorcirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorcurvearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorcurvearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorcurvearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorcurvearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorcurvearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorcurvearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorcurvecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorcurvecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorcurvecircles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorcurvecircles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorcurvecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorcurvecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorcurve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorcurve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlinearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlinearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlinearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlinearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlinearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlinearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlinecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlinecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlinecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlinecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlinesarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlinesarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlinesarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlinesarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlinesarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlinesarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlinescircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlinescircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlinescirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlinescirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connectorlines.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connectorlines.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/connect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/connect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/contourdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/contourdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/controlcodes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/controlcodes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/controlproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/controlproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/convertinto3dlathe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/convertinto3dlathe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/convertinto3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/convertinto3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/copyobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/copyobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/copy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/copy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/crookrotate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/crookrotate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/crookslant.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/crookslant.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/crop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/crop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/currencyfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/currencyfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/customshowdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/customshowdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/cut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/cut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/cylinder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/cylinder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/cyramid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/cyramid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dataarearefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dataarearefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/databarformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/databarformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dataconsolidate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dataconsolidate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/datadatapilotrun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/datadatapilotrun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/datafilterautofilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/datafilterautofilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/datafilterspecialfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/datafilterspecialfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/datafilterstandardfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/datafilterstandardfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dataform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dataform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dataimport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dataimport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dataincolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dataincolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/datainrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/datainrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dataprovider.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dataprovider.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dataproviderrefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dataproviderrefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dataranges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dataranges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/datasort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/datasort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/datastreams.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/datastreams.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/datasubtotals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/datasubtotals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/datefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/datefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbaddrelation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbaddrelation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbchangedesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbchangedesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbclearquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbclearquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbdistinctvalues.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbdistinctvalues.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbformdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbformdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbformedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbformedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbformopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbformopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbformrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbformrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbindexdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbindexdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbnewform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbnewform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbnewquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbnewquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbnewquerysql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbnewquerysql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbnewreport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbnewreport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbnewtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbnewtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbnewview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbnewview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbnewviewsql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbnewviewsql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbquerydelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbquerydelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbqueryedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbqueryedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbqueryopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbqueryopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbquerypropertiesdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbquerypropertiesdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbqueryrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbqueryrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbrelationdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbrelationdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbreportdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbreportdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbreportedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbreportedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbreportopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbreportopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbreportrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbreportrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbsortingandgrouping.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbsortingandgrouping.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbtabledelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbtabledelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbtableedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbtableedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbtableopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbtableopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbtablerename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbtablerename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbviewaliases.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbviewaliases.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbviewforms.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbviewforms.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbviewfunctions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbviewfunctions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbviewqueries.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbviewqueries.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbviewreports.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbviewreports.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbviewtablenames.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbviewtablenames.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dbviewtables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dbviewtables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/de/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/de/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/de/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/de/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/de/numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/de/numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/de/numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/de/numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/de/numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/de/numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/de/numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/de/numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/decrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/decrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/decrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/decrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/decrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/decrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/defaultcharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/defaultcharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/definedbname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/definedbname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/definename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/definename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/defineprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/defineprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deleteallannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deleteallannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deleteallbreaks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deleteallbreaks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deleteannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deleteannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deletecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deletecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deletecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deletecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deletemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deletemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deletepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deletepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deletepivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deletepivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/delete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/delete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deleteprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deleteprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deleterows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deleterows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deleteslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deleteslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/deletetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/deletetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/developmenttoolsdockingwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/developmenttoolsdockingwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diaeffect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diaeffect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diagramarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diagramarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diagramaxis.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diagramaxis.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diagramaxisx.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diagramaxisx.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diagramaxisxyz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diagramaxisxyz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diagramaxisy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diagramaxisy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diagramaxisz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diagramaxisz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diagramdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diagramdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diagramtype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diagramtype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diagramwall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diagramwall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diamode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diamode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diaspeed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diaspeed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/diatime.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/diatime.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dismantle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dismantle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/displaymasterbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/displaymasterbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/displaymasterobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/displaymasterobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/displaymode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/displaymode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributehorzcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributehorzcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributehorzdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributehorzdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributehorzleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributehorzleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributehorzright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributehorzright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributerows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributerows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributeselection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributeselection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributevertbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributevertbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributevertcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributevertcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributevertdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributevertdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/distributeverttop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/distributeverttop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/documentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/documentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/downsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/downsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/drawcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/drawcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/drawchart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/drawchart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dsbinsertcontent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dsbinsertcontent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/dsbrowserexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/dsbrowserexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/duplicatepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/duplicatepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/duplicatesheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/duplicatesheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/duplicateslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/duplicateslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/editannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/editannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/editcurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/editcurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/editdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/editdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/editframeset.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/editframeset.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/editglossary.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/editglossary.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/editheaderandfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/editheaderandfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/edithyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/edithyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/editprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/editprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/editqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/editqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ellipsecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ellipsecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ellipsecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ellipsecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ellipse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ellipse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ellipse_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ellipse_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/emphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/emphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/entergroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/entergroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/entirecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/entirecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/entirecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/entirecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/entirerow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/entirerow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/equalizeheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/equalizeheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/equalizewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/equalizewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/errorcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/errorcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/es/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/es/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/es/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/es/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/es/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/es/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/euroconverter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/euroconverter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/executereport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/executereport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/expandpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/expandpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/exportdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/exportdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/exportdirecttoepub.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/exportdirecttoepub.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/exportdirecttopdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/exportdirecttopdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/exportto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/exportto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/extendedhelp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/extendedhelp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/extrusion3dcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/extrusion3dcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/extrusiondepthfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/extrusiondepthfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/extrusiondirectionfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/extrusiondirectionfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/extrusionlightingfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/extrusionlightingfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/extrusionsurfacefloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/extrusionsurfacefloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/extrusiontiltdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/extrusiontiltdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/extrusiontiltleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/extrusiontiltleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/extrusiontiltright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/extrusiontiltright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/extrusiontiltup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/extrusiontiltup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/filecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/filecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/filedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/filedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/filefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/filefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/filldown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/filldown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fillleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fillleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fillright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fillright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fillshadow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fillshadow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fillup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fillup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/firstpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/firstpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/firstrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/firstrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/firstslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/firstslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-card.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-card.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-collate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-collate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-decision.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-decision.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-delay.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-delay.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-direct-access-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-direct-access-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-display.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-display.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-document.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-document.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-internal-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-internal-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-manual-input.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-manual-input.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-multidocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-multidocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-off-page-connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-off-page-connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-or.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-or.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-predefined-process.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-predefined-process.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-preparation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-preparation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-punched-tape.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-punched-tape.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-sequential-access.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-sequential-access.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-sort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-sort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-stored-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-stored-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-summing-junction.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-summing-junction.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-terminator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.flowchart-terminator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/flowchartshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkgalleryfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkgalleryfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontwork.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontwork.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworksameletterheights.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworksameletterheights.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-down-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-down-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-down-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-down-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-left-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-left-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-left-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-left-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-right-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-right-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-right-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-right-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-up-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-up-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-up-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-arch-up-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-chevron-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-chevron-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-chevron-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-chevron-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-curve-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-curve-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-curve-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-curve-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-fade-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-fade-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-fade-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-fade-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-fade-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-fade-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-inflate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-inflate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-open-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-open-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-open-circle-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-open-circle-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-plain-text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-plain-text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-slant-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-slant-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-slant-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-slant-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-stop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-stop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-triangle-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-triangle-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-wave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fontworkshapetype.fontwork-wave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/footnotedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/footnotedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formatcelldialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formatcelldialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formatcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formatcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formatgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formatgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formatline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formatline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formatpaintbrush.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formatpaintbrush.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formattedfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formattedfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formatungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formatungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formdesigntools.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formdesigntools.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formelcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formelcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formfiltered.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formfiltered.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formfilternavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formfilternavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/formproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/formproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/forward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/forward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fr/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fr/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/framedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/framedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/framelinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/framelinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/freeline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/freeline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/freeline_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/freeline_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/freezepanesfirstcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/freezepanesfirstcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/freezepanesfirstrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/freezepanesfirstrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/freezepanes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/freezepanes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/fullscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/fullscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gallery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gallery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/glueeditmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/glueeditmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/glueescapedirectionbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/glueescapedirectionbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/glueescapedirectionleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/glueescapedirectionleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/glueescapedirectionright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/glueescapedirectionright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/glueescapedirectiontop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/glueescapedirectiontop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gluehorzaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gluehorzaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gluehorzalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gluehorzalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gluehorzalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gluehorzalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/glueinsertpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/glueinsertpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gluepercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gluepercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gluevertalignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gluevertalignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gluevertaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gluevertaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gluevertaligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gluevertaligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/goalseekdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/goalseekdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gotoendofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gotoendofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gotoend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gotoend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gotopage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gotopage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gotostartofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gotostartofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gotostartoftable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gotostartoftable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/grafblue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/grafblue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/grafcontrast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/grafcontrast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/grafgamma.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/grafgamma.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/grafgreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/grafgreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/grafluminance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/grafluminance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/grafred.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/grafred.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graftransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graftransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfilterinvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfilterinvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfiltermosaic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfiltermosaic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfilterpopart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfilterpopart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfilterposter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfilterposter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfilterrelief.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfilterrelief.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfilterremovenoise.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfilterremovenoise.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfiltersepia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfiltersepia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfiltersharpen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfiltersharpen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfiltersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfiltersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfiltersobel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfiltersobel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphicfiltersolarize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphicfiltersolarize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/graphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/graphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/greatestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/greatestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/greatestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/greatestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/grid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/grid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/griduse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/griduse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/gridvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/gridvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/groupbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/groupbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/group.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/group.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/grow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/grow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/halfsphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/halfsphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/handoutmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/handoutmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hangingindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hangingindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/heading1parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/heading1parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/heading2parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/heading2parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/heading3parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/heading3parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/heading4parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/heading4parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/heading5parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/heading5parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/heading6parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/heading6parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/helpindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/helpindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/helplinesmove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/helplinesmove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/helplinesuse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/helplinesuse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/helplinesvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/helplinesvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hideallnotes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hideallnotes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hidecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hidecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hidedetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hidedetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hidenote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hidenote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hiderow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hiderow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hideslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hideslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hidewhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hidewhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hscrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hscrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hu/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hu/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hu/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hu/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hu/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hu/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/iconsetformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/iconsetformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/imagebutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/imagebutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/imagecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/imagecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/imagemapdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/imagemapdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/importdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/importdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/importfromfile.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/importfromfile.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/incrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/incrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/incrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/incrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/incrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/incrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/inputlinevisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/inputlinevisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/inscellsctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/inscellsctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertauthoritiesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertauthoritiesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertbookmark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertbookmark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertcaptiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertcaptiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertcellsdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertcellsdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertcellsright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertcellsright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertcolumnbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertcolumnbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertcolumnsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertcolumnsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertcolumnsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertcolumnsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertdatefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertdatefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertdraw.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertdraw.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertendnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertendnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertenvelope.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertenvelope.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertexternaldatasource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertexternaldatasource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertfieldctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertfieldctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertfootnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertfootnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertheader.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertheader.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/inserthyperlinkcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/inserthyperlinkcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/inserthyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/inserthyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertindexesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertmath.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertmath.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertmenutitles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertmenutitles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertmultiindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertmultiindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertobjectfloatingframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertobjectfloatingframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertpagebreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertpagebreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertpagecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertpagecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertpagenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertpagenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertplugin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertplugin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertreferencefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertrowbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertrowbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertrowsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertrowsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertrowsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertrowsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertsection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertsection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertslidecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertslidecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertslidenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertslidenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertslidetitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertslidetitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertsound.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertsound.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertspreadsheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertspreadsheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertsymbol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertsymbol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/inserttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/inserttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/inserttimefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/inserttimefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/inserttitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/inserttitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/inserttopicfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/inserttopicfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/inserttreecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/inserttreecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/insertvideo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/insertvideo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/inspectordeck.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/inspectordeck.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/interactivegradient.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/interactivegradient.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/interactivetransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/interactivetransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/intersect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/intersect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/it/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/it/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/jumptonexttablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/jumptonexttablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/jumptoprevtablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/jumptoprevtablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/km/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/km/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/km/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/km/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/km/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/km/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/km/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/km/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/grow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/grow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/shrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/shrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ko/verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ko/verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/lastpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/lastpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/lastrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/lastrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/lastslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/lastslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/leaveallgroups.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/leaveallgroups.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/leavegroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/leavegroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/legend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/legend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/librelogo-clearscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/librelogo-clearscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/librelogo-gobackward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/librelogo-gobackward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/librelogo-goforward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/librelogo-goforward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/librelogo-home.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/librelogo-home.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/librelogo-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/librelogo-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/librelogo-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/librelogo-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/linearrowcircle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/linearrowcircle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/linearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/linearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/linearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/linearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/linearrowsquare.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/linearrowsquare.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/linearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/linearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/linecirclearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/linecirclearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/line_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/line_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/lineendstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/lineendstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/line.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/line.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/linesquarearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/linesquarearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/linestyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/linestyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/linewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/linewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/listbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/listbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/loadbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/loadbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/lock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/lock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/macrorecorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/macrorecorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mailmergecreatedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mailmergecreatedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mailmergeemaildocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mailmergeemaildocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mailmergeexcludeentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mailmergeexcludeentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mailmergeprintdocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mailmergeprintdocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mailmergesavedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mailmergesavedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mailmergewizard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mailmergewizard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/managebreakpoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/managebreakpoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/managelanguage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/managelanguage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/managexmlsource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/managexmlsource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/marks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/marks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/masterlayouts.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/masterlayouts.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/masterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/masterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/matchgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/matchgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/measureline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/measureline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mediamute.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mediamute.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mediapause.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mediapause.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mediarepeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mediarepeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/menubar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/menubar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mergedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mergedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mergedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mergedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/merge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/merge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mergetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mergetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mirror.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mirror.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/mirrorvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/mirrorvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/modifyframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/modifyframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/modifypage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/modifypage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/moduledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/moduledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/morecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/morecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/morphing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/morphing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/movedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/movedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/movedownsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/movedownsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/movepagedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/movepagedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/movepagefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/movepagefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/movepagelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/movepagelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/movepageup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/movepageup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/move.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/move.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/moveslidedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/moveslidedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/moveslidefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/moveslidefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/moveslidelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/moveslidelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/moveslideup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/moveslideup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/moveup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/moveup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/moveupsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/moveupsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/name.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/name.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/navigationbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/navigationbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/navigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/navigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/newarrangement.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/newarrangement.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/newdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/newdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/newhtmldoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/newhtmldoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/newwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/newwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/nextannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/nextannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/nextpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/nextpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/nextrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/nextrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/nextslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/nextslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/nexttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/nexttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/nl/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/nl/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/nl/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/nl/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/nl/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/nl/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/normalmultipanegui.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/normalmultipanegui.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/normalviewmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/normalviewmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/notesmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/notesmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/notesmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/notesmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/numberformatdate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/numberformatdate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/numberformatpercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/numberformatpercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/numberformatscientific.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/numberformatscientific.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/numberformatstandard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/numberformatstandard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/numericfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/numericfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/objectalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/objectalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/objectalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/objectalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/objectcatalog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/objectcatalog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/objectposition.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/objectposition.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/objecttitledescription.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/objecttitledescription.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ok.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ok.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/open.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/open.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/openreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/openreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/openremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/openremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/optimizetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/optimizetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/optionstreedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/optionstreedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/orientation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/orientation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/outlinecollapseall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/outlinecollapseall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/outlinecollapse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/outlinecollapse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/outlineexpandall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/outlineexpandall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/outlineexpand.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/outlineexpand.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/outlineformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/outlineformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/outlinemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/outlinemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/outputqualityblackwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/outputqualityblackwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/outputqualitygrayscale.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/outputqualitygrayscale.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pagebreakmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pagebreakmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pagecolumntype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pagecolumntype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pagemargin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pagemargin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pagemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pagemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pagesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pagesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/paragraphdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/paragraphdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/paralefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/paralefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pararighttoleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pararighttoleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/paraspacedecrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/paraspacedecrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/paraspaceincrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/paraspaceincrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pasteaslink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pasteaslink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pasteonlyformula.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pasteonlyformula.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pasteonlytext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pasteonlytext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pasteonlyvalue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pasteonlyvalue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/paste.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/paste.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pastespecial.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pastespecial.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pastetransposed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pastetransposed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pasteunformatted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pasteunformatted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/patternfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/patternfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/photoalbumdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/photoalbumdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pl/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pl/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pl/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pl/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/polygon_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/polygon_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/polygon_diagonal_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/polygon_diagonal_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/polygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/polygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/polygon_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/polygon_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/preformattedparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/preformattedparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/presentationcurrentslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/presentationcurrentslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/presentationdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/presentationdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/presentationlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/presentationlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/presentationminimizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/presentationminimizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/presentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/presentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/previewprintoptions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/previewprintoptions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/previousannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/previousannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/previouspage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/previouspage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/previousrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/previousrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/previousslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/previousslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/previoustrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/previoustrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/prevrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/prevrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/printdefault.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/printdefault.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/printersetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/printersetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/printlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/printlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/print.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/print.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/printpreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/printpreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/progressbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/progressbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/protectbookmarks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/protectbookmarks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/protectfields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/protectfields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/protect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/protect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/protecttracechangemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/protecttracechangemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/pushbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/pushbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/quit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/quit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/quotecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/quotecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/quoteparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/quoteparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/radiobutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/radiobutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/recalcpivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/recalcpivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/recentfilelist.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/recentfilelist.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/recsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/recsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/rect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/rect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/rect_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/rect_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/rect_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/rect_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/rect_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/rect_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/redactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/redactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/redactedexportblack.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/redactedexportblack.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/redactedexportwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/redactedexportwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/redo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/redo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/refreshformcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/refreshformcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/rejectalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/rejectalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/rejecttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/rejecttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/rejecttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/rejecttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/reload.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/reload.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/removefiltersort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/removefiltersort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/removehyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/removehyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/remove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/remove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/removetableof.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/removetableof.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/renamemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/renamemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/renameobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/renameobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/renamepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/renamepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/renameslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/renameslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/repeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/repeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/replycomment.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/replycomment.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/reportnavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/reportnavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/reverseorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/reverseorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/rotateleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/rotateleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/rotateright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/rotateright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ru/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ru/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ru/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ru/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ru/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ru/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/runbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/runbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/runmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/runmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/saveacopy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/saveacopy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/saveall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/saveall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/saveas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/saveas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/saveasremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/saveasremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/saveastemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/saveastemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/savebackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/savebackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/savebasicas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/savebasicas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/save.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/save.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sbaexecutesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sbaexecutesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sbanativesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sbanativesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/scan.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/scan.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/scriptorganizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/scriptorganizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/scrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/scrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/searchdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/searchdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sectionshrinkbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sectionshrinkbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sectionshrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sectionshrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sectionshrinktop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sectionshrinktop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/selectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/selectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/selectbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/selectbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/selectdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/selectdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/selectdb.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/selectdb.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/selectobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/selectobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/selecttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/selecttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/selecttables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/selecttables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/selectunprotectedcells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/selectunprotectedcells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sendfax.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sendfax.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sendmail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sendmail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sendtoback.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sendtoback.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/setborderstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/setborderstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/setdocumentproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/setdocumentproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/setminimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/setminimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/setminimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/setminimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/setobjecttobackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/setobjecttobackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/setobjecttoforeground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/setobjecttoforeground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/setoptimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/setoptimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/setoptimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/setoptimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/setreminder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/setreminder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/shadowcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/shadowcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sharedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sharedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/shear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/shear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/shell3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/shell3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showannotations.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showannotations.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showbookview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showbookview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showdatanavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showdatanavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showdetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showdetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showerrors.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showerrors.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showfmexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showfmexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showinvalid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showinvalid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showmultiplepages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showmultiplepages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/shownote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/shownote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/show.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/show.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showsinglepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showsinglepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showtoolbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showtoolbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showtrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showtrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showtwopages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showtwopages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/showwhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/showwhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/shrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/shrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sidebar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sidebar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/signaturelinedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/signaturelinedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/signature.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/signature.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/signpdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/signpdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sl/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sl/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sl/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sl/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/slidechangewindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/slidechangewindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/slidemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/slidemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/slidesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/slidesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/smallcaps.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/smallcaps.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/smallestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/smallestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/smallestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/smallestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/snapborder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/snapborder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/snapframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/snapframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/snappoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/snappoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/solidcreate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/solidcreate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/solverdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/solverdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sourcecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sourcecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/spacepara15.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/spacepara15.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/spacepara1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/spacepara1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/spacepara2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/spacepara2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/spacing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/spacing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/sphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/sphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/spinbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/spinbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/splitcell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/splitcell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/splittable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/splittable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/splitwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/splitwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/square.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/square.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/square_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/square_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/square_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/square_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/square_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/square_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.bang.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.bang.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.concave-star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.concave-star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.doorplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.doorplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.horizontal-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.horizontal-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.signet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.signet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.star12.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.star12.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.star24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.star24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.star4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.star4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.star5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.star5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.star8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.star8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/starshapes.vertical-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/starshapes.vertical-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/statisticsmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/statisticsmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/statusbarvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/statusbarvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/strongemphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/strongemphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/styleapply.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/styleapply.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/subscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/subscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/substract.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/substract.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/subtitleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/subtitleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/superscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/superscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/switchcontroldesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/switchcontroldesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/switchxformsdesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/switchxformsdesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.brace-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.brace-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.bracket-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.bracket-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.cloud.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.cloud.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.diamond-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.diamond-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.flower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.flower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.forbidden.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.forbidden.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.heart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.heart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.left-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.left-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.left-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.left-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.lightning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.lightning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.moon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.moon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.octagon-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.octagon-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.puzzle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.puzzle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.quad-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.quad-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.right-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.right-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.right-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.right-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/symbolshapes.sun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/symbolshapes.sun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/tabdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/tabdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/tabledeselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/tabledeselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/tabledesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/tabledesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/tabledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/tabledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/tablemodefix.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/tablemodefix.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/tablemodefixprop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/tablemodefixprop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/tablemodevariable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/tablemodevariable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/tablenumberformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/tablenumberformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/tableselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/tableselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/testmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/testmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/textbodyparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/textbodyparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/texttocolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/texttocolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/thesaurus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/thesaurus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/timefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/timefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/titlepagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/titlepagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/titleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/titleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/toggleanchortype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/toggleanchortype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/toggleaxistitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/toggleaxistitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/togglebreakpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/togglebreakpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/togglegridhorizontal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/togglegridhorizontal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/togglegridvertical.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/togglegridvertical.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/togglelegend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/togglelegend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/togglemergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/togglemergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/toggleobjectbeziermode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/toggleobjectbeziermode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/toggleobjectrotatemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/toggleobjectrotatemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/togglesheetgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/togglesheetgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/toggletabbarvisibility.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/toggletabbarvisibility.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/toggletitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/toggletitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/toolbarmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/toolbarmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/toolprotectiondocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/toolprotectiondocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/torus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/torus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/tr/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/tr/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/trackchangesbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/trackchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/trackchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/transformdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/transformdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/undo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/undo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/ungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/ungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/unhainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/unhainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/unsetcellsreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/unsetcellsreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/updatecurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/updatecurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/upsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/upsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/urlbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/urlbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/validation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/validation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/versiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/versiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/verticalcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/verticalcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/verticaltextfittosizetool.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/verticaltextfittosizetool.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/vfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/vfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/viewdatasourcebrowser.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/viewdatasourcebrowser.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/viewformasgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/viewformasgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/viewrowcolumnheaders.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/viewrowcolumnheaders.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/viewvaluehighlighting.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/viewvaluehighlighting.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/vruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/vruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/watermark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/watermark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/window3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/window3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/wrapcontour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/wrapcontour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/wrapideal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/wrapideal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/wrapleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/wrapleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/wrapoff.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/wrapoff.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/wrapon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/wrapon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/wrapright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/wrapright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/wraptext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/wraptext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/wrapthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/wrapthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/xlinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/xlinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoom100percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoom100percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoom200percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoom200percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoomin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoomin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoommode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoommode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoomnext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoomnext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoomobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoomobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoomoptimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoomoptimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoomout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoomout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoompage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoompage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoompagewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoompagewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoompanning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoompanning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/32/zoomprevious.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/32/zoomprevious.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/lc_setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/lc_setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ar/sc_setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ar/sc_setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_backcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_backcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/lc_wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/lc_wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/bg/sc_wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/bg/sc_wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/lc_numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/lc_numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/lc_numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/lc_numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/lc_numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/lc_numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/lc_numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/lc_numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/sc_numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/sc_numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/sc_numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/sc_numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/sc_numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/sc_numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/de/sc_numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/de/sc_numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/es/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/es/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/es/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/es/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/es/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/es/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/es/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/es/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/es/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/es/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/es/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/es/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/fr/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/fr/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/fr/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/fr/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/hu/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/hu/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/hu/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/hu/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/hu/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/hu/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/hu/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/hu/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/hu/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/hu/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/it/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/it/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/it/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/it/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/km/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/km/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/km/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/km/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/km/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/km/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/km/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/km/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/km/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/km/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/km/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/km/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/km/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/km/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/km/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/km/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_grow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_grow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_shrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_shrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/lc_verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/lc_verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_grow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_grow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_shrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_shrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ko/sc_verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ko/sc_verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_accent1cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_accent1cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_accent2cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_accent2cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_accent3cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_accent3cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_acceptalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_acceptalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_accepttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_accepttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_accepttrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_accepttrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_accepttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_accepttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_actionmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_actionmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_adddirect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_adddirect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_addfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_addfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_additionsdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_additionsdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_addname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_addname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_addprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_addprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_addressbooksource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_addressbooksource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_addtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_addtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_addwatch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_addwatch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_advancedmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_advancedmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_alignblock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_alignblock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_alignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_alignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_aligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_aligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_aligndown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_aligndown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_alignhorizontalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_alignhorizontalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_alignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_alignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_alignmiddle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_alignmiddle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_alignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_alignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_aligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_aligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_alignup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_alignup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_alignverticalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_alignverticalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_animationeffects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_animationeffects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_animationmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_animationmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_animationobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_animationobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.chevron.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.chevron.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.circular-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.circular-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.corner-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.corner-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.left-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.left-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.left-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.left-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.left-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.left-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.notched-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.notched-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.pentagon-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.pentagon-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.quad-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.quad-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.quad-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.quad-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.split-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.split-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.split-round-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.split-round-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.s-sharped-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.s-sharped-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.striped-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.striped-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-right-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_arrowshapes.up-right-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_assignlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_assignlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_assignmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_assignmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_attributepagesize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_attributepagesize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_auditingfillmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_auditingfillmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_auditmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_auditmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_autocontrolfocus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_autocontrolfocus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_autoformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_autoformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_autooutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_autooutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_autopilotmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_autopilotmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_autoredactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_autoredactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_autosum.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_autosum.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_avmediaplayer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_avmediaplayer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_backcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_backcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_backgroundcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_backgroundcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_backward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_backward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_badcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_badcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicideappear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicideappear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.block-arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.block-arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.can.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.can.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.cross.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.cross.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.diamond.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.diamond.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.frame.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.frame.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.hexagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.hexagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.isosceles-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.isosceles-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.octagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.octagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.paper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.paper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.pentagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.pentagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.right-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.right-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.ring.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.ring.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.round-quadrat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.round-quadrat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicshapes.trapezoid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicshapes.trapezoid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicstepinto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicstepinto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicstepout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicstepout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicstepover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicstepover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_basicstop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_basicstop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_beforeobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_beforeobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_behindobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_behindobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bezierappend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bezierappend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bezierclose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bezierclose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bezierconvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bezierconvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_beziercutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_beziercutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bezierdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bezierdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bezieredge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bezieredge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_beziereliminatepoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_beziereliminatepoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bezierfill.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bezierfill.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bezierinsert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bezierinsert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_beziermove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_beziermove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_beziersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_beziersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_beziersymmetric.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_beziersymmetric.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bezier_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bezier_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bibliographycomponent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bibliographycomponent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bmpmask.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bmpmask.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_borderdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_borderdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_break.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_break.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bringtofront.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bringtofront.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_browseview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_browseview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_calculate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_calculate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.cloud-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.cloud-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.line-callout-1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.line-callout-1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.line-callout-2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.line-callout-2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.line-callout-3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.line-callout-3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.rectangular-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.rectangular-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.round-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_calloutshapes.round-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_cancel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_cancel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_capturepoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_capturepoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_cellprotection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_cellprotection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_chainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_chainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_changebezier.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_changebezier.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_changecasetolower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_changecasetolower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_changecasetoupper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_changecasetoupper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_changedatabasefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_changedatabasefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_changepicture.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_changepicture.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_changepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_changepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_charmapcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_charmapcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_checkbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_checkbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_choosecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_choosecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_choosedesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_choosedesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_choosemacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_choosemacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_choosepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_choosepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_circlearc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_circlearc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_circlecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_circlecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_circlecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_circlecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_circlepie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_circlepie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_circlepie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_circlepie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_circle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_circle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_circle_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_circle_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_cleararrowdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_cleararrowdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_cleararrowprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_cleararrowprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_cleararrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_cleararrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_closedoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_closedoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_closedocs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_closedocs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_closemasterview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_closemasterview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_closepreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_closepreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_colorscaleformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_colorscaleformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_colorsettings.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_colorsettings.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_combine.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_combine.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_combobox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_combobox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_commentchangetracking.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_commentchangetracking.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_comparedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_comparedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_compilebasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_compilebasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_compressgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_compressgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_conddateformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_conddateformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_conditionalformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_conditionalformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_cone.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_cone.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_configuredialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_configuredialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorcircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorcircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorcircles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorcircles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorcirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorcirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorcurvearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorcurvearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorcurvearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorcurvearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorcurvearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorcurvearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorcurvecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorcurvecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorcurvecircles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorcurvecircles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorcurvecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorcurvecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorcurve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorcurve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlinearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlinearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlinearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlinearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlinearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlinearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlinecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlinecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlinecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlinecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlinesarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlinesarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlinesarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlinesarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlinesarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlinesarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlinescircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlinescircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlinescirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlinescirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connectorlines.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connectorlines.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_connect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_connect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_contourdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_contourdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_controlcodes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_controlcodes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_controlproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_controlproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_convertinto3dlathe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_convertinto3dlathe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_convertinto3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_convertinto3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_copyobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_copyobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_copy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_copy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_crookrotate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_crookrotate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_crookslant.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_crookslant.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_crop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_crop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_currencyfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_currencyfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_customshowdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_customshowdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_cut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_cut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_cylinder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_cylinder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_cyramid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_cyramid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dataarearefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dataarearefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_databarformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_databarformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dataconsolidate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dataconsolidate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_datadatapilotrun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_datadatapilotrun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_datafilterautofilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_datafilterautofilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_datafilterspecialfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_datafilterspecialfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_datafilterstandardfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_datafilterstandardfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dataform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dataform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dataimport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dataimport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dataincolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dataincolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_datainrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_datainrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dataprovider.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dataprovider.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dataproviderrefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dataproviderrefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dataranges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dataranges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_datasort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_datasort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_datastreams.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_datastreams.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_datasubtotals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_datasubtotals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_datefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_datefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbaddrelation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbaddrelation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbchangedesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbchangedesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbclearquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbclearquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbdistinctvalues.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbdistinctvalues.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbformdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbformdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbformedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbformedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbformopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbformopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbformrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbformrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbindexdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbindexdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbnewform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbnewform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbnewquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbnewquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbnewquerysql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbnewquerysql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbnewreport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbnewreport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbnewtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbnewtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbnewview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbnewview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbnewviewsql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbnewviewsql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbquerydelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbquerydelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbqueryedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbqueryedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbqueryopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbqueryopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbquerypropertiesdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbquerypropertiesdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbqueryrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbqueryrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbrelationdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbrelationdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbreportdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbreportdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbreportedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbreportedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbreportopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbreportopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbreportrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbreportrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbsortingandgrouping.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbsortingandgrouping.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbtabledelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbtabledelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbtableedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbtableedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbtableopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbtableopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbtablerename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbtablerename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbviewaliases.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbviewaliases.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbviewforms.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbviewforms.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbviewfunctions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbviewfunctions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbviewqueries.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbviewqueries.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbviewreports.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbviewreports.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbviewtablenames.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbviewtablenames.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dbviewtables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dbviewtables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_decrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_decrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_decrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_decrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_decrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_decrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_defaultcharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_defaultcharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_definedbname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_definedbname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_definename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_definename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_defineprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_defineprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deleteallannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deleteallannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deleteallbreaks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deleteallbreaks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deleteannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deleteannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deletecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deletecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deletecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deletecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deletemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deletemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deletepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deletepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deletepivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deletepivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_delete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_delete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deleteprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deleteprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deleterows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deleterows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deleteslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deleteslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_deletetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_deletetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_developmenttoolsdockingwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_developmenttoolsdockingwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diaeffect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diaeffect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diagramarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diagramarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diagramaxis.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diagramaxis.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diagramaxisx.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diagramaxisx.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diagramaxisxyz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diagramaxisxyz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diagramaxisy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diagramaxisy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diagramaxisz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diagramaxisz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diagramdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diagramdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diagramtype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diagramtype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diagramwall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diagramwall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diamode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diamode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diaspeed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diaspeed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_diatime.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_diatime.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dismantle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dismantle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_displaymasterbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_displaymasterbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_displaymasterobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_displaymasterobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_displaymode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_displaymode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributehorzcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributehorzcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributehorzdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributehorzdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributehorzleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributehorzleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributehorzright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributehorzright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributerows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributerows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributeselection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributeselection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributevertbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributevertbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributevertcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributevertcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributevertdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributevertdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_distributeverttop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_distributeverttop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_documentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_documentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_downsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_downsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_drawcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_drawcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_drawchart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_drawchart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dsbinsertcontent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dsbinsertcontent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_dsbrowserexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_dsbrowserexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_duplicatepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_duplicatepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_duplicatesheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_duplicatesheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_duplicateslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_duplicateslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_editannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_editannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_editcurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_editcurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_editdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_editdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_editframeset.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_editframeset.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_editglossary.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_editglossary.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_editheaderandfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_editheaderandfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_edithyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_edithyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_editprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_editprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_editqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_editqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_ellipsecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_ellipsecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_ellipsecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_ellipsecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_ellipse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_ellipse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_ellipse_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_ellipse_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_emphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_emphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_entergroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_entergroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_entirecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_entirecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_entirecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_entirecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_entirerow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_entirerow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_equalizeheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_equalizeheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_equalizewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_equalizewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_errorcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_errorcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_euroconverter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_euroconverter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_executereport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_executereport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_expandpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_expandpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_exportdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_exportdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_exportdirecttoepub.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_exportdirecttoepub.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_exportdirecttopdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_exportdirecttopdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_exportto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_exportto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_extendedhelp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_extendedhelp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_extrusion3dcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_extrusion3dcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_extrusiondepthfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_extrusiondepthfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_extrusiondirectionfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_extrusiondirectionfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_extrusionlightingfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_extrusionlightingfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_extrusionsurfacefloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_extrusionsurfacefloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_extrusiontiltdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_extrusiontiltdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_extrusiontiltleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_extrusiontiltleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_extrusiontiltright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_extrusiontiltright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_extrusiontiltup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_extrusiontiltup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_filecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_filecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_filedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_filedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_filefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_filefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_filldown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_filldown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fillleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fillleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fillright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fillright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fillshadow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fillshadow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fillup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fillup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_firstpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_firstpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_firstrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_firstrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_firstslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_firstslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-card.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-card.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-collate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-collate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-decision.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-decision.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-delay.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-delay.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-direct-access-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-direct-access-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-display.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-display.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-document.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-document.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-internal-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-internal-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-manual-input.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-manual-input.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-multidocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-multidocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-off-page-connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-off-page-connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-or.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-or.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-predefined-process.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-predefined-process.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-preparation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-preparation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-punched-tape.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-punched-tape.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-sequential-access.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-sequential-access.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-sort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-sort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-stored-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-stored-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-summing-junction.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-summing-junction.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-terminator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.flowchart-terminator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_flowchartshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkgalleryfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkgalleryfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontwork.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontwork.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworksameletterheights.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworksameletterheights.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-chevron-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-chevron-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-chevron-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-chevron-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-curve-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-curve-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-curve-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-curve-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-fade-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-inflate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-inflate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-plain-text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-plain-text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-slant-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-slant-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-slant-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-slant-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-stop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-stop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-triangle-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-triangle-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-wave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fontworkshapetype.fontwork-wave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_footnotedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formatcelldialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formatcelldialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formatcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formatcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formatgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formatgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formatline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formatline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formatpaintbrush.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formatpaintbrush.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formattedfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formattedfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formatungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formatungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formdesigntools.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formdesigntools.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formelcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formelcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formfiltered.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formfiltered.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formfilternavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formfilternavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_formproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_formproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_forward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_forward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_framedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_framedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_framelinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_framelinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_freeline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_freeline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_freeline_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_freeline_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_freezepanesfirstcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_freezepanesfirstcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_freezepanesfirstrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_freezepanesfirstrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_freezepanes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_freezepanes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_fullscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_fullscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gallery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gallery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_glueeditmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_glueeditmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_glueescapedirectionbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_glueescapedirectionbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_glueescapedirectionleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_glueescapedirectionleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_glueescapedirectionright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_glueescapedirectionright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_glueescapedirectiontop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_glueescapedirectiontop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gluehorzaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gluehorzaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gluehorzalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gluehorzalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gluehorzalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gluehorzalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_glueinsertpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_glueinsertpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gluepercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gluepercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gluevertalignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gluevertalignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gluevertaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gluevertaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gluevertaligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gluevertaligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_goalseekdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_goalseekdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_goodcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_goodcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gotoendofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gotoendofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gotoend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gotoend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gotopage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gotopage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gotostartofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gotostartofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gotostartoftable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gotostartoftable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_grafblue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_grafblue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_grafcontrast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_grafcontrast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_grafgamma.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_grafgamma.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_grafgreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_grafgreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_grafluminance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_grafluminance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_grafred.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_grafred.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graftransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graftransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfilterinvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfilterinvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfiltermosaic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfiltermosaic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfilterpopart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfilterpopart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfilterposter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfilterposter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfilterrelief.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfilterrelief.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfilterremovenoise.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfilterremovenoise.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfiltersepia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfiltersepia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfiltersharpen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfiltersharpen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfiltersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfiltersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfiltersobel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfiltersobel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphicfiltersolarize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphicfiltersolarize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_graphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_graphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_greatestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_greatestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_greatestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_greatestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_grid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_grid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_griduse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_griduse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_gridvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_gridvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_groupbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_groupbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_group.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_group.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_grow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_grow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_halfsphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_halfsphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_handoutmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_handoutmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hangingindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hangingindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_heading1parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_heading1parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_heading2parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_heading2parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_heading3parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_heading3parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_heading4parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_heading4parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_heading5parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_heading5parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_heading6parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_heading6parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_helpindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_helpindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_helplinesmove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_helplinesmove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_helplinesuse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_helplinesuse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_helplinesvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_helplinesvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hideallnotes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hideallnotes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hidecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hidecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hidedetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hidedetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hidenote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hidenote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hiderow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hiderow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hideslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hideslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hidewhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hidewhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hscrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hscrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_iconsetformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_iconsetformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_imagebutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_imagebutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_imagecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_imagecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_imagemapdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_imagemapdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_importdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_importdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_importfromfile.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_importfromfile.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_incrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_incrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_incrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_incrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_incrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_incrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_inputlinevisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_inputlinevisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_inscellsctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_inscellsctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertauthoritiesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertauthoritiesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertbookmark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertcaptiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertcaptiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertcellsdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertcellsdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertcellsright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertcellsright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertcolumnbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertcolumnbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertcolumnsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertcolumnsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertcolumnsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertcolumnsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertdatefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertdatefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertdraw.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertdraw.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertendnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertendnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertenvelope.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertenvelope.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertexternaldatasource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertexternaldatasource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertfieldctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertfieldctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertfootnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertheader.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertheader.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_inserthyperlinkcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_inserthyperlinkcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_inserthyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_inserthyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertindexesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertlinebreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertlinebreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertmath.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertmath.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertmenutitles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertmenutitles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertmultiindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertmultiindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertobjectfloatingframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertobjectfloatingframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertpagebreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertpagebreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertpagecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertpagecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertpagenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertpagenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertplugin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertplugin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertreferencefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertrowbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertrowbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertrowsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertrowsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertrowsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertrowsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertsection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertsection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertslidecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertslidecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertslidenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertslidenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertslidetitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertslidetitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertsound.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertsound.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertspreadsheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertspreadsheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertsymbol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertsymbol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_inserttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_inserttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_inserttimefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_inserttimefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_inserttitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_inserttitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_inserttopicfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_inserttopicfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_inserttreecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_inserttreecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_insertvideo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_insertvideo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_inspectordeck.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_inspectordeck.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_interactivegradient.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_interactivegradient.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_interactivetransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_interactivetransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_intersect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_intersect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_jumptonexttablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_jumptonexttablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_jumptoprevtablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_jumptoprevtablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_lastpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_lastpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_lastrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_lastrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_lastslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_lastslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_leaveallgroups.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_leaveallgroups.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_leavegroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_leavegroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_legend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_legend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_librelogo-clearscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_librelogo-clearscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_librelogo-gobackward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_librelogo-gobackward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_librelogo-goforward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_librelogo-goforward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_librelogo-home.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_librelogo-home.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_librelogo-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_librelogo-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_librelogo-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_librelogo-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_linearrowcircle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_linearrowcircle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_linearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_linearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_linearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_linearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_linearrowsquare.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_linearrowsquare.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_linearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_linearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_linecirclearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_linecirclearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_line_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_line_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_lineendstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_lineendstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_line.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_line.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_linesquarearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_linesquarearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_linestyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_linestyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_linewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_linewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_listbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_listbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_loadbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_loadbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_lock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_lock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_macrorecorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_macrorecorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mailmergecreatedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mailmergecreatedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mailmergeemaildocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mailmergeemaildocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mailmergeexcludeentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mailmergeexcludeentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mailmergeprintdocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mailmergeprintdocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mailmergesavedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mailmergesavedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mailmergewizard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mailmergewizard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_managebreakpoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_managebreakpoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_managelanguage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_managelanguage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_managexmlsource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_managexmlsource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_marks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_marks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_masterlayouts.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_masterlayouts.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_masterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_masterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_matchgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_matchgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_measureline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_measureline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mediamute.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mediamute.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mediapause.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mediapause.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mediarepeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mediarepeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_menubar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_menubar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mergedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mergedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mergedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mergedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_merge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_merge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mergetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mergetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mirror.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mirror.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_mirrorvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_mirrorvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_modifyframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_modifyframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_modifypage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_modifypage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_moduledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_moduledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_morecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_morecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_morphing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_morphing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_movedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_movedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_movedownsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_movedownsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_movepagedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_movepagedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_movepagefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_movepagefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_movepagelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_movepagelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_movepageup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_movepageup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_move.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_move.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_moveslidedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_moveslidedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_moveslidefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_moveslidefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_moveslidelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_moveslidelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_moveslideup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_moveslideup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_moveup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_moveup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_moveupsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_moveupsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_name.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_name.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_navigationbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_navigationbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_navigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_navigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_neutralcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_neutralcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_newarrangement.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_newarrangement.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_newdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_newdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_newhtmldoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_newhtmldoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_newwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_newwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_nextannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_nextannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_nextpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_nextpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_nextrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_nextrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_nextslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_nextslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_nexttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_nexttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_normalmultipanegui.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_normalmultipanegui.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_normalviewmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_normalviewmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_notesmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_notesmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_notesmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_notesmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_numberformatdate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_numberformatdate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_numberformatpercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_numberformatpercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_numberformatscientific.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_numberformatscientific.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_numberformatstandard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_numberformatstandard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_numericfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_numericfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_objectalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_objectalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_objectalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_objectalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_objectcatalog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_objectcatalog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_objectposition.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_objectposition.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_objecttitledescription.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_objecttitledescription.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_ok.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_ok.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_open.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_open.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_openreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_openreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_openremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_openremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_optimizetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_optimizetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_optionstreedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_optionstreedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_orientation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_orientation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_outlinecollapseall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_outlinecollapseall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_outlinecollapse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_outlinecollapse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_outlineexpandall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_outlineexpandall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_outlineexpand.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_outlineexpand.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_outlineformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_outlineformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_outlinemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_outlinemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_outputqualityblackwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_outputqualityblackwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_outputqualitygrayscale.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_outputqualitygrayscale.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pagebreakmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pagebreakmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pagecolumntype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pagecolumntype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pagemargin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pagemargin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pagemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pagemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pagesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pagesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_paragraphdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_paragraphdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_paralefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_paralefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pararighttoleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pararighttoleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_paraspacedecrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_paraspacedecrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_paraspaceincrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_paraspaceincrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pasteaslink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pasteaslink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pasteonlyformula.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pasteonlyformula.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pasteonlytext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pasteonlytext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pasteonlyvalue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pasteonlyvalue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_paste.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_paste.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pastespecial.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pastespecial.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pastetransposed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pastetransposed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pasteunformatted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pasteunformatted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_patternfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_patternfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_photoalbumdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_photoalbumdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_polygon_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_polygon_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_polygon_diagonal_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_polygon_diagonal_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_polygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_polygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_polygon_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_polygon_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_preformattedparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_preformattedparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_presentationcurrentslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_presentationcurrentslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_presentationdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_presentationdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_presentationlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_presentationlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_presentationminimizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_presentationminimizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_presentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_presentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_previewprintoptions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_previewprintoptions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_previousannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_previousannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_previouspage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_previouspage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_previousrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_previousrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_previousslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_previousslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_previoustrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_previoustrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_prevrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_prevrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_printdefault.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_printdefault.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_printersetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_printersetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_printlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_printlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_print.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_print.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_printpreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_printpreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_progressbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_progressbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_protectbookmarks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_protectbookmarks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_protectfields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_protectfields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_protect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_protect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_protecttracechangemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_protecttracechangemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_pushbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_pushbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_quit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_quit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_quotecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_quotecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_quoteparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_quoteparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_radiobutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_radiobutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_recalcpivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_recalcpivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_recentfilelist.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_recentfilelist.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_recsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_recsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_rect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_rect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_rect_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_rect_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_rect_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_rect_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_rect_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_rect_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_redactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_redactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_redactedexportblack.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_redactedexportblack.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_redactedexportwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_redactedexportwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_redo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_redo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_refreshformcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_refreshformcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_rejectalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_rejectalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_rejecttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_rejecttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_rejecttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_rejecttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_reload.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_reload.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_removefiltersort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_removefiltersort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_removehyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_removehyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_remove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_remove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_removetableof.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_removetableof.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_renamemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_renamemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_renameobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_renameobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_renamepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_renamepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_renameslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_renameslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_repeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_repeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_replycomment.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_replycomment.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_reportnavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_reportnavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_reverseorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_reverseorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_rotateleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_rotateleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_rotateright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_rotateright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_ruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_ruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_runbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_runbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_runmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_runmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_saveacopy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_saveacopy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_saveall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_saveall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_saveas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_saveas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_saveasremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_saveasremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_saveastemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_saveastemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_savebackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_savebackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_savebasicas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_savebasicas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_save.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_save.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sbaexecutesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sbaexecutesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sbanativesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sbanativesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_scan.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_scan.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_scriptorganizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_scriptorganizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_scrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_scrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_searchdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_searchdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sectionshrinkbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sectionshrinkbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sectionshrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sectionshrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sectionshrinktop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sectionshrinktop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_selectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_selectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_selectbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_selectbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_selectdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_selectdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_selectdb.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_selectdb.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_selectobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_selectobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_selecttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_selecttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_selecttables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_selecttables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_selectunprotectedcells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_selectunprotectedcells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sendfax.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sendfax.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sendmail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sendmail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sendtoback.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sendtoback.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_setborderstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_setborderstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_setdocumentproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_setdocumentproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_setminimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_setminimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_setminimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_setminimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_setobjecttobackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_setobjecttobackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_setobjecttoforeground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_setobjecttoforeground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_setoptimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_setoptimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_setoptimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_setoptimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_setreminder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_setreminder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_shadowcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_shadowcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sharedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sharedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_shear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_shear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_shell3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_shell3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showannotations.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showannotations.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showbookview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showbookview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showdatanavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showdatanavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showdetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showdetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showerrors.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showerrors.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showfmexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showfmexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showinvalid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showinvalid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showmultiplepages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showmultiplepages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_shownote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_shownote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_show.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_show.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showsinglepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showsinglepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showtoolbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showtoolbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showtrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showtrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showtwopages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showtwopages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_showwhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_showwhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_shrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_shrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sidebar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sidebar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_signaturelinedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_signaturelinedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_signature.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_signature.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_signpdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_signpdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_slidechangewindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_slidechangewindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_slidemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_slidemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_slidesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_slidesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_smallcaps.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_smallcaps.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_smallestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_smallestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_smallestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_smallestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_snapborder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_snapborder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_snapframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_snapframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_snappoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_snappoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_solidcreate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_solidcreate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_solverdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_solverdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sourcecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sourcecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_spacepara15.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_spacepara15.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_spacepara1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_spacepara1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_spacepara2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_spacepara2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_spacing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_spacing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_sphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_sphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_spinbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_spinbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_splitcell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_splitcell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_splittable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_splittable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_splitwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_splitwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_square.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_square.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_square_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_square_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_square_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_square_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_square_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_square_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.bang.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.bang.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.concave-star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.concave-star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.doorplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.doorplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.horizontal-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.horizontal-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.signet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.signet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.star12.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.star12.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.star24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.star24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.star4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.star4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.star5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.star5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.star8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.star8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_starshapes.vertical-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_starshapes.vertical-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_statisticsmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_statisticsmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_statusbarvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_statusbarvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_strongemphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_strongemphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_styleapply.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_styleapply.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_subscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_subscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_substract.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_substract.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_subtitleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_subtitleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_superscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_superscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_switchcontroldesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_switchcontroldesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_switchxformsdesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_switchxformsdesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.brace-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.brace-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.bracket-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.bracket-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.cloud.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.cloud.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.diamond-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.diamond-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.flower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.flower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.forbidden.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.forbidden.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.heart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.heart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.left-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.left-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.left-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.left-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.lightning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.lightning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.moon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.moon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.octagon-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.octagon-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.puzzle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.puzzle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.quad-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.quad-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.right-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.right-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.right-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.right-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.sun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_symbolshapes.sun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_tabdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_tabdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_tabledeselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_tabledeselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_tabledesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_tabledesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_tabledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_tabledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_tablemodefix.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_tablemodefix.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_tablemodefixprop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_tablemodefixprop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_tablemodevariable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_tablemodevariable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_tablenumberformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_tablenumberformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_tableselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_tableselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_testmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_testmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_textbodyparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_textbodyparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_texttocolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_texttocolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_thesaurus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_thesaurus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_timefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_timefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_titlepagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_titlepagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_titleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_titleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_toggleanchortype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_toggleanchortype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_toggleaxistitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_toggleaxistitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_togglebreakpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_togglebreakpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_togglegridhorizontal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_togglegridhorizontal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_togglegridvertical.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_togglegridvertical.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_togglelegend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_togglelegend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_togglemergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_togglemergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_toggleobjectbeziermode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_toggleobjectbeziermode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_toggleobjectrotatemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_toggleobjectrotatemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_togglesheetgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_togglesheetgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_toggletabbarvisibility.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_toggletabbarvisibility.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_toggletitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_toggletitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_toolbarmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_toolbarmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_toolprotectiondocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_toolprotectiondocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_torus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_torus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_trackchangesbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_trackchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_trackchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_transformdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_transformdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_undo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_undo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_ungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_ungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_unhainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_unhainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_unsetcellsreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_unsetcellsreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_updatecurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_updatecurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_upsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_upsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_urlbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_urlbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_validation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_validation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_versiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_versiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_verticalcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_verticalcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_verticaltextfittosizetool.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_verticaltextfittosizetool.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_vfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_vfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_viewdatasourcebrowser.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_viewdatasourcebrowser.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_viewformasgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_viewformasgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_viewrowcolumnheaders.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_viewrowcolumnheaders.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_viewvaluehighlighting.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_viewvaluehighlighting.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_vruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_vruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_watermark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_watermark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_window3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_window3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_wrapcontour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_wrapcontour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_wrapideal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_wrapideal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_wrapleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_wrapleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_wrapoff.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_wrapoff.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_wrapon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_wrapon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_wrapright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_wrapright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_wraptext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_wraptext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_wrapthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_wrapthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_xlinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_xlinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoom100percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoom100percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoom200percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoom200percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoomin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoomin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoommode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoommode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoomnext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoomnext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoomobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoomobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoomoptimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoomoptimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoomout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoomout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoompage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoompage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoompagewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoompagewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoompanning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoompanning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/lc_zoomprevious.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/lc_zoomprevious.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/nl/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/nl/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/nl/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/nl/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/nl/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/nl/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/nl/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/nl/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/nl/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/nl/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/nl/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/nl/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/pl/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/pl/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/pl/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/pl/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/pl/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/pl/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/pl/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/pl/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/recsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/recsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ru/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ru/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ru/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ru/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ru/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ru/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ru/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ru/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ru/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ru/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/ru/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/ru/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_about.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_about.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_accent1cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_accent1cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_accent2cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_accent2cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_accent3cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_accent3cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_acceptalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_acceptalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_accepttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_accepttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_accepttrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_accepttrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_accepttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_accepttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_actionmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_actionmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_adddirect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_adddirect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_addfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_addfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_additionsdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_additionsdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_addname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_addname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_add.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_add.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_addprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_addprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_addressbooksource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_addressbooksource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_addtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_addtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_addwatch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_addwatch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_advancedmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_advancedmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_alignblock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_alignblock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_alignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_alignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_aligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_aligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_aligndown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_aligndown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_alignhorizontalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_alignhorizontalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_alignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_alignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_alignmiddle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_alignmiddle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_alignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_alignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_aligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_aligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_alignup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_alignup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_alignverticalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_alignverticalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_animationeffects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_animationeffects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_animationmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_animationmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_animationobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_animationobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.chevron.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.chevron.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.circular-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.circular-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.corner-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.corner-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.left-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.left-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.left-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.left-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.left-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.left-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.notched-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.notched-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.pentagon-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.pentagon-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.quad-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.quad-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.quad-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.quad-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.split-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.split-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.split-round-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.split-round-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.s-sharped-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.s-sharped-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.striped-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.striped-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-right-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_arrowshapes.up-right-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_assignlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_assignlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_assignmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_assignmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_attributepagesize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_attributepagesize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_auditingfillmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_auditingfillmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_auditmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_auditmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_autocontrolfocus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_autocontrolfocus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_autoformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_autoformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_autooutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_autooutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_autopilotmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_autopilotmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_autoredactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_autoredactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_autosum.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_autosum.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_avmediaplayer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_avmediaplayer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_backcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_backcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_backgroundcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_backgroundcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_backward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_backward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_badcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_badcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicideappear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicideappear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.block-arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.block-arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.can.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.can.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.cross.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.cross.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.diamond.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.diamond.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.frame.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.frame.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.hexagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.hexagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.isosceles-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.isosceles-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.octagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.octagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.paper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.paper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.pentagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.pentagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.right-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.right-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.ring.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.ring.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.round-quadrat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.round-quadrat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicshapes.trapezoid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicshapes.trapezoid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicstepinto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicstepinto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicstepout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicstepout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicstepover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicstepover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_basicstop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_basicstop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_beforeobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_beforeobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_behindobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_behindobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bezierappend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bezierappend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bezierclose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bezierclose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bezierconvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bezierconvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_beziercutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_beziercutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bezierdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bezierdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bezieredge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bezieredge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_beziereliminatepoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_beziereliminatepoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bezierfill.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bezierfill.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bezierinsert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bezierinsert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_beziermove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_beziermove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_beziersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_beziersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_beziersymmetric.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_beziersymmetric.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bezier_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bezier_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bibliographycomponent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bibliographycomponent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bmpmask.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bmpmask.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_borderdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_borderdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_break.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_break.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bringtofront.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bringtofront.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_browseview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_browseview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_calculate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_calculate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.cloud-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.cloud-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.line-callout-1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.line-callout-1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.line-callout-2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.line-callout-2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.line-callout-3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.line-callout-3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.rectangular-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.rectangular-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.round-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_calloutshapes.round-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_cancel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_cancel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_capturepoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_capturepoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_cellprotection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_cellprotection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_chainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_chainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_changebezier.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_changebezier.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_changecasetolower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_changecasetolower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_changecasetoupper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_changecasetoupper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_changedatabasefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_changedatabasefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_changepicture.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_changepicture.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_changepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_changepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_charmapcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_charmapcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_checkbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_checkbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_choosecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_choosecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_choosedesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_choosedesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_choosemacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_choosemacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_choosepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_choosepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_circlearc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_circlearc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_circlecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_circlecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_circlecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_circlecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_circlepie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_circlepie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_circlepie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_circlepie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_circle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_circle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_circle_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_circle_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_cleararrowdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_cleararrowdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_cleararrowprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_cleararrowprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_cleararrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_cleararrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_closedoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_closedoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_closedocs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_closedocs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_closemasterview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_closemasterview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_closepreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_closepreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_colorscaleformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_colorscaleformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_colorsettings.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_colorsettings.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_combine.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_combine.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_combobox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_combobox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_commentchangetracking.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_commentchangetracking.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_comparedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_comparedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_compilebasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_compilebasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_compressgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_compressgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_conddateformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_conddateformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_conditionalformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_conditionalformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_cone.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_cone.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_configuredialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_configuredialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorcircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorcircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorcirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorcirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorcurvearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorcurvearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorcurvearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorcurvearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorcurvearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorcurvearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorcurvecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorcurvecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorcurvecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorcurvecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorcurve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorcurve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlinearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlinearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlinearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlinearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlinearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlinearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlinecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlinecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlinecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlinecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlinesarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlinesarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlinesarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlinesarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlinesarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlinesarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlinescircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlinescircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlinescirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlinescirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connectorlines.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connectorlines.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_connect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_connect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_contourdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_contourdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_controlcodes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_controlcodes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_controlproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_controlproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_convertinto3dlathe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_convertinto3dlathe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_convertinto3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_convertinto3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_copyobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_copyobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_copy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_copy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_crookrotate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_crookrotate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_crookslant.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_crookslant.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_crop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_crop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_currencyfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_currencyfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_customshowdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_customshowdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_cut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_cut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_cylinder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_cylinder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_cyramid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_cyramid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dataarearefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dataarearefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_databarformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_databarformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dataconsolidate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dataconsolidate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_datadatapilotrun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_datadatapilotrun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_datafilterautofilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_datafilterautofilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_datafilterspecialfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_datafilterspecialfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_datafilterstandardfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_datafilterstandardfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dataform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dataform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dataimport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dataimport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dataincolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dataincolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_datainrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_datainrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dataprovider.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dataprovider.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dataproviderrefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dataproviderrefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dataranges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dataranges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_datasort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_datasort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_datastreams.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_datastreams.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_datasubtotals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_datasubtotals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_datefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_datefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbaddrelation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbaddrelation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbchangedesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbchangedesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbclearquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbclearquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbdistinctvalues.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbdistinctvalues.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbformdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbformdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbformedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbformedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbformopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbformopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbformrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbformrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbindexdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbindexdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbnewform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbnewform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbnewquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbnewquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbnewquerysql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbnewquerysql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbnewreport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbnewreport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbnewtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbnewtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbnewview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbnewview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbnewviewsql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbnewviewsql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbquerydelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbquerydelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbqueryedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbqueryedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbqueryopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbqueryopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbquerypropertiesdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbquerypropertiesdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbqueryrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbqueryrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbrelationdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbrelationdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbreportdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbreportdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbreportedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbreportedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbreportopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbreportopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbreportrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbreportrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbsortingandgrouping.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbsortingandgrouping.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbtabledelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbtabledelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbtableedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbtableedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbtableopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbtableopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbtablerename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbtablerename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbviewaliases.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbviewaliases.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbviewforms.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbviewforms.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbviewfunctions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbviewfunctions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbviewqueries.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbviewqueries.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbviewreports.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbviewreports.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbviewtablenames.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbviewtablenames.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dbviewtables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dbviewtables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_decrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_decrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_decrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_decrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_decrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_decrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_defaultcharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_defaultcharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_definedbname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_definedbname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_definename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_definename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_defineprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_defineprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deleteallannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deleteallannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deleteallbreaks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deleteallbreaks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deleteannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deleteannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deletecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deletecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deletecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deletecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deletemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deletemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deletepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deletepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deletepivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deletepivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_delete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_delete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deleteprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deleteprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deleterows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deleterows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deleteslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deleteslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_deletetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_deletetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_developmenttoolsdockingwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_developmenttoolsdockingwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diaeffect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diaeffect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diagramarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diagramarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diagramaxis.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diagramaxis.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diagramaxisx.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diagramaxisx.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diagramaxisxyz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diagramaxisxyz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diagramaxisy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diagramaxisy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diagramaxisz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diagramaxisz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diagramdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diagramdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diagramtype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diagramtype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diagramwall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diagramwall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diamode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diamode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diaspeed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diaspeed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_diatime.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_diatime.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dismantle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dismantle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_displaymasterbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_displaymasterbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_displaymasterobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_displaymasterobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_displaymode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_displaymode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributehorzcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributehorzcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributehorzdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributehorzdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributehorzleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributehorzleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributehorzright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributehorzright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributerows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributerows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributeselection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributeselection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributevertbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributevertbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributevertcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributevertcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributevertdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributevertdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_distributeverttop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_distributeverttop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_documentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_documentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_downsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_downsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_drawcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_drawcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_drawchart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_drawchart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dsbinsertcontent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dsbinsertcontent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_dsbrowserexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_dsbrowserexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_duplicatepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_duplicatepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_duplicatesheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_duplicatesheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_duplicateslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_duplicateslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_editannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_editannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_editcurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_editcurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_editdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_editdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_editframeset.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_editframeset.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_editglossary.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_editglossary.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_editheaderandfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_editheaderandfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_edithyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_edithyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_editprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_editprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_editqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_editqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_ellipsecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_ellipsecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_ellipsecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_ellipsecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_ellipse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_ellipse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_ellipse_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_ellipse_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_emphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_emphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_entergroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_entergroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_entirecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_entirecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_entirecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_entirecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_entirerow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_entirerow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_equalizeheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_equalizeheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_equalizewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_equalizewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_errorcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_errorcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_euroconverter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_euroconverter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_executereport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_executereport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_expandpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_expandpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_exportdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_exportdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_exportdirecttoepub.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_exportdirecttoepub.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_exportdirecttopdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_exportdirecttopdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_exportto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_exportto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_extendedhelp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_extendedhelp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_extrusion3dcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_extrusion3dcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_extrusiondepthfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_extrusiondepthfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_extrusiondirectionfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_extrusiondirectionfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_extrusionlightingfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_extrusionlightingfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_extrusionsurfacefloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_extrusionsurfacefloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_extrusiontiltdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_extrusiontiltdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_extrusiontiltleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_extrusiontiltleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_extrusiontiltright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_extrusiontiltright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_extrusiontiltup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_extrusiontiltup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_filecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_filecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_filedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_filedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_filefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_filefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_filldown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_filldown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fillleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fillleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fillright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fillright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fillshadow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fillshadow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fillup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fillup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_firstpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_firstpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_firstrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_firstrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_firstslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_firstslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-card.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-card.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-collate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-collate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-decision.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-decision.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-delay.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-delay.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-direct-access-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-direct-access-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-display.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-display.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-document.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-document.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-internal-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-internal-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-manual-input.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-manual-input.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-multidocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-multidocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-off-page-connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-off-page-connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-or.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-or.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-predefined-process.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-predefined-process.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-preparation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-preparation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-punched-tape.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-punched-tape.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-sequential-access.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-sequential-access.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-sort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-sort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-stored-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-stored-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-summing-junction.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-summing-junction.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-terminator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.flowchart-terminator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_flowchartshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkgalleryfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkgalleryfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontwork.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontwork.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworksameletterheights.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworksameletterheights.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-chevron-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-chevron-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-chevron-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-chevron-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-curve-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-curve-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-curve-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-curve-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-fade-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-fade-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-fade-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-fade-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-fade-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-fade-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-inflate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-inflate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-plain-text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-plain-text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-slant-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-slant-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-slant-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-slant-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-stop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-stop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-triangle-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-triangle-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-wave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fontworkshapetype.fontwork-wave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_footnotedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formatcelldialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formatcelldialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formatcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formatcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formatgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formatgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formatline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formatline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formatpaintbrush.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formatpaintbrush.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formattedfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formattedfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formatungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formatungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formdesigntools.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formdesigntools.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formelcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formelcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formfiltered.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formfiltered.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formfilternavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formfilternavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_formproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_formproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_forward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_forward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_framedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_framedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_framelinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_framelinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_freeline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_freeline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_freeline_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_freeline_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_freezepanesfirstcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_freezepanesfirstcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_freezepanesfirstrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_freezepanesfirstrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_freezepanes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_freezepanes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_fullscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_fullscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gallery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gallery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_glueeditmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_glueeditmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_glueescapedirectionbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_glueescapedirectionbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_glueescapedirectionleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_glueescapedirectionleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_glueescapedirectionright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_glueescapedirectionright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_glueescapedirectiontop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_glueescapedirectiontop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gluehorzaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gluehorzaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gluehorzalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gluehorzalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gluehorzalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gluehorzalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_glueinsertpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_glueinsertpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gluepercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gluepercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gluevertalignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gluevertalignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gluevertaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gluevertaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gluevertaligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gluevertaligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_goalseekdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_goalseekdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_goodcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_goodcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gotoendofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gotoendofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gotoend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gotoend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gotopage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gotopage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gotostartofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gotostartofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gotostartoftable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gotostartoftable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_grafblue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_grafblue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_grafcontrast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_grafcontrast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_grafgamma.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_grafgamma.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_grafgreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_grafgreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_grafluminance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_grafluminance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_grafred.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_grafred.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graftransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graftransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfilterinvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfilterinvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfiltermosaic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfiltermosaic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfilterpopart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfilterpopart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfilterposter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfilterposter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfilterrelief.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfilterrelief.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfilterremovenoise.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfilterremovenoise.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfiltersepia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfiltersepia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfiltersharpen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfiltersharpen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfiltersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfiltersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfiltersobel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfiltersobel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphicfiltersolarize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphicfiltersolarize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_graphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_graphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_greatestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_greatestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_greatestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_greatestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_grid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_grid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_griduse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_griduse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_gridvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_gridvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_groupbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_groupbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_groupoutlinemenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_groupoutlinemenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_group.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_group.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_grow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_grow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_halfsphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_halfsphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_handoutmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_handoutmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hangingindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hangingindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_heading1parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_heading1parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_heading2parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_heading2parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_heading3parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_heading3parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_heading4parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_heading4parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_heading5parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_heading5parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_heading6parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_heading6parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_helpindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_helpindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_helplinesmove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_helplinesmove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_helplinesuse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_helplinesuse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_helplinesvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_helplinesvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hideallnotes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hideallnotes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hidecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hidecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hidedetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hidedetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hidenote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hidenote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hiderow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hiderow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hideslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hideslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hidewhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hidewhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hscrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hscrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_iconsetformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_iconsetformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_imagebutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_imagebutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_imagecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_imagecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_imagemapdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_imagemapdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_importdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_importdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_importfromfile.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_importfromfile.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_incrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_incrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_incrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_incrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_incrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_incrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_inputlinevisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_inputlinevisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_inscellsctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_inscellsctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertauthoritiesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertauthoritiesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertbookmark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertbookmark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertcaptiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertcaptiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertcellsdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertcellsdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertcellsright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertcellsright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertcolumnbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertcolumnbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertcolumnsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertcolumnsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertcolumnsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertcolumnsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertdatefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertdatefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertdraw.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertdraw.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertendnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertendnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertenvelope.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertenvelope.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertexternaldatasource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertexternaldatasource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertfieldctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertfieldctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertfootnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertheader.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertheader.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_inserthyperlinkcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_inserthyperlinkcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_inserthyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_inserthyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertindexesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertlinebreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertlinebreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertmath.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertmath.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertmenutitles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertmenutitles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertmultiindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertmultiindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertobjectfloatingframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertobjectfloatingframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertpagebreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertpagebreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertpagecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertpagecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertpagenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertpagenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertplugin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertplugin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertreferencefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertrowbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertrowbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertrowsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertrowsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertrowsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertrowsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertsection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertsection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertslidecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertslidecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertslidenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertslidenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertslidetitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertslidetitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertsound.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertsound.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertspreadsheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertspreadsheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertsymbol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertsymbol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_inserttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_inserttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_inserttimefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_inserttimefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_inserttitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_inserttitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_inserttopicfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_inserttopicfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_inserttreecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_inserttreecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_insertvideo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_insertvideo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_inspectordeck.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_inspectordeck.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_interactivegradient.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_interactivegradient.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_interactivetransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_interactivetransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_intersect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_intersect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_jumptonexttablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_jumptonexttablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_jumptoprevtablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_jumptoprevtablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_lastpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_lastpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_lastrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_lastrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_lastslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_lastslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_leaveallgroups.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_leaveallgroups.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_leavegroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_leavegroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_legend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_legend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_librelogo-clearscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_librelogo-clearscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_librelogo-gobackward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_librelogo-gobackward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_librelogo-goforward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_librelogo-goforward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_librelogo-home.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_librelogo-home.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_librelogo-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_librelogo-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_librelogo-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_librelogo-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_linearrowcircle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_linearrowcircle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_linearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_linearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_linearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_linearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_linearrowsquare.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_linearrowsquare.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_linearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_linearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_linecirclearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_linecirclearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_line_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_line_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_lineendstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_lineendstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_line.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_line.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_linesquarearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_linesquarearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_linestyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_linestyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_linewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_linewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_listbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_listbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_loadbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_loadbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_lock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_lock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_macrorecorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_macrorecorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mailmergecreatedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mailmergecreatedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mailmergeemaildocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mailmergeemaildocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mailmergeexcludeentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mailmergeexcludeentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mailmergeprintdocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mailmergeprintdocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mailmergesavedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mailmergesavedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mailmergewizard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mailmergewizard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_managebreakpoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_managebreakpoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_managelanguage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_managelanguage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_managexmlsource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_managexmlsource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_marks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_marks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_masterlayouts.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_masterlayouts.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_masterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_masterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_matchgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_matchgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_measureline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_measureline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mediamute.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mediamute.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mediapause.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mediapause.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mediarepeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mediarepeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_menubar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_menubar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mergedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mergedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mergedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mergedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_merge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_merge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mergetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mergetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mirror.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mirror.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_mirrorvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_mirrorvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_modifyframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_modifyframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_modifypage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_modifypage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_moduledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_moduledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_morecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_morecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_morphing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_morphing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_movedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_movedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_movedownsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_movedownsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_movepagedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_movepagedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_movepagefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_movepagefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_movepagelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_movepagelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_movepageup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_movepageup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_move.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_move.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_moveslidedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_moveslidedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_moveslidefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_moveslidefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_moveslidelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_moveslidelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_moveslideup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_moveslideup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_moveup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_moveup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_moveupsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_moveupsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_name.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_name.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_navigationbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_navigationbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_navigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_navigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_neutralcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_neutralcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_newarrangement.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_newarrangement.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_newdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_newdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_newhtmldoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_newhtmldoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_newwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_newwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_nextannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_nextannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_nextpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_nextpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_nextrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_nextrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_nextslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_nextslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_nexttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_nexttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_normalmultipanegui.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_normalmultipanegui.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_normalviewmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_normalviewmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_notesmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_notesmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_notesmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_notesmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_numberformatdate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_numberformatdate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_numberformatpercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_numberformatpercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_numberformatscientific.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_numberformatscientific.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_numberformatstandard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_numberformatstandard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_numericfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_numericfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_objectalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_objectalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_objectalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_objectalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_objectcatalog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_objectcatalog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_objectposition.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_objectposition.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_objecttitledescription.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_objecttitledescription.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_ok.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_ok.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_open.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_open.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_openreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_openreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_openremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_openremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_optimizetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_optimizetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_optionstreedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_optionstreedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_orientation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_orientation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_outlinecollapseall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_outlinecollapseall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_outlinecollapse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_outlinecollapse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_outlineexpandall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_outlineexpandall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_outlineexpand.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_outlineexpand.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_outlineformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_outlineformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_outlinemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_outlinemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_outputqualityblackwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_outputqualityblackwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_outputqualitygrayscale.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_outputqualitygrayscale.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pagebreakmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pagebreakmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pagecolumntype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pagecolumntype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pagemargin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pagemargin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pagemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pagemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pagesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pagesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_paragraphdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_paragraphdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_paralefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_paralefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pararighttoleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pararighttoleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_paraspacedecrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_paraspacedecrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_paraspaceincrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_paraspaceincrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pasteaslink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pasteaslink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pasteonlyformula.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pasteonlyformula.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pasteonlytext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pasteonlytext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pasteonlyvalue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pasteonlyvalue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_paste.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_paste.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pastespecial.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pastespecial.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pastetransposed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pastetransposed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pasteunformatted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pasteunformatted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_patternfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_patternfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_photoalbumdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_photoalbumdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_polygon_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_polygon_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_polygon_diagonal_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_polygon_diagonal_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_polygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_polygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_polygon_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_polygon_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_position.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_position.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_preformattedparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_preformattedparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_presentationcurrentslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_presentationcurrentslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_presentationdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_presentationdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_presentationlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_presentationlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_presentationminimizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_presentationminimizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_presentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_presentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_previewprintoptions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_previewprintoptions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_previousannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_previousannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_previouspage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_previouspage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_previousrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_previousrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_previousslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_previousslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_previoustrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_previoustrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_prevrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_prevrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_printdefault.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_printdefault.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_printersetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_printersetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_printlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_printlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_print.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_print.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_printpreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_printpreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_progressbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_progressbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_protectbookmarks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_protectbookmarks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_protectfields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_protectfields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_protect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_protect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_protecttracechangemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_protecttracechangemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_pushbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_pushbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_quit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_quit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_quotecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_quotecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_quoteparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_quoteparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_radiobutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_radiobutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_recalcpivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_recalcpivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_recentfilelist.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_recentfilelist.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_recsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_recsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_rect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_rect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_rect_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_rect_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_rect_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_rect_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_rect_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_rect_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_redactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_redactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_redactedexportblack.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_redactedexportblack.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_redactedexportwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_redactedexportwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_redo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_redo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_refreshformcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_refreshformcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_rejectalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_rejectalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_rejecttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_rejecttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_rejecttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_rejecttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_reload.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_reload.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_removefiltersort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_removefiltersort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_removehyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_removehyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_remove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_remove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_removetableof.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_removetableof.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_renamemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_renamemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_renameobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_renameobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_renamepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_renamepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_renameslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_renameslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_repeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_repeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_replycomment.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_replycomment.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_reportnavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_reportnavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_reverseorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_reverseorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_rotateleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_rotateleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_rotateright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_rotateright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_ruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_ruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_runbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_runbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_runmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_runmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_saveacopy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_saveacopy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_saveall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_saveall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_saveas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_saveas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_saveasremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_saveasremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_saveastemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_saveastemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_savebackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_savebackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_savebasicas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_savebasicas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_save.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_save.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sbaexecutesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sbaexecutesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sbanativesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sbanativesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_scan.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_scan.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_scriptorganizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_scriptorganizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_scrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_scrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_searchdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_searchdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sectionshrinkbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sectionshrinkbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sectionshrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sectionshrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sectionshrinktop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sectionshrinktop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_selectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_selectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_selectbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_selectbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_selectdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_selectdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_selectdb.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_selectdb.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_selectobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_selectobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_selecttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_selecttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_selecttables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_selecttables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_selectunprotectedcells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_selectunprotectedcells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sendfax.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sendfax.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sendfeedback.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sendfeedback.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sendmail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sendmail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sendtoback.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sendtoback.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_setborderstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_setborderstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_setdocumentproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_setdocumentproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_setminimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_setminimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_setminimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_setminimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_setobjecttobackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_setobjecttobackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_setobjecttoforeground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_setobjecttoforeground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_setoptimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_setoptimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_setoptimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_setoptimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_setreminder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_setreminder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_shadowcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_shadowcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sharedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sharedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_shear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_shear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_shell3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_shell3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showannotations.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showannotations.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showbookview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showbookview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showdatanavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showdatanavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showdetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showdetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showerrors.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showerrors.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showfmexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showfmexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showinvalid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showinvalid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showmultiplepages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showmultiplepages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_shownote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_shownote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_show.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_show.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showsinglepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showsinglepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showtoolbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showtoolbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showtrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showtrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showtwopages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showtwopages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_showwhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_showwhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_shrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_shrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sidebar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sidebar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_signaturelinedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_signaturelinedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_signature.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_signature.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_signpdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_signpdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_size.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_size.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_slidechangewindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_slidechangewindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_slidemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_slidemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_slidesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_slidesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_smallcaps.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_smallcaps.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_smallestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_smallestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_smallestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_smallestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_snapborder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_snapborder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_snapframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_snapframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_snappoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_snappoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_solidcreate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_solidcreate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_solverdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_solverdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sourcecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sourcecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_spacepara15.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_spacepara15.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_spacepara1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_spacepara1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_spacepara2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_spacepara2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_spacing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_spacing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_sphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_sphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_spinbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_spinbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_splitcell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_splitcell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_splittable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_splittable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_splitwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_splitwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_square.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_square.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_square_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_square_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_square_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_square_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_square_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_square_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.bang.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.bang.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.concave-star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.concave-star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.doorplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.doorplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.horizontal-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.horizontal-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.signet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.signet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.star12.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.star12.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.star24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.star24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.star4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.star4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.star5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.star5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.star8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.star8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_starshapes.vertical-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_starshapes.vertical-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_statetablecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_statetablecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_statisticsmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_statisticsmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_statusbarvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_statusbarvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_strongemphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_strongemphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_styleapply.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_styleapply.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_subscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_subscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_substract.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_substract.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_subtitleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_subtitleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_superscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_superscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_switchcontroldesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_switchcontroldesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_switchxformsdesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_switchxformsdesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.brace-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.brace-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.bracket-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.bracket-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.cloud.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.cloud.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.diamond-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.diamond-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.flower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.flower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.forbidden.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.forbidden.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.heart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.heart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.left-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.left-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.left-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.left-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.lightning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.lightning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.moon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.moon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.octagon-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.octagon-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.puzzle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.puzzle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.quad-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.quad-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.right-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.right-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.right-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.right-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.sun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_symbolshapes.sun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_tabdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_tabdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_tabledeselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_tabledeselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_tabledesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_tabledesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_tabledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_tabledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_tablemodefix.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_tablemodefix.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_tablemodefixprop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_tablemodefixprop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_tablemodevariable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_tablemodevariable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_tablenumberformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_tablenumberformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_tableselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_tableselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_testmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_testmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_textbodyparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_textbodyparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_texttocolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_texttocolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_thesaurus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_thesaurus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_timefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_timefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_titlepagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_titlepagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_titleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_titleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_toggleanchortype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_toggleanchortype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_toggleaxistitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_toggleaxistitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_togglebreakpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_togglebreakpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_togglegridhorizontal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_togglegridhorizontal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_togglegridvertical.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_togglegridvertical.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_togglelegend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_togglelegend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_togglemergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_togglemergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_toggleobjectbeziermode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_toggleobjectbeziermode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_toggleobjectrotatemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_toggleobjectrotatemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_togglesheetgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_togglesheetgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_toggletabbarvisibility.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_toggletabbarvisibility.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_toggletitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_toggletitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_toolbarmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_toolbarmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_toolprotectiondocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_toolprotectiondocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_torus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_torus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_trackchangesbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_trackchangesbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_trackchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_trackchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_transformdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_transformdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_undo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_undo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_ungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_ungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_unhainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_unhainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_unsetcellsreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_unsetcellsreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_updatecurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_updatecurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_upsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_upsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_urlbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_urlbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_validation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_validation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_versiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_versiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_verticalcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_verticalcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_verticaltextfittosizetool.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_verticaltextfittosizetool.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_vfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_vfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_viewdatasourcebrowser.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_viewdatasourcebrowser.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_viewformasgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_viewformasgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_viewrowcolumnheaders.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_viewrowcolumnheaders.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_viewvaluehighlighting.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_viewvaluehighlighting.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_vruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_vruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_warningcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_warningcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_watermark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_watermark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_window3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_window3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_wrapcontour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_wrapcontour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_wrapideal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_wrapideal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_wrapleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_wrapleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_wrapoff.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_wrapoff.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_wrapon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_wrapon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_wrapright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_wrapright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_wraptext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_wraptext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_wrapthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_wrapthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_xlinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_xlinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoom100percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoom100percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoom200percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoom200percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoomin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoomin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoommode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoommode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoomnext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoomnext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoomobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoomobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoomoptimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoomoptimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoomout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoomout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoompage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoompage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoompagewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoompagewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoompanning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoompanning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sc_zoomprevious.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sc_zoomprevious.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sl/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sl/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sl/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sl/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sl/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sl/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/sl/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/sl/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/tr/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/tr/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/cmd/tr/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/cmd/tr/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/exwarning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/exwarning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/forms_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/forms_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/jo02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/jo02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/joh01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/joh01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/lc039.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/lc039.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/lc040.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/lc040.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/linked_text_table.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/linked_text_table.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/pkey.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/pkey.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/reports_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/reports_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/sc039.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/sc039.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/dbaccess/res/sc040.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/dbaccess/res/sc040.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/desktop/res/shared_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/desktop/res/shared_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/extensions/res/addresspilot.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/extensions/res/addresspilot.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/extensions/res/scanner/handle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/extensions/res/scanner/handle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/extensions/res/scanner/minus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/extensions/res/scanner/minus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/extensions/res/scanner/plus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/extensions/res/scanner/plus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/extensions/res/update/ui/onlineupdate_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/extensions/res/update/ui/onlineupdate_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/extensions/res/update/ui/onlineupdate_26.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/extensions/res/update/ui/onlineupdate_26.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/formula/res/refinp1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/formula/res/refinp1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/formula/res/refinp2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/formula/res/refinp2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/fpicker/res/fp015.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/fpicker/res/fp015.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/framework/res/recent-documents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/framework/res/recent-documents.png differ diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura/links.txt libreoffice-7.5.2~rc2/icon-themes/sukapura/links.txt --- libreoffice-7.5.1~rc2/icon-themes/sukapura/links.txt 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura/links.txt 2023-03-24 16:53:38.000000000 +0000 @@ -1,2788 +1,2788 @@ -# avmedia -# ============================================== -avmedia/res/av02048.png cmd/sc_open.png -avmedia/res/av02049.png cmd/sc_runbasic.png -avmedia/res/av02050.png cmd/sc_mediapause.png -avmedia/res/av02051.png cmd/sc_basicstop.png -avmedia/res/av02052.png cmd/sc_mediarepeat.png -avmedia/res/av02053.png cmd/sc_ok.png -avmedia/res/av02054.png cmd/sc_mediamute.png -avmedia/res/avl02048.png cmd/lc_open.png -avmedia/res/avl02049.png cmd/lc_runbasic.png -avmedia/res/avl02050.png cmd/lc_mediapause.png -avmedia/res/avl02051.png cmd/lc_basicstop.png -avmedia/res/avl02052.png cmd/lc_mediarepeat.png -avmedia/res/avl02053.png cmd/lc_ok.png -avmedia/res/avl02054.png cmd/lc_mediamute.png - -# arrangement -# ============================================== -cmd/32/objectbackone.png cmd/32/backward.png -cmd/32/objectforwardone.png cmd/32/forward.png - -cmd/lc_objectbackone.png cmd/lc_backward.png -cmd/lc_objectforwardone.png cmd/lc_forward.png - -cmd/sc_objectbackone.png cmd/sc_backward.png -cmd/sc_objectforwardone.png cmd/sc_forward.png - -# chart2 -# ============================================== -chart2/res/dataeditor_icon01.png cmd/sc_insertrowsafter.png -chart2/res/dataeditor_icon02.png cmd/sc_insertcolumnsafter.png -chart2/res/dataeditor_icon03.png cmd/sc_deleterows.png -chart2/res/dataeditor_icon04.png cmd/sc_deletecolumns.png -chart2/res/selectrange.png formula/res/refinp1.png - -cmd/32/charttitlemenu.png cmd/32/toggletitle.png -cmd/32/diagramaxisall.png cmd/32/diagramaxisxyz.png -cmd/32/diagramaxismenu.png cmd/32/diagramaxis.png -cmd/32/diagramgridmenu.png cmd/32/togglegridhorizontal.png -cmd/32/insertmenuaxes.png cmd/32/diagramaxis.png -cmd/32/insertmenugrids.png cmd/32/togglegridhorizontal.png -cmd/32/insertmenulegend.png cmd/32/legend.png - -cmd/lc_charttitlemenu.png cmd/lc_toggletitle.png -cmd/lc_diagramaxisall.png cmd/lc_diagramaxisxyz.png -cmd/lc_diagramaxismenu.png cmd/lc_diagramaxis.png -cmd/lc_diagramgridmenu.png cmd/lc_togglegridhorizontal.png -cmd/lc_insertmenuaxes.png cmd/lc_diagramaxis.png -cmd/lc_insertmenugrids.png cmd/lc_togglegridhorizontal.png -cmd/lc_insertmenulegend.png cmd/lc_legend.png - -cmd/sc_charttitlemenu.png cmd/sc_toggletitle.png -cmd/sc_diagramaxisall.png cmd/sc_diagramaxisxyz.png -cmd/sc_diagramaxismenu.png cmd/sc_diagramaxis.png -cmd/sc_diagramgridmenu.png cmd/sc_togglegridhorizontal.png -cmd/sc_insertmenuaxes.png cmd/sc_diagramaxis.png -cmd/sc_insertmenugrids.png cmd/sc_togglegridhorizontal.png -cmd/sc_insertmenulegend.png cmd/sc_legend.png - -# cmd -# ============================================== - -# Add -cmd/32/adddatefield.png cmd/32/datefield.png -cmd/32/addons.png cmd/32/insertplugin.png - -cmd/lc_adddatefield.png cmd/lc_datefield.png -cmd/lc_addons.png cmd/lc_insertplugin.png - -cmd/sc_adddatefield.png cmd/sc_datefield.png -cmd/sc_addons.png cmd/sc_insertplugin.png - -# tooltips -cmd/32/autoformatmenu.png cmd/32/autocorrectdlg.png -cmd/32/showinlinetooltips.png cmd/32/shownote.png - -cmd/lc_autoformatmenu.png cmd/lc_autocorrectdlg.png -cmd/lc_showinlinetooltips.png cmd/lc_shownote.png - -cmd/sc_autoformatmenu.png cmd/sc_autocorrectdlg.png -cmd/sc_showinlinetooltips.png cmd/sc_shownote.png - -# Insert -cmd/32/charactermenu.png cmd/32/fontdialog.png -cmd/32/fieldmenu.png cmd/32/addfield.png -cmd/32/graphicmenu.png cmd/32/avmediaplayer.png -cmd/32/insertauthorfield.png cmd/32/dbviewaliases.png -cmd/32/insertavmedia.png cmd/32/avmediaplayer.png -cmd/32/insertctrl.png cmd/32/inserttable.png -cmd/32/insertcurrencyfield.png cmd/32/currencyfield.png -cmd/32/insertdatefield.png cmd/32/datefield.png -cmd/32/insertedit.png cmd/32/edit.png -cmd/32/insertfield.png cmd/32/addfield.png -cmd/32/insertfilecontrol.png cmd/32/filecontrol.png -cmd/32/insertfilefield.png cmd/32/filefield.png -cmd/32/insertformattedfield.png cmd/32/formattedfield.png -cmd/32/insertformcheck.png cmd/32/checkbox.png -cmd/32/insertformcombo.png cmd/32/combobox.png -cmd/32/insertformlist.png cmd/32/listbox.png -cmd/32/insertformmenu.png cmd/32/choosecontrols.png -cmd/32/insertformradio.png cmd/32/radiobutton.png -cmd/32/insertformspin.png cmd/32/spinbutton.png -cmd/32/insertformula.png cmd/32/dbviewfunctions.png -cmd/32/insertformvscroll.png cmd/32/scrollbar.png -cmd/32/insertframeinteract.png cmd/32/insertframe.png -cmd/32/insertframeinteractnocolumns.png cmd/32/insertframe.png -cmd/32/insertimagecontrol.png cmd/32/insertgraphic.png -cmd/32/insertlistbox.png cmd/32/listbox.png -cmd/32/insertnumericfield.png cmd/32/numericfield.png -cmd/32/insertobjectchart.png cmd/32/drawchart.png -cmd/32/insertobjectdialog.png cmd/32/insertobject.png -cmd/32/insertobjectstarmath.png cmd/32/insertmath.png -cmd/32/insertpagefooter.png cmd/32/insertfooter.png -cmd/32/insertpageheader.png cmd/32/insertheader.png -cmd/32/insertpatternfield.png cmd/32/patternfield.png -cmd/32/insertpushbutton.png cmd/32/pushbutton.png -cmd/32/inserttextframe.png cmd/32/insertframe.png -cmd/32/inserttimefield.png cmd/32/timefield.png -cmd/32/insobjctrl.png cmd/32/newdoc.png -cmd/32/numberingmenu.png cmd/32/bulletsandnumberingdialog.png -cmd/32/paragraphmenu.png cmd/32/paragraphdialog.png -cmd/32/shapesmenu.png cmd/32/insertdraw.png -cmd/32/tracechangemode.png cmd/32/trackchanges.png -cmd/32/viewtrackchanges.png cmd/32/showtrackedchanges.png - -cmd/lc_charactermenu.png cmd/lc_fontdialog.png -cmd/lc_fieldmenu.png cmd/lc_addfield.png -cmd/lc_graphicmenu.png cmd/lc_avmediaplayer.png -cmd/lc_insertauthorfield.png cmd/lc_dbviewaliases.png -cmd/lc_insertavmedia.png cmd/lc_avmediaplayer.png -cmd/lc_insertctrl.png cmd/lc_inserttable.png -cmd/lc_insertcurrencyfield.png cmd/lc_currencyfield.png -cmd/lc_insertdatefield.png cmd/lc_datefield.png -cmd/lc_insertedit.png cmd/lc_edit.png -cmd/lc_insertfield.png cmd/lc_addfield.png -cmd/lc_insertfilecontrol.png cmd/lc_filecontrol.png -cmd/lc_insertfilefield.png cmd/lc_filefield.png -cmd/lc_insertformattedfield.png cmd/lc_formattedfield.png -cmd/lc_insertformcheck.png cmd/lc_checkbox.png -cmd/lc_insertformcombo.png cmd/lc_combobox.png -cmd/lc_insertformlist.png cmd/lc_listbox.png -cmd/lc_insertformmenu.png cmd/lc_choosecontrols.png -cmd/lc_insertformradio.png cmd/lc_radiobutton.png -cmd/lc_insertformspin.png cmd/lc_spinbutton.png -cmd/lc_insertformula.png cmd/lc_dbviewfunctions.png -cmd/lc_insertformvscroll.png cmd/lc_scrollbar.png -cmd/lc_insertframeinteract.png cmd/lc_insertframe.png -cmd/lc_insertframeinteractnocolumns.png cmd/lc_insertframe.png -cmd/lc_insertimagecontrol.png cmd/lc_insertgraphic.png -cmd/lc_insertlistbox.png cmd/lc_listbox.png -cmd/lc_insertnumericfield.png cmd/lc_numericfield.png -cmd/lc_insertobjectchart.png cmd/lc_drawchart.png -cmd/lc_insertobjectdialog.png cmd/lc_insertobject.png -cmd/lc_insertobjectstarmath.png cmd/lc_insertmath.png -cmd/lc_insertpagefooter.png cmd/lc_insertfooter.png -cmd/lc_insertpageheader.png cmd/lc_insertheader.png -cmd/lc_insertpatternfield.png cmd/lc_patternfield.png -cmd/lc_insertpushbutton.png cmd/lc_pushbutton.png -cmd/lc_inserttextframe.png cmd/lc_insertframe.png -cmd/lc_inserttimefield.png cmd/lc_timefield.png -cmd/lc_insobjctrl.png cmd/lc_newdoc.png -cmd/lc_numberingmenu.png cmd/lc_bulletsandnumberingdialog.png -cmd/lc_paragraphmenu.png cmd/lc_paragraphdialog.png -cmd/lc_shapesmenu.png cmd/lc_insertdraw.png -cmd/lc_tracechangemode.png cmd/lc_trackchanges.png -cmd/lc_viewtrackchanges.png cmd/lc_showtrackedchanges.png - -cmd/sc_charactermenu.png cmd/sc_fontdialog.png -cmd/sc_fieldmenu.png cmd/sc_addfield.png -cmd/sc_graphicmenu.png cmd/sc_avmediaplayer.png -cmd/sc_insertauthorfield.png cmd/sc_dbviewaliases.png -cmd/sc_insertavmedia.png cmd/sc_avmediaplayer.png -cmd/sc_insertctrl.png cmd/sc_inserttable.png -cmd/sc_insertcurrencyfield.png cmd/sc_currencyfield.png -cmd/sc_insertdatefield.png cmd/sc_datefield.png -cmd/sc_insertedit.png cmd/sc_edit.png -cmd/sc_insertfield.png cmd/sc_addfield.png -cmd/sc_insertfilecontrol.png cmd/sc_filecontrol.png -cmd/sc_insertfilefield.png cmd/sc_filefield.png -cmd/sc_insertformattedfield.png cmd/sc_formattedfield.png -cmd/sc_insertformcheck.png cmd/sc_checkbox.png -cmd/sc_insertformcombo.png cmd/sc_combobox.png -cmd/sc_insertformlist.png cmd/sc_listbox.png -cmd/sc_insertformmenu.png cmd/sc_choosecontrols.png -cmd/sc_insertformradio.png cmd/sc_radiobutton.png -cmd/sc_insertformspin.png cmd/sc_spinbutton.png -cmd/sc_insertformula.png cmd/sc_dbviewfunctions.png -cmd/sc_insertformvscroll.png cmd/sc_scrollbar.png -cmd/sc_insertframeinteract.png cmd/sc_insertframe.png -cmd/sc_insertframeinteractnocolumns.png cmd/sc_insertframe.png -cmd/sc_insertimagecontrol.png cmd/sc_insertgraphic.png -cmd/sc_insertlistbox.png cmd/sc_listbox.png -cmd/sc_insertnumericfield.png cmd/sc_numericfield.png -cmd/sc_insertobjectchart.png cmd/sc_drawchart.png -cmd/sc_insertobjectdialog.png cmd/sc_insertobject.png -cmd/sc_insertobjectstarmath.png cmd/sc_insertmath.png -cmd/sc_insertpagefooter.png cmd/sc_insertfooter.png -cmd/sc_insertpageheader.png cmd/sc_insertheader.png -cmd/sc_insertpatternfield.png cmd/sc_patternfield.png -cmd/sc_insertpushbutton.png cmd/sc_pushbutton.png -cmd/sc_inserttextframe.png cmd/sc_insertframe.png -cmd/sc_inserttimefield.png cmd/sc_timefield.png -cmd/sc_insobjctrl.png cmd/sc_newdoc.png -cmd/sc_numberingmenu.png cmd/sc_bulletsandnumberingdialog.png -cmd/sc_paragraphmenu.png cmd/sc_paragraphdialog.png -cmd/sc_shapesmenu.png cmd/sc_insertdraw.png -cmd/sc_tracechangemode.png cmd/sc_trackchanges.png -cmd/sc_viewtrackchanges.png cmd/sc_showtrackedchanges.png - - -#View Menu -cmd/32/changesmenu.png cmd/32/trackchanges.png - -cmd/sc_changesmenu.png cmd/sc_trackchanges.png - -cmd/lc_changesmenu.png cmd/lc_trackchanges.png - -# Zoom -cmd/32/adjust.png cmd/32/zoomoptimal.png -cmd/32/previewzoom.png cmd/32/zoom.png -cmd/32/view100.png cmd/32/zoom100percent.png -cmd/32/zoomminus.png cmd/32/zoomout.png -cmd/32/zoomplus.png cmd/32/zoomin.png -cmd/32/zoomtoolbox.png cmd/32/zoom.png - -cmd/lc_adjust.png cmd/lc_zoomoptimal.png -cmd/lc_previewzoom.png cmd/lc_zoom.png -cmd/lc_view100.png cmd/lc_zoom100percent.png -cmd/lc_zoomminus.png cmd/lc_zoomout.png -cmd/lc_zoomplus.png cmd/lc_zoomin.png -cmd/lc_zoomtoolbox.png cmd/lc_zoom.png - -cmd/sc_adjust.png cmd/sc_zoomoptimal.png -cmd/sc_previewzoom.png cmd/sc_zoom.png -cmd/sc_view100.png cmd/sc_zoom100percent.png -cmd/sc_zoomminus.png cmd/sc_zoomout.png -cmd/sc_zoomplus.png cmd/sc_zoomin.png -cmd/sc_zoomtoolbox.png cmd/sc_zoom.png - -# Save -cmd/32/savegraphic.png cmd/32/save.png - -cmd/lc_savegraphic.png cmd/lc_save.png - -cmd/sc_savegraphic.png cmd/sc_save.png - -# Text -cmd/32/drawtext.png cmd/32/text.png -cmd/32/fontheight.png cmd/32/scaletext.png -cmd/32/fontworkcharacterspacingfloater.png cmd/32/spacing.png -cmd/32/textfittosizetool.png cmd/32/text_marquee.png -cmd/32/texttoolbox.png cmd/32/text.png - -cmd/lc_drawtext.png cmd/lc_text.png -cmd/lc_fontheight.png cmd/lc_scaletext.png -cmd/lc_fontworkcharacterspacingfloater.png cmd/lc_spacing.png -cmd/lc_textfittosizetool.png cmd/lc_text_marquee.png -cmd/lc_texttoolbox.png cmd/lc_text.png - -cmd/sc_drawtext.png cmd/sc_text.png -cmd/sc_fontheight.png cmd/sc_scaletext.png -cmd/sc_fontworkcharacterspacingfloater.png cmd/sc_spacing.png -cmd/sc_textfittosizetool.png cmd/sc_text_marquee.png -cmd/sc_texttoolbox.png cmd/sc_text.png - -# cmd 3d -cmd/32/convertinto3dlathefast.png cmd/32/convertinto3dlathe.png -cmd/32/extrusiontoggle.png cmd/32/convertinto3d.png -cmd/32/objects3dtoolbox.png cmd/32/cube.png -cmd/32/view3d.png cmd/32/cube.png - -cmd/lc_convertinto3dlathefast.png cmd/lc_convertinto3dlathe.png -cmd/lc_extrusiontoggle.png cmd/lc_convertinto3d.png -cmd/lc_objects3dtoolbox.png cmd/lc_cube.png -cmd/lc_view3d.png cmd/lc_cube.png - -cmd/sc_convertinto3dlathefast.png cmd/sc_convertinto3dlathe.png -cmd/sc_extrusiontoggle.png cmd/sc_convertinto3d.png -cmd/sc_objects3dtoolbox.png cmd/sc_cube.png -cmd/sc_view3d.png cmd/sc_cube.png - -# Control -cmd/32/config.png cmd/32/choosecontrols.png - -cmd/lc_config.png cmd/lc_choosecontrols.png - -cmd/sc_config.png cmd/sc_choosecontrols.png - -# Formatmenu -cmd/32/anchormenu.png cmd/32/toggleanchortype.png -cmd/32/conditionalformatmenu.png cmd/32/colorscaleformatdialog.png -cmd/32/formatbulletsmenu.png cmd/32/defaultbullet.png -cmd/32/formatframemenu.png cmd/32/framedialog.png -cmd/32/formatimagemenu.png cmd/32/graphic.png -cmd/32/formatspacingmenu.png cmd/32/spacepara15.png -cmd/32/formattextmenu.png cmd/32/charfontname.png -cmd/32/spacepara115.png cmd/32/spacepara1.png -cmd/32/textalign.png cmd/32/alignblock.png - -cmd/lc_anchormenu.png cmd/lc_toggleanchortype.png -cmd/lc_conditionalformatmenu.png cmd/lc_colorscaleformatdialog.png -cmd/lc_formatbulletsmenu.png cmd/lc_defaultbullet.png -cmd/lc_formatframemenu.png cmd/lc_framedialog.png -cmd/lc_formatimagemenu.png cmd/lc_graphicdialog.png -cmd/lc_formatspacingmenu.png cmd/lc_spacepara15.png -cmd/lc_formattextmenu.png cmd/lc_charfontname.png -cmd/lc_spacepara115.png cmd/lc_spacepara1.png -cmd/lc_textalign.png cmd/lc_alignblock.png - -cmd/sc_anchormenu.png cmd/sc_toggleanchortype.png -cmd/sc_conditionalformatmenu.png cmd/sc_colorscaleformatdialog.png -cmd/sc_formatbulletsmenu.png cmd/sc_defaultbullet.png -cmd/sc_formatframemenu.png cmd/sc_framedialog.png -cmd/sc_formatimagemenu.png cmd/sc_graphicdialog.png -cmd/sc_formatspacingmenu.png cmd/sc_spacepara15.png -cmd/sc_formattextmenu.png cmd/sc_charfontname.png -cmd/sc_spacepara115.png cmd/sc_spacepara1.png -cmd/sc_textalign.png cmd/sc_alignblock.png - -# Url -cmd/32/openurl.png cmd/32/browseview.png -cmd/32/webhtml.png cmd/32/browseview.png - -cmd/lc_openurl.png cmd/lc_browseview.png -cmd/lc_webhtml.png cmd/lc_browseview.png - -cmd/sc_openurl.png cmd/sc_browseview.png -cmd/sc_webhtml.png cmd/sc_browseview.png - -# Form -cmd/32/hscroll.png cmd/32/hscrollbar.png -cmd/32/insertformhscroll.png cmd/32/hscrollbar.png -cmd/32/scrollbarmenu.png cmd/32/scrollbar.png -cmd/32/vscroll.png cmd/32/scrollbar.png -cmd/32/vscrollbar.png cmd/32/scrollbar.png - -cmd/lc_hscroll.png cmd/lc_hscrollbar.png -cmd/lc_insertformhscroll.png cmd/lc_hscrollbar.png -cmd/lc_scrollbarmenu.png cmd/lc_scrollbar.png -cmd/lc_vscroll.png cmd/lc_scrollbar.png -cmd/lc_vscrollbar.png cmd/lc_scrollbar.png - -cmd/sc_hscroll.png cmd/sc_hscrollbar.png -cmd/sc_insertformhscroll.png cmd/sc_hscrollbar.png -cmd/sc_scrollbarmenu.png cmd/sc_scrollbar.png -cmd/sc_vscroll.png cmd/sc_scrollbar.png -cmd/sc_vscrollbar.png cmd/sc_scrollbar.png - -# Tools -cmd/32/languagemenu.png cmd/32/managelanguage.png -cmd/lc_languagemenu.png cmd/lc_managelanguage.png -cmd/sc_languagemenu.png cmd/sc_managelanguage.png - - -# Annotations -cmd/32/acceptchanges.png cmd/32/trackchangesbar.png -cmd/32/commentchange.png cmd/32/commentchangetracking.png -cmd/32/deleteallnotes.png cmd/32/deleteallannotation.png -cmd/32/deletecomment.png cmd/32/deleteannotation.png -cmd/32/deletenote.png cmd/32/deleteannotation.png -cmd/32/insertannotation.png cmd/32/shownote.png -cmd/32/notevisible.png cmd/32/shownote.png -cmd/32/showallnotes.png cmd/32/showannotations.png -cmd/32/showchanges.png cmd/32/showtrackedchanges.png - -cmd/lc_acceptchanges.png cmd/lc_trackchangesbar.png -cmd/lc_commentchange.png cmd/lc_commentchangetracking.png -cmd/lc_deleteallnotes.png cmd/lc_deleteallannotation.png -cmd/lc_deletecomment.png cmd/lc_deleteannotation.png -cmd/lc_deletenote.png cmd/lc_deleteannotation.png -cmd/lc_insertannotation.png cmd/lc_shownote.png -cmd/lc_notevisible.png cmd/lc_shownote.png -cmd/lc_showallnotes.png cmd/lc_showannotations.png -cmd/lc_showchanges.png cmd/lc_showtrackedchanges.png - -cmd/sc_acceptchanges.png cmd/sc_trackchangesbar.png -cmd/sc_commentchange.png cmd/sc_commentchangetracking.png -cmd/sc_deleteallnotes.png cmd/sc_deleteallannotation.png -cmd/sc_deletecomment.png cmd/sc_deleteannotation.png -cmd/sc_deletenote.png cmd/sc_deleteannotation.png -cmd/sc_formatallnotes.png cmd/sc_editannotation.png -cmd/sc_insertannotation.png cmd/sc_shownote.png -cmd/sc_notevisible.png cmd/sc_shownote.png -cmd/sc_showallnotes.png cmd/sc_showannotations.png -cmd/sc_showchanges.png cmd/sc_showtrackedchanges.png - -# Locale language support -cmd/32/ar/bulletliststyle.png cmd/32/ar/defaultbullet.png -cmd/32/ar/linenumberdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/ar/numberliststyle.png cmd/32/ar/defaultnumbering.png -cmd/32/ar/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/ar/recundo.png cmd/32/redo.png -cmd/32/ar/redo.png cmd/32/undo.png -cmd/32/ar/undo.png cmd/32/redo.png -cmd/32/bg/addtextbox.png cmd/32/bg/insertfixedtext.png -cmd/32/bg/autoformatmenu.png cmd/32/bg/autocorrectdlg.png -cmd/32/bg/sortdown.png cmd/32/bg/sortdescending.png -cmd/32/bg/sortup.png cmd/32/bg/sortascending.png -cmd/32/bg/spelldialog.png cmd/32/bg/spelling.png -cmd/32/bg/spellingandgrammardialog.png cmd/32/bg/spelling.png -cmd/32/bg/tablesort.png cmd/32/bg/sortascending.png -cmd/32/bg/textformfield.png cmd/32/bg/edit.png -cmd/32/bg/underline.png cmd/32/hu/underline.png -cmd/32/bg/underlinedouble.png cmd/32/hu/underlinedouble.png -cmd/32/bg/underlinesimple.png cmd/32/hu/underline.png -cmd/32/bg/underlinesingle.png cmd/32/hu/underline.png -cmd/32/es/italic.png cmd/32/de/italic.png -cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png -cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png -cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png -cmd/32/es/numberformatthousands.png cmd/32/de/numberformatthousands.png -cmd/32/es/underlinesimple.png cmd/32/es/underline.png -cmd/32/es/underlinesingle.png cmd/32/es/underline.png -cmd/32/fa/absoluterecord.png cmd/32/ar/absoluterecord.png -cmd/32/fa/alphaliststyle.png cmd/32/ar/alphaliststyle.png -cmd/32/fa/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png -cmd/32/fa/bulletliststyle.png cmd/32/ar/defaultbullet.png -cmd/32/fa/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/fa/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png -cmd/32/fa/continuenumbering.png cmd/32/ar/continuenumbering.png -cmd/32/fa/defaultbullet.png cmd/32/ar/defaultbullet.png -cmd/32/fa/defaultnumbering.png cmd/32/ar/defaultnumbering.png -cmd/32/fa/deleterecord.png cmd/32/ar/deleterecord.png -cmd/32/fa/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png -cmd/32/fa/linenumberdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/fa/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/fa/newrecord.png cmd/32/ar/newrecord.png -cmd/32/fa/numberingstart.png cmd/32/ar/numberingstart.png -cmd/32/fa/numberliststyle.png cmd/32/ar/defaultnumbering.png -cmd/32/fa/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/fa/recsave.png cmd/32/ar/recsave.png -cmd/32/fa/recundo.png cmd/32/redo.png -cmd/32/fa/redo.png cmd/32/undo.png -cmd/32/fa/removebullets.png cmd/32/ar/removebullets.png -cmd/32/fa/romanliststyle.png cmd/32/ar/romanliststyle.png -cmd/32/fa/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png -cmd/32/fa/setoutline.png cmd/32/ar/setoutline.png -cmd/32/fa/undo.png cmd/32/redo.png -cmd/32/fr/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png -cmd/32/fr/numberformatdecimal.png cmd/32/de/numberformatdecimal.png -cmd/32/fr/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png -cmd/32/fr/numberformatthousands.png cmd/32/de/numberformatthousands.png -cmd/32/fr/underline.png cmd/32/es/underline.png -cmd/32/fr/underlinedouble.png cmd/32/es/underlinedouble.png -cmd/32/fr/underlinesimple.png cmd/32/es/underline.png -cmd/32/fr/underlinesingle.png cmd/32/es/underline.png -cmd/32/he/absoluterecord.png cmd/32/ar/absoluterecord.png -cmd/32/he/alphaliststyle.png cmd/32/ar/alphaliststyle.png -cmd/32/he/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png -cmd/32/he/bulletliststyle.png cmd/32/ar/defaultbullet.png -cmd/32/he/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/he/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png -cmd/32/he/continuenumbering.png cmd/32/ar/continuenumbering.png -cmd/32/he/defaultbullet.png cmd/32/ar/defaultbullet.png -cmd/32/he/defaultnumbering.png cmd/32/ar/defaultnumbering.png -cmd/32/he/deleterecord.png cmd/32/ar/deleterecord.png -cmd/32/he/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png -cmd/32/he/linenumberdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/he/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/he/newrecord.png cmd/32/ar/newrecord.png -cmd/32/he/numberingstart.png cmd/32/ar/numberingstart.png -cmd/32/he/numberliststyle.png cmd/32/ar/defaultnumbering.png -cmd/32/he/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/he/recsave.png cmd/32/ar/recsave.png -cmd/32/he/recundo.png cmd/32/redo.png -cmd/32/he/redo.png cmd/32/undo.png -cmd/32/he/removebullets.png cmd/32/ar/removebullets.png -cmd/32/he/romanliststyle.png cmd/32/ar/romanliststyle.png -cmd/32/he/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png -cmd/32/he/setoutline.png cmd/32/ar/setoutline.png -cmd/32/he/undo.png cmd/32/redo.png -cmd/32/hu/bold.png cmd/32/de/bold.png -cmd/32/hu/underlinesimple.png cmd/32/hu/underline.png -cmd/32/hu/underlinesingle.png cmd/32/hu/underline.png -cmd/32/id/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png -cmd/32/id/numberformatdecimal.png cmd/32/de/numberformatdecimal.png -cmd/32/id/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png -cmd/32/id/numberformatthousands.png cmd/32/de/numberformatthousands.png -cmd/32/it/bold.png cmd/32/fr/bold.png -cmd/32/it/underline.png cmd/32/es/underline.png -cmd/32/it/underlinedouble.png cmd/32/es/underlinedouble.png -cmd/32/it/underlinesimple.png cmd/32/es/underline.png -cmd/32/it/underlinesingle.png cmd/32/es/underline.png -cmd/32/km/underlinesimple.png cmd/32/km/underline.png -cmd/32/km/underlinesingle.png cmd/32/km/underline.png -cmd/32/ko/charactermenu.png cmd/32/ko/fontdialog.png -cmd/32/ko/drawtext.png cmd/32/ko/text.png -cmd/32/ko/editstyled.png cmd/32/ko/editstyle.png -cmd/32/ko/fontcolor.png cmd/32/ko/color.png -cmd/32/ko/fontheight.png cmd/32/ko/scaletext.png -cmd/32/ko/formatobjectmenu.png cmd/32/ko/text.png -cmd/32/ko/formattextmenu.png cmd/32/ko/charfontname.png -cmd/32/ko/ordercrit.png cmd/32/ko/datasort.png -cmd/32/ko/sortdown.png cmd/32/ko/sortdescending.png -cmd/32/ko/sortup.png cmd/32/ko/sortascending.png -cmd/32/ko/tablesort.png cmd/32/ko/datasort.png -cmd/32/ko/textattributes.png cmd/32/ko/fontdialog.png -cmd/32/ko/texttoolbox.png cmd/32/ko/text.png -cmd/32/ko/underlinesimple.png cmd/32/ko/underline.png -cmd/32/ko/underlinesingle.png cmd/32/ko/underline.png -cmd/32/ko/viewsidebarstyles.png cmd/32/ko/designerdialog.png -cmd/32/nl/italic.png cmd/32/it/italic.png -cmd/32/nl/underlinesimple.png cmd/32/nl/underline.png -cmd/32/nl/underlinesingle.png cmd/32/nl/underline.png -cmd/32/pl/bold.png cmd/32/fr/bold.png -cmd/32/pl/italic.png cmd/32/de/italic.png -cmd/32/pl/underlinesimple.png cmd/32/pl/underline.png -cmd/32/pl/underlinesingle.png cmd/32/pl/underline.png -cmd/32/pt-BR/bold.png cmd/32/es/bold.png -cmd/32/pt-BR/underline.png cmd/32/es/underline.png -cmd/32/pt-BR/underlinedouble.png cmd/32/es/underlinedouble.png -cmd/32/pt-BR/underlinesimple.png cmd/32/es/underline.png -cmd/32/pt-BR/underlinesingle.png cmd/32/es/underline.png -cmd/32/pt/bold.png cmd/32/es/bold.png -cmd/32/pt/underline.png cmd/32/es/underline.png -cmd/32/pt/underlinedouble.png cmd/32/es/underlinedouble.png -cmd/32/pt/underlinesimple.png cmd/32/es/underline.png -cmd/32/pt/underlinesingle.png cmd/32/es/underline.png -cmd/32/ru/italic.png cmd/32/de/italic.png -cmd/32/ru/underlinesimple.png cmd/32/ru/underline.png -cmd/32/ru/underlinesingle.png cmd/32/ru/underline.png -cmd/32/sl/underline.png cmd/32/pl/underline.png -cmd/32/sl/underlinedouble.png cmd/32/pl/underlinedouble.png -cmd/32/sl/underlinesimple.png cmd/32/pl/underline.png -cmd/32/sl/underlinesingle.png cmd/32/pl/underline.png -cmd/32/sv/bold.png cmd/32/de/bold.png -cmd/32/sv/italic.png cmd/32/de/italic.png -cmd/32/tr/bold.png cmd/32/sl/bold.png -cmd/32/tr/underline.png cmd/32/hu/underline.png -cmd/32/tr/underlinedouble.png cmd/32/hu/underlinedouble.png -cmd/32/tr/underlinesimple.png cmd/32/hu/underline.png -cmd/32/tr/underlinesingle.png cmd/32/hu/underline.png -cmd/32/underlinesimple.png cmd/32/underline.png -cmd/32/underlinesingle.png cmd/32/underline.png -cmd/32/ur/absoluterecord.png cmd/32/ar/absoluterecord.png -cmd/32/ur/alphaliststyle.png cmd/32/ar/alphaliststyle.png -cmd/32/ur/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png -cmd/32/ur/bulletliststyle.png cmd/32/ar/defaultbullet.png -cmd/32/ur/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/ur/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png -cmd/32/ur/continuenumbering.png cmd/32/ar/continuenumbering.png -cmd/32/ur/defaultbullet.png cmd/32/ar/defaultbullet.png -cmd/32/ur/defaultnumbering.png cmd/32/ar/defaultnumbering.png -cmd/32/ur/deleterecord.png cmd/32/ar/deleterecord.png -cmd/32/ur/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png -cmd/32/ur/linenumberdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/ur/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png -cmd/32/ur/newrecord.png cmd/32/ar/newrecord.png -cmd/32/ur/numberingstart.png cmd/32/ar/numberingstart.png -cmd/32/ur/numberliststyle.png cmd/32/ar/defaultnumbering.png -cmd/32/ur/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png -cmd/32/ur/recsave.png cmd/32/ar/recsave.png -cmd/32/ur/recundo.png cmd/32/redo.png -cmd/32/ur/redo.png cmd/32/undo.png -cmd/32/ur/removebullets.png cmd/32/ar/removebullets.png -cmd/32/ur/romanliststyle.png cmd/32/ar/romanliststyle.png -cmd/32/ur/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png -cmd/32/ur/setoutline.png cmd/32/ar/setoutline.png -cmd/32/ur/undo.png cmd/32/redo.png -cmd/ar/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png -cmd/ar/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png -cmd/ar/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/ar/lc_recundo.png cmd/lc_redo.png -cmd/ar/lc_redo.png cmd/lc_undo.png -cmd/ar/lc_undo.png cmd/lc_redo.png -cmd/ar/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png -cmd/ar/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png -cmd/ar/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/ar/sc_recundo.png cmd/sc_redo.png -cmd/ar/sc_redo.png cmd/sc_undo.png -cmd/ar/sc_undo.png cmd/sc_redo.png -cmd/bg/lc_addtextbox.png cmd/bg/lc_insertfixedtext.png -cmd/bg/lc_autoformatmenu.png cmd/bg/lc_autocorrectdlg.png -cmd/bg/lc_sortdown.png cmd/bg/lc_sortdescending.png -cmd/bg/lc_sortup.png cmd/bg/lc_sortascending.png -cmd/bg/lc_spelldialog.png cmd/bg/lc_spelling.png -cmd/bg/lc_spellingandgrammardialog.png cmd/bg/lc_spelling.png -cmd/bg/lc_tablesort.png cmd/bg/lc_sortascending.png -cmd/bg/lc_textformfield.png cmd/bg/lc_edit.png -cmd/bg/lc_underline.png cmd/hu/lc_underline.png -cmd/bg/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png -cmd/bg/lc_underlinesimple.png cmd/hu/lc_underline.png -cmd/bg/lc_underlinesingle.png cmd/hu/lc_underline.png -cmd/bg/sc_addtextbox.png cmd/bg/sc_insertfixedtext.png -cmd/bg/sc_autoformatmenu.png cmd/bg/sc_autocorrectdlg.png -cmd/bg/sc_sortdown.png cmd/bg/sc_sortdescending.png -cmd/bg/sc_sortup.png cmd/bg/sc_sortascending.png -cmd/bg/sc_spelldialog.png cmd/bg/sc_spelling.png -cmd/bg/sc_spellingandgrammardialog.png cmd/bg/sc_spelling.png -cmd/bg/sc_tablesort.png cmd/bg/sc_sortascending.png -cmd/bg/sc_textformfield.png cmd/bg/sc_edit.png -cmd/bg/sc_underline.png cmd/hu/sc_underline.png -cmd/bg/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png -cmd/bg/sc_underlinesimple.png cmd/hu/sc_underline.png -cmd/bg/sc_underlinesingle.png cmd/hu/sc_underline.png -cmd/es/lc_italic.png cmd/de/lc_italic.png -cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png -cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png -cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png -cmd/es/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png -cmd/es/lc_underlinesimple.png cmd/es/lc_underline.png -cmd/es/lc_underlinesingle.png cmd/es/lc_underline.png -cmd/es/sc_italic.png cmd/de/sc_italic.png -cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png -cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png -cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png -cmd/es/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png -cmd/es/sc_underlinesimple.png cmd/es/sc_underline.png -cmd/es/sc_underlinesingle.png cmd/es/sc_underline.png -cmd/fa/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png -cmd/fa/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png -cmd/fa/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png -cmd/fa/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png -cmd/fa/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/fa/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png -cmd/fa/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png -cmd/fa/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png -cmd/fa/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png -cmd/fa/lc_deleterecord.png cmd/ar/lc_deleterecord.png -cmd/fa/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png -cmd/fa/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png -cmd/fa/lc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/fa/lc_newrecord.png cmd/ar/lc_newrecord.png -cmd/fa/lc_numberingstart.png cmd/ar/lc_numberingstart.png -cmd/fa/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png -cmd/fa/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/fa/lc_recsave.png cmd/ar/lc_recsave.png -cmd/fa/lc_recundo.png cmd/lc_redo.png -cmd/fa/lc_redo.png cmd/lc_undo.png -cmd/fa/lc_removebullets.png cmd/ar/lc_removebullets.png -cmd/fa/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png -cmd/fa/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png -cmd/fa/lc_setoutline.png cmd/ar/lc_setoutline.png -cmd/fa/lc_undo.png cmd/lc_redo.png -cmd/fa/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png -cmd/fa/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png -cmd/fa/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png -cmd/fa/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png -cmd/fa/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/fa/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png -cmd/fa/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png -cmd/fa/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png -cmd/fa/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png -cmd/fa/sc_deleterecord.png cmd/ar/sc_deleterecord.png -cmd/fa/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png -cmd/fa/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/fa/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/fa/sc_newrecord.png cmd/ar/sc_newrecord.png -cmd/fa/sc_numberingstart.png cmd/ar/sc_numberingstart.png -cmd/fa/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png -cmd/fa/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/fa/sc_recsave.png cmd/ar/sc_recsave.png -cmd/fa/sc_recundo.png cmd/sc_redo.png -cmd/fa/sc_redo.png cmd/sc_undo.png -cmd/fa/sc_removebullets.png cmd/ar/sc_removebullets.png -cmd/fa/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png -cmd/fa/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png -cmd/fa/sc_setoutline.png cmd/ar/sc_setoutline.png -cmd/fa/sc_undo.png cmd/sc_redo.png -cmd/fr/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png -cmd/fr/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png -cmd/fr/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png -cmd/fr/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png -cmd/fr/lc_underline.png cmd/es/lc_underline.png -cmd/fr/lc_underlinedouble.png cmd/es/lc_underlinedouble.png -cmd/fr/lc_underlinesimple.png cmd/es/lc_underline.png -cmd/fr/lc_underlinesingle.png cmd/es/lc_underline.png -cmd/fr/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png -cmd/fr/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png -cmd/fr/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png -cmd/fr/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png -cmd/fr/sc_underline.png cmd/es/sc_underline.png -cmd/fr/sc_underlinedouble.png cmd/es/sc_underlinedouble.png -cmd/fr/sc_underlinesimple.png cmd/es/sc_underline.png -cmd/fr/sc_underlinesingle.png cmd/es/sc_underline.png -cmd/he/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png -cmd/he/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png -cmd/he/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png -cmd/he/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png -cmd/he/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/he/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png -cmd/he/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png -cmd/he/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png -cmd/he/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png -cmd/he/lc_deleterecord.png cmd/ar/lc_deleterecord.png -cmd/he/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png -cmd/he/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png -cmd/he/lc_linenumberingdialog.png cmd/ar/lc_linenumberingdialog.png -cmd/he/lc_newrecord.png cmd/ar/lc_newrecord.png -cmd/he/lc_numberingstart.png cmd/ar/lc_numberingstart.png -cmd/he/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png -cmd/he/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/he/lc_recsave.png cmd/ar/lc_recsave.png -cmd/he/lc_recundo.png cmd/lc_redo.png -cmd/he/lc_redo.png cmd/lc_undo.png -cmd/he/lc_removebullets.png cmd/ar/lc_removebullets.png -cmd/he/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png -cmd/he/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png -cmd/he/lc_setoutline.png cmd/ar/lc_setoutline.png -cmd/he/lc_undo.png cmd/lc_redo.png -cmd/he/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png -cmd/he/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png -cmd/he/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png -cmd/he/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png -cmd/he/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/he/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png -cmd/he/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png -cmd/he/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png -cmd/he/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png -cmd/he/sc_deleterecord.png cmd/ar/sc_deleterecord.png -cmd/he/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png -cmd/he/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/he/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/he/sc_newrecord.png cmd/ar/sc_newrecord.png -cmd/he/sc_numberingstart.png cmd/ar/sc_numberingstart.png -cmd/he/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png -cmd/he/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/he/sc_recsave.png cmd/ar/sc_recsave.png -cmd/he/sc_recundo.png cmd/sc_redo.png -cmd/he/sc_redo.png cmd/sc_undo.png -cmd/he/sc_removebullets.png cmd/ar/sc_removebullets.png -cmd/he/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png -cmd/he/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png -cmd/he/sc_setoutline.png cmd/ar/sc_setoutline.png -cmd/he/sc_undo.png cmd/sc_redo.png -cmd/hu/lc_bold.png cmd/de/lc_bold.png -cmd/hu/lc_underlinesimple.png cmd/hu/lc_underline.png -cmd/hu/lc_underlinesingle.png cmd/hu/lc_underline.png -cmd/hu/sc_bold.png cmd/de/sc_bold.png -cmd/hu/sc_underlinesimple.png cmd/hu/sc_underline.png -cmd/hu/sc_underlinesingle.png cmd/hu/sc_underline.png -cmd/id/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png -cmd/id/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png -cmd/id/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png -cmd/id/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png -cmd/id/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png -cmd/id/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png -cmd/id/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png -cmd/id/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png -cmd/it/lc_bold.png cmd/fr/lc_bold.png -cmd/it/lc_underline.png cmd/es/lc_underline.png -cmd/it/lc_underlinedouble.png cmd/es/lc_underlinedouble.png -cmd/it/lc_underlinesimple.png cmd/es/lc_underline.png -cmd/it/lc_underlinesingle.png cmd/es/lc_underline.png -cmd/it/sc_bold.png cmd/fr/sc_bold.png -cmd/it/sc_underline.png cmd/es/sc_underline.png -cmd/it/sc_underlinedouble.png cmd/es/sc_underlinedouble.png -cmd/it/sc_underlinesimple.png cmd/es/sc_underline.png -cmd/it/sc_underlinesingle.png cmd/es/sc_underline.png -cmd/km/lc_underlinesimple.png cmd/km/lc_underline.png -cmd/km/lc_underlinesingle.png cmd/km/lc_underline.png -cmd/km/sc_underlinesimple.png cmd/km/sc_underline.png -cmd/km/sc_underlinesingle.png cmd/km/sc_underline.png -cmd/ko/lc_charactermenu.png cmd/ko/lc_fontdialog.png -cmd/ko/lc_drawtext.png cmd/ko/lc_text.png -cmd/ko/lc_editstyled.png cmd/ko/lc_editstyle.png -cmd/ko/lc_fontcolor.png cmd/ko/lc_color.png -cmd/ko/lc_fontheight.png cmd/ko/lc_scaletext.png -cmd/ko/lc_formatobjectmenu.png cmd/ko/lc_text.png -cmd/ko/lc_formattextmenu.png cmd/ko/lc_charfontname.png -cmd/ko/lc_ordercrit.png cmd/ko/lc_datasort.png -cmd/ko/lc_sortdown.png cmd/ko/lc_sortdescending.png -cmd/ko/lc_sortup.png cmd/ko/lc_sortascending.png -cmd/ko/lc_tablesort.png cmd/ko/lc_datasort.png -cmd/ko/lc_textattributes.png cmd/ko/lc_fontdialog.png -cmd/ko/lc_texttoolbox.png cmd/ko/lc_text.png -cmd/ko/lc_underlinesimple.png cmd/ko/lc_underline.png -cmd/ko/lc_underlinesingle.png cmd/ko/lc_underline.png -cmd/ko/lc_viewsidebarstyles.png cmd/ko/lc_designerdialog.png -cmd/ko/sc_charactermenu.png cmd/ko/sc_fontdialog.png -cmd/ko/sc_drawtext.png cmd/ko/sc_text.png -cmd/ko/sc_editstyled.png cmd/ko/sc_editstyle.png -cmd/ko/sc_fontcolor.png cmd/ko/sc_color.png -cmd/ko/sc_fontheight.png cmd/ko/sc_scaletext.png -cmd/ko/sc_formatobjectmenu.png cmd/ko/sc_text.png -cmd/ko/sc_formattextmenu.png cmd/ko/sc_charfontname.png -cmd/ko/sc_ordercrit.png cmd/ko/sc_datasort.png -cmd/ko/sc_sortdown.png cmd/ko/sc_sortdescending.png -cmd/ko/sc_sortup.png cmd/ko/sc_sortascending.png -cmd/ko/sc_tablesort.png cmd/ko/sc_datasort.png -cmd/ko/sc_textattributes.png cmd/ko/sc_fontdialog.png -cmd/ko/sc_texttoolbox.png cmd/ko/sc_text.png -cmd/ko/sc_underlinesimple.png cmd/ko/sc_underline.png -cmd/ko/sc_underlinesingle.png cmd/ko/sc_underline.png -cmd/ko/sc_viewsidebarstyles.png cmd/ko/sc_designerdialog.png -cmd/lc_underlinesimple.png cmd/lc_underline.png -cmd/lc_underlinesingle.png cmd/lc_underline.png -cmd/nl/lc_italic.png cmd/it/lc_italic.png -cmd/nl/lc_underlinesimple.png cmd/nl/lc_underline.png -cmd/nl/lc_underlinesingle.png cmd/nl/lc_underline.png -cmd/nl/sc_italic.png cmd/it/sc_italic.png -cmd/nl/sc_underlinesimple.png cmd/nl/sc_underline.png -cmd/nl/sc_underlinesingle.png cmd/nl/sc_underline.png -cmd/pl/lc_bold.png cmd/fr/lc_bold.png -cmd/pl/lc_italic.png cmd/de/lc_italic.png -cmd/pl/lc_underlinesimple.png cmd/pl/lc_underline.png -cmd/pl/lc_underlinesingle.png cmd/pl/lc_underline.png -cmd/pl/sc_bold.png cmd/fr/sc_bold.png -cmd/pl/sc_italic.png cmd/de/sc_italic.png -cmd/pl/sc_underlinesimple.png cmd/pl/sc_underline.png -cmd/pl/sc_underlinesingle.png cmd/pl/sc_underline.png -cmd/pt-BR/lc_bold.png cmd/es/lc_bold.png -cmd/pt-BR/lc_underline.png cmd/es/lc_underline.png -cmd/pt-BR/lc_underlinedouble.png cmd/es/lc_underlinedouble.png -cmd/pt-BR/lc_underlinesimple.png cmd/es/lc_underline.png -cmd/pt-BR/lc_underlinesingle.png cmd/es/lc_underline.png -cmd/pt-BR/sc_bold.png cmd/es/sc_bold.png -cmd/pt-BR/sc_underline.png cmd/es/sc_underline.png -cmd/pt-BR/sc_underlinedouble.png cmd/es/sc_underlinedouble.png -cmd/pt-BR/sc_underlinesimple.png cmd/es/sc_underline.png -cmd/pt-BR/sc_underlinesingle.png cmd/es/sc_underline.png -cmd/pt/lc_bold.png cmd/es/lc_bold.png -cmd/pt/lc_underline.png cmd/es/lc_underline.png -cmd/pt/lc_underlinedouble.png cmd/es/lc_underlinedouble.png -cmd/pt/lc_underlinesimple.png cmd/es/lc_underline.png -cmd/pt/lc_underlinesingle.png cmd/es/lc_underline.png -cmd/pt/sc_bold.png cmd/es/sc_bold.png -cmd/pt/sc_underline.png cmd/es/sc_underline.png -cmd/pt/sc_underlinedouble.png cmd/es/sc_underlinedouble.png -cmd/pt/sc_underlinesimple.png cmd/es/sc_underline.png -cmd/pt/sc_underlinesingle.png cmd/es/sc_underline.png -cmd/ru/lc_italic.png cmd/de/lc_italic.png -cmd/ru/lc_underlinesimple.png cmd/ru/lc_underline.png -cmd/ru/lc_underlinesingle.png cmd/ru/lc_underline.png -cmd/ru/sc_italic.png cmd/de/sc_italic.png -cmd/ru/sc_underlinesimple.png cmd/ru/sc_underline.png -cmd/ru/sc_underlinesingle.png cmd/ru/sc_underline.png -cmd/sc_underlinesimple.png cmd/sc_underline.png -cmd/sc_underlinesingle.png cmd/sc_underline.png -cmd/sl/lc_underline.png cmd/pl/lc_underline.png -cmd/sl/lc_underlinedouble.png cmd/pl/lc_underlinedouble.png -cmd/sl/lc_underlinesimple.png cmd/pl/lc_underline.png -cmd/sl/lc_underlinesingle.png cmd/pl/lc_underline.png -cmd/sl/sc_underline.png cmd/pl/sc_underline.png -cmd/sl/sc_underlinedouble.png cmd/pl/sc_underlinedouble.png -cmd/sl/sc_underlinesimple.png cmd/pl/sc_underline.png -cmd/sl/sc_underlinesingle.png cmd/pl/sc_underline.png -cmd/sv/lc_bold.png cmd/de/lc_bold.png -cmd/sv/lc_italic.png cmd/de/lc_italic.png -cmd/sv/sc_bold.png cmd/de/sc_bold.png -cmd/sv/sc_italic.png cmd/de/sc_italic.png -cmd/tr/lc_bold.png cmd/sl/lc_bold.png -cmd/tr/lc_underline.png cmd/hu/lc_underline.png -cmd/tr/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png -cmd/tr/lc_underlinesimple.png cmd/hu/lc_underline.png -cmd/tr/lc_underlinesingle.png cmd/hu/lc_underline.png -cmd/tr/sc_bold.png cmd/sl/sc_bold.png -cmd/tr/sc_underline.png cmd/hu/sc_underline.png -cmd/tr/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png -cmd/tr/sc_underlinesimple.png cmd/hu/sc_underline.png -cmd/tr/sc_underlinesingle.png cmd/hu/sc_underline.png -cmd/ur/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png -cmd/ur/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png -cmd/ur/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png -cmd/ur/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png -cmd/ur/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/ur/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png -cmd/ur/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png -cmd/ur/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png -cmd/ur/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png -cmd/ur/lc_deleterecord.png cmd/ar/lc_deleterecord.png -cmd/ur/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png -cmd/ur/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png -cmd/ur/lc_linenumberingdialog.png cmd/ar/lc_linenumberingdialog.png -cmd/ur/lc_newrecord.png cmd/ar/lc_newrecord.png -cmd/ur/lc_numberingstart.png cmd/ar/lc_numberingstart.png -cmd/ur/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png -cmd/ur/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png -cmd/ur/lc_recsave.png cmd/ar/lc_recsave.png -cmd/ur/lc_recundo.png cmd/lc_redo.png -cmd/ur/lc_redo.png cmd/lc_undo.png -cmd/ur/lc_removebullets.png cmd/ar/lc_removebullets.png -cmd/ur/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png -cmd/ur/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png -cmd/ur/lc_setoutline.png cmd/ar/lc_setoutline.png -cmd/ur/lc_undo.png cmd/lc_redo.png -cmd/ur/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png -cmd/ur/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png -cmd/ur/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png -cmd/ur/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png -cmd/ur/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/ur/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png -cmd/ur/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png -cmd/ur/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png -cmd/ur/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png -cmd/ur/sc_deleterecord.png cmd/ar/sc_deleterecord.png -cmd/ur/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png -cmd/ur/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/ur/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png -cmd/ur/sc_newrecord.png cmd/ar/sc_newrecord.png -cmd/ur/sc_numberingstart.png cmd/ar/sc_numberingstart.png -cmd/ur/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png -cmd/ur/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png -cmd/ur/sc_recsave.png cmd/ar/sc_recsave.png -cmd/ur/sc_recundo.png cmd/sc_redo.png -cmd/ur/sc_redo.png cmd/sc_undo.png -cmd/ur/sc_removebullets.png cmd/ar/sc_removebullets.png -cmd/ur/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png -cmd/ur/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png -cmd/ur/sc_setoutline.png cmd/ar/sc_setoutline.png -cmd/ur/sc_undo.png cmd/sc_redo.png - -# Template Menu -cmd/32/templatemenu.png cmd/32/adddirect.png -cmd/lc_templatemenu.png cmd/lc_adddirect.png -cmd/sc_templatemenu.png cmd/sc_adddirect.png - -# Animation -cmd/32/customanimation.png cmd/32/diaeffect.png -cmd/lc_customanimation.png cmd/lc_diaeffect.png -cmd/sc_customanimation.png cmd/sc_diaeffect.png - -# Media -cmd/32/datastreamsplay.png cmd/32/runbasic.png -cmd/32/datastreamsstop.png cmd/32/basicstop.png - -cmd/lc_datastreamsplay.png cmd/lc_runbasic.png -cmd/lc_datastreamsstop.png cmd/lc_basicstop.png - -cmd/sc_datastreamsplay.png cmd/sc_runbasic.png -cmd/sc_datastreamsstop.png cmd/sc_basicstop.png - -# Alignment -cmd/32/alignhorizontalceter.png cmd/32/alignhorizontalcenter.png -cmd/32/alignvcenter.png cmd/32/alignverticalcenter.png -cmd/32/objectalign.png cmd/32/objectalignleft.png -cmd/32/sectionalignbottom.png cmd/32/aligndown.png -cmd/32/sectionalignleft.png cmd/32/objectalignleft.png -cmd/32/sectionalignright.png cmd/32/objectalignright.png -cmd/32/sectionaligntop.png cmd/32/alignup.png - -cmd/lc_alignhorizontalceter.png cmd/lc_alignhorizontalcenter.png -cmd/lc_alignvcenter.png cmd/lc_alignverticalcenter.png -cmd/lc_objectalign.png cmd/lc_objectalignleft.png -cmd/lc_sectionalignbottom.png cmd/lc_aligndown.png -cmd/lc_sectionalignleft.png cmd/lc_objectalignleft.png -cmd/lc_sectionalignright.png cmd/lc_objectalignright.png -cmd/lc_sectionaligntop.png cmd/lc_alignup.png - -cmd/sc_alignhorizontalceter.png cmd/sc_alignhorizontalcenter.png -cmd/sc_alignvcenter.png cmd/sc_alignverticalcenter.png -cmd/sc_objectalign.png cmd/sc_objectalignleft.png -cmd/sc_sectionalignbottom.png cmd/sc_aligndown.png -cmd/sc_sectionalignleft.png cmd/sc_objectalignleft.png -cmd/sc_sectionalignright.png cmd/sc_objectalignright.png -cmd/sc_sectionaligntop.png cmd/sc_alignup.png - -# Graphic -cmd/32/colorview.png cmd/32/graphicfilterinvert.png -cmd/32/grafinvert.png cmd/32/graphicfilterinvert.png -cmd/32/grafmode.png cmd/32/graphicdialog.png - -cmd/lc_colorview.png cmd/lc_graphicfilterinvert.png -cmd/lc_grafinvert.png cmd/lc_graphicfilterinvert.png -cmd/lc_grafmode.png cmd/lc_graphicdialog.png - -cmd/sc_colorview.png cmd/sc_graphicfilterinvert.png -cmd/sc_grafinvert.png cmd/sc_graphicfilterinvert.png -cmd/sc_grafmode.png cmd/sc_graphicdialog.png - -# shapes -cmd/32/arrowshapes.left-right-arrow.png cmd/32/arrowshapes.png -cmd/32/basicshapes.circle-pie.png cmd/32/pie.png -cmd/32/basicshapes.circle.png cmd/32/circle.png -cmd/32/basicshapes.parallelogram.png cmd/32/flowchartshapes.flowchart-data.png -cmd/32/basicshapes.round-rectangle.png cmd/32/rect_rounded.png -cmd/32/calloutshapes.round-rectangular-callout.png cmd/32/calloutshapes.png -cmd/32/flowchartshapes.flowchart-alternate-process.png cmd/32/basicshapes.round-quadrat.png -cmd/32/flowchartshapes.flowchart-connector.png cmd/32/circle.png -cmd/32/flowchartshapes.flowchart-extract.png cmd/32/basicshapes.isosceles-triangle.png -cmd/32/flowchartshapes.flowchart-magnetic-disk.png cmd/32/basicshapes.can.png -cmd/32/flowchartshapes.flowchart-manual-operation.png cmd/32/basicshapes.trapezoid.png -cmd/32/flowchartshapes.flowchart-merge.png cmd/32/fontworkshapetype.fontwork-triangle-down.png -cmd/32/fontworkshapetype.fontwork-circle-pour.png cmd/32/basicshapes.ring.png -cmd/32/fontworkshapetype.fontwork-fade-down.png cmd/32/basicshapes.trapezoid.png -cmd/32/fontworkshapetype.fontwork-triangle-up.png cmd/32/basicshapes.isosceles-triangle.png -cmd/32/measureattributes.png cmd/32/measureline.png -cmd/32/symbolshapes.smiley.png cmd/32/symbolshapes.png - - -cmd/lc_arrowshapes.left-right-arrow.png cmd/lc_arrowshapes.png -cmd/lc_basicshapes.circle-pie.png cmd/lc_pie.png -cmd/lc_basicshapes.circle.png cmd/lc_circle.png -cmd/lc_basicshapes.parallelogram.png cmd/lc_flowchartshapes.flowchart-data.png -cmd/lc_basicshapes.round-rectangle.png cmd/lc_rect_rounded.png -cmd/lc_calloutshapes.round-rectangular-callout.png cmd/lc_calloutshapes.png -cmd/lc_flowchartshapes.flowchart-alternate-process.png cmd/lc_basicshapes.round-quadrat.png -cmd/lc_flowchartshapes.flowchart-connector.png cmd/lc_circle.png -cmd/lc_flowchartshapes.flowchart-extract.png cmd/lc_basicshapes.isosceles-triangle.png -cmd/lc_flowchartshapes.flowchart-magnetic-disk.png cmd/lc_basicshapes.can.png -cmd/lc_flowchartshapes.flowchart-manual-operation.png cmd/lc_basicshapes.trapezoid.png -cmd/lc_flowchartshapes.flowchart-merge.png cmd/lc_fontworkshapetype.fontwork-triangle-down.png -cmd/lc_fontworkshapetype.fontwork-circle-pour.png cmd/lc_basicshapes.ring.png -cmd/lc_fontworkshapetype.fontwork-fade-down.png cmd/lc_basicshapes.trapezoid.png -cmd/lc_fontworkshapetype.fontwork-triangle-up.png cmd/lc_basicshapes.isosceles-triangle.png -cmd/lc_measureattributes.png cmd/lc_measureline.png -cmd/lc_symbolshapes.smiley.png cmd/lc_symbolshapes.png - -cmd/sc_arrowshapes.left-right-arrow.png cmd/sc_arrowshapes.png -cmd/sc_basicshapes.circle-pie.png cmd/sc_pie.png -cmd/sc_basicshapes.circle.png cmd/sc_circle.png -cmd/sc_basicshapes.parallelogram.png cmd/sc_flowchartshapes.flowchart-data.png -cmd/sc_basicshapes.round-rectangle.png cmd/sc_rect_rounded.png -cmd/sc_calloutshapes.round-rectangular-callout.png cmd/sc_calloutshapes.png -cmd/sc_flowchartshapes.flowchart-alternate-process.png cmd/sc_basicshapes.round-quadrat.png -cmd/sc_flowchartshapes.flowchart-connector.png cmd/sc_circle.png -cmd/sc_flowchartshapes.flowchart-extract.png cmd/sc_basicshapes.isosceles-triangle.png -cmd/sc_flowchartshapes.flowchart-magnetic-disk.png cmd/sc_basicshapes.can.png -cmd/sc_flowchartshapes.flowchart-manual-operation.png cmd/sc_basicshapes.trapezoid.png -cmd/sc_flowchartshapes.flowchart-merge.png cmd/sc_fontworkshapetype.fontwork-triangle-down.png -cmd/sc_fontworkshapetype.fontwork-circle-pour.png cmd/sc_basicshapes.ring.png -cmd/sc_fontworkshapetype.fontwork-fade-down.png cmd/sc_basicshapes.trapezoid.png -cmd/sc_fontworkshapetype.fontwork-triangle-up.png cmd/sc_basicshapes.isosceles-triangle.png -cmd/sc_measureattributes.png cmd/sc_measureline.png -cmd/sc_symbolshapes.smiley.png cmd/sc_symbolshapes.png - -# Open -cmd/32/openfromwriter.png cmd/32/open.png -cmd/32/openfromcalc.png cmd/32/open.png - -cmd/lc_openfromwriter.png cmd/lc_open.png -cmd/lc_openfromcalc.png cmd/lc_open.png - -cmd/sc_openfromwriter.png cmd/sc_open.png -cmd/sc_openfromcalc.png cmd/sc_open.png - -# Mail Merge -cmd/32/dsbformletter.png cmd/32/mailmergewizard.png -cmd/lc_dsbformletter.png cmd/lc_mailmergewizard.png -cmd/sc_dsbformletter.png cmd/sc_mailmergewizard.png - -# Merge -cmd/32/mergedocument.png cmd/32/mergedocuments.png -cmd/lc_mergedocument.png cmd/lc_mergedocuments.png -cmd/sc_mergedocument.png cmd/sc_mergedocuments.png - -# Layout -cmd/32/attributepagesize.png cmd/32/ruler.png - -cmd/lc_attributepagesize.png cmd/lc_ruler.png - -cmd/sc_attributepagesize.png cmd/sc_ruler.png - -# Print -cmd/32/printpagepreview.png cmd/32/printpreview.png - -cmd/lc_printpagepreview.png cmd/lc_printpreview.png - -cmd/sc_printpagepreview.png cmd/sc_printpreview.png - -# Folder -cmd/32/open_h.png cmd/32/open.png - -cmd/lc_open_h.png cmd/lc_open.png - -cmd/sc_open_h.png cmd/sc_open.png - -# Wizard -cmd/32/commontaskbarvisible.png cmd/32/autopilotmenu.png -cmd/32/dbnewformautopilot.png cmd/32/autopilotmenu.png -cmd/32/dbnewqueryautopilot.png cmd/32/autopilotmenu.png -cmd/32/dbnewreportautopilot.png cmd/32/autopilotmenu.png -cmd/32/dbnewtableautopilot.png cmd/32/autopilotmenu.png -cmd/32/graphicfiltertoolbox.png cmd/32/autopilotmenu.png -cmd/32/usewizards.png cmd/32/autopilotmenu.png - -cmd/lc_commontaskbarvisible.png cmd/lc_autopilotmenu.png -cmd/lc_dbnewformautopilot.png cmd/lc_autopilotmenu.png -cmd/lc_dbnewqueryautopilot.png cmd/lc_autopilotmenu.png -cmd/lc_dbnewreportautopilot.png cmd/lc_autopilotmenu.png -cmd/lc_dbnewtableautopilot.png cmd/lc_autopilotmenu.png -cmd/lc_graphicfiltertoolbox.png cmd/lc_autopilotmenu.png -cmd/lc_usewizards.png cmd/lc_autopilotmenu.png - -cmd/sc_commontaskbarvisible.png cmd/sc_autopilotmenu.png -cmd/sc_dbnewformautopilot.png cmd/sc_autopilotmenu.png -cmd/sc_dbnewqueryautopilot.png cmd/sc_autopilotmenu.png -cmd/sc_dbnewreportautopilot.png cmd/sc_autopilotmenu.png -cmd/sc_dbnewtableautopilot.png cmd/sc_autopilotmenu.png -cmd/sc_graphicfiltertoolbox.png cmd/sc_autopilotmenu.png -cmd/sc_usewizards.png cmd/sc_autopilotmenu.png - -# Filter -cmd/32/autofilter.png cmd/32/datafilterautofilter.png -cmd/32/filtercrit.png cmd/32/datafilterstandardfilter.png -cmd/32/formfilter.png cmd/32/datafilterspecialfilter.png -cmd/32/formfilterexecute.png cmd/32/datafilterstandardfilter.png -cmd/32/removefilter.png cmd/32/removefiltersort.png - -cmd/lc_autofilter.png cmd/lc_datafilterautofilter.png -cmd/lc_filtercrit.png cmd/lc_datafilterstandardfilter.png -cmd/lc_formfilter.png cmd/lc_datafilterspecialfilter.png -cmd/lc_formfilterexecute.png cmd/lc_datafilterstandardfilter.png -cmd/lc_removefilter.png cmd/lc_removefiltersort.png - -cmd/sc_autofilter.png cmd/sc_datafilterautofilter.png -cmd/sc_filtercrit.png cmd/sc_datafilterstandardfilter.png -cmd/sc_formfilter.png cmd/sc_datafilterspecialfilter.png -cmd/sc_formfilterexecute.png cmd/sc_datafilterstandardfilter.png -cmd/sc_removefilter.png cmd/sc_removefiltersort.png - -# Bullets -cmd/32/bulletliststyle.png cmd/32/defaultbullet.png -cmd/32/defaultparastyle.png cmd/32/controlcodes.png -cmd/32/linenumberdialog.png cmd/32/linenumberingdialog.png -cmd/32/numberliststyle.png cmd/32/defaultnumbering.png -cmd/32/outlinebullet.png cmd/32/bulletsandnumberingdialog.png - -cmd/lc_bulletliststyle.png cmd/lc_defaultbullet.png -cmd/lc_defaultparastyle.png cmd/lc_controlcodes.png -cmd/lc_linenumberdialog.png cmd/lc_linenumberingdialog.png -cmd/lc_numberliststyle.png cmd/lc_defaultnumbering.png -cmd/lc_outlinebullet.png cmd/lc_bulletsandnumberingdialog.png - -cmd/sc_bulletliststyle.png cmd/sc_defaultbullet.png -cmd/sc_defaultparastyle.png cmd/sc_controlcodes.png -cmd/sc_linenumberdialog.png cmd/sc_linenumberingdialog.png -cmd/sc_numberliststyle.png cmd/sc_defaultnumbering.png -cmd/sc_outlinebullet.png cmd/sc_bulletsandnumberingdialog.png - -# Group -cmd/32/groupmenu.png cmd/32/formatgroup.png - -cmd/lc_groupmenu.png cmd/lc_formatgroup.png - -cmd/sc_groupmenu.png cmd/sc_formatgroup.png - -# Undo -cmd/32/recundo.png cmd/32/undo.png -cmd/lc_recundo.png cmd/lc_undo.png -cmd/sc_recundo.png cmd/sc_undo.png - -# Bezier -cmd/32/bezieredge.png cmd/32/bezierappend.png -cmd/lc_bezieredge.png cmd/lc_bezierappend.png -cmd/sc_bezieredge.png cmd/sc_bezierappend.png - -# Rotate -cmd/32/clickchangerotation.png cmd/32/toggleobjectrotatemode.png -cmd/lc_clickchangerotation.png cmd/lc_toggleobjectrotatemode.png -cmd/sc_clickchangerotation.png cmd/sc_toggleobjectrotatemode.png - -# AddField -cmd/32/fieldnames.png cmd/32/addfield.png -cmd/lc_fieldnames.png cmd/lc_addfield.png -cmd/sc_fieldnames.png cmd/sc_addfield.png - -# Edit -cmd/32/dsbeditdoc.png cmd/32/editdoc.png - -cmd/lc_dsbeditdoc.png cmd/lc_editdoc.png - -cmd/sc_dsbeditdoc.png cmd/sc_editdoc.png - -# Quit -cmd/32/closewin.png cmd/32/quit.png -cmd/lc_closewin.png cmd/lc_quit.png -cmd/sc_closewin.png cmd/sc_quit.png - -# Close -cmd/32/exitsearch.png cmd/32/closepreview.png -cmd/lc_exitsearch.png cmd/lc_closepreview.png -cmd/sc_exitsearch.png cmd/sc_closepreview.png - -# Cancel -cmd/32/no.png cmd/32/cancel.png -cmd/lc_no.png cmd/lc_cancel.png -cmd/sc_no.png cmd/sc_cancel.png - -# Page -cmd/32/insertobjctrl.png cmd/32/drawchart.png - -cmd/lc_insertobjctrl.png cmd/lc_drawchart.png - -cmd/sc_insertobjctrl.png cmd/sc_drawchart.png - -# Line -cmd/32/shapeslinemenu.png cmd/32/line.png -cmd/32/xlinestyle.png cmd/32/linestyle.png - -cmd/lc_shapeslinemenu.png cmd/lc_line.png -cmd/lc_xlinestyle.png cmd/lc_linestyle.png - -cmd/sc_shapeslinemenu.png cmd/sc_line.png -cmd/sc_xlinestyle.png cmd/sc_linestyle.png - -# Mail merge -cmd/32/mailmergefirstentry.png cmd/32/firstrecord.png -cmd/32/mailmergelastentry.png cmd/32/lastrecord.png -cmd/32/mailmergenextentry.png cmd/32/nextrecord.png -cmd/32/mailmergepreventry.png cmd/32/prevrecord.png - -cmd/lc_mailmergefirstentry.png cmd/lc_firstrecord.png -cmd/lc_mailmergelastentry.png cmd/lc_lastrecord.png -cmd/lc_mailmergenextentry.png cmd/lc_nextrecord.png -cmd/lc_mailmergepreventry.png cmd/lc_prevrecord.png - -cmd/sc_mailmergefirstentry.png cmd/sc_firstrecord.png -cmd/sc_mailmergelastentry.png cmd/sc_lastrecord.png -cmd/sc_mailmergenextentry.png cmd/sc_nextrecord.png -cmd/sc_mailmergepreventry.png cmd/sc_prevrecord.png - -# Arrows -cmd/32/arrowstoolbox.png cmd/32/linearrowend.png -cmd/lc_arrowstoolbox.png cmd/lc_linearrowend.png -cmd/sc_arrowstoolbox.png cmd/sc_linearrowend.png - -# < -cmd/32/browsebackward.png cmd/32/prevrecord.png -cmd/32/navigateback.png cmd/32/prevrecord.png -cmd/32/pageup.png cmd/32/previouspage.png - -cmd/lc_browsebackward.png cmd/lc_prevrecord.png -cmd/lc_navigateback.png cmd/lc_prevrecord.png -cmd/lc_pageup.png cmd/lc_previouspage.png - -cmd/sc_browsebackward.png cmd/sc_prevrecord.png -cmd/sc_navigateback.png cmd/sc_prevrecord.png -cmd/sc_pageup.png cmd/sc_previouspage.png - -# > -cmd/32/navigateforward.png cmd/32/nextrecord.png -cmd/32/pagedown.png cmd/32/nextpage.png - -cmd/lc_navigateforward.png cmd/lc_nextrecord.png -cmd/lc_pagedown.png cmd/lc_nextpage.png - -cmd/sc_navigateforward.png cmd/sc_nextrecord.png -cmd/sc_pagedown.png cmd/sc_nextpage.png - -# >| -cmd/32/gotoendofpage.png cmd/32/lastpage.png - -cmd/lc_gotoendofpage.png cmd/lc_lastpage.png - -cmd/sc_gotoendofpage.png cmd/sc_lastpage.png - -# |< -cmd/32/gotostartofpage.png cmd/32/firstpage.png - -cmd/lc_gotostartofpage.png cmd/lc_firstpage.png - -cmd/sc_gotostartofpage.png cmd/sc_firstpage.png - -# Hyperlink -cmd/32/hyperlinkdialog.png cmd/32/inserthyperlink.png -cmd/lc_hyperlinkdialog.png cmd/lc_inserthyperlink.png -cmd/sc_hyperlinkdialog.png cmd/sc_inserthyperlink.png - -# Spellcheck -cmd/32/spelldialog.png cmd/32/spelling.png -cmd/32/spellingandgrammardialog.png cmd/32/spelling.png - -cmd/lc_spelldialog.png cmd/lc_spelling.png -cmd/lc_spellingandgrammardialog.png cmd/lc_spelling.png - -cmd/sc_spelldialog.png cmd/sc_spelling.png -cmd/sc_spellingandgrammardialog.png cmd/sc_spelling.png - -# Color -cmd/32/backgroundpatterncontroller.png cmd/32/backgroundcolor.png -cmd/32/characterbackgroundpattern.png cmd/32/backcolor.png -cmd/32/fillcolor.png cmd/32/backgroundcolor.png -cmd/32/fillstyle.png cmd/32/backgroundcolor.png -cmd/32/fontcolor.png cmd/32/color.png -cmd/32/formatarea.png cmd/32/backgroundcolor.png -cmd/32/tablecellbackgroundcolor.png cmd/32/backgroundcolor.png - -cmd/lc_backgroundpatterncontroller.png cmd/lc_backgroundcolor.png -cmd/lc_characterbackgroundpattern.png cmd/lc_backcolor.png -cmd/lc_fillcolor.png cmd/lc_backgroundcolor.png -cmd/lc_fillstyle.png cmd/lc_backgroundcolor.png -cmd/lc_fontcolor.png cmd/lc_color.png -cmd/lc_formatarea.png cmd/lc_backgroundcolor.png -cmd/lc_tablecellbackgroundcolor.png cmd/lc_backgroundcolor.png - -cmd/sc_backgroundpatterncontroller.png cmd/sc_backgroundcolor.png -cmd/sc_characterbackgroundpattern.png cmd/sc_backcolor.png -cmd/sc_fillcolor.png cmd/sc_backgroundcolor.png -cmd/sc_fillstyle.png cmd/sc_backgroundcolor.png -cmd/sc_fontcolor.png cmd/sc_color.png -cmd/sc_formatarea.png cmd/sc_backgroundcolor.png -cmd/sc_tablecellbackgroundcolor.png cmd/sc_backgroundcolor.png - -# Paragraph Alignment -cmd/32/centerpara.png cmd/32/alignhorizontalcenter.png -cmd/32/fontworkalignmentfloater.png cmd/32/alignhorizontalcenter.png -cmd/32/justifypara.png cmd/32/alignblock.png -cmd/32/leftpara.png cmd/32/alignleft.png -cmd/32/rightpara.png cmd/32/alignright.png - -cmd/lc_centerpara.png cmd/lc_alignhorizontalcenter.png -cmd/lc_fontworkalignmentfloater.png cmd/lc_alignhorizontalcenter.png -cmd/lc_justifypara.png cmd/lc_alignblock.png -cmd/lc_leftpara.png cmd/lc_alignleft.png -cmd/lc_rightpara.png cmd/lc_alignright.png - -cmd/sc_centerpara.png cmd/sc_alignhorizontalcenter.png -cmd/sc_fontworkalignmentfloater.png cmd/sc_alignhorizontalcenter.png -cmd/sc_justifypara.png cmd/sc_alignblock.png -cmd/sc_leftpara.png cmd/sc_alignleft.png -cmd/sc_rightpara.png cmd/sc_alignright.png - -# Thesaurus -cmd/32/thesaurusdialog.png cmd/32/thesaurus.png -cmd/lc_thesaurusdialog.png cmd/lc_thesaurus.png -cmd/sc_thesaurusdialog.png cmd/sc_thesaurus.png - -# View -cmd/32/availabletoolbars.png cmd/32/showtoolbar.png -cmd/32/sidebarmenu.png cmd/32/sidebar.png -cmd/32/toolbarsmenu.png cmd/32/showtoolbar.png -cmd/lc_availabletoolbars.png cmd/lc_showtoolbar.png -cmd/lc_sidebarmenu.png cmd/lc_sidebar.png -cmd/lc_toolbarsmenu.png cmd/lc_showtoolbar.png -cmd/sc_availabletoolbars.png cmd/sc_showtoolbar.png -cmd/sc_sidebarmenu.png cmd/sc_sidebar.png -cmd/sc_toolbarsmenu.png cmd/sc_showtoolbar.png - -# Vertical Text Alignment -cmd/32/cellvertbottom.png cmd/32/alignbottom.png -cmd/32/cellvertcenter.png cmd/32/alignverticalcenter.png -cmd/32/cellverttop.png cmd/32/aligntop.png -cmd/32/commonalignbottom.png cmd/32/alignbottom.png -cmd/32/commonalignhorizontalcenter.png cmd/32/alignhorizontalcenter.png -cmd/32/commonalignjustified.png cmd/32/alignblock.png -cmd/32/commonalignleft.png cmd/32/alignleft.png -cmd/32/commonalignright.png cmd/32/alignright.png -cmd/32/commonaligntop.png cmd/32/aligntop.png -cmd/32/commonalignverticalcenter.png cmd/32/alignverticalcenter.png - -cmd/lc_cellvertbottom.png cmd/lc_alignbottom.png -cmd/lc_cellvertcenter.png cmd/lc_alignverticalcenter.png -cmd/lc_cellverttop.png cmd/lc_aligntop.png -cmd/lc_commonalignbottom.png cmd/lc_alignbottom.png -cmd/lc_commonalignhorizontalcenter.png cmd/lc_alignhorizontalcenter.png -cmd/lc_commonalignjustified.png cmd/lc_alignblock.png -cmd/lc_commonalignleft.png cmd/lc_alignleft.png -cmd/lc_commonalignright.png cmd/lc_alignright.png -cmd/lc_commonaligntop.png cmd/lc_aligntop.png -cmd/lc_commonalignverticalcenter.png cmd/lc_alignverticalcenter.png - -cmd/sc_cellvertbottom.png cmd/sc_alignbottom.png -cmd/sc_cellvertcenter.png cmd/sc_alignverticalcenter.png -cmd/sc_cellverttop.png cmd/sc_aligntop.png -cmd/sc_commonalignbottom.png cmd/sc_alignbottom.png -cmd/sc_commonalignhorizontalcenter.png cmd/sc_alignhorizontalcenter.png -cmd/sc_commonalignjustified.png cmd/sc_alignblock.png -cmd/sc_commonalignleft.png cmd/sc_alignleft.png -cmd/sc_commonalignright.png cmd/sc_alignright.png -cmd/sc_commonaligntop.png cmd/sc_aligntop.png -cmd/sc_commonalignverticalcenter.png cmd/sc_alignverticalcenter.png - -# paragraph line spacing drop down -cmd/32/linespacing.png cmd/32/spacepara15.png -cmd/lc_linespacing.png cmd/lc_spacepara15.png -cmd/sc_linespacing.png cmd/sc_spacepara15.png - -# calc menu entries -cmd/32/cellcontentsmenu.png cmd/32/calculate.png -cmd/32/chartmenu.png cmd/32/drawchart.png -cmd/32/datapilotmenu.png cmd/32/datadatapilotrun.png -cmd/32/editselectmenu.png cmd/32/selecttables.png -cmd/32/fieldmenu.png cmd/32/insertfieldctrl.png -cmd/32/functionbox.png cmd/32/dbviewfunctions.png -cmd/32/functiondialog.png cmd/32/dbviewfunctions.png -cmd/32/groupoutlinemenu.png cmd/32/autooutline.png -cmd/32/insertanchor.png cmd/32/insertbookmark.png -cmd/32/insertcell.png cmd/32/insertcellsright.png -cmd/32/insertcolumnsmenu.png cmd/32/insertcolumns.png -cmd/32/insertpivottable.png cmd/32/datadatapilotrun.png -cmd/32/insertrowsmenu.png cmd/32/insertrows.png -cmd/32/mergecellsmenu.png cmd/32/togglemergecells.png -cmd/32/navigatemenu.png cmd/32/navigator.png -cmd/32/numberformatmenu.png cmd/32/numberformatstandard.png -cmd/32/objectmenu.png cmd/32/insertobject.png -cmd/32/printrangesmenu.png cmd/32/defineprintarea.png -cmd/32/selectcolumn.png cmd/32/entirecolumn.png -cmd/32/selectdata.png cmd/32/selectdb.png -cmd/32/selectrow.png cmd/32/entirerow.png -cmd/32/sheetcommentmenu.png cmd/32/shownote.png -cmd/32/toolsformsmenu.png cmd/32/dbviewforms.png - -cmd/lc_cellcontentsmenu.png cmd/lc_calculate.png -cmd/lc_chartmenu.png cmd/lc_drawchart.png -cmd/lc_datapilotmenu.png cmd/lc_datadatapilotrun.png -cmd/lc_editselectmenu.png cmd/lc_selecttables.png -cmd/lc_fieldmenu.png cmd/lc_insertfieldctrl.png -cmd/lc_functionbox.png cmd/lc_dbviewfunctions.png -cmd/lc_functiondialog.png cmd/lc_dbviewfunctions.png -cmd/lc_groupoutlinemenu.png cmd/lc_autooutline.png -cmd/lc_insertanchor.png cmd/lc_insertbookmark.png -cmd/lc_insertcell.png cmd/lc_insertcellsright.png -cmd/lc_insertcolumnsmenu.png cmd/lc_insertcolumns.png -cmd/lc_insertpivottable.png cmd/lc_datadatapilotrun.png -cmd/lc_insertrowsmenu.png cmd/lc_insertrows.png -cmd/lc_mergecellsmenu.png cmd/lc_togglemergecells.png -cmd/lc_navigatemenu.png cmd/lc_navigator.png -cmd/lc_numberformatmenu.png cmd/lc_numberformatstandard.png -cmd/lc_objectmenu.png cmd/lc_insertobject.png -cmd/lc_printrangesmenu.png cmd/lc_defineprintarea.png -cmd/lc_selectcolumn.png cmd/lc_entirecolumn.png -cmd/lc_selectdata.png cmd/lc_selectdb.png -cmd/lc_selectrow.png cmd/lc_entirerow.png -cmd/lc_sheetcommentmenu.png cmd/lc_shownote.png -cmd/lc_toolsformsmenu.png cmd/lc_dbviewforms.png - -cmd/sc_cellcontentsmenu.png cmd/sc_calculate.png -cmd/sc_chartmenu.png cmd/sc_drawchart.png -cmd/sc_datapilotmenu.png cmd/sc_datadatapilotrun.png -cmd/sc_editselectmenu.png cmd/sc_selecttables.png -cmd/sc_fieldmenu.png cmd/sc_insertfieldctrl.png -cmd/sc_functionbox.png cmd/sc_dbviewfunctions.png -cmd/sc_functiondialog.png cmd/sc_dbviewfunctions.png -cmd/sc_groupoutlinemenu.png cmd/sc_autooutline.png -cmd/sc_insertanchor.png cmd/sc_insertbookmark.png -cmd/sc_insertcell.png cmd/sc_insertcellsright.png -cmd/sc_insertcolumnsmenu.png cmd/sc_insertcolumns.png -cmd/sc_insertpivottable.png cmd/sc_datadatapilotrun.png -cmd/sc_insertrowsmenu.png cmd/sc_insertrows.png -cmd/sc_mergecellsmenu.png cmd/sc_togglemergecells.png -cmd/sc_navigatemenu.png cmd/sc_navigator.png -cmd/sc_numberformatmenu.png cmd/sc_numberformatstandard.png -cmd/sc_objectmenu.png cmd/sc_insertobject.png -cmd/sc_printrangesmenu.png cmd/sc_defineprintarea.png -cmd/sc_selectcolumn.png cmd/sc_entirecolumn.png -cmd/sc_selectdata.png cmd/sc_selectdb.png -cmd/sc_selectrow.png cmd/sc_entirerow.png -cmd/sc_sheetcommentmenu.png cmd/sc_shownote.png -cmd/sc_toolsformsmenu.png cmd/sc_dbviewforms.png - -# Shapes -cmd/32/basicshapes.ellipse.png cmd/32/ellipse.png -cmd/32/basicshapes.png cmd/32/basicshapes.diamond.png -cmd/32/basicshapes.rectangle.png cmd/32/rect.png -cmd/32/ellipsetoolbox.png cmd/32/ellipse.png -cmd/32/linetoolbox.png cmd/32/freeline_unfilled.png -cmd/32/rectangletoolbox.png cmd/32/rect.png - -cmd/lc_basicshapes.ellipse.png cmd/lc_ellipse.png -cmd/lc_basicshapes.png cmd/lc_basicshapes.diamond.png -cmd/lc_basicshapes.rectangle.png cmd/lc_rect.png -cmd/lc_ellipsetoolbox.png cmd/lc_ellipse.png -cmd/lc_linetoolbox.png cmd/lc_freeline_unfilled.png -cmd/lc_rectangletoolbox.png cmd/lc_rect.png - -cmd/sc_basicshapes.ellipse.png cmd/sc_ellipse.png -cmd/sc_basicshapes.png cmd/sc_basicshapes.diamond.png -cmd/sc_basicshapes.rectangle.png cmd/sc_rect.png -cmd/sc_ellipsetoolbox.png cmd/sc_ellipse.png -cmd/sc_linetoolbox.png cmd/sc_freeline_unfilled.png -cmd/sc_rectangletoolbox.png cmd/sc_rect.png - -# Format -cmd/32/insertcurrentdate.png cmd/32/datefield.png -cmd/32/insertcurrenttime.png cmd/32/timefield.png -cmd/32/insertobjectchartfromfile.png cmd/32/drawchart.png -cmd/32/pageformatdialog.png cmd/32/pagedialog.png - -cmd/lc_insertcurrentdate.png cmd/lc_datefield.png -cmd/lc_insertcurrenttime.png cmd/lc_timefield.png -cmd/lc_insertobjectchartfromfile.png cmd/lc_drawchart.png -cmd/lc_pageformatdialog.png cmd/lc_pagedialog.png - -cmd/sc_insertcurrentdate.png cmd/sc_datefield.png -cmd/sc_insertcurrenttime.png cmd/sc_timefield.png -cmd/sc_insertobjectchartfromfile.png cmd/sc_drawchart.png -cmd/sc_pageformatdialog.png cmd/sc_pagedialog.png - -# Notebookbar -cmd/32/datafilterhideautofilter.png cmd/32/removefiltersort.png -cmd/32/headerandfooter.png cmd/32/editheaderandfooter.png -cmd/32/insertheaderfootermenu.png cmd/32/editheaderandfooter.png -cmd/32/insertsignatureline.png cmd/32/signaturelinedialog.png - -cmd/lc_datafilterhideautofilter.png cmd/lc_removefiltersort.png -cmd/lc_headerandfooter.png cmd/lc_editheaderandfooter.png -cmd/lc_insertheaderfootermenu.png cmd/lc_editheaderandfooter.png -cmd/lc_insertsignatureline.png cmd/lc_signaturelinedialog.png - -cmd/sc_datafilterhideautofilter.png cmd/sc_removefiltersort.png -cmd/sc_headerandfooter.png cmd/sc_editheaderandfooter.png -cmd/sc_insertheaderfootermenu.png cmd/sc_editheaderandfooter.png -cmd/sc_insertsignatureline.png cmd/sc_signaturelinedialog.png - -# Ok -cmd/32/apply.png cmd/32/ok.png -cmd/32/yes.png cmd/32/ok.png - -cmd/lc_apply.png cmd/lc_ok.png -cmd/lc_yes.png cmd/lc_ok.png - -cmd/sc_apply.png cmd/sc_ok.png -cmd/sc_yes.png cmd/sc_ok.png - -# Find Toolbar -cmd/32/findbar.png cmd/32/recsearch.png -cmd/32/scrolltonext.png cmd/32/downsearch.png -cmd/32/scrolltoprevious.png cmd/32/upsearch.png - -cmd/lc_findbar.png cmd/lc_recsearch.png -cmd/lc_scrolltonext.png cmd/lc_downsearch.png -cmd/lc_scrolltoprevious.png cmd/lc_upsearch.png - -cmd/sc_findbar.png cmd/sc_recsearch.png -cmd/sc_scrolltonext.png cmd/sc_downsearch.png -cmd/sc_scrolltoprevious.png cmd/sc_upsearch.png - -# File Menu -cmd/32/exportasmenu.png cmd/32/exportto.png -cmd/32/exporttoepub.png cmd/32/exportdirecttoepub.png -cmd/32/exporttopdf.png cmd/32/exportdirecttopdf.png -cmd/32/templatemenu.png cmd/32/templatemanager.png - -cmd/lc_exportasmenu.png cmd/lc_exportto.png -cmd/lc_exporttoepub.png cmd/lc_exportdirecttoepub.png -cmd/lc_exporttopdf.png cmd/lc_exportdirecttopdf.png -cmd/lc_templatemenu.png cmd/lc_templatemanager.png - -cmd/sc_exportasmenu.png cmd/sc_exportto.png -cmd/sc_exporttoepub.png cmd/sc_exportdirecttoepub.png -cmd/sc_exporttopdf.png cmd/sc_exportdirecttopdf.png -cmd/sc_templatemenu.png cmd/sc_templatemanager.png - -# Edit Menu -cmd/32/editlinksmenu.png cmd/32/insertreferencefield.png -cmd/lc_editlinksmenu.png cmd/lc_insertreferencefield.png -cmd/sc_editlinksmenu.png cmd/sc_insertreferencefield.png - -# Square -cmd/32/basicshapes.quadrat.png cmd/32/square.png -cmd/32/flowchartshapes.flowchart-process.png cmd/32/square.png - -cmd/lc_basicshapes.quadrat.png cmd/lc_square.png -cmd/lc_flowchartshapes.flowchart-process.png cmd/lc_square.png - -cmd/sc_basicshapes.quadrat.png cmd/sc_square.png -cmd/sc_flowchartshapes.flowchart-process.png cmd/sc_square.png - -# Sort -cmd/32/ordercrit.png cmd/32/datasort.png -cmd/32/sortdialog.png cmd/32/datasort.png -cmd/32/sortdown.png cmd/32/sortdescending.png -cmd/32/sortup.png cmd/32/sortascending.png -cmd/32/tablesort.png cmd/32/sortascending.png - -cmd/lc_ordercrit.png cmd/lc_datasort.png -cmd/lc_sortdialog.png cmd/lc_datasort.png -cmd/lc_sortdown.png cmd/lc_sortdescending.png -cmd/lc_sortup.png cmd/lc_sortascending.png -cmd/lc_tablesort.png cmd/lc_sortascending.png - -cmd/sc_ordercrit.png cmd/sc_datasort.png -cmd/sc_sortdialog.png cmd/sc_datasort.png -cmd/sc_sortdown.png cmd/sc_sortdescending.png -cmd/sc_sortup.png cmd/sc_sortascending.png -cmd/sc_tablesort.png cmd/sc_sortascending.png - -# Code -cmd/32/sourceview.png cmd/32/symbolshapes.brace-pair.png -cmd/lc_sourceview.png cmd/lc_symbolshapes.brace-pair.png -cmd/sc_sourceview.png cmd/sc_symbolshapes.brace-pair.png - -# Config -cmd/32/formatselection.png cmd/32/configuredialog.png -cmd/lc_formatselection.png cmd/lc_configuredialog.png -cmd/sc_formatselection.png cmd/sc_configuredialog.png - -# Hyphenation -cmd/32/hyphenation.png cmd/32/hyphenate.png -cmd/lc_hyphenation.png cmd/lc_hyphenate.png -cmd/sc_hyphenation.png cmd/sc_hyphenate.png - -# Currency -cmd/32/numberformatcurrency.png cmd/32/currencyfield.png -cmd/32/numberformatcurrencysimple.png cmd/32/currencyfield.png - -cmd/lc_numberformatcurrency.png cmd/lc_currencyfield.png -cmd/lc_numberformatcurrencysimple.png cmd/lc_currencyfield.png - -cmd/sc_numberformatcurrency.png cmd/sc_currencyfield.png -cmd/sc_numberformatcurrencysimple.png cmd/sc_currencyfield.png - -# Fontwork -cmd/32/fontworkshapetype.png cmd/32/fontwork.png -cmd/lc_fontworkshapetype.png cmd/lc_fontwork.png -cmd/sc_fontworkshapetype.png cmd/sc_fontwork.png - -# Ruler -cmd/32/rulermenu.png cmd/32/ruler.png -cmd/32/showruler.png cmd/32/ruler.png - -cmd/lc_rulermenu.png cmd/lc_ruler.png -cmd/lc_showruler.png cmd/lc_ruler.png - -cmd/sc_rulermenu.png cmd/sc_ruler.png -cmd/sc_showruler.png cmd/sc_ruler.png - -# Graphic Quality Color -cmd/32/outputqualitycolor.png cmd/32/insertgraphic.png -cmd/lc_outputqualitycolor.png cmd/lc_insertgraphic.png -cmd/sc_outputqualitycolor.png cmd/sc_insertgraphic.png - -# Show Formula -cmd/32/toggleformula.png cmd/32/dbviewfunctions.png -cmd/lc_toggleformula.png cmd/lc_dbviewfunctions.png -cmd/sc_toggleformula.png cmd/sc_dbviewfunctions.png - -# Axis -cmd/32/toggleaxisdescr.png cmd/32/helplinesvisible.png -cmd/lc_toggleaxisdescr.png cmd/lc_helplinesvisible.png -cmd/sc_toggleaxisdescr.png cmd/sc_helplinesvisible.png - -# Grid -cmd/32/gridmenu.png cmd/32/gridvisible.png -cmd/32/insertgridcontrol.png cmd/32/grid.png - -cmd/lc_gridmenu.png cmd/lc_gridvisible.png -cmd/lc_insertgridcontrol.png cmd/lc_grid.png - -cmd/sc_gridmenu.png cmd/sc_gridvisible.png -cmd/sc_insertgridcontrol.png cmd/sc_grid.png - -# Crop -cmd/32/grafattrcrop.png cmd/32/crop.png -cmd/lc_grafattrcrop.png cmd/lc_crop.png -cmd/sc_grafattrcrop.png cmd/sc_crop.png - -# Extrusion Rotate -cmd/32/rulerrows.png cmd/32/extrusiontiltleft.png -cmd/32/rulerrowsvertical.png cmd/32/extrusiontiltright.png - -cmd/lc_rulerrows.png cmd/lc_extrusiontiltleft.png -cmd/lc_rulerrowsvertical.png cmd/lc_extrusiontiltright.png - -cmd/sc_rulerrows.png cmd/sc_extrusiontiltleft.png -cmd/sc_rulerrowsvertical.png cmd/sc_extrusiontiltright.png - -# Light -svx/res/lightofffrombottom_22.png svx/res/light.png -svx/res/lightofffrombottomleft_22.png svx/res/light.png -svx/res/lightofffrombottomright_22.png svx/res/light.png -svx/res/lightofffromleft_22.png svx/res/light.png -svx/res/lightofffromright_22.png svx/res/light.png -svx/res/lightofffromtop_22.png svx/res/light.png -svx/res/lightofffromtopleft_22.png svx/res/light.png -svx/res/lightofffromtopright_22.png svx/res/light.png -svx/res/lightonfrombottom_22.png svx/res/lighton.png -svx/res/lightonfrombottomleft_22.png svx/res/lighton.png -svx/res/lightonfrombottomright_22.png svx/res/lighton.png -svx/res/lightonfromleft_22.png svx/res/lighton.png -svx/res/lightonfromright_22.png svx/res/lighton.png -svx/res/lightonfromtop_22.png svx/res/lighton.png -svx/res/lightonfromtopleft_22.png svx/res/lighton.png -svx/res/lightonfromtopright_22.png svx/res/lighton.png -svx/res/legtyp1.png cmd/sc_calloutshapes.line-callout-3.png -svx/res/legtyp2.png cmd/sc_calloutshapes.line-callout-1.png -svx/res/legtyp3.png cmd/sc_calloutshapes.line-callout-2.png - -# 3d -svx/res/3dgeo.png cmd/sc_diagramaxisxyz.png -svx/res/3drepres.png cmd/sc_fillshadow.png -svx/res/3dtextur.png cmd/sc_graphicfilterpopart.png -svx/res/3dlight.png svx/res/lighton.png -svx/res/objects.png cmd/sc_objectcatalog.png - -# Presentation -cmd/32/diaauto.png cmd/32/dia.png -cmd/lc_diaauto.png cmd/lc_dia.png -cmd/sc_diaauto.png cmd/sc_dia.png - -# Style -cmd/32/editstyled.png cmd/32/editstyle.png -cmd/32/loadstyles.png cmd/32/open.png -cmd/32/viewsidebarstyles.png cmd/32/designerdialog.png - -cmd/lc_editstyled.png cmd/lc_editstyle.png -cmd/lc_loadstyles.png cmd/lc_open.png -cmd/lc_viewsidebarstyles.png cmd/lc_designerdialog.png - -cmd/sc_editstyled.png cmd/sc_editstyle.png -cmd/sc_loadstyles.png cmd/sc_open.png -cmd/sc_viewsidebarstyles.png cmd/sc_designerdialog.png - -# Outline -cmd/32/outlinedown.png cmd/32/movedown.png -cmd/32/outlineleft.png cmd/32/incrementlevel.png -cmd/32/outlineright.png cmd/32/decrementlevel.png -cmd/32/outlineup.png cmd/32/moveup.png - -cmd/lc_outlinedown.png cmd/lc_movedown.png -cmd/lc_outlineleft.png cmd/lc_incrementlevel.png -cmd/lc_outlineright.png cmd/lc_decrementlevel.png -cmd/lc_outlineup.png cmd/lc_moveup.png - -cmd/sc_outlinedown.png cmd/sc_movedown.png -cmd/sc_outlineleft.png cmd/sc_incrementlevel.png -cmd/sc_outlineright.png cmd/sc_decrementlevel.png -cmd/sc_outlineup.png cmd/sc_moveup.png - -# Index -cmd/32/indexesmenu.png cmd/32/insertindexesentry.png -cmd/32/insertfootnotesmenu.png cmd/32/insertfootnote.png - -cmd/lc_indexesmenu.png cmd/lc_insertindexesentry.png -cmd/lc_insertfootnotesmenu.png cmd/lc_insertfootnote.png - -cmd/sc_indexesmenu.png cmd/sc_insertindexesentry.png -cmd/sc_insertfootnotesmenu.png cmd/sc_insertfootnote.png - -# Mirror -cmd/32/fliphorizontal.png cmd/32/mirror.png -cmd/32/flipmenu.png cmd/32/mirror.png -cmd/32/flipvertical.png cmd/32/mirrorvert.png -cmd/32/mirrorhorz.png cmd/32/mirror.png -cmd/32/objectmirrorhorizontal.png cmd/32/mirror.png -cmd/32/objectmirrorvertical.png cmd/32/mirrorvert.png - -cmd/lc_fliphorizontal.png cmd/lc_mirror.png -cmd/lc_flipmenu.png cmd/lc_mirror.png -cmd/lc_flipvertical.png cmd/lc_mirrorvert.png -cmd/lc_mirrorhorz.png cmd/lc_mirror.png -cmd/lc_objectmirrorhorizontal.png cmd/lc_mirror.png -cmd/lc_objectmirrorvertical.png cmd/lc_mirrorvert.png - -cmd/sc_fliphorizontal.png cmd/sc_mirror.png -cmd/sc_flipmenu.png cmd/sc_mirror.png -cmd/sc_flipvertical.png cmd/sc_mirrorvert.png -cmd/sc_mirrorhorz.png cmd/sc_mirror.png -cmd/sc_objectmirrorhorizontal.png cmd/sc_mirror.png -cmd/sc_objectmirrorvertical.png cmd/sc_mirrorvert.png - -# Connector -cmd/32/connectorcircles.png cmd/32/connector.png -cmd/32/connectorcurvecircles.png cmd/32/connectorcurve.png -cmd/32/connectorlinecircles.png cmd/32/connectorline.png -cmd/32/connectorlinescircles.png cmd/32/connector.png -cmd/32/connectortoolbox.png cmd/32/connector.png - -cmd/lc_connectorcircles.png cmd/lc_connector.png -cmd/lc_connectorcurvecircles.png cmd/lc_connectorcurve.png -cmd/lc_connectorlinecircles.png cmd/lc_connectorline.png -cmd/lc_connectorlinescircles.png cmd/lc_connector.png -cmd/lc_connectortoolbox.png cmd/lc_connector.png - -cmd/sc_connectorcircles.png cmd/sc_connector.png -cmd/sc_connectorcurvecircles.png cmd/sc_connectorcurve.png -cmd/sc_connectorlinecircles.png cmd/sc_connectorline.png -cmd/sc_connectorlinescircles.png cmd/sc_connector.png -cmd/sc_connectortoolbox.png cmd/sc_connector.png - -# Time -cmd/32/numberformattime.png cmd/32/timefield.png -cmd/32/rehearsetimings.png cmd/32/diatime.png -cmd/lc_numberformattime.png cmd/lc_timefield.png -cmd/lc_rehearsetimings.png cmd/lc_diatime.png -cmd/sc_numberformattime.png cmd/sc_timefield.png -cmd/sc_rehearsetimings.png cmd/sc_diatime.png - -# Arrange -cmd/32/arrangeframemenu.png cmd/32/bringtofront.png -cmd/32/arrangemenu.png cmd/32/bringtofront.png - -cmd/lc_arrangeframemenu.png cmd/lc_bringtofront.png -cmd/lc_arrangemenu.png cmd/lc_bringtofront.png - -cmd/sc_arrangeframemenu.png cmd/sc_bringtofront.png -cmd/sc_arrangemenu.png cmd/sc_bringtofront.png - -# Reload -cmd/32/draw.png cmd/32/reload.png -cmd/32/refresh.png cmd/32/reload.png -cmd/32/repaginate.png cmd/32/insertpagenumberfield.png -cmd/32/updateall.png cmd/32/reload.png -cmd/32/updateallindexes.png cmd/32/insertmultiindex.png -cmd/32/updatealllinks.png cmd/32/inserthyperlink.png -cmd/32/updatecharts.png cmd/32/drawchart.png -cmd/32/updatefields.png cmd/32/addfield.png -cmd/32/updatemenu.png cmd/32/reload.png - -cmd/lc_draw.png cmd/lc_reload.png -cmd/lc_refresh.png cmd/lc_reload.png -cmd/lc_repaginate.png cmd/lc_insertpagenumberfield.png -cmd/lc_updateall.png cmd/lc_reload.png -cmd/lc_updateallindexes.png cmd/lc_insertmultiindex.png -cmd/lc_updatealllinks.png cmd/lc_inserthyperlink.png -cmd/lc_updatecharts.png cmd/lc_drawchart.png -cmd/lc_updatefields.png cmd/lc_addfield.png -cmd/lc_updatemenu.png cmd/lc_reload.png - -cmd/sc_draw.png cmd/sc_reload.png -cmd/sc_refresh.png cmd/sc_reload.png -cmd/sc_repaginate.png cmd/sc_insertpagenumberfield.png -cmd/sc_updateall.png cmd/sc_reload.png -cmd/sc_updateallindexes.png cmd/sc_insertmultiindex.png -cmd/sc_updatealllinks.png cmd/sc_inserthyperlink.png -cmd/sc_updatecharts.png cmd/sc_drawchart.png -cmd/sc_updatefields.png cmd/sc_addfield.png -cmd/sc_updatemenu.png cmd/sc_reload.png - -# Select -cmd/32/drawselect.png cmd/32/selectobject.png -cmd/32/selectmode.png cmd/32/selectobject.png - -cmd/lc_drawselect.png cmd/lc_selectobject.png -cmd/lc_selectmode.png cmd/lc_selectobject.png - -cmd/sc_drawselect.png cmd/sc_selectobject.png -cmd/sc_selectmode.png cmd/sc_selectobject.png - -# Database -cmd/32/dbdtableedit.png cmd/32/dbtableedit.png - -cmd/lc_dbdtableedit.png cmd/lc_dbtableedit.png - -cmd/sc_dbdtableedit.png cmd/sc_dbtableedit.png - -# Browse -cmd/32/browsebackward cmd/32/prevrecord.png -cmd/32/browseforward.png cmd/32/nextrecord.png - -cmd/lc_browsebackward cmd/lc_prevrecord.png -cmd/lc_browseforward.png cmd/lc_nextrecord.png - -cmd/sc_browsebackward cmd/lc_prevrecord.png -cmd/sc_browseforward.png cmd/sc_nextrecord.png - -# Macro - -cmd/32/insertscript.png cmd/32/choosemacro.png -cmd/32/macrodialog.png cmd/32/scriptorganizer.png -cmd/32/macroorganizer.png cmd/32/scriptorganizer.png -cmd/32/macrosmenu.png cmd/32/choosemacro.png -cmd/32/toolsmacroedit.png cmd/32/basicideappear.png - -cmd/lc_insertscript.png cmd/lc_choosemacro.png -cmd/lc_macrodialog.png cmd/lc_scriptorganizer.png -cmd/lc_macroorganizer.png cmd/lc_scriptorganizer.png -cmd/lc_macrosmenu.png cmd/lc_choosemacro.png -cmd/lc_toolsmacroedit.png cmd/lc_basicideappear.png - -cmd/sc_insertscript.png cmd/sc_choosemacro.png -cmd/sc_macrodialog.png cmd/sc_scriptorganizer.png -cmd/sc_macroorganizer.png cmd/sc_scriptorganizer.png -cmd/sc_macrosmenu.png cmd/sc_choosemacro.png -cmd/sc_toolsmacroedit.png cmd/sc_basicideappear.png - -# Help -cmd/32/donation.png cmd/32/currencyfield.png -cmd/32/helperdialog.png cmd/32/helpindex.png -cmd/32/questionanswers.png cmd/32/browseview.png -cmd/32/sendfeedback.png cmd/32/insertenvelope.png - -cmd/lc_donation.png cmd/lc_currencyfield.png -cmd/lc_helperdialog.png cmd/lc_helpindex.png -cmd/lc_questionanswers.png cmd/lc_browseview.png -cmd/lc_sendfeedback.png cmd/lc_insertenvelope.png - -cmd/sc_about.png res/mainapp_16_8.png -cmd/sc_donation.png cmd/sc_currencyfield.png -cmd/sc_helperdialog.png cmd/sc_helpindex.png -cmd/sc_questionanswers.png cmd/sc_browseview.png -cmd/sc_sendfeedback.png cmd/sc_insertenvelope.png - -# Math -cmd/32/symbolcatalogue.png cmd/32/insertsymbol.png -cmd/lc_symbolcatalogue.png cmd/lc_insertsymbol.png -cmd/sc_symbolcatalogue.png cmd/sc_insertsymbol.png - -# Plugin -cmd/32/pluginsactive.png cmd/32/insertplugin.png -cmd/lc_pluginsactive.png cmd/lc_insertplugin.png -cmd/sc_pluginsactive.png cmd/sc_insertplugin.png - -# Table -cmd/32/setoptimalcolumnwidthdirect.png cmd/32/setoptimalcolumnwidth.png -cmd/32/starchartdialog.png cmd/32/drawchart.png -cmd/32/tableautofitmenu.png cmd/32/setoptimalrowheight.png -cmd/32/tabledeletemenu.png cmd/32/deletetable.png -cmd/32/tableinsertmenu.png cmd/32/insertrowsafter.png -cmd/32/tablemenu.png cmd/32/tabledialog.png -cmd/32/tableselectmenu.png cmd/32/selecttable.png - -cmd/lc_setoptimalcolumnwidthdirect.png cmd/lc_setoptimalcolumnwidth.png -cmd/lc_starchartdialog.png cmd/lc_drawchart.png -cmd/lc_tableautofitmenu.png cmd/lc_setoptimalrowheight.png -cmd/lc_tabledeletemenu.png cmd/lc_deletetable.png -cmd/lc_tableinsertmenu.png cmd/lc_insertrowsafter.png -cmd/lc_tablemenu.png cmd/lc_tabledialog.png -cmd/lc_tableselectmenu.png cmd/lc_selecttable.png - -cmd/sc_setoptimalcolumnwidthdirect.png cmd/sc_setoptimalcolumnwidth.png -cmd/sc_starchartdialog.png cmd/sc_drawchart.png -cmd/sc_tableautofitmenu.png cmd/sc_setoptimalrowheight.png -cmd/sc_tabledeletemenu.png cmd/sc_deletetable.png -cmd/sc_tableinsertmenu.png cmd/sc_insertrowsafter.png -cmd/sc_tablemenu.png cmd/sc_tabledialog.png -cmd/sc_tableselectmenu.png cmd/sc_selecttable.png - -# text background colour Impress/Draw -cmd/32/charbackcolor.png cmd/32/backcolor.png -cmd/32/setdefault.png cmd/32/resetattributes.png - -cmd/lc_charbackcolor.png cmd/lc_backcolor.png -cmd/lc_setdefault.png cmd/lc_resetattributes.png - -cmd/sc_charbackcolor.png cmd/sc_backcolor.png -cmd/sc_setdefault.png cmd/sc_resetattributes.png - -# Impress -sfx2/res/symphony/sidebar-transition-large.png cmd/lc_slidechangewindow.png - -# Toggle graphics visibility in Writer -cmd/32/showgraphics.png cmd/32/graphic.png -cmd/lc_showgraphics.png cmd/lc_graphic.png -cmd/sc_showgraphics.png cmd/sc_graphic.png - -# navigator -cmd/32/dsbdocumentdatasource.png cmd/32/insertexternaldatasource.png -cmd/32/dsbinsertcolumns.png cmd/32/insertfieldctrl.png -cmd/32/inserttoolbox.png cmd/32/dataimport.png -cmd/32/savesimple.png cmd/32/save.png -cmd/32/sbabrwinsert.png cmd/32/insertfieldctrl.png -cmd/32/showbrowser.png cmd/32/controlproperties.png -cmd/32/showpropbrowser.png cmd/32/controlproperties.png - -cmd/lc_dsbdocumentdatasource.png cmd/lc_insertexternaldatasource.png -cmd/lc_dsbinsertcolumns.png cmd/lc_insertfieldctrl.png -cmd/lc_inserttoolbox.png cmd/lc_dataimport.png -cmd/lc_savesimple.png cmd/lc_save.png -cmd/lc_sbabrwinsert.png cmd/lc_insertfieldctrl.png -cmd/lc_showbrowser.png cmd/lc_controlproperties.png -cmd/lc_showpropbrowser.png cmd/lc_controlproperties.png - -cmd/sc_dsbdocumentdatasource.png cmd/sc_insertexternaldatasource.png -cmd/sc_dsbinsertcolumns.png cmd/sc_insertfieldctrl.png -cmd/sc_inserttoolbox.png cmd/sc_dataimport.png -cmd/sc_savesimple.png cmd/sc_save.png -cmd/sc_sbabrwinsert.png cmd/sc_insertfieldctrl.png -cmd/sc_showbrowser.png cmd/sc_controlproperties.png -cmd/sc_showpropbrowser.png cmd/sc_controlproperties.png - -# Slide command aliases -cmd/32/insertdatefieldfix.png cmd/32/datefield.png -cmd/32/insertpagefield.png cmd/32/insertpagenumberfield.png -cmd/32/insertpagenumber.png cmd/32/insertpagenumberfield.png -cmd/32/insertpagesfield.png cmd/32/insertpagecountfield.png -cmd/32/insertpagetitlefield.png cmd/32/inserttitlefield.png -cmd/32/insertslidefield.png cmd/32/insertslidenumberfield.png -cmd/32/insertslidenumber.png cmd/32/insertslidenumberfield.png -cmd/32/insertslidesfield.png cmd/32/insertslidecountfield.png -cmd/32/inserttimefieldfix.png cmd/32/timefield.png - -cmd/lc_insertdatefieldfix.png cmd/lc_datefield.png -cmd/lc_insertpagefield.png cmd/lc_insertpagenumberfield.png -cmd/lc_insertpagenumber.png cmd/lc_insertpagenumberfield.png -cmd/lc_insertpagesfield.png cmd/lc_insertpagecountfield.png -cmd/lc_insertpagetitlefield.png cmd/lc_inserttitlefield.png -cmd/lc_insertslidefield.png cmd/lc_insertslidenumberfield.png -cmd/lc_insertslidenumber.png cmd/lc_insertslidenumberfield.png -cmd/lc_insertslidesfield.png cmd/lc_insertslidecountfield.png -cmd/lc_inserttimefieldfix.png cmd/lc_timefield.png - -cmd/sc_insertdatefieldfix.png cmd/sc_datefield.png -cmd/sc_insertpagefield.png cmd/sc_insertpagenumberfield.png -cmd/sc_insertpagenumber.png cmd/sc_insertpagenumberfield.png -cmd/sc_insertpagesfield.png cmd/sc_insertpagecountfield.png -cmd/sc_insertpagetitlefield.png cmd/sc_inserttitlefield.png -cmd/sc_insertslidefield.png cmd/sc_insertslidenumberfield.png -cmd/sc_insertslidenumber.png cmd/sc_insertslidenumberfield.png -cmd/sc_insertslidesfield.png cmd/sc_insertslidecountfield.png -cmd/sc_inserttimefieldfix.png cmd/sc_timefield.png - -# database -database/linked_text_table.png dbaccess/res/linked_text_table.png - -# dbaccess -# ============================================== -dbaccess/res/all_left.png cmd/sc_firstrecord.png -dbaccess/res/all_right.png cmd/sc_lastrecord.png -dbaccess/res/db.png cmd/sc_changedatabasefield.png -dbaccess/res/exerror.png cmd/sc_cancel.png -dbaccess/res/exinfo.png cmd/sc_helpindex.png -dbaccess/res/form_16.png cmd/sc_dbviewforms.png -dbaccess/res/forms_32.png cmd/32/dbviewforms.png -dbaccess/res/jo01.png dbaccess/res/pkey.png -dbaccess/res/lc036.png cmd/lc_dbnewreport.png -dbaccess/res/lc037.png cmd/lc_dbreportdelete.png -dbaccess/res/lc038.png cmd/lc_dbreportedit.png -dbaccess/res/nu07.png cmd/sc_ok.png -dbaccess/res/nu08.png cmd/sc_cancel.png -dbaccess/res/one_left.png cmd/sc_prevrecord.png -dbaccess/res/one_right.png cmd/sc_nextrecord.png -dbaccess/res/queries_32.png cmd/32/dbviewqueries.png -dbaccess/res/report_16.png cmd/sc_dbviewreports.png -dbaccess/res/reports_32.png cmd/32/dbviewreports.png -dbaccess/res/sc036.png cmd/sc_dbnewreport.png -dbaccess/res/sc037.png cmd/sc_dbreportdelete.png -dbaccess/res/sc038.png cmd/sc_dbreportedit.png -dbaccess/res/sortdown.png cmd/sc_downsearch.png -dbaccess/res/sortup.png cmd/sc_upsearch.png -dbaccess/res/tables_32.png cmd/32/dbviewtables.png -res/queries_32.png cmd/32/dbviewqueries.png -res/reports_32.png cmd/32/dbviewreports.png -res/tables_32.png cmd/32/dbviewtables.png - -# desktop -# ============================================== -desktop/res/caution_16.png dbaccess/res/exwarning.png -desktop/res/extension_16.png cmd/sc_insertplugin.png -desktop/res/extension_32.png cmd/32/insertplugin.png -desktop/res/info_16.png cmd/sc_helpindex.png -desktop/res/lock_16.png cmd/sc_cellprotection.png - -# extensions -# ============================================== -extensions/res/arrow.png cmd/sc_nextrecord.png -extensions/res/buttonminus.png extensions/res/scanner/minus.png -extensions/res/buttonplus.png extensions/res/scanner/plus.png - -# formula -# ============================================== -formula/res/faperror.png cmd/sc_cancel.png -formula/res/fapok.png cmd/sc_ok.png -formula/res/fapopen.png cmd/sc_open.png -formula/res/fx.png cmd/sc_dbviewfunctions.png - -# fpicker -# ============================================== -fpicker/res/fp011.png res/lc06303.png -fpicker/res/fp014.png res/fp015.png -fpicker/res/fp016.png desktop/res/shared_16.png - -# framework -# ============================================== -framework/res/addtemplate_32.png cmd/32/newdoc.png -framework/res/arrow.png cmd/sc_nextrecord.png -framework/res/extension.png cmd/lc_insertplugin.png -framework/res/folder_32.png cmd/32/open.png -framework/res/info_26.png cmd/lc_helpindex.png -framework/res/remote-documents.png cmd/32/openremote.png -framework/res/templates_32.png cmd/32/templatemanager.png - -# reportdesign -# ============================================== -reportdesign/res/report_16.png cmd/sc_dbviewreports.png -reportdesign/res/sc20557.png cmd/sc_cancel.png -reportdesign/res/sc30768.png cmd/sc_upsearch.png -reportdesign/res/sc30769.png cmd/sc_downsearch.png -reportdesign/res/sc30770.png cmd/sc_cancel.png -reportdesign/res/sortdown.png cmd/sc_downsearch.png -reportdesign/res/sortup.png cmd/sc_upsearch.png -reportdesign/res/sx11047.png cmd/sc_basicshapes.diamond.png -reportdesign/res/sx12452.png cmd/sc_animationeffects.png -reportdesign/res/sx12453.png cmd/sc_animationeffects.png -reportdesign/res/sx12454.png cmd/sc_alignright.png -reportdesign/res/sx12464.png cmd/sc_dbviewreports.png -reportdesign/res/sx12594.png cmd/sc_dbviewfunctions.png - -# res -# ============================================== -res/adrbook.png cmd/sc_viewdatasourcebrowser.png -res/browse.png cmd/sc_browseview.png -res/dir-clos.png cmd/sc_closedocs.png -res/dir-open.png cmd/sc_open.png -res/extension_plus_26.png cmd/lc_insertplugin.png -res/extension_plus_32.png cmd/32/insertplugin.png -res/fileopen.png cmd/sc_open.png -res/foldercl.png cmd/sc_closedocs.png -res/grafikei.png cmd/sc_graphic.png -res/hlinettp.png cmd/32/inserthyperlink.png -res/hlmailtp.png cmd/32/insertenvelope.png -res/im30820.png cmd/sc_scriptorganizer.png -res/im30821.png cmd/sc_choosemacro.png -res/im30826.png res/odm_16_8.png -res/info.png cmd/lc_helpindex.png -res/info_16.png cmd/sc_helpindex.png -res/lc05509.png cmd/lc_print.png -res/lc05539.png cmd/lc_designerdialog.png -res/lc05678.png cmd/lc_inserthyperlinkcontrol.png -res/lc05700.png cmd/lc_redo.png -res/lc05701.png cmd/lc_undo.png -res/lc05710.png cmd/lc_cut.png -res/lc05711.png cmd/lc_copy.png -res/lc10711.png cmd/lc_removefiltersort.png -res/lc10715.png cmd/lc_datafilterstandardfilter.png -res/lc10716.png cmd/lc_datafilterautofilter.png -res/lc10851.png cmd/lc_inserthyperlinkcontrol.png -res/lc10853.png cmd/lc_recsearch.png -res/library_16.png cmd/sc_viewdatasourcebrowser.png -res/lx03131.png res/lx03126.png -res/lx03137.png res/lx03125.png -res/lx03139.png cmd/lc_newhtmldoc.png -res/lx03139_32.png cmd/32/newhtmldoc.png -res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/otf_32_8.png -res/lx03150.png cmd/32/showsinglepage.png -res/lx03152.png res/lx03125.png -res/lx03153.png res/lx03125.png -res/lx03154.png res/lx03125.png -res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png -res/lx03158.png res/lx03125.png -res/lx03160.png res/odg_32_8.png -res/lx03164.png cmd/32/open.png -res/lx03165.png cmd/32/save.png -res/lx03167.png cmd/32/openremote.png -res/lx03188.png cmd/32/dbviewtables.png -res/lx03189.png cmd/32/open.png -res/lx03202.png cmd/32/dbviewqueries.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png -res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03226.png res/odm_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/otg_32_8.png -res/lx03239.png cmd/32/dbrelationdesign.png -res/lx03245.png res/odb_24_8.png -res/lx03245_32.png res/odb_32_8.png -res/lx03246.png res/odg_24_8.png -res/lx03246_32.png res/odg_32_8.png -res/lx03247.png res/odf_24_8.png -res/lx03247_32.png res/odf_32_8.png -res/lx03248.png res/odm_24_8.png -res/lx03248_32.png res/odm_32_8.png -res/lx03249.png res/odp_24_8.png -res/lx03249_32.png res/odp_32_8.png -res/lx03250.png res/ods_24_8.png -res/lx03250_32.png res/ods_32_8.png -res/lx03251.png res/odt_24_8.png -res/lx03251_32.png res/odt_32_8.png -res/lx03252.png res/otg_32_8.png -res/lx03253.png res/otp_32_8.png -res/lx03254.png res/ots_32_8.png -res/lx03255.png res/ott_24_8.png -res/lx03255_32.png res/ott_32_8.png -res/lx03256.png cmd/32/insertplugin.png -res/mainapp_16.png res/mainapp_16_8.png -res/mainapp_32.png res/mainapp_32_8.png -res/newdoc.png cmd/sc_closedocs.png -res/oleobj.png cmd/32/insertobject.png -res/plugin.png cmd/32/insertplugin.png -res/printeradmin_16_8.png res/printeradmin_16.png -res/printeradmin_32_8.png res/printeradmin_32.png -res/reload.png cmd/sc_reload.png -res/sc05500.png cmd/sc_adddirect.png -res/sc05501.png cmd/sc_open.png -res/sc05502.png cmd/sc_saveas.png -res/sc05504.png cmd/sc_print.png -res/sc05508.png cmd/sc_reload.png -res/sc05509.png cmd/sc_print.png -res/sc05554.png cmd/sc_backgroundcolor.png -res/sc05555.png cmd/sc_stylenewbyexample.png -res/sc05556.png cmd/sc_styleupdatebyexample.png -res/sc05678.png cmd/sc_inserthyperlink.png -res/sc05711.png cmd/sc_copy.png -res/sc05961.png cmd/sc_recsearch.png -res/sc06300.png cmd/sc_nextrecord.png -res/sc06301.png cmd/sc_prevrecord.png -res/sc10223.png cmd/sc_position.png -res/sc10224.png cmd/sc_size.png -res/sc10350.png cmd/sc_bmpmask.png -res/sc10711.png cmd/sc_removefiltersort.png -res/sc10712.png cmd/sc_sortascending.png -res/sc10713.png cmd/sc_sortdescending.png -res/sc10715.png cmd/sc_datafilterstandardfilter.png -res/sc10716.png cmd/sc_datafilterautofilter.png -res/sc10851.png cmd/sc_inserthyperlink.png -res/sc10853.png cmd/sc_recsearch.png -res/sc10854.png res/target.png -res/sc10863.png cmd/sc_grafluminance.png -res/sc10864.png cmd/sc_grafcontrast.png -res/sc10865.png cmd/sc_grafred.png -res/sc10866.png cmd/sc_grafgreen.png -res/sc10867.png cmd/sc_grafblue.png -res/sc10868.png cmd/sc_grafgamma.png -res/sc10869.png cmd/sc_graftransparence.png -res/sx03137.png res/sx03125.png -res/sx03139.png cmd/sc_newhtmldoc.png -res/sx03140.png res/sx03125.png -res/sx03141.png cmd/32/closedocs.png -res/sx03144.png res/odf_16_8.png -res/sx03145.png res/otf_16_8.png -res/sx03150.png cmd/sc_showsinglepage.png -res/sx03152.png res/sx03125.png -res/sx03153.png res/sx03125.png -res/sx03154.png res/sx03125.png -res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png -res/sx03158.png res/sx03125.png -res/sx03160.png res/odg_16_8.png -res/sx03164.png res/harddisk_16.png -res/sx03165.png cmd/sc_save.png -res/sx03167.png cmd/sc_openremote.png -res/sx03188.png cmd/sc_dbviewtables.png -res/sx03189.png cmd/sc_closedocs.png -res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png -res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03226.png res/odm_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/otg_16_8.png -res/sx03239.png cmd/sc_dbrelationdesign.png -res/sx03245.png res/odb_16_8.png -res/sx03246.png res/odg_16_8.png -res/sx03247.png res/odf_16_8.png -res/sx03248.png res/odm_16_8.png -res/sx03249.png res/odp_16_8.png -res/sx03250.png res/ods_16_8.png -res/sx03251.png res/odt_16_8.png -res/sx03252.png res/otg_16_8.png -res/sx03253.png res/otp_16_8.png -res/sx03254.png res/ots_16_8.png -res/sx03255.png res/ott_16_8.png -res/sx03256.png cmd/sc_insertplugin.png -res/sx10144.png cmd/sc_checkbox.png -res/sx10593.png cmd/sc_switchxformsdesignmode.png -res/sx10594.png cmd/sc_pushbutton.png -res/sx10595.png cmd/sc_radiobutton.png -res/sx10596.png cmd/sc_checkbox.png -res/sx10597.png cmd/sc_label.png -res/sx10598.png cmd/sc_groupbox.png -res/sx10599.png cmd/sc_edit.png -res/sx10600.png cmd/sc_listbox.png -res/sx10601.png cmd/sc_combobox.png -res/sx10603.png cmd/sc_grid.png -res/sx10604.png cmd/sc_imagebutton.png -res/sx10605.png cmd/sc_filecontrol.png -res/sx10607.png cmd/sc_navigationbar.png -res/sx10704.png cmd/sc_datefield.png -res/sx10705.png cmd/sc_timefield.png -res/sx10706.png cmd/sc_numberformatstandard.png -res/sx10707.png cmd/sc_currencyfield.png -res/sx10708.png cmd/sc_patternfield.png -res/sx10710.png cmd/sc_imagecontrol.png -res/sx10715.png cmd/sc_datafilterstandardfilter.png -res/sx10728.png cmd/sc_formattedfield.png -res/sx10757.png cmd/sc_timefield.png -res/sx10768.png cmd/sc_scrollbar.png -res/sx10769.png cmd/sc_spinbutton.png -res/sx18013.png res/dialogfolder_16.png - -# sc -# ============================================== -sc/res/date.png cmd/sc_datefield.png -sc/res/dropcopy.png cmd/sc_copy.png -sc/res/droplink.png cmd/sc_insertbookmark.png -sc/res/dropurl.png cmd/sc_inserthyperlinkcontrol.png -sc/res/file.png cmd/sc_open.png -sc/res/fx.png cmd/sc_dbviewfunctions.png -sc/res/lc26047.png cmd/lc_dbviewfunctions.png -sc/res/lc26048.png cmd/lc_autosum.png -sc/res/lc26050.png cmd/lc_cancel.png -sc/res/lc26051.png cmd/lc_ok.png -sc/res/na010.png sw/res/sc20234.png -sc/res/na011.png cmd/sc_ok.png -sc/res/na03.png cmd/sc_dataranges.png -sc/res/na05.png cmd/sc_upsearch.png -sc/res/na06.png cmd/sc_downsearch.png -sc/res/na07.png cmd/sc_thesaurus.png -sc/res/na09.png cmd/sc_animationeffects.png -sc/res/nc01.png cmd/sc_show.png -sc/res/nc02.png cmd/sc_addname.png -sc/res/nc03.png cmd/sc_changedatabasefield.png -sc/res/nc04.png cmd/sc_insertgraphic.png -sc/res/nc05.png cmd/sc_insertobject.png -sc/res/nc06.png cmd/sc_shownote.png -sc/res/nc07.png cmd/sc_insertbookmark.png -sc/res/nc08.png cmd/sc_insertdraw.png -sc/res/page.png cmd/sc_insertpagenumberfield.png -sc/res/pages.png cmd/sc_insertpagecountfield.png -sc/res/sc26047.png cmd/sc_dbviewfunctions.png -sc/res/sc26048.png cmd/sc_autosum.png -sc/res/sc26050.png cmd/sc_cancel.png -sc/res/sc26051.png cmd/sc_ok.png -sc/res/table.png cmd/sc_inserttable.png -sc/res/text.png cmd/sc_text.png -sc/res/time.png cmd/sc_timefield.png - -# sd -# ============================================== -sd/res/breakplayingblue_16.png cmd/sc_mediapause.png -sd/res/comments_indicator.png cmd/sc_shownote.png -sd/res/displaymode_handoutmaster.png cmd/32/handoutmode.png -sd/res/displaymode_notes.png cmd/32/notesmode.png -sd/res/displaymode_notesmaster.png cmd/32/notesmasterpage.png -sd/res/displaymode_outline.png cmd/32/outlinemode.png -sd/res/displaymode_slide.png cmd/32/normalmultipanegui.png -sd/res/displaymode_slidemaster.png cmd/32/slidemasterpage.png -sd/res/displaymode_slidesorter.png cmd/32/diamode.png -sd/res/graphic.png cmd/sc_graphic.png -sd/res/group.png cmd/sc_formatgroup.png -sd/res/nv010.png cmd/sc_inserthyperlink.png -sd/res/nv02.png cmd/sc_freeline_unfilled.png -sd/res/nv03.png cmd/sc_firstrecord.png -sd/res/nv04.png cmd/sc_prevrecord.png -sd/res/nv05.png cmd/sc_nextrecord.png -sd/res/nv06.png cmd/sc_lastrecord.png -sd/res/nv09.png cmd/sc_insertbookmark.png -sd/res/ole.png cmd/sc_insertobject.png -sd/res/page.png cmd/sc_adddirect.png -sd/res/pipette.png cmd/sc_bmpmask.png -sd/res/playblue_16.png cmd/sc_runbasic.png -sd/res/stopplayingblue_16.png cmd/sc_basicstop.png -sd/res/time_16.png cmd/sc_timefield.png -sd/res/waiticon.png cmd/sc_mediapause.png - -# sfx2 -# ============================================== -sfx2/res/actionaction012.png cmd/lc_recsearch.png -sfx2/res/actionaction013.png cmd/lc_optionstreedialog.png -sfx2/res/actiontemplates015.png cmd/lc_ok.png -sfx2/res/actiontemplates016.png cmd/lc_configuredialog.png -sfx2/res/actiontemplates018.png cmd/lc_delete.png -sfx2/res/actiontemplates019.png cmd/lc_editdoc.png -sfx2/res/actiontemplates020.png cmd/lc_exportto.png -sfx2/res/actionview010.png cmd/lc_dataimport.png -sfx2/res/actionview025.png cmd/lc_delete.png -sfx2/res/actionview026.png cmd/lc_openremote.png -sfx2/res/actionview028.png cmd/lc_save.png -sfx2/res/actionview030.png cmd/lc_open.png -sfx2/res/closedoc.png vcl/res/closedoc.png -sfx2/res/deleterow.png cmd/sc_cancel.png -sfx2/res/doccl.png cmd/sc_newdoc.png -sfx2/res/exec_action.png cmd/sc_optionstreedialog.png -sfx2/res/favourite.png cmd/sc_insertbookmark.png -sfx2/res/hlpdoc.png cmd/sc_documentation.png -sfx2/res/minus.png res/minus.png -sfx2/res/newex.png res/plus.png -sfx2/res/plus.png res/plus.png -sfx2/res/search.png cmd/sc_recsearch.png -sfx2/res/select.png cmd/sc_ok.png -sfx2/res/sortascending.png cmd/lc_sortascending.png -sfx2/res/styfam1.png cmd/sc_charfontname.png -sfx2/res/styfam2.png cmd/sc_controlcodes.png -sfx2/res/styfam3.png cmd/sc_linestyle.png -sfx2/res/styfam4.png cmd/sc_showsinglepage.png -sfx2/res/symphony/sidebar-animation-large.png cmd/lc_diaeffect.png -sfx2/res/symphony/sidebar-colors-small.png cmd/sc_colorsettings.png -sfx2/res/symphony/sidebar-functions-large.png cmd/lc_dbviewfunctions.png -sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png -sfx2/res/symphony/sidebar-navigator-large.png cmd/lc_navigator.png -sfx2/res/symphony/sidebar-property-large.png cmd/lc_configuredialog.png -sfx2/res/symphony/sidebar-property-small.png cmd/sc_configuredialog.png -sfx2/res/symphony/sidebar-style-large.png cmd/lc_designerdialog.png -sfx2/res/symphony/sidebar-template-large.png cmd/lc_slidemasterpage.png - -# starmath -# ============================================== -starmath/res/at21717.png cmd/lc_bold.png -starmath/res/at21718.png cmd/lc_italic.png -starmath/res/at21719.png cmd/lc_scaletext.png -starmath/res/at21720.png cmd/lc_charfontname.png -starmath/res/im21108.png cmd/lc_outlineformat.png - -# svtools -# ============================================== -# FolderTree expanded icon -svtools/res/back_large.png cmd/lc_prevrecord.png -svtools/res/back_small.png cmd/sc_prevrecord.png -svtools/res/bmpfont.png cmd/color.png -svtools/res/ed06.png dbaccess/res/pkey.png -svtools/res/folder.png cmd/sc_closedocs.png -svtools/res/folderop.png cmd/sc_open.png -svtools/res/info_large.png cmd/lc_alignleft.png -svtools/res/info_small.png cmd/sc_alignleft.png -svtools/res/my_docs.png cmd/lc_open.png -svtools/res/new_doc.png cmd/lc_newdoc.png -svtools/res/preview_large.png cmd/lc_printpreview.png -svtools/res/preview_small.png cmd/sc_printpreview.png -svtools/res/prnfont.png cmd/sc_charfontname.png -svtools/res/samples.png cmd/lc_choosedesign.png -svtools/res/scalfont.png cmd/sc_scaletext.png -svtools/res/template.png cmd/lc_newdoc.png - -# svx -# ============================================== -svx/res/AdjustColorBlue_16x16.png cmd/sc_grafblue.png -svx/res/AdjustColorGamma_16x16.png cmd/sc_grafgamma.png -svx/res/AdjustColorGreen_16x16.png cmd/sc_grafgreen.png -svx/res/AdjustColorRed_16x16.png cmd/sc_grafred.png -svx/res/ColorModeBlackWhite_16x16.png cmd/sc_outputqualityblackwhite.png -svx/res/ColorModeGrey_16x16.png cmd/sc_outputqualitygrayscale.png -svx/res/apply.png cmd/sc_ok.png -svx/res/caution_11x16.png dbaccess/res/exwarning.png -svx/res/cd01.png cmd/sc_ok.png -svx/res/cd015.png cmd/sc_toggleobjectbeziermode.png -svx/res/cd016.png cmd/sc_beziermove.png -svx/res/cd017.png cmd/sc_bezierinsert.png -svx/res/cd018.png cmd/sc_bezierdelete.png -svx/res/cd020.png cmd/sc_undo.png -svx/res/cd021.png cmd/sc_redo.png -svx/res/cd025.png cmd/sc_autopilotmenu.png -svx/res/cd026.png cmd/sc_bmpmask.png -svx/res/cd05.png cmd/sc_selectobject.png -svx/res/cd06.png cmd/sc_rect.png -svx/res/cd07.png cmd/sc_ellipse.png -svx/res/cd08.png cmd/sc_polygon.png -svx/res/color.png cmd/sc_bmpmask.png -svx/res/colordlg.png cmd/sc_colorsettings.png -svx/res/convrt3d.png cmd/sc_convertinto3d.png -svx/res/fill_color.png cmd/sc_backgroundcolor.png -svx/res/filter3d.png cmd/sc_datafilterstandardfilter.png -svx/res/fontworkaligncentered_16.png cmd/sc_alignhorizontalcenter.png -svx/res/fontworkaligncentered_26.png cmd/lc_alignhorizontalcenter.png -svx/res/fontworkalignjustified_16.png cmd/sc_alignblock.png -svx/res/fontworkalignjustified_26.png cmd/lc_alignblock.png -svx/res/fontworkalignleft_16.png cmd/sc_alignleft.png -svx/res/fontworkalignleft_26.png cmd/lc_alignleft.png -svx/res/fontworkalignright_16.png cmd/sc_alignright.png -svx/res/fontworkalignright_26.png cmd/lc_alignright.png -svx/res/fontworkalignstretch_16.png cmd/sc_text_marquee.png -svx/res/fontworkalignstretch_26.png cmd/lc_text_marquee.png -svx/res/fw07.png cmd/sc_alignleft.png -svx/res/fw08.png cmd/sc_alignhorizontalcenter.png -svx/res/fw09.png cmd/sc_alignright.png -svx/res/graphic.png cmd/sc_graphic.png -svx/res/id01.png cmd/sc_ok.png -svx/res/id018.png cmd/sc_choosemacro.png -svx/res/id019.png cmd/sc_modifyframe.png -svx/res/id02.png cmd/sc_open.png -svx/res/id03.png cmd/sc_save.png -svx/res/id030.png cmd/sc_toggleobjectbeziermode.png -svx/res/id031.png cmd/sc_beziermove.png -svx/res/id032.png cmd/sc_bezierinsert.png -svx/res/id033.png cmd/sc_bezierdelete.png -svx/res/id04.png cmd/sc_selectobject.png -svx/res/id040.png cmd/sc_undo.png -svx/res/id041.png cmd/sc_redo.png -svx/res/id05.png cmd/sc_rect.png -svx/res/id06.png cmd/sc_ellipse.png -svx/res/id07.png cmd/sc_polygon.png -svx/res/id08.png cmd/sc_freeline.png -svx/res/lngcheck.png cmd/sc_spelling.png -svx/res/luminanc.png cmd/sc_graphicfilterinvert.png -svx/res/notcertificate_16.png xmlsecurity/res/notcertificate_16.png -svx/res/nu01.png cmd/sc_ok.png -svx/res/nu02.png cmd/sc_cancel.png -svx/res/nu03.png cmd/sc_shownote.png -svx/res/nu08.png cmd/sc_cancel.png -svx/res/ole.png cmd/sc_insertobject.png -svx/res/para_numbullet_rtl01.png cmd/ar/sc_defaultbullet.png -svx/res/para_numbullet_rtl02.png cmd/ar/sc_defaultnumbering.png -svx/res/parallel_16.png cmd/sc_extrusiondepthfloater.png -svx/res/persp3d.png cmd/sc_extrusiondirectionfloater.png -svx/res/perspective_16.png cmd/sc_extrusiondirectionfloater.png -svx/res/reload.png cmd/sc_reload.png -svx/res/reloads.png cmd/sc_reload.png -svx/res/rotate3d.png cmd/sc_convertinto3dlathe.png -svx/res/signet_11x16.png xmlsecurity/res/signet_11x16.png -svx/res/symphony/AdjustColorBlue_16x16.png cmd/sc_grafblue.png -svx/res/symphony/AdjustColorGamma_16x16.png cmd/sc_grafgamma.png -svx/res/symphony/AdjustColorGreen_16x16.png cmd/sc_grafgreen.png -svx/res/symphony/AdjustColorRed_16x16.png cmd/sc_grafred.png -svx/res/symphony/decrease_font.png cmd/sc_shrink.png -svx/res/symphony/enlarge_font.png cmd/sc_grow.png -svx/res/symphony/fill_color.png cmd/sc_backgroundcolor.png -svx/res/symphony/lpselected-spacing-1.png cmd/lc_spacepara1.png -svx/res/symphony/lpselected-spacing-1_15.png cmd/lc_spacepara1.png -svx/res/symphony/lpselected-spacing-1_5.png cmd/lc_spacepara15.png -svx/res/symphony/lpselected-spacing-2.png cmd/lc_spacepara2.png -svx/res/symphony/lpsmall-spacing-1.png cmd/lc_spacepara1.png -svx/res/symphony/para_numbullet01.png cmd/sc_defaultbullet.png -svx/res/symphony/para_numbullet02.png cmd/sc_defaultnumbering.png -svx/res/symphony/para_numbullet_rtl01.png cmd/ar/sc_defaultbullet.png -svx/res/symphony/para_numbullet_rtl02.png cmd/ar/sc_defaultnumbering.png -svx/res/symphony/sch_backgroundcolor.png cmd/sc_backgroundcolor.png -svx/res/symphony/spacing3.png cmd/sc_spacepara1.png -svx/res/time.png cmd/sc_timefield.png -svx/res/wireframe_16.png cmd/sc_window3d.png - -# sw -# ============================================== -# res -sw/res/lc20556.png cmd/lc_dbviewfunctions.png -sw/res/lc20557.png cmd/lc_cancel.png -sw/res/lc20558.png cmd/lc_ok.png -sw/res/nc20001.png cmd/sc_inserttable.png -sw/res/nc20002.png cmd/sc_insertframe.png -sw/res/nc20003.png cmd/sc_insertgraphic.png -sw/res/nc20004.png cmd/sc_insertobject.png -sw/res/nc20005.png cmd/sc_insertbookmark.png -sw/res/nc20006.png cmd/sc_insertsection.png -sw/res/nc20007.png cmd/sc_inserthyperlink.png -sw/res/nc20008.png cmd/sc_insertreferencefield.png -sw/res/nc20009.png cmd/sc_insertindexesentry.png -sw/res/nc20010.png cmd/sc_shownote.png -sw/res/nc20011.png cmd/sc_insertdraw.png -sw/res/nc20012.png cmd/sc_insertfootnote.png -sw/res/nc20013.png cmd/sc_insertendnote.png -sw/res/sc20171.png cmd/sc_downsearch.png -sw/res/sc20172.png cmd/sc_prevrecord.png -sw/res/sc20173.png cmd/sc_nextrecord.png -sw/res/sc20174.png cmd/sc_upsearch.png -sw/res/sc20175.png cmd/sc_nextrecord.png -sw/res/sc20177.png cmd/sc_insertfooter.png -sw/res/sc20179.png cmd/sc_insertheader.png -sw/res/sc20182.png cmd/sc_toggleanchortype.png -sw/res/sc20183.png cmd/sc_setreminder.png -sw/res/sc20186.png cmd/sc_prevrecord.png -sw/res/sc20233.png cmd/sc_ok.png -sw/res/sc20235.png cmd/sc_inserthyperlink.png -sw/res/sc20238.png cmd/sc_insertbookmark.png -sw/res/sc20239.png cmd/sc_copy.png -sw/res/sc20244.png sw/res/sc20234.png -sw/res/sc20247.png cmd/sc_dataimport.png -sw/res/sc20249.png cmd/sc_navigator.png -sw/res/sc20556.png cmd/sc_dbviewfunctions.png -sw/res/sc20557.png cmd/sc_cancel.png -sw/res/sc20558.png cmd/sc_ok.png -sw/res/sf02.png cmd/sc_designerdialog.png -sw/res/sf04.png sc/res/sf02.png -sw/res/sf06.png cmd/sc_autoformat.png -sw/res/sidebar/pageproppanel/last_custom_common.png svx/res/symphony/last_custom_common.png -sw/res/sidebar/pageproppanel/last_custom_common_grey.png svx/res/symphony/last_custom_common_grey.png -sw/res/sr20000.png cmd/sc_downsearch.png -sw/res/sr20001.png cmd/sc_upsearch.png -sw/res/sr20002.png cmd/sc_inserttable.png -sw/res/sr20003.png cmd/sc_insertframe.png -sw/res/sr20004.png cmd/sc_showsinglepage.png -sw/res/sr20005.png cmd/sc_insertdraw.png -sw/res/sr20006.png cmd/sc_choosecontrols.png -sw/res/sr20007.png cmd/sc_insertsection.png -sw/res/sr20008.png cmd/sc_insertbookmark.png -sw/res/sr20009.png cmd/sc_insertgraphic.png -sw/res/sr20010.png cmd/sc_insertobject.png -sw/res/sr20011.png sw/res/nc20000.png -sw/res/sr20013.png cmd/sc_insertfootnote.png -sw/res/sr20014.png cmd/sc_setreminder.png -sw/res/sr20015.png cmd/sc_shownote.png -sw/res/sr20016.png cmd/sc_recsearch.png -sw/res/sr20017.png cmd/sc_insertindexesentry.png -sw/res/sr20020.png sw/res/sc20234.png -sw/res/sr20021.png cmd/sc_addfield.png -sw/res/sr20022.png cmd/sc_addfield.png -sw/res/sx01.png cmd/sc_changedatabasefield.png -sw/res/sx02.png cmd/sc_dbviewtables.png -sw/res/sx03.png cmd/sc_dbviewqueries.png - -# res -sw/res/page_break.png cmd/sc_insertpagebreak.png -sw/res/styfamnu.png sw/res/sf05.png - -# split cells duplicates -sw/res/zetlhor2.png svx/res/zetlhor2.png -sw/res/zetlver2.png svx/res/zetlver2.png - -# vcl -# ============================================== -vcl/res/index.png cmd/sc_insertmultiindex.png - -# wrap -# ============================================== -cmd/32/wrapmenu.png cmd/32/wrapon.png -cmd/lc_wrapmenu.png cmd/lc_wrapon.png -cmd/sc_wrapmenu.png cmd/sc_wrapon.png - -# xmlsecurity -# ============================================== -xmlsecurity/res/key_12.png dbaccess/res/pkey.png - -cmd/32/columnoperations.png cmd/32/entirecolumn.png -cmd/32/rowoperations.png cmd/32/entirerow.png - -cmd/lc_columnoperations.png cmd/lc_entirecolumn.png -cmd/lc_rowoperations.png cmd/lc_entirerow.png - -cmd/sc_columnoperations.png cmd/sc_entirecolumn.png -cmd/sc_rowoperations.png cmd/sc_entirerow.png - -# calc context menu sheettab -# ============================================== -cmd/32/renametable.png cmd/32/name.png -cmd/32/settabbgcolor.png cmd/32/backgroundcolor.png -cmd/32/sheetlefttoright.png cmd/32/paralefttoright.png -cmd/32/sheetrighttoleft.png cmd/32/pararighttoleft.png -cmd/32/tableevents.png cmd/32/animationeffects.png - -cmd/lc_renametable.png cmd/lc_name.png -cmd/lc_settabbgcolor.png cmd/lc_backgroundcolor.png -cmd/lc_sheetlefttoright.png cmd/lc_paralefttoright.png -cmd/lc_sheetrighttoleft.png cmd/lc_pararighttoleft.png -cmd/lc_tableevents.png cmd/lc_animationeffects.png - -cmd/sc_renametable.png cmd/sc_name.png -cmd/sc_settabbgcolor.png cmd/sc_backgroundcolor.png -cmd/sc_sheetlefttoright.png cmd/sc_paralefttoright.png -cmd/sc_sheetrighttoleft.png cmd/sc_pararighttoleft.png -cmd/sc_tableevents.png cmd/sc_animationeffects.png - -# calc cell style -# ============================================== -cmd/32/badcellstyle.png cmd/32/badcellstyles.png -cmd/32/defaultcellstyles.png cmd/32/defaultcharstyle.png -cmd/32/footnotecellstyles.png cmd/32/insertfootnote.png -cmd/32/goodcellstyle.png cmd/32/goodcellstyles.png -cmd/32/heading1cellstyles.png cmd/32/heading1parastyle.png -cmd/32/heading2cellstyles.png cmd/32/heading2parastyle.png -cmd/32/neutralcellstyle.png cmd/32/neutralcellstyles.png -cmd/32/notecellstyles.png cmd/32/shownote.png -cmd/lc_badcellstyle.png cmd/lc_badcellstyles.png -cmd/lc_defaultcellstyles.png cmd/lc_defaultcharstyle.png -cmd/lc_footnotecellstyles.png cmd/lc_insertfootnote.png -cmd/lc_goodcellstyle.png cmd/lc_goodcellstyles.png -cmd/lc_heading1cellstyles.png cmd/lc_heading1parastyle.png -cmd/lc_heading2cellstyles.png cmd/lc_heading2parastyle.png -cmd/lc_neutralcellstyle.png cmd/lc_neutralcellstyles.png -cmd/lc_notecellstyles.png cmd/lc_shownote.png -cmd/sc_badcellstyle.png cmd/sc_badcellstyles.png -cmd/sc_defaultcellstyles.png cmd/sc_defaultcharstyle.png -cmd/sc_footnotecellstyles.png cmd/sc_insertfootnote.png -cmd/sc_goodcellstyle.png cmd/sc_goodcellstyles.png -cmd/sc_heading1cellstyles.png cmd/sc_heading1parastyle.png -cmd/sc_heading2cellstyles.png cmd/sc_heading2parastyle.png -cmd/sc_neutralcellstyle.png cmd/sc_neutralcellstyles.png -cmd/sc_notecellstyles.png cmd/sc_shownote.png - -# calc context menu rowheader -# ============================================== -cmd/32/columnwidth.png cmd/32/setminimalcolumnwidth.png -cmd/32/rowheight.png cmd/32/setminimalrowheight.png - -cmd/lc_columnwidth.png cmd/lc_setminimalcolumnwidth.png -cmd/lc_rowheight.png cmd/lc_setminimalrowheight.png - -cmd/sc_columnwidth.png cmd/sc_setminimalcolumnwidth.png -cmd/sc_rowheight.png cmd/sc_setminimalrowheight.png - -# calc toolbar previewbar -# ============================================== -cmd/32/exportasgraphic.png cmd/32/insertgraphic.png -cmd/32/margins.png cmd/32/pagemargin.png -cmd/32/namegroup.png cmd/32/renameobject.png - -cmd/lc_exportasgraphic.png cmd/lc_insertgraphic.png -cmd/lc_margins.png cmd/lc_pagemargin.png -cmd/lc_namegroup.png cmd/lc_renameobject.png - -cmd/sc_exportasgraphic.png cmd/sc_insertgraphic.png -cmd/sc_margins.png cmd/sc_pagemargin.png -cmd/sc_namegroup.png cmd/sc_renameobject.png - -# calc toolbar draw -# =============================================== -cmd/32/convertmenu.png cmd/32/bezierconvert.png -cmd/32/mirrormenu.png cmd/32/rotateleft.png -cmd/32/openhyperlinkoncursor.png cmd/32/inserthyperlink.png -cmd/32/rotateflipmenu.png cmd/32/rotateleft.png - -cmd/lc_convertmenu.png cmd/lc_bezierconvert.png -cmd/lc_mirrormenu.png cmd/lc_rotateleft.png -cmd/lc_openhyperlinkoncursor.png cmd/lc_inserthyperlink.png -cmd/lc_rotateflipmenu.png cmd/lc_rotateleft.png - -cmd/sc_convertmenu.png cmd/sc_bezierconvert.png -cmd/sc_mirrormenu.png cmd/sc_rotateleft.png -cmd/sc_openhyperlinkoncursor.png cmd/sc_inserthyperlink.png -cmd/sc_rotateflipmenu.png cmd/sc_rotateleft.png - -# writer -# =============================================== -cmd/32/addtextbox.png cmd/32/insertfixedtext.png -cmd/32/openxmlfiltersettings.png cmd/32/managexmlsource.png - -cmd/lc_addtextbox.png cmd/lc_insertfixedtext.png -cmd/lc_openxmlfiltersettings.png cmd/lc_managexmlsource.png - -cmd/sc_addtextbox.png cmd/sc_insertfixedtext.png -cmd/sc_openxmlfiltersettings.png cmd/sc_managexmlsource.png - -# Writer menu: MSO compatible Form menu -cmd/32/textformfield.png cmd/32/edit.png -cmd/32/checkboxformfield.png cmd/32/checkbox.png -cmd/32/dropdownformfield.png cmd/32/combobox.png -cmd/32/datepickerformfield.png cmd/32/datefield.png - -cmd/lc_textformfield.png cmd/lc_edit.png -cmd/lc_checkboxformfield.png cmd/lc_checkbox.png -cmd/lc_dropdownformfield.png cmd/lc_combobox.png -cmd/lc_datepickerformfield.png cmd/lc_datefield.png - -cmd/sc_textformfield.png cmd/sc_edit.png -cmd/sc_checkboxformfield.png cmd/sc_checkbox.png -cmd/sc_dropdownformfield.png cmd/sc_combobox.png -cmd/sc_datepickerformfield.png cmd/sc_datefield.png - -# menubar icons -cmd/32/com.sun.star.deployment.ui.packagemanagerdialog.png cmd/32/insertplugin.png -cmd/32/focustofindbar.png cmd/32/recsearch.png -cmd/32/formatobjectmenu.png cmd/32/text.png -cmd/32/macroorganizer%3ftabid%3ashort=1.png cmd/32/open.png -cmd/32/textattributes.png cmd/32/fontdialog.png - -cmd/lc_com.sun.star.deployment.ui.packagemanagerdialog.png cmd/lc_insertplugin.png -cmd/lc_focustofindbar.png cmd/lc_recsearch.png -cmd/lc_formatobjectmenu.png cmd/lc_text.png -cmd/lc_macroorganizer%3ftabid%3ashort=1.png cmd/lc_open.png -cmd/lc_textattributes.png cmd/lc_fontdialog.png - -cmd/sc_com.sun.star.deployment.ui.packagemanagerdialog.png cmd/sc_insertplugin.png -cmd/sc_focustofindbar.png cmd/sc_recsearch.png -cmd/sc_formatobjectmenu.png cmd/sc_text.png -cmd/sc_macroorganizer%3ftabid%3ashort=1.png cmd/sc_open.png -cmd/sc_textattributes.png cmd/sc_fontdialog.png - -# Edit menu -cmd/32/editpastespecialmenu.png cmd/32/pastespecial.png -cmd/32/insertcontents.png cmd/32/pastespecial.png -cmd/32/pastespecialmenu.png cmd/32/pastespecial.png - -cmd/lc_editpastespecialmenu.png cmd/lc_pastespecial.png -cmd/lc_insertcontents.png cmd/lc_pastespecial.png -cmd/lc_pastespecialmenu.png cmd/lc_pastespecial.png - -cmd/sc_editpastespecialmenu.png cmd/sc_pastespecial.png -cmd/sc_insertcontents.png cmd/sc_pastespecial.png -cmd/sc_pastespecialmenu.png cmd/sc_pastespecial.png - -# LibreLogo -cmd/32/librelogo-run.png cmd/32/runbasic.png -cmd/32/librelogo-stop.png cmd/32/basicstop.png -cmd/32/librelogo-translate.png cmd/32/editglossary.png - -cmd/lc_librelogo-run.png cmd/lc_runbasic.png -cmd/lc_librelogo-stop.png cmd/lc_basicstop.png -cmd/lc_librelogo-translate.png cmd/lc_editglossary.png - -cmd/sc_librelogo-run.png cmd/sc_runbasic.png -cmd/sc_librelogo-stop.png cmd/sc_basicstop.png -cmd/sc_librelogo-translate.png cmd/sc_editglossary.png - -cmd/sc_stars-full.png sc/res/icon-set-stars-full.png -cmd/sc_stars-empty.png sc/res/icon-set-stars-empty.png - -# Draw/Redaction Toolbar -cmd/32/redactionpreviewexport.png cmd/32/exportdirecttopdf.png -cmd/lc_redactionpreviewexport.png cmd/lc_exportdirecttopdf.png -cmd/sc_redactionpreviewexport.png cmd/sc_exportdirecttopdf.png - -# Contextual Single UI (Writer) -cmd/32/zoom-more.png cmd/32/controlproperties.png -cmd/32/accepttrackedchanges-more.png cmd/32/controlproperties.png -cmd/32/fontdialog-more.png cmd/32/controlproperties.png -cmd/32/paragraphdialog-more.png cmd/32/controlproperties.png -cmd/32/tabledialog-more.png cmd/32/controlproperties.png -cmd/32/transformdialog-more.png cmd/32/controlproperties.png -cmd/32/graphicdialog-more.png cmd/32/controlproperties.png -cmd/32/framedialog-more.png cmd/32/controlproperties.png -cmd/32/objectdialog-more.png cmd/32/controlproperties.png -cmd/32/borderdialog-more.png cmd/32/controlproperties.png -cmd/32/textwrap-more.png cmd/32/controlproperties.png -cmd/32/formatarea-more.png cmd/32/controlproperties.png -cmd/32/formatline-more.png cmd/32/controlproperties.png -cmd/lc_zoom-more.png cmd/lc_controlproperties.png -cmd/lc_accepttrackedchanges-more.png cmd/lc_controlproperties.png -cmd/lc_fontdialog-more.png cmd/lc_controlproperties.png -cmd/lc_paragraphdialog-more.png cmd/lc_controlproperties.png -cmd/lc_tabledialog-more.png cmd/lc_controlproperties.png -cmd/lc_transformdialog-more.png cmd/lc_controlproperties.png -cmd/lc_graphicdialog-more.png cmd/lc_controlproperties.png -cmd/lc_framedialog-more.png cmd/lc_controlproperties.png -cmd/lc_objectdialog-more.png cmd/lc_controlproperties.png -cmd/lc_borderdialog-more.png cmd/lc_controlproperties.png -cmd/lc_textwrap-more.png cmd/lc_controlproperties.png -cmd/lc_formatarea-more.png cmd/lc_controlproperties.png -cmd/lc_formatline-more.png cmd/lc_controlproperties.png -cmd/sc_zoom-more.png cmd/sc_controlproperties.png -cmd/sc_accepttrackedchanges-more.png cmd/sc_controlproperties.png -cmd/sc_fontdialog-more.png cmd/sc_controlproperties.png -cmd/sc_paragraphdialog-more.png cmd/sc_controlproperties.png -cmd/sc_tabledialog-more.png cmd/sc_controlproperties.png -cmd/sc_transformdialog-more.png cmd/sc_controlproperties.png -cmd/sc_graphicdialog-more.png cmd/sc_controlproperties.png -cmd/sc_framedialog-more.png cmd/sc_controlproperties.png -cmd/sc_objectdialog-more.png cmd/sc_controlproperties.png -cmd/sc_borderdialog-more.png cmd/sc_controlproperties.png -cmd/sc_textwrap-more.png cmd/sc_controlproperties.png -cmd/sc_formatarea-more.png cmd/sc_controlproperties.png -cmd/sc_formatline-more.png cmd/sc_controlproperties.png +# avmedia +# ============================================== +avmedia/res/av02048.png cmd/sc_open.png +avmedia/res/av02049.png cmd/sc_runbasic.png +avmedia/res/av02050.png cmd/sc_mediapause.png +avmedia/res/av02051.png cmd/sc_basicstop.png +avmedia/res/av02052.png cmd/sc_mediarepeat.png +avmedia/res/av02053.png cmd/sc_ok.png +avmedia/res/av02054.png cmd/sc_mediamute.png +avmedia/res/avl02048.png cmd/lc_open.png +avmedia/res/avl02049.png cmd/lc_runbasic.png +avmedia/res/avl02050.png cmd/lc_mediapause.png +avmedia/res/avl02051.png cmd/lc_basicstop.png +avmedia/res/avl02052.png cmd/lc_mediarepeat.png +avmedia/res/avl02053.png cmd/lc_ok.png +avmedia/res/avl02054.png cmd/lc_mediamute.png + +# arrangement +# ============================================== +cmd/32/objectbackone.png cmd/32/backward.png +cmd/32/objectforwardone.png cmd/32/forward.png + +cmd/lc_objectbackone.png cmd/lc_backward.png +cmd/lc_objectforwardone.png cmd/lc_forward.png + +cmd/sc_objectbackone.png cmd/sc_backward.png +cmd/sc_objectforwardone.png cmd/sc_forward.png + +# chart2 +# ============================================== +chart2/res/dataeditor_icon01.png cmd/sc_insertrowsafter.png +chart2/res/dataeditor_icon02.png cmd/sc_insertcolumnsafter.png +chart2/res/dataeditor_icon03.png cmd/sc_deleterows.png +chart2/res/dataeditor_icon04.png cmd/sc_deletecolumns.png +chart2/res/selectrange.png formula/res/refinp1.png + +cmd/32/charttitlemenu.png cmd/32/toggletitle.png +cmd/32/diagramaxisall.png cmd/32/diagramaxisxyz.png +cmd/32/diagramaxismenu.png cmd/32/diagramaxis.png +cmd/32/diagramgridmenu.png cmd/32/togglegridhorizontal.png +cmd/32/insertmenuaxes.png cmd/32/diagramaxis.png +cmd/32/insertmenugrids.png cmd/32/togglegridhorizontal.png +cmd/32/insertmenulegend.png cmd/32/legend.png + +cmd/lc_charttitlemenu.png cmd/lc_toggletitle.png +cmd/lc_diagramaxisall.png cmd/lc_diagramaxisxyz.png +cmd/lc_diagramaxismenu.png cmd/lc_diagramaxis.png +cmd/lc_diagramgridmenu.png cmd/lc_togglegridhorizontal.png +cmd/lc_insertmenuaxes.png cmd/lc_diagramaxis.png +cmd/lc_insertmenugrids.png cmd/lc_togglegridhorizontal.png +cmd/lc_insertmenulegend.png cmd/lc_legend.png + +cmd/sc_charttitlemenu.png cmd/sc_toggletitle.png +cmd/sc_diagramaxisall.png cmd/sc_diagramaxisxyz.png +cmd/sc_diagramaxismenu.png cmd/sc_diagramaxis.png +cmd/sc_diagramgridmenu.png cmd/sc_togglegridhorizontal.png +cmd/sc_insertmenuaxes.png cmd/sc_diagramaxis.png +cmd/sc_insertmenugrids.png cmd/sc_togglegridhorizontal.png +cmd/sc_insertmenulegend.png cmd/sc_legend.png + +# cmd +# ============================================== + +# Add +cmd/32/adddatefield.png cmd/32/datefield.png +cmd/32/addons.png cmd/32/insertplugin.png + +cmd/lc_adddatefield.png cmd/lc_datefield.png +cmd/lc_addons.png cmd/lc_insertplugin.png + +cmd/sc_adddatefield.png cmd/sc_datefield.png +cmd/sc_addons.png cmd/sc_insertplugin.png + +# tooltips +cmd/32/autoformatmenu.png cmd/32/autocorrectdlg.png +cmd/32/showinlinetooltips.png cmd/32/shownote.png + +cmd/lc_autoformatmenu.png cmd/lc_autocorrectdlg.png +cmd/lc_showinlinetooltips.png cmd/lc_shownote.png + +cmd/sc_autoformatmenu.png cmd/sc_autocorrectdlg.png +cmd/sc_showinlinetooltips.png cmd/sc_shownote.png + +# Insert +cmd/32/charactermenu.png cmd/32/fontdialog.png +cmd/32/fieldmenu.png cmd/32/addfield.png +cmd/32/graphicmenu.png cmd/32/avmediaplayer.png +cmd/32/insertauthorfield.png cmd/32/dbviewaliases.png +cmd/32/insertavmedia.png cmd/32/avmediaplayer.png +cmd/32/insertctrl.png cmd/32/inserttable.png +cmd/32/insertcurrencyfield.png cmd/32/currencyfield.png +cmd/32/insertdatefield.png cmd/32/datefield.png +cmd/32/insertedit.png cmd/32/edit.png +cmd/32/insertfield.png cmd/32/addfield.png +cmd/32/insertfilecontrol.png cmd/32/filecontrol.png +cmd/32/insertfilefield.png cmd/32/filefield.png +cmd/32/insertformattedfield.png cmd/32/formattedfield.png +cmd/32/insertformcheck.png cmd/32/checkbox.png +cmd/32/insertformcombo.png cmd/32/combobox.png +cmd/32/insertformlist.png cmd/32/listbox.png +cmd/32/insertformmenu.png cmd/32/choosecontrols.png +cmd/32/insertformradio.png cmd/32/radiobutton.png +cmd/32/insertformspin.png cmd/32/spinbutton.png +cmd/32/insertformula.png cmd/32/dbviewfunctions.png +cmd/32/insertformvscroll.png cmd/32/scrollbar.png +cmd/32/insertframeinteract.png cmd/32/insertframe.png +cmd/32/insertframeinteractnocolumns.png cmd/32/insertframe.png +cmd/32/insertimagecontrol.png cmd/32/insertgraphic.png +cmd/32/insertlistbox.png cmd/32/listbox.png +cmd/32/insertnumericfield.png cmd/32/numericfield.png +cmd/32/insertobjectchart.png cmd/32/drawchart.png +cmd/32/insertobjectdialog.png cmd/32/insertobject.png +cmd/32/insertobjectstarmath.png cmd/32/insertmath.png +cmd/32/insertpagefooter.png cmd/32/insertfooter.png +cmd/32/insertpageheader.png cmd/32/insertheader.png +cmd/32/insertpatternfield.png cmd/32/patternfield.png +cmd/32/insertpushbutton.png cmd/32/pushbutton.png +cmd/32/inserttextframe.png cmd/32/insertframe.png +cmd/32/inserttimefield.png cmd/32/timefield.png +cmd/32/insobjctrl.png cmd/32/newdoc.png +cmd/32/numberingmenu.png cmd/32/bulletsandnumberingdialog.png +cmd/32/paragraphmenu.png cmd/32/paragraphdialog.png +cmd/32/shapesmenu.png cmd/32/insertdraw.png +cmd/32/tracechangemode.png cmd/32/trackchanges.png +cmd/32/viewtrackchanges.png cmd/32/showtrackedchanges.png + +cmd/lc_charactermenu.png cmd/lc_fontdialog.png +cmd/lc_fieldmenu.png cmd/lc_addfield.png +cmd/lc_graphicmenu.png cmd/lc_avmediaplayer.png +cmd/lc_insertauthorfield.png cmd/lc_dbviewaliases.png +cmd/lc_insertavmedia.png cmd/lc_avmediaplayer.png +cmd/lc_insertctrl.png cmd/lc_inserttable.png +cmd/lc_insertcurrencyfield.png cmd/lc_currencyfield.png +cmd/lc_insertdatefield.png cmd/lc_datefield.png +cmd/lc_insertedit.png cmd/lc_edit.png +cmd/lc_insertfield.png cmd/lc_addfield.png +cmd/lc_insertfilecontrol.png cmd/lc_filecontrol.png +cmd/lc_insertfilefield.png cmd/lc_filefield.png +cmd/lc_insertformattedfield.png cmd/lc_formattedfield.png +cmd/lc_insertformcheck.png cmd/lc_checkbox.png +cmd/lc_insertformcombo.png cmd/lc_combobox.png +cmd/lc_insertformlist.png cmd/lc_listbox.png +cmd/lc_insertformmenu.png cmd/lc_choosecontrols.png +cmd/lc_insertformradio.png cmd/lc_radiobutton.png +cmd/lc_insertformspin.png cmd/lc_spinbutton.png +cmd/lc_insertformula.png cmd/lc_dbviewfunctions.png +cmd/lc_insertformvscroll.png cmd/lc_scrollbar.png +cmd/lc_insertframeinteract.png cmd/lc_insertframe.png +cmd/lc_insertframeinteractnocolumns.png cmd/lc_insertframe.png +cmd/lc_insertimagecontrol.png cmd/lc_insertgraphic.png +cmd/lc_insertlistbox.png cmd/lc_listbox.png +cmd/lc_insertnumericfield.png cmd/lc_numericfield.png +cmd/lc_insertobjectchart.png cmd/lc_drawchart.png +cmd/lc_insertobjectdialog.png cmd/lc_insertobject.png +cmd/lc_insertobjectstarmath.png cmd/lc_insertmath.png +cmd/lc_insertpagefooter.png cmd/lc_insertfooter.png +cmd/lc_insertpageheader.png cmd/lc_insertheader.png +cmd/lc_insertpatternfield.png cmd/lc_patternfield.png +cmd/lc_insertpushbutton.png cmd/lc_pushbutton.png +cmd/lc_inserttextframe.png cmd/lc_insertframe.png +cmd/lc_inserttimefield.png cmd/lc_timefield.png +cmd/lc_insobjctrl.png cmd/lc_newdoc.png +cmd/lc_numberingmenu.png cmd/lc_bulletsandnumberingdialog.png +cmd/lc_paragraphmenu.png cmd/lc_paragraphdialog.png +cmd/lc_shapesmenu.png cmd/lc_insertdraw.png +cmd/lc_tracechangemode.png cmd/lc_trackchanges.png +cmd/lc_viewtrackchanges.png cmd/lc_showtrackedchanges.png + +cmd/sc_charactermenu.png cmd/sc_fontdialog.png +cmd/sc_fieldmenu.png cmd/sc_addfield.png +cmd/sc_graphicmenu.png cmd/sc_avmediaplayer.png +cmd/sc_insertauthorfield.png cmd/sc_dbviewaliases.png +cmd/sc_insertavmedia.png cmd/sc_avmediaplayer.png +cmd/sc_insertctrl.png cmd/sc_inserttable.png +cmd/sc_insertcurrencyfield.png cmd/sc_currencyfield.png +cmd/sc_insertdatefield.png cmd/sc_datefield.png +cmd/sc_insertedit.png cmd/sc_edit.png +cmd/sc_insertfield.png cmd/sc_addfield.png +cmd/sc_insertfilecontrol.png cmd/sc_filecontrol.png +cmd/sc_insertfilefield.png cmd/sc_filefield.png +cmd/sc_insertformattedfield.png cmd/sc_formattedfield.png +cmd/sc_insertformcheck.png cmd/sc_checkbox.png +cmd/sc_insertformcombo.png cmd/sc_combobox.png +cmd/sc_insertformlist.png cmd/sc_listbox.png +cmd/sc_insertformmenu.png cmd/sc_choosecontrols.png +cmd/sc_insertformradio.png cmd/sc_radiobutton.png +cmd/sc_insertformspin.png cmd/sc_spinbutton.png +cmd/sc_insertformula.png cmd/sc_dbviewfunctions.png +cmd/sc_insertformvscroll.png cmd/sc_scrollbar.png +cmd/sc_insertframeinteract.png cmd/sc_insertframe.png +cmd/sc_insertframeinteractnocolumns.png cmd/sc_insertframe.png +cmd/sc_insertimagecontrol.png cmd/sc_insertgraphic.png +cmd/sc_insertlistbox.png cmd/sc_listbox.png +cmd/sc_insertnumericfield.png cmd/sc_numericfield.png +cmd/sc_insertobjectchart.png cmd/sc_drawchart.png +cmd/sc_insertobjectdialog.png cmd/sc_insertobject.png +cmd/sc_insertobjectstarmath.png cmd/sc_insertmath.png +cmd/sc_insertpagefooter.png cmd/sc_insertfooter.png +cmd/sc_insertpageheader.png cmd/sc_insertheader.png +cmd/sc_insertpatternfield.png cmd/sc_patternfield.png +cmd/sc_insertpushbutton.png cmd/sc_pushbutton.png +cmd/sc_inserttextframe.png cmd/sc_insertframe.png +cmd/sc_inserttimefield.png cmd/sc_timefield.png +cmd/sc_insobjctrl.png cmd/sc_newdoc.png +cmd/sc_numberingmenu.png cmd/sc_bulletsandnumberingdialog.png +cmd/sc_paragraphmenu.png cmd/sc_paragraphdialog.png +cmd/sc_shapesmenu.png cmd/sc_insertdraw.png +cmd/sc_tracechangemode.png cmd/sc_trackchanges.png +cmd/sc_viewtrackchanges.png cmd/sc_showtrackedchanges.png + + +#View Menu +cmd/32/changesmenu.png cmd/32/trackchanges.png + +cmd/sc_changesmenu.png cmd/sc_trackchanges.png + +cmd/lc_changesmenu.png cmd/lc_trackchanges.png + +# Zoom +cmd/32/adjust.png cmd/32/zoomoptimal.png +cmd/32/previewzoom.png cmd/32/zoom.png +cmd/32/view100.png cmd/32/zoom100percent.png +cmd/32/zoomminus.png cmd/32/zoomout.png +cmd/32/zoomplus.png cmd/32/zoomin.png +cmd/32/zoomtoolbox.png cmd/32/zoom.png + +cmd/lc_adjust.png cmd/lc_zoomoptimal.png +cmd/lc_previewzoom.png cmd/lc_zoom.png +cmd/lc_view100.png cmd/lc_zoom100percent.png +cmd/lc_zoomminus.png cmd/lc_zoomout.png +cmd/lc_zoomplus.png cmd/lc_zoomin.png +cmd/lc_zoomtoolbox.png cmd/lc_zoom.png + +cmd/sc_adjust.png cmd/sc_zoomoptimal.png +cmd/sc_previewzoom.png cmd/sc_zoom.png +cmd/sc_view100.png cmd/sc_zoom100percent.png +cmd/sc_zoomminus.png cmd/sc_zoomout.png +cmd/sc_zoomplus.png cmd/sc_zoomin.png +cmd/sc_zoomtoolbox.png cmd/sc_zoom.png + +# Save +cmd/32/savegraphic.png cmd/32/save.png + +cmd/lc_savegraphic.png cmd/lc_save.png + +cmd/sc_savegraphic.png cmd/sc_save.png + +# Text +cmd/32/drawtext.png cmd/32/text.png +cmd/32/fontheight.png cmd/32/scaletext.png +cmd/32/fontworkcharacterspacingfloater.png cmd/32/spacing.png +cmd/32/textfittosizetool.png cmd/32/text_marquee.png +cmd/32/texttoolbox.png cmd/32/text.png + +cmd/lc_drawtext.png cmd/lc_text.png +cmd/lc_fontheight.png cmd/lc_scaletext.png +cmd/lc_fontworkcharacterspacingfloater.png cmd/lc_spacing.png +cmd/lc_textfittosizetool.png cmd/lc_text_marquee.png +cmd/lc_texttoolbox.png cmd/lc_text.png + +cmd/sc_drawtext.png cmd/sc_text.png +cmd/sc_fontheight.png cmd/sc_scaletext.png +cmd/sc_fontworkcharacterspacingfloater.png cmd/sc_spacing.png +cmd/sc_textfittosizetool.png cmd/sc_text_marquee.png +cmd/sc_texttoolbox.png cmd/sc_text.png + +# cmd 3d +cmd/32/convertinto3dlathefast.png cmd/32/convertinto3dlathe.png +cmd/32/extrusiontoggle.png cmd/32/convertinto3d.png +cmd/32/objects3dtoolbox.png cmd/32/cube.png +cmd/32/view3d.png cmd/32/cube.png + +cmd/lc_convertinto3dlathefast.png cmd/lc_convertinto3dlathe.png +cmd/lc_extrusiontoggle.png cmd/lc_convertinto3d.png +cmd/lc_objects3dtoolbox.png cmd/lc_cube.png +cmd/lc_view3d.png cmd/lc_cube.png + +cmd/sc_convertinto3dlathefast.png cmd/sc_convertinto3dlathe.png +cmd/sc_extrusiontoggle.png cmd/sc_convertinto3d.png +cmd/sc_objects3dtoolbox.png cmd/sc_cube.png +cmd/sc_view3d.png cmd/sc_cube.png + +# Control +cmd/32/config.png cmd/32/choosecontrols.png + +cmd/lc_config.png cmd/lc_choosecontrols.png + +cmd/sc_config.png cmd/sc_choosecontrols.png + +# Formatmenu +cmd/32/anchormenu.png cmd/32/toggleanchortype.png +cmd/32/conditionalformatmenu.png cmd/32/colorscaleformatdialog.png +cmd/32/formatbulletsmenu.png cmd/32/defaultbullet.png +cmd/32/formatframemenu.png cmd/32/framedialog.png +cmd/32/formatimagemenu.png cmd/32/graphic.png +cmd/32/formatspacingmenu.png cmd/32/spacepara15.png +cmd/32/formattextmenu.png cmd/32/charfontname.png +cmd/32/spacepara115.png cmd/32/spacepara1.png +cmd/32/textalign.png cmd/32/alignblock.png + +cmd/lc_anchormenu.png cmd/lc_toggleanchortype.png +cmd/lc_conditionalformatmenu.png cmd/lc_colorscaleformatdialog.png +cmd/lc_formatbulletsmenu.png cmd/lc_defaultbullet.png +cmd/lc_formatframemenu.png cmd/lc_framedialog.png +cmd/lc_formatimagemenu.png cmd/lc_graphicdialog.png +cmd/lc_formatspacingmenu.png cmd/lc_spacepara15.png +cmd/lc_formattextmenu.png cmd/lc_charfontname.png +cmd/lc_spacepara115.png cmd/lc_spacepara1.png +cmd/lc_textalign.png cmd/lc_alignblock.png + +cmd/sc_anchormenu.png cmd/sc_toggleanchortype.png +cmd/sc_conditionalformatmenu.png cmd/sc_colorscaleformatdialog.png +cmd/sc_formatbulletsmenu.png cmd/sc_defaultbullet.png +cmd/sc_formatframemenu.png cmd/sc_framedialog.png +cmd/sc_formatimagemenu.png cmd/sc_graphicdialog.png +cmd/sc_formatspacingmenu.png cmd/sc_spacepara15.png +cmd/sc_formattextmenu.png cmd/sc_charfontname.png +cmd/sc_spacepara115.png cmd/sc_spacepara1.png +cmd/sc_textalign.png cmd/sc_alignblock.png + +# Url +cmd/32/openurl.png cmd/32/browseview.png +cmd/32/webhtml.png cmd/32/browseview.png + +cmd/lc_openurl.png cmd/lc_browseview.png +cmd/lc_webhtml.png cmd/lc_browseview.png + +cmd/sc_openurl.png cmd/sc_browseview.png +cmd/sc_webhtml.png cmd/sc_browseview.png + +# Form +cmd/32/hscroll.png cmd/32/hscrollbar.png +cmd/32/insertformhscroll.png cmd/32/hscrollbar.png +cmd/32/scrollbarmenu.png cmd/32/scrollbar.png +cmd/32/vscroll.png cmd/32/scrollbar.png +cmd/32/vscrollbar.png cmd/32/scrollbar.png + +cmd/lc_hscroll.png cmd/lc_hscrollbar.png +cmd/lc_insertformhscroll.png cmd/lc_hscrollbar.png +cmd/lc_scrollbarmenu.png cmd/lc_scrollbar.png +cmd/lc_vscroll.png cmd/lc_scrollbar.png +cmd/lc_vscrollbar.png cmd/lc_scrollbar.png + +cmd/sc_hscroll.png cmd/sc_hscrollbar.png +cmd/sc_insertformhscroll.png cmd/sc_hscrollbar.png +cmd/sc_scrollbarmenu.png cmd/sc_scrollbar.png +cmd/sc_vscroll.png cmd/sc_scrollbar.png +cmd/sc_vscrollbar.png cmd/sc_scrollbar.png + +# Tools +cmd/32/languagemenu.png cmd/32/managelanguage.png +cmd/lc_languagemenu.png cmd/lc_managelanguage.png +cmd/sc_languagemenu.png cmd/sc_managelanguage.png + + +# Annotations +cmd/32/acceptchanges.png cmd/32/trackchangesbar.png +cmd/32/commentchange.png cmd/32/commentchangetracking.png +cmd/32/deleteallnotes.png cmd/32/deleteallannotation.png +cmd/32/deletecomment.png cmd/32/deleteannotation.png +cmd/32/deletenote.png cmd/32/deleteannotation.png +cmd/32/insertannotation.png cmd/32/shownote.png +cmd/32/notevisible.png cmd/32/shownote.png +cmd/32/showallnotes.png cmd/32/showannotations.png +cmd/32/showchanges.png cmd/32/showtrackedchanges.png + +cmd/lc_acceptchanges.png cmd/lc_trackchangesbar.png +cmd/lc_commentchange.png cmd/lc_commentchangetracking.png +cmd/lc_deleteallnotes.png cmd/lc_deleteallannotation.png +cmd/lc_deletecomment.png cmd/lc_deleteannotation.png +cmd/lc_deletenote.png cmd/lc_deleteannotation.png +cmd/lc_insertannotation.png cmd/lc_shownote.png +cmd/lc_notevisible.png cmd/lc_shownote.png +cmd/lc_showallnotes.png cmd/lc_showannotations.png +cmd/lc_showchanges.png cmd/lc_showtrackedchanges.png + +cmd/sc_acceptchanges.png cmd/sc_trackchangesbar.png +cmd/sc_commentchange.png cmd/sc_commentchangetracking.png +cmd/sc_deleteallnotes.png cmd/sc_deleteallannotation.png +cmd/sc_deletecomment.png cmd/sc_deleteannotation.png +cmd/sc_deletenote.png cmd/sc_deleteannotation.png +cmd/sc_formatallnotes.png cmd/sc_editannotation.png +cmd/sc_insertannotation.png cmd/sc_shownote.png +cmd/sc_notevisible.png cmd/sc_shownote.png +cmd/sc_showallnotes.png cmd/sc_showannotations.png +cmd/sc_showchanges.png cmd/sc_showtrackedchanges.png + +# Locale language support +cmd/32/ar/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/ar/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/ar/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/ar/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/ar/recundo.png cmd/32/redo.png +cmd/32/ar/redo.png cmd/32/undo.png +cmd/32/ar/undo.png cmd/32/redo.png +cmd/32/bg/addtextbox.png cmd/32/bg/insertfixedtext.png +cmd/32/bg/autoformatmenu.png cmd/32/bg/autocorrectdlg.png +cmd/32/bg/sortdown.png cmd/32/bg/sortdescending.png +cmd/32/bg/sortup.png cmd/32/bg/sortascending.png +cmd/32/bg/spelldialog.png cmd/32/bg/spelling.png +cmd/32/bg/spellingandgrammardialog.png cmd/32/bg/spelling.png +cmd/32/bg/tablesort.png cmd/32/bg/sortascending.png +cmd/32/bg/textformfield.png cmd/32/bg/edit.png +cmd/32/bg/underline.png cmd/32/hu/underline.png +cmd/32/bg/underlinedouble.png cmd/32/hu/underlinedouble.png +cmd/32/bg/underlinesimple.png cmd/32/hu/underline.png +cmd/32/bg/underlinesingle.png cmd/32/hu/underline.png +cmd/32/es/italic.png cmd/32/de/italic.png +cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png +cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png +cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png +cmd/32/es/numberformatthousands.png cmd/32/de/numberformatthousands.png +cmd/32/es/underlinesimple.png cmd/32/es/underline.png +cmd/32/es/underlinesingle.png cmd/32/es/underline.png +cmd/32/fa/absoluterecord.png cmd/32/ar/absoluterecord.png +cmd/32/fa/alphaliststyle.png cmd/32/ar/alphaliststyle.png +cmd/32/fa/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png +cmd/32/fa/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/fa/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/fa/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png +cmd/32/fa/continuenumbering.png cmd/32/ar/continuenumbering.png +cmd/32/fa/defaultbullet.png cmd/32/ar/defaultbullet.png +cmd/32/fa/defaultnumbering.png cmd/32/ar/defaultnumbering.png +cmd/32/fa/deleterecord.png cmd/32/ar/deleterecord.png +cmd/32/fa/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png +cmd/32/fa/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/fa/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/fa/newrecord.png cmd/32/ar/newrecord.png +cmd/32/fa/numberingstart.png cmd/32/ar/numberingstart.png +cmd/32/fa/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/fa/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/fa/recsave.png cmd/32/ar/recsave.png +cmd/32/fa/recundo.png cmd/32/redo.png +cmd/32/fa/redo.png cmd/32/undo.png +cmd/32/fa/removebullets.png cmd/32/ar/removebullets.png +cmd/32/fa/romanliststyle.png cmd/32/ar/romanliststyle.png +cmd/32/fa/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png +cmd/32/fa/setoutline.png cmd/32/ar/setoutline.png +cmd/32/fa/undo.png cmd/32/redo.png +cmd/32/fr/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png +cmd/32/fr/numberformatdecimal.png cmd/32/de/numberformatdecimal.png +cmd/32/fr/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png +cmd/32/fr/numberformatthousands.png cmd/32/de/numberformatthousands.png +cmd/32/fr/underline.png cmd/32/es/underline.png +cmd/32/fr/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/fr/underlinesimple.png cmd/32/es/underline.png +cmd/32/fr/underlinesingle.png cmd/32/es/underline.png +cmd/32/he/absoluterecord.png cmd/32/ar/absoluterecord.png +cmd/32/he/alphaliststyle.png cmd/32/ar/alphaliststyle.png +cmd/32/he/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png +cmd/32/he/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/he/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/he/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png +cmd/32/he/continuenumbering.png cmd/32/ar/continuenumbering.png +cmd/32/he/defaultbullet.png cmd/32/ar/defaultbullet.png +cmd/32/he/defaultnumbering.png cmd/32/ar/defaultnumbering.png +cmd/32/he/deleterecord.png cmd/32/ar/deleterecord.png +cmd/32/he/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png +cmd/32/he/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/he/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/he/newrecord.png cmd/32/ar/newrecord.png +cmd/32/he/numberingstart.png cmd/32/ar/numberingstart.png +cmd/32/he/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/he/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/he/recsave.png cmd/32/ar/recsave.png +cmd/32/he/recundo.png cmd/32/redo.png +cmd/32/he/redo.png cmd/32/undo.png +cmd/32/he/removebullets.png cmd/32/ar/removebullets.png +cmd/32/he/romanliststyle.png cmd/32/ar/romanliststyle.png +cmd/32/he/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png +cmd/32/he/setoutline.png cmd/32/ar/setoutline.png +cmd/32/he/undo.png cmd/32/redo.png +cmd/32/hu/bold.png cmd/32/de/bold.png +cmd/32/hu/underlinesimple.png cmd/32/hu/underline.png +cmd/32/hu/underlinesingle.png cmd/32/hu/underline.png +cmd/32/id/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png +cmd/32/id/numberformatdecimal.png cmd/32/de/numberformatdecimal.png +cmd/32/id/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png +cmd/32/id/numberformatthousands.png cmd/32/de/numberformatthousands.png +cmd/32/it/bold.png cmd/32/fr/bold.png +cmd/32/it/underline.png cmd/32/es/underline.png +cmd/32/it/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/it/underlinesimple.png cmd/32/es/underline.png +cmd/32/it/underlinesingle.png cmd/32/es/underline.png +cmd/32/km/underlinesimple.png cmd/32/km/underline.png +cmd/32/km/underlinesingle.png cmd/32/km/underline.png +cmd/32/ko/charactermenu.png cmd/32/ko/fontdialog.png +cmd/32/ko/drawtext.png cmd/32/ko/text.png +cmd/32/ko/editstyled.png cmd/32/ko/editstyle.png +cmd/32/ko/fontcolor.png cmd/32/ko/color.png +cmd/32/ko/fontheight.png cmd/32/ko/scaletext.png +cmd/32/ko/formatobjectmenu.png cmd/32/ko/text.png +cmd/32/ko/formattextmenu.png cmd/32/ko/charfontname.png +cmd/32/ko/ordercrit.png cmd/32/ko/datasort.png +cmd/32/ko/sortdown.png cmd/32/ko/sortdescending.png +cmd/32/ko/sortup.png cmd/32/ko/sortascending.png +cmd/32/ko/tablesort.png cmd/32/ko/datasort.png +cmd/32/ko/textattributes.png cmd/32/ko/fontdialog.png +cmd/32/ko/texttoolbox.png cmd/32/ko/text.png +cmd/32/ko/underlinesimple.png cmd/32/ko/underline.png +cmd/32/ko/underlinesingle.png cmd/32/ko/underline.png +cmd/32/ko/viewsidebarstyles.png cmd/32/ko/designerdialog.png +cmd/32/nl/italic.png cmd/32/it/italic.png +cmd/32/nl/underlinesimple.png cmd/32/nl/underline.png +cmd/32/nl/underlinesingle.png cmd/32/nl/underline.png +cmd/32/pl/bold.png cmd/32/fr/bold.png +cmd/32/pl/italic.png cmd/32/de/italic.png +cmd/32/pl/underlinesimple.png cmd/32/pl/underline.png +cmd/32/pl/underlinesingle.png cmd/32/pl/underline.png +cmd/32/pt-BR/bold.png cmd/32/es/bold.png +cmd/32/pt-BR/underline.png cmd/32/es/underline.png +cmd/32/pt-BR/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/pt-BR/underlinesimple.png cmd/32/es/underline.png +cmd/32/pt-BR/underlinesingle.png cmd/32/es/underline.png +cmd/32/pt/bold.png cmd/32/es/bold.png +cmd/32/pt/underline.png cmd/32/es/underline.png +cmd/32/pt/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/pt/underlinesimple.png cmd/32/es/underline.png +cmd/32/pt/underlinesingle.png cmd/32/es/underline.png +cmd/32/ru/italic.png cmd/32/de/italic.png +cmd/32/ru/underlinesimple.png cmd/32/ru/underline.png +cmd/32/ru/underlinesingle.png cmd/32/ru/underline.png +cmd/32/sl/underline.png cmd/32/pl/underline.png +cmd/32/sl/underlinedouble.png cmd/32/pl/underlinedouble.png +cmd/32/sl/underlinesimple.png cmd/32/pl/underline.png +cmd/32/sl/underlinesingle.png cmd/32/pl/underline.png +cmd/32/sv/bold.png cmd/32/de/bold.png +cmd/32/sv/italic.png cmd/32/de/italic.png +cmd/32/tr/bold.png cmd/32/sl/bold.png +cmd/32/tr/underline.png cmd/32/hu/underline.png +cmd/32/tr/underlinedouble.png cmd/32/hu/underlinedouble.png +cmd/32/tr/underlinesimple.png cmd/32/hu/underline.png +cmd/32/tr/underlinesingle.png cmd/32/hu/underline.png +cmd/32/underlinesimple.png cmd/32/underline.png +cmd/32/underlinesingle.png cmd/32/underline.png +cmd/32/ur/absoluterecord.png cmd/32/ar/absoluterecord.png +cmd/32/ur/alphaliststyle.png cmd/32/ar/alphaliststyle.png +cmd/32/ur/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png +cmd/32/ur/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/ur/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/ur/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png +cmd/32/ur/continuenumbering.png cmd/32/ar/continuenumbering.png +cmd/32/ur/defaultbullet.png cmd/32/ar/defaultbullet.png +cmd/32/ur/defaultnumbering.png cmd/32/ar/defaultnumbering.png +cmd/32/ur/deleterecord.png cmd/32/ar/deleterecord.png +cmd/32/ur/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png +cmd/32/ur/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/ur/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/ur/newrecord.png cmd/32/ar/newrecord.png +cmd/32/ur/numberingstart.png cmd/32/ar/numberingstart.png +cmd/32/ur/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/ur/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/ur/recsave.png cmd/32/ar/recsave.png +cmd/32/ur/recundo.png cmd/32/redo.png +cmd/32/ur/redo.png cmd/32/undo.png +cmd/32/ur/removebullets.png cmd/32/ar/removebullets.png +cmd/32/ur/romanliststyle.png cmd/32/ar/romanliststyle.png +cmd/32/ur/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png +cmd/32/ur/setoutline.png cmd/32/ar/setoutline.png +cmd/32/ur/undo.png cmd/32/redo.png +cmd/ar/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/ar/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/ar/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/ar/lc_recundo.png cmd/lc_redo.png +cmd/ar/lc_redo.png cmd/lc_undo.png +cmd/ar/lc_undo.png cmd/lc_redo.png +cmd/ar/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/ar/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/ar/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/ar/sc_recundo.png cmd/sc_redo.png +cmd/ar/sc_redo.png cmd/sc_undo.png +cmd/ar/sc_undo.png cmd/sc_redo.png +cmd/bg/lc_addtextbox.png cmd/bg/lc_insertfixedtext.png +cmd/bg/lc_autoformatmenu.png cmd/bg/lc_autocorrectdlg.png +cmd/bg/lc_sortdown.png cmd/bg/lc_sortdescending.png +cmd/bg/lc_sortup.png cmd/bg/lc_sortascending.png +cmd/bg/lc_spelldialog.png cmd/bg/lc_spelling.png +cmd/bg/lc_spellingandgrammardialog.png cmd/bg/lc_spelling.png +cmd/bg/lc_tablesort.png cmd/bg/lc_sortascending.png +cmd/bg/lc_textformfield.png cmd/bg/lc_edit.png +cmd/bg/lc_underline.png cmd/hu/lc_underline.png +cmd/bg/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png +cmd/bg/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/bg/lc_underlinesingle.png cmd/hu/lc_underline.png +cmd/bg/sc_addtextbox.png cmd/bg/sc_insertfixedtext.png +cmd/bg/sc_autoformatmenu.png cmd/bg/sc_autocorrectdlg.png +cmd/bg/sc_sortdown.png cmd/bg/sc_sortdescending.png +cmd/bg/sc_sortup.png cmd/bg/sc_sortascending.png +cmd/bg/sc_spelldialog.png cmd/bg/sc_spelling.png +cmd/bg/sc_spellingandgrammardialog.png cmd/bg/sc_spelling.png +cmd/bg/sc_tablesort.png cmd/bg/sc_sortascending.png +cmd/bg/sc_textformfield.png cmd/bg/sc_edit.png +cmd/bg/sc_underline.png cmd/hu/sc_underline.png +cmd/bg/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png +cmd/bg/sc_underlinesimple.png cmd/hu/sc_underline.png +cmd/bg/sc_underlinesingle.png cmd/hu/sc_underline.png +cmd/es/lc_italic.png cmd/de/lc_italic.png +cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png +cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png +cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/es/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png +cmd/es/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/es/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/es/sc_italic.png cmd/de/sc_italic.png +cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png +cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png +cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/es/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/es/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/es/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/fa/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png +cmd/fa/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png +cmd/fa/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png +cmd/fa/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/fa/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/fa/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png +cmd/fa/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png +cmd/fa/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png +cmd/fa/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png +cmd/fa/lc_deleterecord.png cmd/ar/lc_deleterecord.png +cmd/fa/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png +cmd/fa/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/fa/lc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/fa/lc_newrecord.png cmd/ar/lc_newrecord.png +cmd/fa/lc_numberingstart.png cmd/ar/lc_numberingstart.png +cmd/fa/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/fa/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/fa/lc_recsave.png cmd/ar/lc_recsave.png +cmd/fa/lc_recundo.png cmd/lc_redo.png +cmd/fa/lc_redo.png cmd/lc_undo.png +cmd/fa/lc_removebullets.png cmd/ar/lc_removebullets.png +cmd/fa/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png +cmd/fa/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png +cmd/fa/lc_setoutline.png cmd/ar/lc_setoutline.png +cmd/fa/lc_undo.png cmd/lc_redo.png +cmd/fa/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png +cmd/fa/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png +cmd/fa/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png +cmd/fa/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/fa/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/fa/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png +cmd/fa/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png +cmd/fa/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png +cmd/fa/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png +cmd/fa/sc_deleterecord.png cmd/ar/sc_deleterecord.png +cmd/fa/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png +cmd/fa/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/fa/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/fa/sc_newrecord.png cmd/ar/sc_newrecord.png +cmd/fa/sc_numberingstart.png cmd/ar/sc_numberingstart.png +cmd/fa/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/fa/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/fa/sc_recsave.png cmd/ar/sc_recsave.png +cmd/fa/sc_recundo.png cmd/sc_redo.png +cmd/fa/sc_redo.png cmd/sc_undo.png +cmd/fa/sc_removebullets.png cmd/ar/sc_removebullets.png +cmd/fa/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png +cmd/fa/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png +cmd/fa/sc_setoutline.png cmd/ar/sc_setoutline.png +cmd/fa/sc_undo.png cmd/sc_redo.png +cmd/fr/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png +cmd/fr/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png +cmd/fr/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/fr/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png +cmd/fr/lc_underline.png cmd/es/lc_underline.png +cmd/fr/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/fr/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/fr/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/fr/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png +cmd/fr/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png +cmd/fr/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/fr/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/fr/sc_underline.png cmd/es/sc_underline.png +cmd/fr/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/fr/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/fr/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/he/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png +cmd/he/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png +cmd/he/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png +cmd/he/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/he/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/he/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png +cmd/he/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png +cmd/he/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png +cmd/he/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png +cmd/he/lc_deleterecord.png cmd/ar/lc_deleterecord.png +cmd/he/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png +cmd/he/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/he/lc_linenumberingdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/he/lc_newrecord.png cmd/ar/lc_newrecord.png +cmd/he/lc_numberingstart.png cmd/ar/lc_numberingstart.png +cmd/he/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/he/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/he/lc_recsave.png cmd/ar/lc_recsave.png +cmd/he/lc_recundo.png cmd/lc_redo.png +cmd/he/lc_redo.png cmd/lc_undo.png +cmd/he/lc_removebullets.png cmd/ar/lc_removebullets.png +cmd/he/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png +cmd/he/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png +cmd/he/lc_setoutline.png cmd/ar/lc_setoutline.png +cmd/he/lc_undo.png cmd/lc_redo.png +cmd/he/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png +cmd/he/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png +cmd/he/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png +cmd/he/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/he/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/he/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png +cmd/he/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png +cmd/he/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png +cmd/he/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png +cmd/he/sc_deleterecord.png cmd/ar/sc_deleterecord.png +cmd/he/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png +cmd/he/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/he/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/he/sc_newrecord.png cmd/ar/sc_newrecord.png +cmd/he/sc_numberingstart.png cmd/ar/sc_numberingstart.png +cmd/he/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/he/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/he/sc_recsave.png cmd/ar/sc_recsave.png +cmd/he/sc_recundo.png cmd/sc_redo.png +cmd/he/sc_redo.png cmd/sc_undo.png +cmd/he/sc_removebullets.png cmd/ar/sc_removebullets.png +cmd/he/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png +cmd/he/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png +cmd/he/sc_setoutline.png cmd/ar/sc_setoutline.png +cmd/he/sc_undo.png cmd/sc_redo.png +cmd/hu/lc_bold.png cmd/de/lc_bold.png +cmd/hu/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/hu/lc_underlinesingle.png cmd/hu/lc_underline.png +cmd/hu/sc_bold.png cmd/de/sc_bold.png +cmd/hu/sc_underlinesimple.png cmd/hu/sc_underline.png +cmd/hu/sc_underlinesingle.png cmd/hu/sc_underline.png +cmd/id/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png +cmd/id/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png +cmd/id/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/id/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png +cmd/id/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png +cmd/id/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png +cmd/id/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/id/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/it/lc_bold.png cmd/fr/lc_bold.png +cmd/it/lc_underline.png cmd/es/lc_underline.png +cmd/it/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/it/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/it/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/it/sc_bold.png cmd/fr/sc_bold.png +cmd/it/sc_underline.png cmd/es/sc_underline.png +cmd/it/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/it/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/it/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/km/lc_underlinesimple.png cmd/km/lc_underline.png +cmd/km/lc_underlinesingle.png cmd/km/lc_underline.png +cmd/km/sc_underlinesimple.png cmd/km/sc_underline.png +cmd/km/sc_underlinesingle.png cmd/km/sc_underline.png +cmd/ko/lc_charactermenu.png cmd/ko/lc_fontdialog.png +cmd/ko/lc_drawtext.png cmd/ko/lc_text.png +cmd/ko/lc_editstyled.png cmd/ko/lc_editstyle.png +cmd/ko/lc_fontcolor.png cmd/ko/lc_color.png +cmd/ko/lc_fontheight.png cmd/ko/lc_scaletext.png +cmd/ko/lc_formatobjectmenu.png cmd/ko/lc_text.png +cmd/ko/lc_formattextmenu.png cmd/ko/lc_charfontname.png +cmd/ko/lc_ordercrit.png cmd/ko/lc_datasort.png +cmd/ko/lc_sortdown.png cmd/ko/lc_sortdescending.png +cmd/ko/lc_sortup.png cmd/ko/lc_sortascending.png +cmd/ko/lc_tablesort.png cmd/ko/lc_datasort.png +cmd/ko/lc_textattributes.png cmd/ko/lc_fontdialog.png +cmd/ko/lc_texttoolbox.png cmd/ko/lc_text.png +cmd/ko/lc_underlinesimple.png cmd/ko/lc_underline.png +cmd/ko/lc_underlinesingle.png cmd/ko/lc_underline.png +cmd/ko/lc_viewsidebarstyles.png cmd/ko/lc_designerdialog.png +cmd/ko/sc_charactermenu.png cmd/ko/sc_fontdialog.png +cmd/ko/sc_drawtext.png cmd/ko/sc_text.png +cmd/ko/sc_editstyled.png cmd/ko/sc_editstyle.png +cmd/ko/sc_fontcolor.png cmd/ko/sc_color.png +cmd/ko/sc_fontheight.png cmd/ko/sc_scaletext.png +cmd/ko/sc_formatobjectmenu.png cmd/ko/sc_text.png +cmd/ko/sc_formattextmenu.png cmd/ko/sc_charfontname.png +cmd/ko/sc_ordercrit.png cmd/ko/sc_datasort.png +cmd/ko/sc_sortdown.png cmd/ko/sc_sortdescending.png +cmd/ko/sc_sortup.png cmd/ko/sc_sortascending.png +cmd/ko/sc_tablesort.png cmd/ko/sc_datasort.png +cmd/ko/sc_textattributes.png cmd/ko/sc_fontdialog.png +cmd/ko/sc_texttoolbox.png cmd/ko/sc_text.png +cmd/ko/sc_underlinesimple.png cmd/ko/sc_underline.png +cmd/ko/sc_underlinesingle.png cmd/ko/sc_underline.png +cmd/ko/sc_viewsidebarstyles.png cmd/ko/sc_designerdialog.png +cmd/lc_underlinesimple.png cmd/lc_underline.png +cmd/lc_underlinesingle.png cmd/lc_underline.png +cmd/nl/lc_italic.png cmd/it/lc_italic.png +cmd/nl/lc_underlinesimple.png cmd/nl/lc_underline.png +cmd/nl/lc_underlinesingle.png cmd/nl/lc_underline.png +cmd/nl/sc_italic.png cmd/it/sc_italic.png +cmd/nl/sc_underlinesimple.png cmd/nl/sc_underline.png +cmd/nl/sc_underlinesingle.png cmd/nl/sc_underline.png +cmd/pl/lc_bold.png cmd/fr/lc_bold.png +cmd/pl/lc_italic.png cmd/de/lc_italic.png +cmd/pl/lc_underlinesimple.png cmd/pl/lc_underline.png +cmd/pl/lc_underlinesingle.png cmd/pl/lc_underline.png +cmd/pl/sc_bold.png cmd/fr/sc_bold.png +cmd/pl/sc_italic.png cmd/de/sc_italic.png +cmd/pl/sc_underlinesimple.png cmd/pl/sc_underline.png +cmd/pl/sc_underlinesingle.png cmd/pl/sc_underline.png +cmd/pt-BR/lc_bold.png cmd/es/lc_bold.png +cmd/pt-BR/lc_underline.png cmd/es/lc_underline.png +cmd/pt-BR/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/pt-BR/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/pt-BR/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/pt-BR/sc_bold.png cmd/es/sc_bold.png +cmd/pt-BR/sc_underline.png cmd/es/sc_underline.png +cmd/pt-BR/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/pt-BR/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/pt-BR/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/pt/lc_bold.png cmd/es/lc_bold.png +cmd/pt/lc_underline.png cmd/es/lc_underline.png +cmd/pt/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/pt/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/pt/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/pt/sc_bold.png cmd/es/sc_bold.png +cmd/pt/sc_underline.png cmd/es/sc_underline.png +cmd/pt/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/pt/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/pt/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/ru/lc_italic.png cmd/de/lc_italic.png +cmd/ru/lc_underlinesimple.png cmd/ru/lc_underline.png +cmd/ru/lc_underlinesingle.png cmd/ru/lc_underline.png +cmd/ru/sc_italic.png cmd/de/sc_italic.png +cmd/ru/sc_underlinesimple.png cmd/ru/sc_underline.png +cmd/ru/sc_underlinesingle.png cmd/ru/sc_underline.png +cmd/sc_underlinesimple.png cmd/sc_underline.png +cmd/sc_underlinesingle.png cmd/sc_underline.png +cmd/sl/lc_underline.png cmd/pl/lc_underline.png +cmd/sl/lc_underlinedouble.png cmd/pl/lc_underlinedouble.png +cmd/sl/lc_underlinesimple.png cmd/pl/lc_underline.png +cmd/sl/lc_underlinesingle.png cmd/pl/lc_underline.png +cmd/sl/sc_underline.png cmd/pl/sc_underline.png +cmd/sl/sc_underlinedouble.png cmd/pl/sc_underlinedouble.png +cmd/sl/sc_underlinesimple.png cmd/pl/sc_underline.png +cmd/sl/sc_underlinesingle.png cmd/pl/sc_underline.png +cmd/sv/lc_bold.png cmd/de/lc_bold.png +cmd/sv/lc_italic.png cmd/de/lc_italic.png +cmd/sv/sc_bold.png cmd/de/sc_bold.png +cmd/sv/sc_italic.png cmd/de/sc_italic.png +cmd/tr/lc_bold.png cmd/sl/lc_bold.png +cmd/tr/lc_underline.png cmd/hu/lc_underline.png +cmd/tr/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png +cmd/tr/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/tr/lc_underlinesingle.png cmd/hu/lc_underline.png +cmd/tr/sc_bold.png cmd/sl/sc_bold.png +cmd/tr/sc_underline.png cmd/hu/sc_underline.png +cmd/tr/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png +cmd/tr/sc_underlinesimple.png cmd/hu/sc_underline.png +cmd/tr/sc_underlinesingle.png cmd/hu/sc_underline.png +cmd/ur/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png +cmd/ur/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png +cmd/ur/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png +cmd/ur/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/ur/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/ur/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png +cmd/ur/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png +cmd/ur/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png +cmd/ur/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png +cmd/ur/lc_deleterecord.png cmd/ar/lc_deleterecord.png +cmd/ur/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png +cmd/ur/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/ur/lc_linenumberingdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/ur/lc_newrecord.png cmd/ar/lc_newrecord.png +cmd/ur/lc_numberingstart.png cmd/ar/lc_numberingstart.png +cmd/ur/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/ur/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/ur/lc_recsave.png cmd/ar/lc_recsave.png +cmd/ur/lc_recundo.png cmd/lc_redo.png +cmd/ur/lc_redo.png cmd/lc_undo.png +cmd/ur/lc_removebullets.png cmd/ar/lc_removebullets.png +cmd/ur/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png +cmd/ur/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png +cmd/ur/lc_setoutline.png cmd/ar/lc_setoutline.png +cmd/ur/lc_undo.png cmd/lc_redo.png +cmd/ur/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png +cmd/ur/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png +cmd/ur/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png +cmd/ur/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/ur/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/ur/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png +cmd/ur/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png +cmd/ur/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png +cmd/ur/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png +cmd/ur/sc_deleterecord.png cmd/ar/sc_deleterecord.png +cmd/ur/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png +cmd/ur/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/ur/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/ur/sc_newrecord.png cmd/ar/sc_newrecord.png +cmd/ur/sc_numberingstart.png cmd/ar/sc_numberingstart.png +cmd/ur/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/ur/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/ur/sc_recsave.png cmd/ar/sc_recsave.png +cmd/ur/sc_recundo.png cmd/sc_redo.png +cmd/ur/sc_redo.png cmd/sc_undo.png +cmd/ur/sc_removebullets.png cmd/ar/sc_removebullets.png +cmd/ur/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png +cmd/ur/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png +cmd/ur/sc_setoutline.png cmd/ar/sc_setoutline.png +cmd/ur/sc_undo.png cmd/sc_redo.png + +# Template Menu +cmd/32/templatemenu.png cmd/32/adddirect.png +cmd/lc_templatemenu.png cmd/lc_adddirect.png +cmd/sc_templatemenu.png cmd/sc_adddirect.png + +# Animation +cmd/32/customanimation.png cmd/32/diaeffect.png +cmd/lc_customanimation.png cmd/lc_diaeffect.png +cmd/sc_customanimation.png cmd/sc_diaeffect.png + +# Media +cmd/32/datastreamsplay.png cmd/32/runbasic.png +cmd/32/datastreamsstop.png cmd/32/basicstop.png + +cmd/lc_datastreamsplay.png cmd/lc_runbasic.png +cmd/lc_datastreamsstop.png cmd/lc_basicstop.png + +cmd/sc_datastreamsplay.png cmd/sc_runbasic.png +cmd/sc_datastreamsstop.png cmd/sc_basicstop.png + +# Alignment +cmd/32/alignhorizontalceter.png cmd/32/alignhorizontalcenter.png +cmd/32/alignvcenter.png cmd/32/alignverticalcenter.png +cmd/32/objectalign.png cmd/32/objectalignleft.png +cmd/32/sectionalignbottom.png cmd/32/aligndown.png +cmd/32/sectionalignleft.png cmd/32/objectalignleft.png +cmd/32/sectionalignright.png cmd/32/objectalignright.png +cmd/32/sectionaligntop.png cmd/32/alignup.png + +cmd/lc_alignhorizontalceter.png cmd/lc_alignhorizontalcenter.png +cmd/lc_alignvcenter.png cmd/lc_alignverticalcenter.png +cmd/lc_objectalign.png cmd/lc_objectalignleft.png +cmd/lc_sectionalignbottom.png cmd/lc_aligndown.png +cmd/lc_sectionalignleft.png cmd/lc_objectalignleft.png +cmd/lc_sectionalignright.png cmd/lc_objectalignright.png +cmd/lc_sectionaligntop.png cmd/lc_alignup.png + +cmd/sc_alignhorizontalceter.png cmd/sc_alignhorizontalcenter.png +cmd/sc_alignvcenter.png cmd/sc_alignverticalcenter.png +cmd/sc_objectalign.png cmd/sc_objectalignleft.png +cmd/sc_sectionalignbottom.png cmd/sc_aligndown.png +cmd/sc_sectionalignleft.png cmd/sc_objectalignleft.png +cmd/sc_sectionalignright.png cmd/sc_objectalignright.png +cmd/sc_sectionaligntop.png cmd/sc_alignup.png + +# Graphic +cmd/32/colorview.png cmd/32/graphicfilterinvert.png +cmd/32/grafinvert.png cmd/32/graphicfilterinvert.png +cmd/32/grafmode.png cmd/32/graphicdialog.png + +cmd/lc_colorview.png cmd/lc_graphicfilterinvert.png +cmd/lc_grafinvert.png cmd/lc_graphicfilterinvert.png +cmd/lc_grafmode.png cmd/lc_graphicdialog.png + +cmd/sc_colorview.png cmd/sc_graphicfilterinvert.png +cmd/sc_grafinvert.png cmd/sc_graphicfilterinvert.png +cmd/sc_grafmode.png cmd/sc_graphicdialog.png + +# shapes +cmd/32/arrowshapes.left-right-arrow.png cmd/32/arrowshapes.png +cmd/32/basicshapes.circle-pie.png cmd/32/pie.png +cmd/32/basicshapes.circle.png cmd/32/circle.png +cmd/32/basicshapes.parallelogram.png cmd/32/flowchartshapes.flowchart-data.png +cmd/32/basicshapes.round-rectangle.png cmd/32/rect_rounded.png +cmd/32/calloutshapes.round-rectangular-callout.png cmd/32/calloutshapes.png +cmd/32/flowchartshapes.flowchart-alternate-process.png cmd/32/basicshapes.round-quadrat.png +cmd/32/flowchartshapes.flowchart-connector.png cmd/32/circle.png +cmd/32/flowchartshapes.flowchart-extract.png cmd/32/basicshapes.isosceles-triangle.png +cmd/32/flowchartshapes.flowchart-magnetic-disk.png cmd/32/basicshapes.can.png +cmd/32/flowchartshapes.flowchart-manual-operation.png cmd/32/basicshapes.trapezoid.png +cmd/32/flowchartshapes.flowchart-merge.png cmd/32/fontworkshapetype.fontwork-triangle-down.png +cmd/32/fontworkshapetype.fontwork-circle-pour.png cmd/32/basicshapes.ring.png +cmd/32/fontworkshapetype.fontwork-fade-down.png cmd/32/basicshapes.trapezoid.png +cmd/32/fontworkshapetype.fontwork-triangle-up.png cmd/32/basicshapes.isosceles-triangle.png +cmd/32/measureattributes.png cmd/32/measureline.png +cmd/32/symbolshapes.smiley.png cmd/32/symbolshapes.png + + +cmd/lc_arrowshapes.left-right-arrow.png cmd/lc_arrowshapes.png +cmd/lc_basicshapes.circle-pie.png cmd/lc_pie.png +cmd/lc_basicshapes.circle.png cmd/lc_circle.png +cmd/lc_basicshapes.parallelogram.png cmd/lc_flowchartshapes.flowchart-data.png +cmd/lc_basicshapes.round-rectangle.png cmd/lc_rect_rounded.png +cmd/lc_calloutshapes.round-rectangular-callout.png cmd/lc_calloutshapes.png +cmd/lc_flowchartshapes.flowchart-alternate-process.png cmd/lc_basicshapes.round-quadrat.png +cmd/lc_flowchartshapes.flowchart-connector.png cmd/lc_circle.png +cmd/lc_flowchartshapes.flowchart-extract.png cmd/lc_basicshapes.isosceles-triangle.png +cmd/lc_flowchartshapes.flowchart-magnetic-disk.png cmd/lc_basicshapes.can.png +cmd/lc_flowchartshapes.flowchart-manual-operation.png cmd/lc_basicshapes.trapezoid.png +cmd/lc_flowchartshapes.flowchart-merge.png cmd/lc_fontworkshapetype.fontwork-triangle-down.png +cmd/lc_fontworkshapetype.fontwork-circle-pour.png cmd/lc_basicshapes.ring.png +cmd/lc_fontworkshapetype.fontwork-fade-down.png cmd/lc_basicshapes.trapezoid.png +cmd/lc_fontworkshapetype.fontwork-triangle-up.png cmd/lc_basicshapes.isosceles-triangle.png +cmd/lc_measureattributes.png cmd/lc_measureline.png +cmd/lc_symbolshapes.smiley.png cmd/lc_symbolshapes.png + +cmd/sc_arrowshapes.left-right-arrow.png cmd/sc_arrowshapes.png +cmd/sc_basicshapes.circle-pie.png cmd/sc_pie.png +cmd/sc_basicshapes.circle.png cmd/sc_circle.png +cmd/sc_basicshapes.parallelogram.png cmd/sc_flowchartshapes.flowchart-data.png +cmd/sc_basicshapes.round-rectangle.png cmd/sc_rect_rounded.png +cmd/sc_calloutshapes.round-rectangular-callout.png cmd/sc_calloutshapes.png +cmd/sc_flowchartshapes.flowchart-alternate-process.png cmd/sc_basicshapes.round-quadrat.png +cmd/sc_flowchartshapes.flowchart-connector.png cmd/sc_circle.png +cmd/sc_flowchartshapes.flowchart-extract.png cmd/sc_basicshapes.isosceles-triangle.png +cmd/sc_flowchartshapes.flowchart-magnetic-disk.png cmd/sc_basicshapes.can.png +cmd/sc_flowchartshapes.flowchart-manual-operation.png cmd/sc_basicshapes.trapezoid.png +cmd/sc_flowchartshapes.flowchart-merge.png cmd/sc_fontworkshapetype.fontwork-triangle-down.png +cmd/sc_fontworkshapetype.fontwork-circle-pour.png cmd/sc_basicshapes.ring.png +cmd/sc_fontworkshapetype.fontwork-fade-down.png cmd/sc_basicshapes.trapezoid.png +cmd/sc_fontworkshapetype.fontwork-triangle-up.png cmd/sc_basicshapes.isosceles-triangle.png +cmd/sc_measureattributes.png cmd/sc_measureline.png +cmd/sc_symbolshapes.smiley.png cmd/sc_symbolshapes.png + +# Open +cmd/32/openfromwriter.png cmd/32/open.png +cmd/32/openfromcalc.png cmd/32/open.png + +cmd/lc_openfromwriter.png cmd/lc_open.png +cmd/lc_openfromcalc.png cmd/lc_open.png + +cmd/sc_openfromwriter.png cmd/sc_open.png +cmd/sc_openfromcalc.png cmd/sc_open.png + +# Mail Merge +cmd/32/dsbformletter.png cmd/32/mailmergewizard.png +cmd/lc_dsbformletter.png cmd/lc_mailmergewizard.png +cmd/sc_dsbformletter.png cmd/sc_mailmergewizard.png + +# Merge +cmd/32/mergedocument.png cmd/32/mergedocuments.png +cmd/lc_mergedocument.png cmd/lc_mergedocuments.png +cmd/sc_mergedocument.png cmd/sc_mergedocuments.png + +# Layout +cmd/32/attributepagesize.png cmd/32/ruler.png + +cmd/lc_attributepagesize.png cmd/lc_ruler.png + +cmd/sc_attributepagesize.png cmd/sc_ruler.png + +# Print +cmd/32/printpagepreview.png cmd/32/printpreview.png + +cmd/lc_printpagepreview.png cmd/lc_printpreview.png + +cmd/sc_printpagepreview.png cmd/sc_printpreview.png + +# Folder +cmd/32/open_h.png cmd/32/open.png + +cmd/lc_open_h.png cmd/lc_open.png + +cmd/sc_open_h.png cmd/sc_open.png + +# Wizard +cmd/32/commontaskbarvisible.png cmd/32/autopilotmenu.png +cmd/32/dbnewformautopilot.png cmd/32/autopilotmenu.png +cmd/32/dbnewqueryautopilot.png cmd/32/autopilotmenu.png +cmd/32/dbnewreportautopilot.png cmd/32/autopilotmenu.png +cmd/32/dbnewtableautopilot.png cmd/32/autopilotmenu.png +cmd/32/graphicfiltertoolbox.png cmd/32/autopilotmenu.png +cmd/32/usewizards.png cmd/32/autopilotmenu.png + +cmd/lc_commontaskbarvisible.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewformautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewqueryautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewreportautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewtableautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_graphicfiltertoolbox.png cmd/lc_autopilotmenu.png +cmd/lc_usewizards.png cmd/lc_autopilotmenu.png + +cmd/sc_commontaskbarvisible.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewformautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewqueryautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewreportautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewtableautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_graphicfiltertoolbox.png cmd/sc_autopilotmenu.png +cmd/sc_usewizards.png cmd/sc_autopilotmenu.png + +# Filter +cmd/32/autofilter.png cmd/32/datafilterautofilter.png +cmd/32/filtercrit.png cmd/32/datafilterstandardfilter.png +cmd/32/formfilter.png cmd/32/datafilterspecialfilter.png +cmd/32/formfilterexecute.png cmd/32/datafilterstandardfilter.png +cmd/32/removefilter.png cmd/32/removefiltersort.png + +cmd/lc_autofilter.png cmd/lc_datafilterautofilter.png +cmd/lc_filtercrit.png cmd/lc_datafilterstandardfilter.png +cmd/lc_formfilter.png cmd/lc_datafilterspecialfilter.png +cmd/lc_formfilterexecute.png cmd/lc_datafilterstandardfilter.png +cmd/lc_removefilter.png cmd/lc_removefiltersort.png + +cmd/sc_autofilter.png cmd/sc_datafilterautofilter.png +cmd/sc_filtercrit.png cmd/sc_datafilterstandardfilter.png +cmd/sc_formfilter.png cmd/sc_datafilterspecialfilter.png +cmd/sc_formfilterexecute.png cmd/sc_datafilterstandardfilter.png +cmd/sc_removefilter.png cmd/sc_removefiltersort.png + +# Bullets +cmd/32/bulletliststyle.png cmd/32/defaultbullet.png +cmd/32/defaultparastyle.png cmd/32/controlcodes.png +cmd/32/linenumberdialog.png cmd/32/linenumberingdialog.png +cmd/32/numberliststyle.png cmd/32/defaultnumbering.png +cmd/32/outlinebullet.png cmd/32/bulletsandnumberingdialog.png + +cmd/lc_bulletliststyle.png cmd/lc_defaultbullet.png +cmd/lc_defaultparastyle.png cmd/lc_controlcodes.png +cmd/lc_linenumberdialog.png cmd/lc_linenumberingdialog.png +cmd/lc_numberliststyle.png cmd/lc_defaultnumbering.png +cmd/lc_outlinebullet.png cmd/lc_bulletsandnumberingdialog.png + +cmd/sc_bulletliststyle.png cmd/sc_defaultbullet.png +cmd/sc_defaultparastyle.png cmd/sc_controlcodes.png +cmd/sc_linenumberdialog.png cmd/sc_linenumberingdialog.png +cmd/sc_numberliststyle.png cmd/sc_defaultnumbering.png +cmd/sc_outlinebullet.png cmd/sc_bulletsandnumberingdialog.png + +# Group +cmd/32/groupmenu.png cmd/32/formatgroup.png + +cmd/lc_groupmenu.png cmd/lc_formatgroup.png + +cmd/sc_groupmenu.png cmd/sc_formatgroup.png + +# Undo +cmd/32/recundo.png cmd/32/undo.png +cmd/lc_recundo.png cmd/lc_undo.png +cmd/sc_recundo.png cmd/sc_undo.png + +# Bezier +cmd/32/bezieredge.png cmd/32/bezierappend.png +cmd/lc_bezieredge.png cmd/lc_bezierappend.png +cmd/sc_bezieredge.png cmd/sc_bezierappend.png + +# Rotate +cmd/32/clickchangerotation.png cmd/32/toggleobjectrotatemode.png +cmd/lc_clickchangerotation.png cmd/lc_toggleobjectrotatemode.png +cmd/sc_clickchangerotation.png cmd/sc_toggleobjectrotatemode.png + +# AddField +cmd/32/fieldnames.png cmd/32/addfield.png +cmd/lc_fieldnames.png cmd/lc_addfield.png +cmd/sc_fieldnames.png cmd/sc_addfield.png + +# Edit +cmd/32/dsbeditdoc.png cmd/32/editdoc.png + +cmd/lc_dsbeditdoc.png cmd/lc_editdoc.png + +cmd/sc_dsbeditdoc.png cmd/sc_editdoc.png + +# Quit +cmd/32/closewin.png cmd/32/quit.png +cmd/lc_closewin.png cmd/lc_quit.png +cmd/sc_closewin.png cmd/sc_quit.png + +# Close +cmd/32/exitsearch.png cmd/32/closepreview.png +cmd/lc_exitsearch.png cmd/lc_closepreview.png +cmd/sc_exitsearch.png cmd/sc_closepreview.png + +# Cancel +cmd/32/no.png cmd/32/cancel.png +cmd/lc_no.png cmd/lc_cancel.png +cmd/sc_no.png cmd/sc_cancel.png + +# Page +cmd/32/insertobjctrl.png cmd/32/drawchart.png + +cmd/lc_insertobjctrl.png cmd/lc_drawchart.png + +cmd/sc_insertobjctrl.png cmd/sc_drawchart.png + +# Line +cmd/32/shapeslinemenu.png cmd/32/line.png +cmd/32/xlinestyle.png cmd/32/linestyle.png + +cmd/lc_shapeslinemenu.png cmd/lc_line.png +cmd/lc_xlinestyle.png cmd/lc_linestyle.png + +cmd/sc_shapeslinemenu.png cmd/sc_line.png +cmd/sc_xlinestyle.png cmd/sc_linestyle.png + +# Mail merge +cmd/32/mailmergefirstentry.png cmd/32/firstrecord.png +cmd/32/mailmergelastentry.png cmd/32/lastrecord.png +cmd/32/mailmergenextentry.png cmd/32/nextrecord.png +cmd/32/mailmergepreventry.png cmd/32/prevrecord.png + +cmd/lc_mailmergefirstentry.png cmd/lc_firstrecord.png +cmd/lc_mailmergelastentry.png cmd/lc_lastrecord.png +cmd/lc_mailmergenextentry.png cmd/lc_nextrecord.png +cmd/lc_mailmergepreventry.png cmd/lc_prevrecord.png + +cmd/sc_mailmergefirstentry.png cmd/sc_firstrecord.png +cmd/sc_mailmergelastentry.png cmd/sc_lastrecord.png +cmd/sc_mailmergenextentry.png cmd/sc_nextrecord.png +cmd/sc_mailmergepreventry.png cmd/sc_prevrecord.png + +# Arrows +cmd/32/arrowstoolbox.png cmd/32/linearrowend.png +cmd/lc_arrowstoolbox.png cmd/lc_linearrowend.png +cmd/sc_arrowstoolbox.png cmd/sc_linearrowend.png + +# < +cmd/32/browsebackward.png cmd/32/prevrecord.png +cmd/32/navigateback.png cmd/32/prevrecord.png +cmd/32/pageup.png cmd/32/previouspage.png + +cmd/lc_browsebackward.png cmd/lc_prevrecord.png +cmd/lc_navigateback.png cmd/lc_prevrecord.png +cmd/lc_pageup.png cmd/lc_previouspage.png + +cmd/sc_browsebackward.png cmd/sc_prevrecord.png +cmd/sc_navigateback.png cmd/sc_prevrecord.png +cmd/sc_pageup.png cmd/sc_previouspage.png + +# > +cmd/32/navigateforward.png cmd/32/nextrecord.png +cmd/32/pagedown.png cmd/32/nextpage.png + +cmd/lc_navigateforward.png cmd/lc_nextrecord.png +cmd/lc_pagedown.png cmd/lc_nextpage.png + +cmd/sc_navigateforward.png cmd/sc_nextrecord.png +cmd/sc_pagedown.png cmd/sc_nextpage.png + +# >| +cmd/32/gotoendofpage.png cmd/32/lastpage.png + +cmd/lc_gotoendofpage.png cmd/lc_lastpage.png + +cmd/sc_gotoendofpage.png cmd/sc_lastpage.png + +# |< +cmd/32/gotostartofpage.png cmd/32/firstpage.png + +cmd/lc_gotostartofpage.png cmd/lc_firstpage.png + +cmd/sc_gotostartofpage.png cmd/sc_firstpage.png + +# Hyperlink +cmd/32/hyperlinkdialog.png cmd/32/inserthyperlink.png +cmd/lc_hyperlinkdialog.png cmd/lc_inserthyperlink.png +cmd/sc_hyperlinkdialog.png cmd/sc_inserthyperlink.png + +# Spellcheck +cmd/32/spelldialog.png cmd/32/spelling.png +cmd/32/spellingandgrammardialog.png cmd/32/spelling.png + +cmd/lc_spelldialog.png cmd/lc_spelling.png +cmd/lc_spellingandgrammardialog.png cmd/lc_spelling.png + +cmd/sc_spelldialog.png cmd/sc_spelling.png +cmd/sc_spellingandgrammardialog.png cmd/sc_spelling.png + +# Color +cmd/32/backgroundpatterncontroller.png cmd/32/backgroundcolor.png +cmd/32/characterbackgroundpattern.png cmd/32/backcolor.png +cmd/32/fillcolor.png cmd/32/backgroundcolor.png +cmd/32/fillstyle.png cmd/32/backgroundcolor.png +cmd/32/fontcolor.png cmd/32/color.png +cmd/32/formatarea.png cmd/32/backgroundcolor.png +cmd/32/tablecellbackgroundcolor.png cmd/32/backgroundcolor.png + +cmd/lc_backgroundpatterncontroller.png cmd/lc_backgroundcolor.png +cmd/lc_characterbackgroundpattern.png cmd/lc_backcolor.png +cmd/lc_fillcolor.png cmd/lc_backgroundcolor.png +cmd/lc_fillstyle.png cmd/lc_backgroundcolor.png +cmd/lc_fontcolor.png cmd/lc_color.png +cmd/lc_formatarea.png cmd/lc_backgroundcolor.png +cmd/lc_tablecellbackgroundcolor.png cmd/lc_backgroundcolor.png + +cmd/sc_backgroundpatterncontroller.png cmd/sc_backgroundcolor.png +cmd/sc_characterbackgroundpattern.png cmd/sc_backcolor.png +cmd/sc_fillcolor.png cmd/sc_backgroundcolor.png +cmd/sc_fillstyle.png cmd/sc_backgroundcolor.png +cmd/sc_fontcolor.png cmd/sc_color.png +cmd/sc_formatarea.png cmd/sc_backgroundcolor.png +cmd/sc_tablecellbackgroundcolor.png cmd/sc_backgroundcolor.png + +# Paragraph Alignment +cmd/32/centerpara.png cmd/32/alignhorizontalcenter.png +cmd/32/fontworkalignmentfloater.png cmd/32/alignhorizontalcenter.png +cmd/32/justifypara.png cmd/32/alignblock.png +cmd/32/leftpara.png cmd/32/alignleft.png +cmd/32/rightpara.png cmd/32/alignright.png + +cmd/lc_centerpara.png cmd/lc_alignhorizontalcenter.png +cmd/lc_fontworkalignmentfloater.png cmd/lc_alignhorizontalcenter.png +cmd/lc_justifypara.png cmd/lc_alignblock.png +cmd/lc_leftpara.png cmd/lc_alignleft.png +cmd/lc_rightpara.png cmd/lc_alignright.png + +cmd/sc_centerpara.png cmd/sc_alignhorizontalcenter.png +cmd/sc_fontworkalignmentfloater.png cmd/sc_alignhorizontalcenter.png +cmd/sc_justifypara.png cmd/sc_alignblock.png +cmd/sc_leftpara.png cmd/sc_alignleft.png +cmd/sc_rightpara.png cmd/sc_alignright.png + +# Thesaurus +cmd/32/thesaurusdialog.png cmd/32/thesaurus.png +cmd/lc_thesaurusdialog.png cmd/lc_thesaurus.png +cmd/sc_thesaurusdialog.png cmd/sc_thesaurus.png + +# View +cmd/32/availabletoolbars.png cmd/32/showtoolbar.png +cmd/32/sidebarmenu.png cmd/32/sidebar.png +cmd/32/toolbarsmenu.png cmd/32/showtoolbar.png +cmd/lc_availabletoolbars.png cmd/lc_showtoolbar.png +cmd/lc_sidebarmenu.png cmd/lc_sidebar.png +cmd/lc_toolbarsmenu.png cmd/lc_showtoolbar.png +cmd/sc_availabletoolbars.png cmd/sc_showtoolbar.png +cmd/sc_sidebarmenu.png cmd/sc_sidebar.png +cmd/sc_toolbarsmenu.png cmd/sc_showtoolbar.png + +# Vertical Text Alignment +cmd/32/cellvertbottom.png cmd/32/alignbottom.png +cmd/32/cellvertcenter.png cmd/32/alignverticalcenter.png +cmd/32/cellverttop.png cmd/32/aligntop.png +cmd/32/commonalignbottom.png cmd/32/alignbottom.png +cmd/32/commonalignhorizontalcenter.png cmd/32/alignhorizontalcenter.png +cmd/32/commonalignjustified.png cmd/32/alignblock.png +cmd/32/commonalignleft.png cmd/32/alignleft.png +cmd/32/commonalignright.png cmd/32/alignright.png +cmd/32/commonaligntop.png cmd/32/aligntop.png +cmd/32/commonalignverticalcenter.png cmd/32/alignverticalcenter.png + +cmd/lc_cellvertbottom.png cmd/lc_alignbottom.png +cmd/lc_cellvertcenter.png cmd/lc_alignverticalcenter.png +cmd/lc_cellverttop.png cmd/lc_aligntop.png +cmd/lc_commonalignbottom.png cmd/lc_alignbottom.png +cmd/lc_commonalignhorizontalcenter.png cmd/lc_alignhorizontalcenter.png +cmd/lc_commonalignjustified.png cmd/lc_alignblock.png +cmd/lc_commonalignleft.png cmd/lc_alignleft.png +cmd/lc_commonalignright.png cmd/lc_alignright.png +cmd/lc_commonaligntop.png cmd/lc_aligntop.png +cmd/lc_commonalignverticalcenter.png cmd/lc_alignverticalcenter.png + +cmd/sc_cellvertbottom.png cmd/sc_alignbottom.png +cmd/sc_cellvertcenter.png cmd/sc_alignverticalcenter.png +cmd/sc_cellverttop.png cmd/sc_aligntop.png +cmd/sc_commonalignbottom.png cmd/sc_alignbottom.png +cmd/sc_commonalignhorizontalcenter.png cmd/sc_alignhorizontalcenter.png +cmd/sc_commonalignjustified.png cmd/sc_alignblock.png +cmd/sc_commonalignleft.png cmd/sc_alignleft.png +cmd/sc_commonalignright.png cmd/sc_alignright.png +cmd/sc_commonaligntop.png cmd/sc_aligntop.png +cmd/sc_commonalignverticalcenter.png cmd/sc_alignverticalcenter.png + +# paragraph line spacing drop down +cmd/32/linespacing.png cmd/32/spacepara15.png +cmd/lc_linespacing.png cmd/lc_spacepara15.png +cmd/sc_linespacing.png cmd/sc_spacepara15.png + +# calc menu entries +cmd/32/cellcontentsmenu.png cmd/32/calculate.png +cmd/32/chartmenu.png cmd/32/drawchart.png +cmd/32/datapilotmenu.png cmd/32/datadatapilotrun.png +cmd/32/editselectmenu.png cmd/32/selecttables.png +cmd/32/fieldmenu.png cmd/32/insertfieldctrl.png +cmd/32/functionbox.png cmd/32/dbviewfunctions.png +cmd/32/functiondialog.png cmd/32/dbviewfunctions.png +cmd/32/groupoutlinemenu.png cmd/32/autooutline.png +cmd/32/insertanchor.png cmd/32/insertbookmark.png +cmd/32/insertcell.png cmd/32/insertcellsright.png +cmd/32/insertcolumnsmenu.png cmd/32/insertcolumns.png +cmd/32/insertpivottable.png cmd/32/datadatapilotrun.png +cmd/32/insertrowsmenu.png cmd/32/insertrows.png +cmd/32/mergecellsmenu.png cmd/32/togglemergecells.png +cmd/32/navigatemenu.png cmd/32/navigator.png +cmd/32/numberformatmenu.png cmd/32/numberformatstandard.png +cmd/32/objectmenu.png cmd/32/insertobject.png +cmd/32/printrangesmenu.png cmd/32/defineprintarea.png +cmd/32/selectcolumn.png cmd/32/entirecolumn.png +cmd/32/selectdata.png cmd/32/selectdb.png +cmd/32/selectrow.png cmd/32/entirerow.png +cmd/32/sheetcommentmenu.png cmd/32/shownote.png +cmd/32/toolsformsmenu.png cmd/32/dbviewforms.png + +cmd/lc_cellcontentsmenu.png cmd/lc_calculate.png +cmd/lc_chartmenu.png cmd/lc_drawchart.png +cmd/lc_datapilotmenu.png cmd/lc_datadatapilotrun.png +cmd/lc_editselectmenu.png cmd/lc_selecttables.png +cmd/lc_fieldmenu.png cmd/lc_insertfieldctrl.png +cmd/lc_functionbox.png cmd/lc_dbviewfunctions.png +cmd/lc_functiondialog.png cmd/lc_dbviewfunctions.png +cmd/lc_groupoutlinemenu.png cmd/lc_autooutline.png +cmd/lc_insertanchor.png cmd/lc_insertbookmark.png +cmd/lc_insertcell.png cmd/lc_insertcellsright.png +cmd/lc_insertcolumnsmenu.png cmd/lc_insertcolumns.png +cmd/lc_insertpivottable.png cmd/lc_datadatapilotrun.png +cmd/lc_insertrowsmenu.png cmd/lc_insertrows.png +cmd/lc_mergecellsmenu.png cmd/lc_togglemergecells.png +cmd/lc_navigatemenu.png cmd/lc_navigator.png +cmd/lc_numberformatmenu.png cmd/lc_numberformatstandard.png +cmd/lc_objectmenu.png cmd/lc_insertobject.png +cmd/lc_printrangesmenu.png cmd/lc_defineprintarea.png +cmd/lc_selectcolumn.png cmd/lc_entirecolumn.png +cmd/lc_selectdata.png cmd/lc_selectdb.png +cmd/lc_selectrow.png cmd/lc_entirerow.png +cmd/lc_sheetcommentmenu.png cmd/lc_shownote.png +cmd/lc_toolsformsmenu.png cmd/lc_dbviewforms.png + +cmd/sc_cellcontentsmenu.png cmd/sc_calculate.png +cmd/sc_chartmenu.png cmd/sc_drawchart.png +cmd/sc_datapilotmenu.png cmd/sc_datadatapilotrun.png +cmd/sc_editselectmenu.png cmd/sc_selecttables.png +cmd/sc_fieldmenu.png cmd/sc_insertfieldctrl.png +cmd/sc_functionbox.png cmd/sc_dbviewfunctions.png +cmd/sc_functiondialog.png cmd/sc_dbviewfunctions.png +cmd/sc_groupoutlinemenu.png cmd/sc_autooutline.png +cmd/sc_insertanchor.png cmd/sc_insertbookmark.png +cmd/sc_insertcell.png cmd/sc_insertcellsright.png +cmd/sc_insertcolumnsmenu.png cmd/sc_insertcolumns.png +cmd/sc_insertpivottable.png cmd/sc_datadatapilotrun.png +cmd/sc_insertrowsmenu.png cmd/sc_insertrows.png +cmd/sc_mergecellsmenu.png cmd/sc_togglemergecells.png +cmd/sc_navigatemenu.png cmd/sc_navigator.png +cmd/sc_numberformatmenu.png cmd/sc_numberformatstandard.png +cmd/sc_objectmenu.png cmd/sc_insertobject.png +cmd/sc_printrangesmenu.png cmd/sc_defineprintarea.png +cmd/sc_selectcolumn.png cmd/sc_entirecolumn.png +cmd/sc_selectdata.png cmd/sc_selectdb.png +cmd/sc_selectrow.png cmd/sc_entirerow.png +cmd/sc_sheetcommentmenu.png cmd/sc_shownote.png +cmd/sc_toolsformsmenu.png cmd/sc_dbviewforms.png + +# Shapes +cmd/32/basicshapes.ellipse.png cmd/32/ellipse.png +cmd/32/basicshapes.png cmd/32/basicshapes.diamond.png +cmd/32/basicshapes.rectangle.png cmd/32/rect.png +cmd/32/ellipsetoolbox.png cmd/32/ellipse.png +cmd/32/linetoolbox.png cmd/32/freeline_unfilled.png +cmd/32/rectangletoolbox.png cmd/32/rect.png + +cmd/lc_basicshapes.ellipse.png cmd/lc_ellipse.png +cmd/lc_basicshapes.png cmd/lc_basicshapes.diamond.png +cmd/lc_basicshapes.rectangle.png cmd/lc_rect.png +cmd/lc_ellipsetoolbox.png cmd/lc_ellipse.png +cmd/lc_linetoolbox.png cmd/lc_freeline_unfilled.png +cmd/lc_rectangletoolbox.png cmd/lc_rect.png + +cmd/sc_basicshapes.ellipse.png cmd/sc_ellipse.png +cmd/sc_basicshapes.png cmd/sc_basicshapes.diamond.png +cmd/sc_basicshapes.rectangle.png cmd/sc_rect.png +cmd/sc_ellipsetoolbox.png cmd/sc_ellipse.png +cmd/sc_linetoolbox.png cmd/sc_freeline_unfilled.png +cmd/sc_rectangletoolbox.png cmd/sc_rect.png + +# Format +cmd/32/insertcurrentdate.png cmd/32/datefield.png +cmd/32/insertcurrenttime.png cmd/32/timefield.png +cmd/32/insertobjectchartfromfile.png cmd/32/drawchart.png +cmd/32/pageformatdialog.png cmd/32/pagedialog.png + +cmd/lc_insertcurrentdate.png cmd/lc_datefield.png +cmd/lc_insertcurrenttime.png cmd/lc_timefield.png +cmd/lc_insertobjectchartfromfile.png cmd/lc_drawchart.png +cmd/lc_pageformatdialog.png cmd/lc_pagedialog.png + +cmd/sc_insertcurrentdate.png cmd/sc_datefield.png +cmd/sc_insertcurrenttime.png cmd/sc_timefield.png +cmd/sc_insertobjectchartfromfile.png cmd/sc_drawchart.png +cmd/sc_pageformatdialog.png cmd/sc_pagedialog.png + +# Notebookbar +cmd/32/datafilterhideautofilter.png cmd/32/removefiltersort.png +cmd/32/headerandfooter.png cmd/32/editheaderandfooter.png +cmd/32/insertheaderfootermenu.png cmd/32/editheaderandfooter.png +cmd/32/insertsignatureline.png cmd/32/signaturelinedialog.png + +cmd/lc_datafilterhideautofilter.png cmd/lc_removefiltersort.png +cmd/lc_headerandfooter.png cmd/lc_editheaderandfooter.png +cmd/lc_insertheaderfootermenu.png cmd/lc_editheaderandfooter.png +cmd/lc_insertsignatureline.png cmd/lc_signaturelinedialog.png + +cmd/sc_datafilterhideautofilter.png cmd/sc_removefiltersort.png +cmd/sc_headerandfooter.png cmd/sc_editheaderandfooter.png +cmd/sc_insertheaderfootermenu.png cmd/sc_editheaderandfooter.png +cmd/sc_insertsignatureline.png cmd/sc_signaturelinedialog.png + +# Ok +cmd/32/apply.png cmd/32/ok.png +cmd/32/yes.png cmd/32/ok.png + +cmd/lc_apply.png cmd/lc_ok.png +cmd/lc_yes.png cmd/lc_ok.png + +cmd/sc_apply.png cmd/sc_ok.png +cmd/sc_yes.png cmd/sc_ok.png + +# Find Toolbar +cmd/32/findbar.png cmd/32/recsearch.png +cmd/32/scrolltonext.png cmd/32/downsearch.png +cmd/32/scrolltoprevious.png cmd/32/upsearch.png + +cmd/lc_findbar.png cmd/lc_recsearch.png +cmd/lc_scrolltonext.png cmd/lc_downsearch.png +cmd/lc_scrolltoprevious.png cmd/lc_upsearch.png + +cmd/sc_findbar.png cmd/sc_recsearch.png +cmd/sc_scrolltonext.png cmd/sc_downsearch.png +cmd/sc_scrolltoprevious.png cmd/sc_upsearch.png + +# File Menu +cmd/32/exportasmenu.png cmd/32/exportto.png +cmd/32/exporttoepub.png cmd/32/exportdirecttoepub.png +cmd/32/exporttopdf.png cmd/32/exportdirecttopdf.png +cmd/32/templatemenu.png cmd/32/templatemanager.png + +cmd/lc_exportasmenu.png cmd/lc_exportto.png +cmd/lc_exporttoepub.png cmd/lc_exportdirecttoepub.png +cmd/lc_exporttopdf.png cmd/lc_exportdirecttopdf.png +cmd/lc_templatemenu.png cmd/lc_templatemanager.png + +cmd/sc_exportasmenu.png cmd/sc_exportto.png +cmd/sc_exporttoepub.png cmd/sc_exportdirecttoepub.png +cmd/sc_exporttopdf.png cmd/sc_exportdirecttopdf.png +cmd/sc_templatemenu.png cmd/sc_templatemanager.png + +# Edit Menu +cmd/32/editlinksmenu.png cmd/32/insertreferencefield.png +cmd/lc_editlinksmenu.png cmd/lc_insertreferencefield.png +cmd/sc_editlinksmenu.png cmd/sc_insertreferencefield.png + +# Square +cmd/32/basicshapes.quadrat.png cmd/32/square.png +cmd/32/flowchartshapes.flowchart-process.png cmd/32/square.png + +cmd/lc_basicshapes.quadrat.png cmd/lc_square.png +cmd/lc_flowchartshapes.flowchart-process.png cmd/lc_square.png + +cmd/sc_basicshapes.quadrat.png cmd/sc_square.png +cmd/sc_flowchartshapes.flowchart-process.png cmd/sc_square.png + +# Sort +cmd/32/ordercrit.png cmd/32/datasort.png +cmd/32/sortdialog.png cmd/32/datasort.png +cmd/32/sortdown.png cmd/32/sortdescending.png +cmd/32/sortup.png cmd/32/sortascending.png +cmd/32/tablesort.png cmd/32/sortascending.png + +cmd/lc_ordercrit.png cmd/lc_datasort.png +cmd/lc_sortdialog.png cmd/lc_datasort.png +cmd/lc_sortdown.png cmd/lc_sortdescending.png +cmd/lc_sortup.png cmd/lc_sortascending.png +cmd/lc_tablesort.png cmd/lc_sortascending.png + +cmd/sc_ordercrit.png cmd/sc_datasort.png +cmd/sc_sortdialog.png cmd/sc_datasort.png +cmd/sc_sortdown.png cmd/sc_sortdescending.png +cmd/sc_sortup.png cmd/sc_sortascending.png +cmd/sc_tablesort.png cmd/sc_sortascending.png + +# Code +cmd/32/sourceview.png cmd/32/symbolshapes.brace-pair.png +cmd/lc_sourceview.png cmd/lc_symbolshapes.brace-pair.png +cmd/sc_sourceview.png cmd/sc_symbolshapes.brace-pair.png + +# Config +cmd/32/formatselection.png cmd/32/configuredialog.png +cmd/lc_formatselection.png cmd/lc_configuredialog.png +cmd/sc_formatselection.png cmd/sc_configuredialog.png + +# Hyphenation +cmd/32/hyphenation.png cmd/32/hyphenate.png +cmd/lc_hyphenation.png cmd/lc_hyphenate.png +cmd/sc_hyphenation.png cmd/sc_hyphenate.png + +# Currency +cmd/32/numberformatcurrency.png cmd/32/currencyfield.png +cmd/32/numberformatcurrencysimple.png cmd/32/currencyfield.png + +cmd/lc_numberformatcurrency.png cmd/lc_currencyfield.png +cmd/lc_numberformatcurrencysimple.png cmd/lc_currencyfield.png + +cmd/sc_numberformatcurrency.png cmd/sc_currencyfield.png +cmd/sc_numberformatcurrencysimple.png cmd/sc_currencyfield.png + +# Fontwork +cmd/32/fontworkshapetype.png cmd/32/fontwork.png +cmd/lc_fontworkshapetype.png cmd/lc_fontwork.png +cmd/sc_fontworkshapetype.png cmd/sc_fontwork.png + +# Ruler +cmd/32/rulermenu.png cmd/32/ruler.png +cmd/32/showruler.png cmd/32/ruler.png + +cmd/lc_rulermenu.png cmd/lc_ruler.png +cmd/lc_showruler.png cmd/lc_ruler.png + +cmd/sc_rulermenu.png cmd/sc_ruler.png +cmd/sc_showruler.png cmd/sc_ruler.png + +# Graphic Quality Color +cmd/32/outputqualitycolor.png cmd/32/insertgraphic.png +cmd/lc_outputqualitycolor.png cmd/lc_insertgraphic.png +cmd/sc_outputqualitycolor.png cmd/sc_insertgraphic.png + +# Show Formula +cmd/32/toggleformula.png cmd/32/dbviewfunctions.png +cmd/lc_toggleformula.png cmd/lc_dbviewfunctions.png +cmd/sc_toggleformula.png cmd/sc_dbviewfunctions.png + +# Axis +cmd/32/toggleaxisdescr.png cmd/32/helplinesvisible.png +cmd/lc_toggleaxisdescr.png cmd/lc_helplinesvisible.png +cmd/sc_toggleaxisdescr.png cmd/sc_helplinesvisible.png + +# Grid +cmd/32/gridmenu.png cmd/32/gridvisible.png +cmd/32/insertgridcontrol.png cmd/32/grid.png + +cmd/lc_gridmenu.png cmd/lc_gridvisible.png +cmd/lc_insertgridcontrol.png cmd/lc_grid.png + +cmd/sc_gridmenu.png cmd/sc_gridvisible.png +cmd/sc_insertgridcontrol.png cmd/sc_grid.png + +# Crop +cmd/32/grafattrcrop.png cmd/32/crop.png +cmd/lc_grafattrcrop.png cmd/lc_crop.png +cmd/sc_grafattrcrop.png cmd/sc_crop.png + +# Extrusion Rotate +cmd/32/rulerrows.png cmd/32/extrusiontiltleft.png +cmd/32/rulerrowsvertical.png cmd/32/extrusiontiltright.png + +cmd/lc_rulerrows.png cmd/lc_extrusiontiltleft.png +cmd/lc_rulerrowsvertical.png cmd/lc_extrusiontiltright.png + +cmd/sc_rulerrows.png cmd/sc_extrusiontiltleft.png +cmd/sc_rulerrowsvertical.png cmd/sc_extrusiontiltright.png + +# Light +svx/res/lightofffrombottom_22.png svx/res/light.png +svx/res/lightofffrombottomleft_22.png svx/res/light.png +svx/res/lightofffrombottomright_22.png svx/res/light.png +svx/res/lightofffromleft_22.png svx/res/light.png +svx/res/lightofffromright_22.png svx/res/light.png +svx/res/lightofffromtop_22.png svx/res/light.png +svx/res/lightofffromtopleft_22.png svx/res/light.png +svx/res/lightofffromtopright_22.png svx/res/light.png +svx/res/lightonfrombottom_22.png svx/res/lighton.png +svx/res/lightonfrombottomleft_22.png svx/res/lighton.png +svx/res/lightonfrombottomright_22.png svx/res/lighton.png +svx/res/lightonfromleft_22.png svx/res/lighton.png +svx/res/lightonfromright_22.png svx/res/lighton.png +svx/res/lightonfromtop_22.png svx/res/lighton.png +svx/res/lightonfromtopleft_22.png svx/res/lighton.png +svx/res/lightonfromtopright_22.png svx/res/lighton.png +svx/res/legtyp1.png cmd/sc_calloutshapes.line-callout-3.png +svx/res/legtyp2.png cmd/sc_calloutshapes.line-callout-1.png +svx/res/legtyp3.png cmd/sc_calloutshapes.line-callout-2.png + +# 3d +svx/res/3dgeo.png cmd/sc_diagramaxisxyz.png +svx/res/3drepres.png cmd/sc_fillshadow.png +svx/res/3dtextur.png cmd/sc_graphicfilterpopart.png +svx/res/3dlight.png svx/res/lighton.png +svx/res/objects.png cmd/sc_objectcatalog.png + +# Presentation +cmd/32/diaauto.png cmd/32/dia.png +cmd/lc_diaauto.png cmd/lc_dia.png +cmd/sc_diaauto.png cmd/sc_dia.png + +# Style +cmd/32/editstyled.png cmd/32/editstyle.png +cmd/32/loadstyles.png cmd/32/open.png +cmd/32/viewsidebarstyles.png cmd/32/designerdialog.png + +cmd/lc_editstyled.png cmd/lc_editstyle.png +cmd/lc_loadstyles.png cmd/lc_open.png +cmd/lc_viewsidebarstyles.png cmd/lc_designerdialog.png + +cmd/sc_editstyled.png cmd/sc_editstyle.png +cmd/sc_loadstyles.png cmd/sc_open.png +cmd/sc_viewsidebarstyles.png cmd/sc_designerdialog.png + +# Outline +cmd/32/outlinedown.png cmd/32/movedown.png +cmd/32/outlineleft.png cmd/32/incrementlevel.png +cmd/32/outlineright.png cmd/32/decrementlevel.png +cmd/32/outlineup.png cmd/32/moveup.png + +cmd/lc_outlinedown.png cmd/lc_movedown.png +cmd/lc_outlineleft.png cmd/lc_incrementlevel.png +cmd/lc_outlineright.png cmd/lc_decrementlevel.png +cmd/lc_outlineup.png cmd/lc_moveup.png + +cmd/sc_outlinedown.png cmd/sc_movedown.png +cmd/sc_outlineleft.png cmd/sc_incrementlevel.png +cmd/sc_outlineright.png cmd/sc_decrementlevel.png +cmd/sc_outlineup.png cmd/sc_moveup.png + +# Index +cmd/32/indexesmenu.png cmd/32/insertindexesentry.png +cmd/32/insertfootnotesmenu.png cmd/32/insertfootnote.png + +cmd/lc_indexesmenu.png cmd/lc_insertindexesentry.png +cmd/lc_insertfootnotesmenu.png cmd/lc_insertfootnote.png + +cmd/sc_indexesmenu.png cmd/sc_insertindexesentry.png +cmd/sc_insertfootnotesmenu.png cmd/sc_insertfootnote.png + +# Mirror +cmd/32/fliphorizontal.png cmd/32/mirror.png +cmd/32/flipmenu.png cmd/32/mirror.png +cmd/32/flipvertical.png cmd/32/mirrorvert.png +cmd/32/mirrorhorz.png cmd/32/mirror.png +cmd/32/objectmirrorhorizontal.png cmd/32/mirror.png +cmd/32/objectmirrorvertical.png cmd/32/mirrorvert.png + +cmd/lc_fliphorizontal.png cmd/lc_mirror.png +cmd/lc_flipmenu.png cmd/lc_mirror.png +cmd/lc_flipvertical.png cmd/lc_mirrorvert.png +cmd/lc_mirrorhorz.png cmd/lc_mirror.png +cmd/lc_objectmirrorhorizontal.png cmd/lc_mirror.png +cmd/lc_objectmirrorvertical.png cmd/lc_mirrorvert.png + +cmd/sc_fliphorizontal.png cmd/sc_mirror.png +cmd/sc_flipmenu.png cmd/sc_mirror.png +cmd/sc_flipvertical.png cmd/sc_mirrorvert.png +cmd/sc_mirrorhorz.png cmd/sc_mirror.png +cmd/sc_objectmirrorhorizontal.png cmd/sc_mirror.png +cmd/sc_objectmirrorvertical.png cmd/sc_mirrorvert.png + +# Connector +cmd/32/connectorcircles.png cmd/32/connector.png +cmd/32/connectorcurvecircles.png cmd/32/connectorcurve.png +cmd/32/connectorlinecircles.png cmd/32/connectorline.png +cmd/32/connectorlinescircles.png cmd/32/connector.png +cmd/32/connectortoolbox.png cmd/32/connector.png + +cmd/lc_connectorcircles.png cmd/lc_connector.png +cmd/lc_connectorcurvecircles.png cmd/lc_connectorcurve.png +cmd/lc_connectorlinecircles.png cmd/lc_connectorline.png +cmd/lc_connectorlinescircles.png cmd/lc_connector.png +cmd/lc_connectortoolbox.png cmd/lc_connector.png + +cmd/sc_connectorcircles.png cmd/sc_connector.png +cmd/sc_connectorcurvecircles.png cmd/sc_connectorcurve.png +cmd/sc_connectorlinecircles.png cmd/sc_connectorline.png +cmd/sc_connectorlinescircles.png cmd/sc_connector.png +cmd/sc_connectortoolbox.png cmd/sc_connector.png + +# Time +cmd/32/numberformattime.png cmd/32/timefield.png +cmd/32/rehearsetimings.png cmd/32/diatime.png +cmd/lc_numberformattime.png cmd/lc_timefield.png +cmd/lc_rehearsetimings.png cmd/lc_diatime.png +cmd/sc_numberformattime.png cmd/sc_timefield.png +cmd/sc_rehearsetimings.png cmd/sc_diatime.png + +# Arrange +cmd/32/arrangeframemenu.png cmd/32/bringtofront.png +cmd/32/arrangemenu.png cmd/32/bringtofront.png + +cmd/lc_arrangeframemenu.png cmd/lc_bringtofront.png +cmd/lc_arrangemenu.png cmd/lc_bringtofront.png + +cmd/sc_arrangeframemenu.png cmd/sc_bringtofront.png +cmd/sc_arrangemenu.png cmd/sc_bringtofront.png + +# Reload +cmd/32/draw.png cmd/32/reload.png +cmd/32/refresh.png cmd/32/reload.png +cmd/32/repaginate.png cmd/32/insertpagenumberfield.png +cmd/32/updateall.png cmd/32/reload.png +cmd/32/updateallindexes.png cmd/32/insertmultiindex.png +cmd/32/updatealllinks.png cmd/32/inserthyperlink.png +cmd/32/updatecharts.png cmd/32/drawchart.png +cmd/32/updatefields.png cmd/32/addfield.png +cmd/32/updatemenu.png cmd/32/reload.png + +cmd/lc_draw.png cmd/lc_reload.png +cmd/lc_refresh.png cmd/lc_reload.png +cmd/lc_repaginate.png cmd/lc_insertpagenumberfield.png +cmd/lc_updateall.png cmd/lc_reload.png +cmd/lc_updateallindexes.png cmd/lc_insertmultiindex.png +cmd/lc_updatealllinks.png cmd/lc_inserthyperlink.png +cmd/lc_updatecharts.png cmd/lc_drawchart.png +cmd/lc_updatefields.png cmd/lc_addfield.png +cmd/lc_updatemenu.png cmd/lc_reload.png + +cmd/sc_draw.png cmd/sc_reload.png +cmd/sc_refresh.png cmd/sc_reload.png +cmd/sc_repaginate.png cmd/sc_insertpagenumberfield.png +cmd/sc_updateall.png cmd/sc_reload.png +cmd/sc_updateallindexes.png cmd/sc_insertmultiindex.png +cmd/sc_updatealllinks.png cmd/sc_inserthyperlink.png +cmd/sc_updatecharts.png cmd/sc_drawchart.png +cmd/sc_updatefields.png cmd/sc_addfield.png +cmd/sc_updatemenu.png cmd/sc_reload.png + +# Select +cmd/32/drawselect.png cmd/32/selectobject.png +cmd/32/selectmode.png cmd/32/selectobject.png + +cmd/lc_drawselect.png cmd/lc_selectobject.png +cmd/lc_selectmode.png cmd/lc_selectobject.png + +cmd/sc_drawselect.png cmd/sc_selectobject.png +cmd/sc_selectmode.png cmd/sc_selectobject.png + +# Database +cmd/32/dbdtableedit.png cmd/32/dbtableedit.png + +cmd/lc_dbdtableedit.png cmd/lc_dbtableedit.png + +cmd/sc_dbdtableedit.png cmd/sc_dbtableedit.png + +# Browse +cmd/32/browsebackward cmd/32/prevrecord.png +cmd/32/browseforward.png cmd/32/nextrecord.png + +cmd/lc_browsebackward cmd/lc_prevrecord.png +cmd/lc_browseforward.png cmd/lc_nextrecord.png + +cmd/sc_browsebackward cmd/lc_prevrecord.png +cmd/sc_browseforward.png cmd/sc_nextrecord.png + +# Macro + +cmd/32/insertscript.png cmd/32/choosemacro.png +cmd/32/macrodialog.png cmd/32/scriptorganizer.png +cmd/32/macroorganizer.png cmd/32/scriptorganizer.png +cmd/32/macrosmenu.png cmd/32/choosemacro.png +cmd/32/toolsmacroedit.png cmd/32/basicideappear.png + +cmd/lc_insertscript.png cmd/lc_choosemacro.png +cmd/lc_macrodialog.png cmd/lc_scriptorganizer.png +cmd/lc_macroorganizer.png cmd/lc_scriptorganizer.png +cmd/lc_macrosmenu.png cmd/lc_choosemacro.png +cmd/lc_toolsmacroedit.png cmd/lc_basicideappear.png + +cmd/sc_insertscript.png cmd/sc_choosemacro.png +cmd/sc_macrodialog.png cmd/sc_scriptorganizer.png +cmd/sc_macroorganizer.png cmd/sc_scriptorganizer.png +cmd/sc_macrosmenu.png cmd/sc_choosemacro.png +cmd/sc_toolsmacroedit.png cmd/sc_basicideappear.png + +# Help +cmd/32/donation.png cmd/32/currencyfield.png +cmd/32/helperdialog.png cmd/32/helpindex.png +cmd/32/questionanswers.png cmd/32/browseview.png +cmd/32/sendfeedback.png cmd/32/insertenvelope.png + +cmd/lc_donation.png cmd/lc_currencyfield.png +cmd/lc_helperdialog.png cmd/lc_helpindex.png +cmd/lc_questionanswers.png cmd/lc_browseview.png +cmd/lc_sendfeedback.png cmd/lc_insertenvelope.png + +cmd/sc_about.png res/mainapp_16_8.png +cmd/sc_donation.png cmd/sc_currencyfield.png +cmd/sc_helperdialog.png cmd/sc_helpindex.png +cmd/sc_questionanswers.png cmd/sc_browseview.png +cmd/sc_sendfeedback.png cmd/sc_insertenvelope.png + +# Math +cmd/32/symbolcatalogue.png cmd/32/insertsymbol.png +cmd/lc_symbolcatalogue.png cmd/lc_insertsymbol.png +cmd/sc_symbolcatalogue.png cmd/sc_insertsymbol.png + +# Plugin +cmd/32/pluginsactive.png cmd/32/insertplugin.png +cmd/lc_pluginsactive.png cmd/lc_insertplugin.png +cmd/sc_pluginsactive.png cmd/sc_insertplugin.png + +# Table +cmd/32/setoptimalcolumnwidthdirect.png cmd/32/setoptimalcolumnwidth.png +cmd/32/starchartdialog.png cmd/32/drawchart.png +cmd/32/tableautofitmenu.png cmd/32/setoptimalrowheight.png +cmd/32/tabledeletemenu.png cmd/32/deletetable.png +cmd/32/tableinsertmenu.png cmd/32/insertrowsafter.png +cmd/32/tablemenu.png cmd/32/tabledialog.png +cmd/32/tableselectmenu.png cmd/32/selecttable.png + +cmd/lc_setoptimalcolumnwidthdirect.png cmd/lc_setoptimalcolumnwidth.png +cmd/lc_starchartdialog.png cmd/lc_drawchart.png +cmd/lc_tableautofitmenu.png cmd/lc_setoptimalrowheight.png +cmd/lc_tabledeletemenu.png cmd/lc_deletetable.png +cmd/lc_tableinsertmenu.png cmd/lc_insertrowsafter.png +cmd/lc_tablemenu.png cmd/lc_tabledialog.png +cmd/lc_tableselectmenu.png cmd/lc_selecttable.png + +cmd/sc_setoptimalcolumnwidthdirect.png cmd/sc_setoptimalcolumnwidth.png +cmd/sc_starchartdialog.png cmd/sc_drawchart.png +cmd/sc_tableautofitmenu.png cmd/sc_setoptimalrowheight.png +cmd/sc_tabledeletemenu.png cmd/sc_deletetable.png +cmd/sc_tableinsertmenu.png cmd/sc_insertrowsafter.png +cmd/sc_tablemenu.png cmd/sc_tabledialog.png +cmd/sc_tableselectmenu.png cmd/sc_selecttable.png + +# text background colour Impress/Draw +cmd/32/charbackcolor.png cmd/32/backcolor.png +cmd/32/setdefault.png cmd/32/resetattributes.png + +cmd/lc_charbackcolor.png cmd/lc_backcolor.png +cmd/lc_setdefault.png cmd/lc_resetattributes.png + +cmd/sc_charbackcolor.png cmd/sc_backcolor.png +cmd/sc_setdefault.png cmd/sc_resetattributes.png + +# Impress +sfx2/res/symphony/sidebar-transition-large.png cmd/lc_slidechangewindow.png + +# Toggle graphics visibility in Writer +cmd/32/showgraphics.png cmd/32/graphic.png +cmd/lc_showgraphics.png cmd/lc_graphic.png +cmd/sc_showgraphics.png cmd/sc_graphic.png + +# navigator +cmd/32/dsbdocumentdatasource.png cmd/32/insertexternaldatasource.png +cmd/32/dsbinsertcolumns.png cmd/32/insertfieldctrl.png +cmd/32/inserttoolbox.png cmd/32/dataimport.png +cmd/32/savesimple.png cmd/32/save.png +cmd/32/sbabrwinsert.png cmd/32/insertfieldctrl.png +cmd/32/showbrowser.png cmd/32/controlproperties.png +cmd/32/showpropbrowser.png cmd/32/controlproperties.png + +cmd/lc_dsbdocumentdatasource.png cmd/lc_insertexternaldatasource.png +cmd/lc_dsbinsertcolumns.png cmd/lc_insertfieldctrl.png +cmd/lc_inserttoolbox.png cmd/lc_dataimport.png +cmd/lc_savesimple.png cmd/lc_save.png +cmd/lc_sbabrwinsert.png cmd/lc_insertfieldctrl.png +cmd/lc_showbrowser.png cmd/lc_controlproperties.png +cmd/lc_showpropbrowser.png cmd/lc_controlproperties.png + +cmd/sc_dsbdocumentdatasource.png cmd/sc_insertexternaldatasource.png +cmd/sc_dsbinsertcolumns.png cmd/sc_insertfieldctrl.png +cmd/sc_inserttoolbox.png cmd/sc_dataimport.png +cmd/sc_savesimple.png cmd/sc_save.png +cmd/sc_sbabrwinsert.png cmd/sc_insertfieldctrl.png +cmd/sc_showbrowser.png cmd/sc_controlproperties.png +cmd/sc_showpropbrowser.png cmd/sc_controlproperties.png + +# Slide command aliases +cmd/32/insertdatefieldfix.png cmd/32/datefield.png +cmd/32/insertpagefield.png cmd/32/insertpagenumberfield.png +cmd/32/insertpagenumber.png cmd/32/insertpagenumberfield.png +cmd/32/insertpagesfield.png cmd/32/insertpagecountfield.png +cmd/32/insertpagetitlefield.png cmd/32/inserttitlefield.png +cmd/32/insertslidefield.png cmd/32/insertslidenumberfield.png +cmd/32/insertslidenumber.png cmd/32/insertslidenumberfield.png +cmd/32/insertslidesfield.png cmd/32/insertslidecountfield.png +cmd/32/inserttimefieldfix.png cmd/32/timefield.png + +cmd/lc_insertdatefieldfix.png cmd/lc_datefield.png +cmd/lc_insertpagefield.png cmd/lc_insertpagenumberfield.png +cmd/lc_insertpagenumber.png cmd/lc_insertpagenumberfield.png +cmd/lc_insertpagesfield.png cmd/lc_insertpagecountfield.png +cmd/lc_insertpagetitlefield.png cmd/lc_inserttitlefield.png +cmd/lc_insertslidefield.png cmd/lc_insertslidenumberfield.png +cmd/lc_insertslidenumber.png cmd/lc_insertslidenumberfield.png +cmd/lc_insertslidesfield.png cmd/lc_insertslidecountfield.png +cmd/lc_inserttimefieldfix.png cmd/lc_timefield.png + +cmd/sc_insertdatefieldfix.png cmd/sc_datefield.png +cmd/sc_insertpagefield.png cmd/sc_insertpagenumberfield.png +cmd/sc_insertpagenumber.png cmd/sc_insertpagenumberfield.png +cmd/sc_insertpagesfield.png cmd/sc_insertpagecountfield.png +cmd/sc_insertpagetitlefield.png cmd/sc_inserttitlefield.png +cmd/sc_insertslidefield.png cmd/sc_insertslidenumberfield.png +cmd/sc_insertslidenumber.png cmd/sc_insertslidenumberfield.png +cmd/sc_insertslidesfield.png cmd/sc_insertslidecountfield.png +cmd/sc_inserttimefieldfix.png cmd/sc_timefield.png + +# database +database/linked_text_table.png dbaccess/res/linked_text_table.png + +# dbaccess +# ============================================== +dbaccess/res/all_left.png cmd/sc_firstrecord.png +dbaccess/res/all_right.png cmd/sc_lastrecord.png +dbaccess/res/db.png cmd/sc_changedatabasefield.png +dbaccess/res/exerror.png cmd/sc_cancel.png +dbaccess/res/exinfo.png cmd/sc_helpindex.png +dbaccess/res/form_16.png cmd/sc_dbviewforms.png +dbaccess/res/forms_32.png cmd/32/dbviewforms.png +dbaccess/res/jo01.png dbaccess/res/pkey.png +dbaccess/res/lc036.png cmd/lc_dbnewreport.png +dbaccess/res/lc037.png cmd/lc_dbreportdelete.png +dbaccess/res/lc038.png cmd/lc_dbreportedit.png +dbaccess/res/nu07.png cmd/sc_ok.png +dbaccess/res/nu08.png cmd/sc_cancel.png +dbaccess/res/one_left.png cmd/sc_prevrecord.png +dbaccess/res/one_right.png cmd/sc_nextrecord.png +dbaccess/res/queries_32.png cmd/32/dbviewqueries.png +dbaccess/res/report_16.png cmd/sc_dbviewreports.png +dbaccess/res/reports_32.png cmd/32/dbviewreports.png +dbaccess/res/sc036.png cmd/sc_dbnewreport.png +dbaccess/res/sc037.png cmd/sc_dbreportdelete.png +dbaccess/res/sc038.png cmd/sc_dbreportedit.png +dbaccess/res/sortdown.png cmd/sc_downsearch.png +dbaccess/res/sortup.png cmd/sc_upsearch.png +dbaccess/res/tables_32.png cmd/32/dbviewtables.png +res/queries_32.png cmd/32/dbviewqueries.png +res/reports_32.png cmd/32/dbviewreports.png +res/tables_32.png cmd/32/dbviewtables.png + +# desktop +# ============================================== +desktop/res/caution_16.png dbaccess/res/exwarning.png +desktop/res/extension_16.png cmd/sc_insertplugin.png +desktop/res/extension_32.png cmd/32/insertplugin.png +desktop/res/info_16.png cmd/sc_helpindex.png +desktop/res/lock_16.png cmd/sc_cellprotection.png + +# extensions +# ============================================== +extensions/res/arrow.png cmd/sc_nextrecord.png +extensions/res/buttonminus.png extensions/res/scanner/minus.png +extensions/res/buttonplus.png extensions/res/scanner/plus.png + +# formula +# ============================================== +formula/res/faperror.png cmd/sc_cancel.png +formula/res/fapok.png cmd/sc_ok.png +formula/res/fapopen.png cmd/sc_open.png +formula/res/fx.png cmd/sc_dbviewfunctions.png + +# fpicker +# ============================================== +fpicker/res/fp011.png res/lc06303.png +fpicker/res/fp014.png res/fp015.png +fpicker/res/fp016.png desktop/res/shared_16.png + +# framework +# ============================================== +framework/res/addtemplate_32.png cmd/32/newdoc.png +framework/res/arrow.png cmd/sc_nextrecord.png +framework/res/extension.png cmd/lc_insertplugin.png +framework/res/folder_32.png cmd/32/open.png +framework/res/info_26.png cmd/lc_helpindex.png +framework/res/remote-documents.png cmd/32/openremote.png +framework/res/templates_32.png cmd/32/templatemanager.png + +# reportdesign +# ============================================== +reportdesign/res/report_16.png cmd/sc_dbviewreports.png +reportdesign/res/sc20557.png cmd/sc_cancel.png +reportdesign/res/sc30768.png cmd/sc_upsearch.png +reportdesign/res/sc30769.png cmd/sc_downsearch.png +reportdesign/res/sc30770.png cmd/sc_cancel.png +reportdesign/res/sortdown.png cmd/sc_downsearch.png +reportdesign/res/sortup.png cmd/sc_upsearch.png +reportdesign/res/sx11047.png cmd/sc_basicshapes.diamond.png +reportdesign/res/sx12452.png cmd/sc_animationeffects.png +reportdesign/res/sx12453.png cmd/sc_animationeffects.png +reportdesign/res/sx12454.png cmd/sc_alignright.png +reportdesign/res/sx12464.png cmd/sc_dbviewreports.png +reportdesign/res/sx12594.png cmd/sc_dbviewfunctions.png + +# res +# ============================================== +res/adrbook.png cmd/sc_viewdatasourcebrowser.png +res/browse.png cmd/sc_browseview.png +res/dir-clos.png cmd/sc_closedocs.png +res/dir-open.png cmd/sc_open.png +res/extension_plus_26.png cmd/lc_insertplugin.png +res/extension_plus_32.png cmd/32/insertplugin.png +res/fileopen.png cmd/sc_open.png +res/foldercl.png cmd/sc_closedocs.png +res/grafikei.png cmd/sc_graphic.png +res/hlinettp.png cmd/32/inserthyperlink.png +res/hlmailtp.png cmd/32/insertenvelope.png +res/im30820.png cmd/sc_scriptorganizer.png +res/im30821.png cmd/sc_choosemacro.png +res/im30826.png res/odm_16_8.png +res/info.png cmd/lc_helpindex.png +res/info_16.png cmd/sc_helpindex.png +res/lc05509.png cmd/lc_print.png +res/lc05539.png cmd/lc_designerdialog.png +res/lc05678.png cmd/lc_inserthyperlinkcontrol.png +res/lc05700.png cmd/lc_redo.png +res/lc05701.png cmd/lc_undo.png +res/lc05710.png cmd/lc_cut.png +res/lc05711.png cmd/lc_copy.png +res/lc10711.png cmd/lc_removefiltersort.png +res/lc10715.png cmd/lc_datafilterstandardfilter.png +res/lc10716.png cmd/lc_datafilterautofilter.png +res/lc10851.png cmd/lc_inserthyperlinkcontrol.png +res/lc10853.png cmd/lc_recsearch.png +res/library_16.png cmd/sc_viewdatasourcebrowser.png +res/lx03131.png res/lx03126.png +res/lx03137.png res/lx03125.png +res/lx03139.png cmd/lc_newhtmldoc.png +res/lx03139_32.png cmd/32/newhtmldoc.png +res/lx03140.png res/lx03125.png +res/lx03144.png res/odf_32_8.png +res/lx03145.png res/otf_32_8.png +res/lx03150.png cmd/32/showsinglepage.png +res/lx03152.png res/lx03125.png +res/lx03153.png res/lx03125.png +res/lx03154.png res/lx03125.png +res/lx03155.png res/lx03125.png +res/lx03156.png res/odt_32_8.png +res/lx03158.png res/lx03125.png +res/lx03160.png res/odg_32_8.png +res/lx03164.png cmd/32/open.png +res/lx03165.png cmd/32/save.png +res/lx03167.png cmd/32/openremote.png +res/lx03188.png cmd/32/dbviewtables.png +res/lx03189.png cmd/32/open.png +res/lx03202.png cmd/32/dbviewqueries.png +res/lx03217.png res/odg_32_8.png +res/lx03218.png res/odg_32_8.png +res/lx03219.png res/lx03125.png +res/lx03220.png res/odg_32_8.png +res/lx03221.png res/odg_32_8.png +res/lx03222.png res/odg_32_8.png +res/lx03226.png res/odm_32_8.png +res/lx03227.png res/odg_32_8.png +res/lx03228.png res/otg_32_8.png +res/lx03239.png cmd/32/dbrelationdesign.png +res/lx03245.png res/odb_24_8.png +res/lx03245_32.png res/odb_32_8.png +res/lx03246.png res/odg_24_8.png +res/lx03246_32.png res/odg_32_8.png +res/lx03247.png res/odf_24_8.png +res/lx03247_32.png res/odf_32_8.png +res/lx03248.png res/odm_24_8.png +res/lx03248_32.png res/odm_32_8.png +res/lx03249.png res/odp_24_8.png +res/lx03249_32.png res/odp_32_8.png +res/lx03250.png res/ods_24_8.png +res/lx03250_32.png res/ods_32_8.png +res/lx03251.png res/odt_24_8.png +res/lx03251_32.png res/odt_32_8.png +res/lx03252.png res/otg_32_8.png +res/lx03253.png res/otp_32_8.png +res/lx03254.png res/ots_32_8.png +res/lx03255.png res/ott_24_8.png +res/lx03255_32.png res/ott_32_8.png +res/lx03256.png cmd/32/insertplugin.png +res/mainapp_16.png res/mainapp_16_8.png +res/mainapp_32.png res/mainapp_32_8.png +res/newdoc.png cmd/sc_closedocs.png +res/oleobj.png cmd/32/insertobject.png +res/plugin.png cmd/32/insertplugin.png +res/printeradmin_16_8.png res/printeradmin_16.png +res/printeradmin_32_8.png res/printeradmin_32.png +res/reload.png cmd/sc_reload.png +res/sc05500.png cmd/sc_adddirect.png +res/sc05501.png cmd/sc_open.png +res/sc05502.png cmd/sc_saveas.png +res/sc05504.png cmd/sc_print.png +res/sc05508.png cmd/sc_reload.png +res/sc05509.png cmd/sc_print.png +res/sc05554.png cmd/sc_backgroundcolor.png +res/sc05555.png cmd/sc_stylenewbyexample.png +res/sc05556.png cmd/sc_styleupdatebyexample.png +res/sc05678.png cmd/sc_inserthyperlink.png +res/sc05711.png cmd/sc_copy.png +res/sc05961.png cmd/sc_recsearch.png +res/sc06300.png cmd/sc_nextrecord.png +res/sc06301.png cmd/sc_prevrecord.png +res/sc10223.png cmd/sc_position.png +res/sc10224.png cmd/sc_size.png +res/sc10350.png cmd/sc_bmpmask.png +res/sc10711.png cmd/sc_removefiltersort.png +res/sc10712.png cmd/sc_sortascending.png +res/sc10713.png cmd/sc_sortdescending.png +res/sc10715.png cmd/sc_datafilterstandardfilter.png +res/sc10716.png cmd/sc_datafilterautofilter.png +res/sc10851.png cmd/sc_inserthyperlink.png +res/sc10853.png cmd/sc_recsearch.png +res/sc10854.png res/target.png +res/sc10863.png cmd/sc_grafluminance.png +res/sc10864.png cmd/sc_grafcontrast.png +res/sc10865.png cmd/sc_grafred.png +res/sc10866.png cmd/sc_grafgreen.png +res/sc10867.png cmd/sc_grafblue.png +res/sc10868.png cmd/sc_grafgamma.png +res/sc10869.png cmd/sc_graftransparence.png +res/sx03137.png res/sx03125.png +res/sx03139.png cmd/sc_newhtmldoc.png +res/sx03140.png res/sx03125.png +res/sx03141.png cmd/32/closedocs.png +res/sx03144.png res/odf_16_8.png +res/sx03145.png res/otf_16_8.png +res/sx03150.png cmd/sc_showsinglepage.png +res/sx03152.png res/sx03125.png +res/sx03153.png res/sx03125.png +res/sx03154.png res/sx03125.png +res/sx03155.png res/sx03125.png +res/sx03156.png res/odt_16_8.png +res/sx03158.png res/sx03125.png +res/sx03160.png res/odg_16_8.png +res/sx03164.png res/harddisk_16.png +res/sx03165.png cmd/sc_save.png +res/sx03167.png cmd/sc_openremote.png +res/sx03188.png cmd/sc_dbviewtables.png +res/sx03189.png cmd/sc_closedocs.png +res/sx03202.png cmd/sc_dbviewqueries.png +res/sx03217.png res/odg_16_8.png +res/sx03218.png res/odg_16_8.png +res/sx03219.png res/sx03125.png +res/sx03220.png res/odg_16_8.png +res/sx03221.png res/odg_16_8.png +res/sx03222.png res/odg_16_8.png +res/sx03226.png res/odm_16_8.png +res/sx03227.png res/odg_16_8.png +res/sx03228.png res/otg_16_8.png +res/sx03239.png cmd/sc_dbrelationdesign.png +res/sx03245.png res/odb_16_8.png +res/sx03246.png res/odg_16_8.png +res/sx03247.png res/odf_16_8.png +res/sx03248.png res/odm_16_8.png +res/sx03249.png res/odp_16_8.png +res/sx03250.png res/ods_16_8.png +res/sx03251.png res/odt_16_8.png +res/sx03252.png res/otg_16_8.png +res/sx03253.png res/otp_16_8.png +res/sx03254.png res/ots_16_8.png +res/sx03255.png res/ott_16_8.png +res/sx03256.png cmd/sc_insertplugin.png +res/sx10144.png cmd/sc_checkbox.png +res/sx10593.png cmd/sc_switchxformsdesignmode.png +res/sx10594.png cmd/sc_pushbutton.png +res/sx10595.png cmd/sc_radiobutton.png +res/sx10596.png cmd/sc_checkbox.png +res/sx10597.png cmd/sc_label.png +res/sx10598.png cmd/sc_groupbox.png +res/sx10599.png cmd/sc_edit.png +res/sx10600.png cmd/sc_listbox.png +res/sx10601.png cmd/sc_combobox.png +res/sx10603.png cmd/sc_grid.png +res/sx10604.png cmd/sc_imagebutton.png +res/sx10605.png cmd/sc_filecontrol.png +res/sx10607.png cmd/sc_navigationbar.png +res/sx10704.png cmd/sc_datefield.png +res/sx10705.png cmd/sc_timefield.png +res/sx10706.png cmd/sc_numberformatstandard.png +res/sx10707.png cmd/sc_currencyfield.png +res/sx10708.png cmd/sc_patternfield.png +res/sx10710.png cmd/sc_imagecontrol.png +res/sx10715.png cmd/sc_datafilterstandardfilter.png +res/sx10728.png cmd/sc_formattedfield.png +res/sx10757.png cmd/sc_timefield.png +res/sx10768.png cmd/sc_scrollbar.png +res/sx10769.png cmd/sc_spinbutton.png +res/sx18013.png res/dialogfolder_16.png + +# sc +# ============================================== +sc/res/date.png cmd/sc_datefield.png +sc/res/dropcopy.png cmd/sc_copy.png +sc/res/droplink.png cmd/sc_insertbookmark.png +sc/res/dropurl.png cmd/sc_inserthyperlinkcontrol.png +sc/res/file.png cmd/sc_open.png +sc/res/fx.png cmd/sc_dbviewfunctions.png +sc/res/lc26047.png cmd/lc_dbviewfunctions.png +sc/res/lc26048.png cmd/lc_autosum.png +sc/res/lc26050.png cmd/lc_cancel.png +sc/res/lc26051.png cmd/lc_ok.png +sc/res/na010.png sw/res/sc20234.png +sc/res/na011.png cmd/sc_ok.png +sc/res/na03.png cmd/sc_dataranges.png +sc/res/na05.png cmd/sc_upsearch.png +sc/res/na06.png cmd/sc_downsearch.png +sc/res/na07.png cmd/sc_thesaurus.png +sc/res/na09.png cmd/sc_animationeffects.png +sc/res/nc01.png cmd/sc_show.png +sc/res/nc02.png cmd/sc_addname.png +sc/res/nc03.png cmd/sc_changedatabasefield.png +sc/res/nc04.png cmd/sc_insertgraphic.png +sc/res/nc05.png cmd/sc_insertobject.png +sc/res/nc06.png cmd/sc_shownote.png +sc/res/nc07.png cmd/sc_insertbookmark.png +sc/res/nc08.png cmd/sc_insertdraw.png +sc/res/page.png cmd/sc_insertpagenumberfield.png +sc/res/pages.png cmd/sc_insertpagecountfield.png +sc/res/sc26047.png cmd/sc_dbviewfunctions.png +sc/res/sc26048.png cmd/sc_autosum.png +sc/res/sc26050.png cmd/sc_cancel.png +sc/res/sc26051.png cmd/sc_ok.png +sc/res/table.png cmd/sc_inserttable.png +sc/res/text.png cmd/sc_text.png +sc/res/time.png cmd/sc_timefield.png + +# sd +# ============================================== +sd/res/breakplayingblue_16.png cmd/sc_mediapause.png +sd/res/comments_indicator.png cmd/sc_shownote.png +sd/res/displaymode_handoutmaster.png cmd/32/handoutmode.png +sd/res/displaymode_notes.png cmd/32/notesmode.png +sd/res/displaymode_notesmaster.png cmd/32/notesmasterpage.png +sd/res/displaymode_outline.png cmd/32/outlinemode.png +sd/res/displaymode_slide.png cmd/32/normalmultipanegui.png +sd/res/displaymode_slidemaster.png cmd/32/slidemasterpage.png +sd/res/displaymode_slidesorter.png cmd/32/diamode.png +sd/res/graphic.png cmd/sc_graphic.png +sd/res/group.png cmd/sc_formatgroup.png +sd/res/nv010.png cmd/sc_inserthyperlink.png +sd/res/nv02.png cmd/sc_freeline_unfilled.png +sd/res/nv03.png cmd/sc_firstrecord.png +sd/res/nv04.png cmd/sc_prevrecord.png +sd/res/nv05.png cmd/sc_nextrecord.png +sd/res/nv06.png cmd/sc_lastrecord.png +sd/res/nv09.png cmd/sc_insertbookmark.png +sd/res/ole.png cmd/sc_insertobject.png +sd/res/page.png cmd/sc_adddirect.png +sd/res/pipette.png cmd/sc_bmpmask.png +sd/res/playblue_16.png cmd/sc_runbasic.png +sd/res/stopplayingblue_16.png cmd/sc_basicstop.png +sd/res/time_16.png cmd/sc_timefield.png +sd/res/waiticon.png cmd/sc_mediapause.png + +# sfx2 +# ============================================== +sfx2/res/actionaction012.png cmd/lc_recsearch.png +sfx2/res/actionaction013.png cmd/lc_optionstreedialog.png +sfx2/res/actiontemplates015.png cmd/lc_ok.png +sfx2/res/actiontemplates016.png cmd/lc_configuredialog.png +sfx2/res/actiontemplates018.png cmd/lc_delete.png +sfx2/res/actiontemplates019.png cmd/lc_editdoc.png +sfx2/res/actiontemplates020.png cmd/lc_exportto.png +sfx2/res/actionview010.png cmd/lc_dataimport.png +sfx2/res/actionview025.png cmd/lc_delete.png +sfx2/res/actionview026.png cmd/lc_openremote.png +sfx2/res/actionview028.png cmd/lc_save.png +sfx2/res/actionview030.png cmd/lc_open.png +sfx2/res/closedoc.png vcl/res/closedoc.png +sfx2/res/deleterow.png cmd/sc_cancel.png +sfx2/res/doccl.png cmd/sc_newdoc.png +sfx2/res/exec_action.png cmd/sc_optionstreedialog.png +sfx2/res/favourite.png cmd/sc_insertbookmark.png +sfx2/res/hlpdoc.png cmd/sc_documentation.png +sfx2/res/minus.png res/minus.png +sfx2/res/newex.png res/plus.png +sfx2/res/plus.png res/plus.png +sfx2/res/search.png cmd/sc_recsearch.png +sfx2/res/select.png cmd/sc_ok.png +sfx2/res/sortascending.png cmd/lc_sortascending.png +sfx2/res/styfam1.png cmd/sc_charfontname.png +sfx2/res/styfam2.png cmd/sc_controlcodes.png +sfx2/res/styfam3.png cmd/sc_linestyle.png +sfx2/res/styfam4.png cmd/sc_showsinglepage.png +sfx2/res/symphony/sidebar-animation-large.png cmd/lc_diaeffect.png +sfx2/res/symphony/sidebar-colors-small.png cmd/sc_colorsettings.png +sfx2/res/symphony/sidebar-functions-large.png cmd/lc_dbviewfunctions.png +sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png +sfx2/res/symphony/sidebar-navigator-large.png cmd/lc_navigator.png +sfx2/res/symphony/sidebar-property-large.png cmd/lc_configuredialog.png +sfx2/res/symphony/sidebar-property-small.png cmd/sc_configuredialog.png +sfx2/res/symphony/sidebar-style-large.png cmd/lc_designerdialog.png +sfx2/res/symphony/sidebar-template-large.png cmd/lc_slidemasterpage.png + +# starmath +# ============================================== +starmath/res/at21717.png cmd/lc_bold.png +starmath/res/at21718.png cmd/lc_italic.png +starmath/res/at21719.png cmd/lc_scaletext.png +starmath/res/at21720.png cmd/lc_charfontname.png +starmath/res/im21108.png cmd/lc_outlineformat.png + +# svtools +# ============================================== +# FolderTree expanded icon +svtools/res/back_large.png cmd/lc_prevrecord.png +svtools/res/back_small.png cmd/sc_prevrecord.png +svtools/res/bmpfont.png cmd/color.png +svtools/res/ed06.png dbaccess/res/pkey.png +svtools/res/folder.png cmd/sc_closedocs.png +svtools/res/folderop.png cmd/sc_open.png +svtools/res/info_large.png cmd/lc_alignleft.png +svtools/res/info_small.png cmd/sc_alignleft.png +svtools/res/my_docs.png cmd/lc_open.png +svtools/res/new_doc.png cmd/lc_newdoc.png +svtools/res/preview_large.png cmd/lc_printpreview.png +svtools/res/preview_small.png cmd/sc_printpreview.png +svtools/res/prnfont.png cmd/sc_charfontname.png +svtools/res/samples.png cmd/lc_choosedesign.png +svtools/res/scalfont.png cmd/sc_scaletext.png +svtools/res/template.png cmd/lc_newdoc.png + +# svx +# ============================================== +svx/res/AdjustColorBlue_16x16.png cmd/sc_grafblue.png +svx/res/AdjustColorGamma_16x16.png cmd/sc_grafgamma.png +svx/res/AdjustColorGreen_16x16.png cmd/sc_grafgreen.png +svx/res/AdjustColorRed_16x16.png cmd/sc_grafred.png +svx/res/ColorModeBlackWhite_16x16.png cmd/sc_outputqualityblackwhite.png +svx/res/ColorModeGrey_16x16.png cmd/sc_outputqualitygrayscale.png +svx/res/apply.png cmd/sc_ok.png +svx/res/caution_11x16.png dbaccess/res/exwarning.png +svx/res/cd01.png cmd/sc_ok.png +svx/res/cd015.png cmd/sc_toggleobjectbeziermode.png +svx/res/cd016.png cmd/sc_beziermove.png +svx/res/cd017.png cmd/sc_bezierinsert.png +svx/res/cd018.png cmd/sc_bezierdelete.png +svx/res/cd020.png cmd/sc_undo.png +svx/res/cd021.png cmd/sc_redo.png +svx/res/cd025.png cmd/sc_autopilotmenu.png +svx/res/cd026.png cmd/sc_bmpmask.png +svx/res/cd05.png cmd/sc_selectobject.png +svx/res/cd06.png cmd/sc_rect.png +svx/res/cd07.png cmd/sc_ellipse.png +svx/res/cd08.png cmd/sc_polygon.png +svx/res/color.png cmd/sc_bmpmask.png +svx/res/colordlg.png cmd/sc_colorsettings.png +svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/fill_color.png cmd/sc_backgroundcolor.png +svx/res/filter3d.png cmd/sc_datafilterstandardfilter.png +svx/res/fontworkaligncentered_16.png cmd/sc_alignhorizontalcenter.png +svx/res/fontworkaligncentered_26.png cmd/lc_alignhorizontalcenter.png +svx/res/fontworkalignjustified_16.png cmd/sc_alignblock.png +svx/res/fontworkalignjustified_26.png cmd/lc_alignblock.png +svx/res/fontworkalignleft_16.png cmd/sc_alignleft.png +svx/res/fontworkalignleft_26.png cmd/lc_alignleft.png +svx/res/fontworkalignright_16.png cmd/sc_alignright.png +svx/res/fontworkalignright_26.png cmd/lc_alignright.png +svx/res/fontworkalignstretch_16.png cmd/sc_text_marquee.png +svx/res/fontworkalignstretch_26.png cmd/lc_text_marquee.png +svx/res/fw07.png cmd/sc_alignleft.png +svx/res/fw08.png cmd/sc_alignhorizontalcenter.png +svx/res/fw09.png cmd/sc_alignright.png +svx/res/graphic.png cmd/sc_graphic.png +svx/res/id01.png cmd/sc_ok.png +svx/res/id018.png cmd/sc_choosemacro.png +svx/res/id019.png cmd/sc_modifyframe.png +svx/res/id02.png cmd/sc_open.png +svx/res/id03.png cmd/sc_save.png +svx/res/id030.png cmd/sc_toggleobjectbeziermode.png +svx/res/id031.png cmd/sc_beziermove.png +svx/res/id032.png cmd/sc_bezierinsert.png +svx/res/id033.png cmd/sc_bezierdelete.png +svx/res/id04.png cmd/sc_selectobject.png +svx/res/id040.png cmd/sc_undo.png +svx/res/id041.png cmd/sc_redo.png +svx/res/id05.png cmd/sc_rect.png +svx/res/id06.png cmd/sc_ellipse.png +svx/res/id07.png cmd/sc_polygon.png +svx/res/id08.png cmd/sc_freeline.png +svx/res/lngcheck.png cmd/sc_spelling.png +svx/res/luminanc.png cmd/sc_graphicfilterinvert.png +svx/res/notcertificate_16.png xmlsecurity/res/notcertificate_16.png +svx/res/nu01.png cmd/sc_ok.png +svx/res/nu02.png cmd/sc_cancel.png +svx/res/nu03.png cmd/sc_shownote.png +svx/res/nu08.png cmd/sc_cancel.png +svx/res/ole.png cmd/sc_insertobject.png +svx/res/para_numbullet_rtl01.png cmd/ar/sc_defaultbullet.png +svx/res/para_numbullet_rtl02.png cmd/ar/sc_defaultnumbering.png +svx/res/parallel_16.png cmd/sc_extrusiondepthfloater.png +svx/res/persp3d.png cmd/sc_extrusiondirectionfloater.png +svx/res/perspective_16.png cmd/sc_extrusiondirectionfloater.png +svx/res/reload.png cmd/sc_reload.png +svx/res/reloads.png cmd/sc_reload.png +svx/res/rotate3d.png cmd/sc_convertinto3dlathe.png +svx/res/signet_11x16.png xmlsecurity/res/signet_11x16.png +svx/res/symphony/AdjustColorBlue_16x16.png cmd/sc_grafblue.png +svx/res/symphony/AdjustColorGamma_16x16.png cmd/sc_grafgamma.png +svx/res/symphony/AdjustColorGreen_16x16.png cmd/sc_grafgreen.png +svx/res/symphony/AdjustColorRed_16x16.png cmd/sc_grafred.png +svx/res/symphony/decrease_font.png cmd/sc_shrink.png +svx/res/symphony/enlarge_font.png cmd/sc_grow.png +svx/res/symphony/fill_color.png cmd/sc_backgroundcolor.png +svx/res/symphony/lpselected-spacing-1.png cmd/lc_spacepara1.png +svx/res/symphony/lpselected-spacing-1_15.png cmd/lc_spacepara1.png +svx/res/symphony/lpselected-spacing-1_5.png cmd/lc_spacepara15.png +svx/res/symphony/lpselected-spacing-2.png cmd/lc_spacepara2.png +svx/res/symphony/lpsmall-spacing-1.png cmd/lc_spacepara1.png +svx/res/symphony/para_numbullet01.png cmd/sc_defaultbullet.png +svx/res/symphony/para_numbullet02.png cmd/sc_defaultnumbering.png +svx/res/symphony/para_numbullet_rtl01.png cmd/ar/sc_defaultbullet.png +svx/res/symphony/para_numbullet_rtl02.png cmd/ar/sc_defaultnumbering.png +svx/res/symphony/sch_backgroundcolor.png cmd/sc_backgroundcolor.png +svx/res/symphony/spacing3.png cmd/sc_spacepara1.png +svx/res/time.png cmd/sc_timefield.png +svx/res/wireframe_16.png cmd/sc_window3d.png + +# sw +# ============================================== +# res +sw/res/lc20556.png cmd/lc_dbviewfunctions.png +sw/res/lc20557.png cmd/lc_cancel.png +sw/res/lc20558.png cmd/lc_ok.png +sw/res/nc20001.png cmd/sc_inserttable.png +sw/res/nc20002.png cmd/sc_insertframe.png +sw/res/nc20003.png cmd/sc_insertgraphic.png +sw/res/nc20004.png cmd/sc_insertobject.png +sw/res/nc20005.png cmd/sc_insertbookmark.png +sw/res/nc20006.png cmd/sc_insertsection.png +sw/res/nc20007.png cmd/sc_inserthyperlink.png +sw/res/nc20008.png cmd/sc_insertreferencefield.png +sw/res/nc20009.png cmd/sc_insertindexesentry.png +sw/res/nc20010.png cmd/sc_shownote.png +sw/res/nc20011.png cmd/sc_insertdraw.png +sw/res/nc20012.png cmd/sc_insertfootnote.png +sw/res/nc20013.png cmd/sc_insertendnote.png +sw/res/sc20171.png cmd/sc_downsearch.png +sw/res/sc20172.png cmd/sc_prevrecord.png +sw/res/sc20173.png cmd/sc_nextrecord.png +sw/res/sc20174.png cmd/sc_upsearch.png +sw/res/sc20175.png cmd/sc_nextrecord.png +sw/res/sc20177.png cmd/sc_insertfooter.png +sw/res/sc20179.png cmd/sc_insertheader.png +sw/res/sc20182.png cmd/sc_toggleanchortype.png +sw/res/sc20183.png cmd/sc_setreminder.png +sw/res/sc20186.png cmd/sc_prevrecord.png +sw/res/sc20233.png cmd/sc_ok.png +sw/res/sc20235.png cmd/sc_inserthyperlink.png +sw/res/sc20238.png cmd/sc_insertbookmark.png +sw/res/sc20239.png cmd/sc_copy.png +sw/res/sc20244.png sw/res/sc20234.png +sw/res/sc20247.png cmd/sc_dataimport.png +sw/res/sc20249.png cmd/sc_navigator.png +sw/res/sc20556.png cmd/sc_dbviewfunctions.png +sw/res/sc20557.png cmd/sc_cancel.png +sw/res/sc20558.png cmd/sc_ok.png +sw/res/sf02.png cmd/sc_designerdialog.png +sw/res/sf04.png sc/res/sf02.png +sw/res/sf06.png cmd/sc_autoformat.png +sw/res/sidebar/pageproppanel/last_custom_common.png svx/res/symphony/last_custom_common.png +sw/res/sidebar/pageproppanel/last_custom_common_grey.png svx/res/symphony/last_custom_common_grey.png +sw/res/sr20000.png cmd/sc_downsearch.png +sw/res/sr20001.png cmd/sc_upsearch.png +sw/res/sr20002.png cmd/sc_inserttable.png +sw/res/sr20003.png cmd/sc_insertframe.png +sw/res/sr20004.png cmd/sc_showsinglepage.png +sw/res/sr20005.png cmd/sc_insertdraw.png +sw/res/sr20006.png cmd/sc_choosecontrols.png +sw/res/sr20007.png cmd/sc_insertsection.png +sw/res/sr20008.png cmd/sc_insertbookmark.png +sw/res/sr20009.png cmd/sc_insertgraphic.png +sw/res/sr20010.png cmd/sc_insertobject.png +sw/res/sr20011.png sw/res/nc20000.png +sw/res/sr20013.png cmd/sc_insertfootnote.png +sw/res/sr20014.png cmd/sc_setreminder.png +sw/res/sr20015.png cmd/sc_shownote.png +sw/res/sr20016.png cmd/sc_recsearch.png +sw/res/sr20017.png cmd/sc_insertindexesentry.png +sw/res/sr20020.png sw/res/sc20234.png +sw/res/sr20021.png cmd/sc_addfield.png +sw/res/sr20022.png cmd/sc_addfield.png +sw/res/sx01.png cmd/sc_changedatabasefield.png +sw/res/sx02.png cmd/sc_dbviewtables.png +sw/res/sx03.png cmd/sc_dbviewqueries.png + +# res +sw/res/page_break.png cmd/sc_insertpagebreak.png +sw/res/styfamnu.png sw/res/sf05.png + +# split cells duplicates +sw/res/zetlhor2.png svx/res/zetlhor2.png +sw/res/zetlver2.png svx/res/zetlver2.png + +# vcl +# ============================================== +vcl/res/index.png cmd/sc_insertmultiindex.png + +# wrap +# ============================================== +cmd/32/wrapmenu.png cmd/32/wrapon.png +cmd/lc_wrapmenu.png cmd/lc_wrapon.png +cmd/sc_wrapmenu.png cmd/sc_wrapon.png + +# xmlsecurity +# ============================================== +xmlsecurity/res/key_12.png dbaccess/res/pkey.png + +cmd/32/columnoperations.png cmd/32/entirecolumn.png +cmd/32/rowoperations.png cmd/32/entirerow.png + +cmd/lc_columnoperations.png cmd/lc_entirecolumn.png +cmd/lc_rowoperations.png cmd/lc_entirerow.png + +cmd/sc_columnoperations.png cmd/sc_entirecolumn.png +cmd/sc_rowoperations.png cmd/sc_entirerow.png + +# calc context menu sheettab +# ============================================== +cmd/32/renametable.png cmd/32/name.png +cmd/32/settabbgcolor.png cmd/32/backgroundcolor.png +cmd/32/sheetlefttoright.png cmd/32/paralefttoright.png +cmd/32/sheetrighttoleft.png cmd/32/pararighttoleft.png +cmd/32/tableevents.png cmd/32/animationeffects.png + +cmd/lc_renametable.png cmd/lc_name.png +cmd/lc_settabbgcolor.png cmd/lc_backgroundcolor.png +cmd/lc_sheetlefttoright.png cmd/lc_paralefttoright.png +cmd/lc_sheetrighttoleft.png cmd/lc_pararighttoleft.png +cmd/lc_tableevents.png cmd/lc_animationeffects.png + +cmd/sc_renametable.png cmd/sc_name.png +cmd/sc_settabbgcolor.png cmd/sc_backgroundcolor.png +cmd/sc_sheetlefttoright.png cmd/sc_paralefttoright.png +cmd/sc_sheetrighttoleft.png cmd/sc_pararighttoleft.png +cmd/sc_tableevents.png cmd/sc_animationeffects.png + +# calc cell style +# ============================================== +cmd/32/badcellstyle.png cmd/32/badcellstyles.png +cmd/32/defaultcellstyles.png cmd/32/defaultcharstyle.png +cmd/32/footnotecellstyles.png cmd/32/insertfootnote.png +cmd/32/goodcellstyle.png cmd/32/goodcellstyles.png +cmd/32/heading1cellstyles.png cmd/32/heading1parastyle.png +cmd/32/heading2cellstyles.png cmd/32/heading2parastyle.png +cmd/32/neutralcellstyle.png cmd/32/neutralcellstyles.png +cmd/32/notecellstyles.png cmd/32/shownote.png +cmd/lc_badcellstyle.png cmd/lc_badcellstyles.png +cmd/lc_defaultcellstyles.png cmd/lc_defaultcharstyle.png +cmd/lc_footnotecellstyles.png cmd/lc_insertfootnote.png +cmd/lc_goodcellstyle.png cmd/lc_goodcellstyles.png +cmd/lc_heading1cellstyles.png cmd/lc_heading1parastyle.png +cmd/lc_heading2cellstyles.png cmd/lc_heading2parastyle.png +cmd/lc_neutralcellstyle.png cmd/lc_neutralcellstyles.png +cmd/lc_notecellstyles.png cmd/lc_shownote.png +cmd/sc_badcellstyle.png cmd/sc_badcellstyles.png +cmd/sc_defaultcellstyles.png cmd/sc_defaultcharstyle.png +cmd/sc_footnotecellstyles.png cmd/sc_insertfootnote.png +cmd/sc_goodcellstyle.png cmd/sc_goodcellstyles.png +cmd/sc_heading1cellstyles.png cmd/sc_heading1parastyle.png +cmd/sc_heading2cellstyles.png cmd/sc_heading2parastyle.png +cmd/sc_neutralcellstyle.png cmd/sc_neutralcellstyles.png +cmd/sc_notecellstyles.png cmd/sc_shownote.png + +# calc context menu rowheader +# ============================================== +cmd/32/columnwidth.png cmd/32/setminimalcolumnwidth.png +cmd/32/rowheight.png cmd/32/setminimalrowheight.png + +cmd/lc_columnwidth.png cmd/lc_setminimalcolumnwidth.png +cmd/lc_rowheight.png cmd/lc_setminimalrowheight.png + +cmd/sc_columnwidth.png cmd/sc_setminimalcolumnwidth.png +cmd/sc_rowheight.png cmd/sc_setminimalrowheight.png + +# calc toolbar previewbar +# ============================================== +cmd/32/exportasgraphic.png cmd/32/insertgraphic.png +cmd/32/margins.png cmd/32/pagemargin.png +cmd/32/namegroup.png cmd/32/renameobject.png + +cmd/lc_exportasgraphic.png cmd/lc_insertgraphic.png +cmd/lc_margins.png cmd/lc_pagemargin.png +cmd/lc_namegroup.png cmd/lc_renameobject.png + +cmd/sc_exportasgraphic.png cmd/sc_insertgraphic.png +cmd/sc_margins.png cmd/sc_pagemargin.png +cmd/sc_namegroup.png cmd/sc_renameobject.png + +# calc toolbar draw +# =============================================== +cmd/32/convertmenu.png cmd/32/bezierconvert.png +cmd/32/mirrormenu.png cmd/32/rotateleft.png +cmd/32/openhyperlinkoncursor.png cmd/32/inserthyperlink.png +cmd/32/rotateflipmenu.png cmd/32/rotateleft.png + +cmd/lc_convertmenu.png cmd/lc_bezierconvert.png +cmd/lc_mirrormenu.png cmd/lc_rotateleft.png +cmd/lc_openhyperlinkoncursor.png cmd/lc_inserthyperlink.png +cmd/lc_rotateflipmenu.png cmd/lc_rotateleft.png + +cmd/sc_convertmenu.png cmd/sc_bezierconvert.png +cmd/sc_mirrormenu.png cmd/sc_rotateleft.png +cmd/sc_openhyperlinkoncursor.png cmd/sc_inserthyperlink.png +cmd/sc_rotateflipmenu.png cmd/sc_rotateleft.png + +# writer +# =============================================== +cmd/32/addtextbox.png cmd/32/insertfixedtext.png +cmd/32/openxmlfiltersettings.png cmd/32/managexmlsource.png + +cmd/lc_addtextbox.png cmd/lc_insertfixedtext.png +cmd/lc_openxmlfiltersettings.png cmd/lc_managexmlsource.png + +cmd/sc_addtextbox.png cmd/sc_insertfixedtext.png +cmd/sc_openxmlfiltersettings.png cmd/sc_managexmlsource.png + +# Writer menu: MSO compatible Form menu +cmd/32/textformfield.png cmd/32/edit.png +cmd/32/checkboxformfield.png cmd/32/checkbox.png +cmd/32/dropdownformfield.png cmd/32/combobox.png +cmd/32/datepickerformfield.png cmd/32/datefield.png + +cmd/lc_textformfield.png cmd/lc_edit.png +cmd/lc_checkboxformfield.png cmd/lc_checkbox.png +cmd/lc_dropdownformfield.png cmd/lc_combobox.png +cmd/lc_datepickerformfield.png cmd/lc_datefield.png + +cmd/sc_textformfield.png cmd/sc_edit.png +cmd/sc_checkboxformfield.png cmd/sc_checkbox.png +cmd/sc_dropdownformfield.png cmd/sc_combobox.png +cmd/sc_datepickerformfield.png cmd/sc_datefield.png + +# menubar icons +cmd/32/com.sun.star.deployment.ui.packagemanagerdialog.png cmd/32/insertplugin.png +cmd/32/focustofindbar.png cmd/32/recsearch.png +cmd/32/formatobjectmenu.png cmd/32/text.png +cmd/32/macroorganizer%3ftabid%3ashort=1.png cmd/32/open.png +cmd/32/textattributes.png cmd/32/fontdialog.png + +cmd/lc_com.sun.star.deployment.ui.packagemanagerdialog.png cmd/lc_insertplugin.png +cmd/lc_focustofindbar.png cmd/lc_recsearch.png +cmd/lc_formatobjectmenu.png cmd/lc_text.png +cmd/lc_macroorganizer%3ftabid%3ashort=1.png cmd/lc_open.png +cmd/lc_textattributes.png cmd/lc_fontdialog.png + +cmd/sc_com.sun.star.deployment.ui.packagemanagerdialog.png cmd/sc_insertplugin.png +cmd/sc_focustofindbar.png cmd/sc_recsearch.png +cmd/sc_formatobjectmenu.png cmd/sc_text.png +cmd/sc_macroorganizer%3ftabid%3ashort=1.png cmd/sc_open.png +cmd/sc_textattributes.png cmd/sc_fontdialog.png + +# Edit menu +cmd/32/editpastespecialmenu.png cmd/32/pastespecial.png +cmd/32/insertcontents.png cmd/32/pastespecial.png +cmd/32/pastespecialmenu.png cmd/32/pastespecial.png + +cmd/lc_editpastespecialmenu.png cmd/lc_pastespecial.png +cmd/lc_insertcontents.png cmd/lc_pastespecial.png +cmd/lc_pastespecialmenu.png cmd/lc_pastespecial.png + +cmd/sc_editpastespecialmenu.png cmd/sc_pastespecial.png +cmd/sc_insertcontents.png cmd/sc_pastespecial.png +cmd/sc_pastespecialmenu.png cmd/sc_pastespecial.png + +# LibreLogo +cmd/32/librelogo-run.png cmd/32/runbasic.png +cmd/32/librelogo-stop.png cmd/32/basicstop.png +cmd/32/librelogo-translate.png cmd/32/editglossary.png + +cmd/lc_librelogo-run.png cmd/lc_runbasic.png +cmd/lc_librelogo-stop.png cmd/lc_basicstop.png +cmd/lc_librelogo-translate.png cmd/lc_editglossary.png + +cmd/sc_librelogo-run.png cmd/sc_runbasic.png +cmd/sc_librelogo-stop.png cmd/sc_basicstop.png +cmd/sc_librelogo-translate.png cmd/sc_editglossary.png + +cmd/sc_stars-full.png sc/res/icon-set-stars-full.png +cmd/sc_stars-empty.png sc/res/icon-set-stars-empty.png + +# Draw/Redaction Toolbar +cmd/32/redactionpreviewexport.png cmd/32/exportdirecttopdf.png +cmd/lc_redactionpreviewexport.png cmd/lc_exportdirecttopdf.png +cmd/sc_redactionpreviewexport.png cmd/sc_exportdirecttopdf.png + +# Contextual Single UI (Writer) +cmd/32/zoom-more.png cmd/32/controlproperties.png +cmd/32/accepttrackedchanges-more.png cmd/32/controlproperties.png +cmd/32/fontdialog-more.png cmd/32/controlproperties.png +cmd/32/paragraphdialog-more.png cmd/32/controlproperties.png +cmd/32/tabledialog-more.png cmd/32/controlproperties.png +cmd/32/transformdialog-more.png cmd/32/controlproperties.png +cmd/32/graphicdialog-more.png cmd/32/controlproperties.png +cmd/32/framedialog-more.png cmd/32/controlproperties.png +cmd/32/objectdialog-more.png cmd/32/controlproperties.png +cmd/32/borderdialog-more.png cmd/32/controlproperties.png +cmd/32/textwrap-more.png cmd/32/controlproperties.png +cmd/32/formatarea-more.png cmd/32/controlproperties.png +cmd/32/formatline-more.png cmd/32/controlproperties.png +cmd/lc_zoom-more.png cmd/lc_controlproperties.png +cmd/lc_accepttrackedchanges-more.png cmd/lc_controlproperties.png +cmd/lc_fontdialog-more.png cmd/lc_controlproperties.png +cmd/lc_paragraphdialog-more.png cmd/lc_controlproperties.png +cmd/lc_tabledialog-more.png cmd/lc_controlproperties.png +cmd/lc_transformdialog-more.png cmd/lc_controlproperties.png +cmd/lc_graphicdialog-more.png cmd/lc_controlproperties.png +cmd/lc_framedialog-more.png cmd/lc_controlproperties.png +cmd/lc_objectdialog-more.png cmd/lc_controlproperties.png +cmd/lc_borderdialog-more.png cmd/lc_controlproperties.png +cmd/lc_textwrap-more.png cmd/lc_controlproperties.png +cmd/lc_formatarea-more.png cmd/lc_controlproperties.png +cmd/lc_formatline-more.png cmd/lc_controlproperties.png +cmd/sc_zoom-more.png cmd/sc_controlproperties.png +cmd/sc_accepttrackedchanges-more.png cmd/sc_controlproperties.png +cmd/sc_fontdialog-more.png cmd/sc_controlproperties.png +cmd/sc_paragraphdialog-more.png cmd/sc_controlproperties.png +cmd/sc_tabledialog-more.png cmd/sc_controlproperties.png +cmd/sc_transformdialog-more.png cmd/sc_controlproperties.png +cmd/sc_graphicdialog-more.png cmd/sc_controlproperties.png +cmd/sc_framedialog-more.png cmd/sc_controlproperties.png +cmd/sc_objectdialog-more.png cmd/sc_controlproperties.png +cmd/sc_borderdialog-more.png cmd/sc_controlproperties.png +cmd/sc_textwrap-more.png cmd/sc_controlproperties.png +cmd/sc_formatarea-more.png cmd/sc_controlproperties.png +cmd/sc_formatline-more.png cmd/sc_controlproperties.png Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/reportdesign/res/sx10454.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/reportdesign/res/sx10454.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/reportdesign/res/sx10928.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/reportdesign/res/sx10928.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/reportdesign/res/sx10929.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/reportdesign/res/sx10929.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/reportdesign/res/sx12452.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/reportdesign/res/sx12452.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/reportdesign/res/sx12453.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/reportdesign/res/sx12453.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/reportdesign/res/sx12466.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/reportdesign/res/sx12466.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/reportdesign/res/sx12468.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/reportdesign/res/sx12468.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/reportdesign/res/sx12603.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/reportdesign/res/sx12603.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/basbrk.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/basbrk.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/base128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/base128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/base_thumbnail_256.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/base_thumbnail_256.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/basobj2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/basobj2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/baswatr.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/baswatr.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/calc128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/calc128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/colorsliderleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/colorsliderleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/colorsliderright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/colorsliderright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/component_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/component_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/da01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/da01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/da02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/da02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/da03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/da03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/da04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/da04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/da05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/da05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/da06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/da06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/dialogfolder_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/dialogfolder_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/dialogfoldernot_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/dialogfoldernot_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/draw128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/draw128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/fp010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/fp010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/fp015.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/fp015.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/fwthcirc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/fwthcirc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/grafikde.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/grafikde.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/harddisk_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/harddisk_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/helpimg/info.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/helpimg/info.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/helpimg/note.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/helpimg/note.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/helpimg/tip.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/helpimg/tip.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/helpimg/warning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/helpimg/warning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/hldocntp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/hldocntp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/hldoctp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/hldoctp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/im30822.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/im30822.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/im30823.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/im30823.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/im30827.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/im30827.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/im30838.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/im30838.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/im30839.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/im30839.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/im30840.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/im30840.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/im30841.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/im30841.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/impress128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/impress128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/javacomponent_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/javacomponent_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/javalibrary_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/javalibrary_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lc06303.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lc06303.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lftrgt.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lftrgt.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03123.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03123.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03125.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03125.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03126.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03126.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03127.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03127.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03129.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03129.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03130.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03130.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03131.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03131.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03132.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03132.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03135.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03135.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03161.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03161.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03162.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03162.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03163.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03163.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03166.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03166.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03243.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03243.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/lx03244.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/lx03244.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/main128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/main128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/mainapp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/mainapp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/mainapp_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/mainapp_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/mainapp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/mainapp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/mainapp_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/mainapp_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/mainapp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/mainapp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/math128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/math128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/minus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/minus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/notebookbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/notebookbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/note.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/note.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odb_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odb_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odb_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odb_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odb_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odb_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odb_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odb_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odf_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odf_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odf_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odf_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odg_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odg_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odg_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odg_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odm_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odm_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odm_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odm_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odm_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odm_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odm_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odm_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odp_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odp_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odp_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odp_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ods_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ods_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ods_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ods_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ods_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ods_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ods_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ods_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ods_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ods_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odt_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odt_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odt_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odt_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odt_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odt_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odt_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odt_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/odt_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/odt_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otf_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otf_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otf_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otf_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otg_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otg_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otg_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otg_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otp_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otp_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/otp_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/otp_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ots_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ots_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ots_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ots_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ots_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ots_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ots_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ots_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ots_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ots_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ott_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ott_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ott_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ott_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ott_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ott_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ott_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ott_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/ott_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/ott_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/plus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/plus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/recentdoc_remove_highlighted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/recentdoc_remove_highlighted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/recentdoc_remove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/recentdoc_remove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/savemodified_extralarge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/savemodified_extralarge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/savemodified_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/savemodified_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/savemodified_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/savemodified_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sc06303.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sc06303.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/script.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/script.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/soliline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/soliline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03123.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03123.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03125.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03125.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03126.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03126.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03127.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03127.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03129.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03129.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03130.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03130.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03131.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03131.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03132.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03132.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03135.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03135.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03161.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03161.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03162.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03162.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03163.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03163.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03166.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03166.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03187.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03187.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03201.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03201.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03243.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03243.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx03244.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx03244.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx16670.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx16670.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx18022.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx18022.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/sx18027.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/sx18027.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/target.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/target.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/tb01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/tb01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/tb02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/tb02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/tb03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/tb03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/tb04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/tb04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/tb05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/tb05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/templatestar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/templatestar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/topdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/topdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/versionwarning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/versionwarning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/writer128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/writer128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/res/xml_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/res/xml_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-bars-empty.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-bars-empty.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-bars-full.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-bars-full.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-bars-half.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-bars-half.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-bars-one-quarter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-bars-one-quarter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-bars-three-quarters.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-bars-three-quarters.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-circles1-gray.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-circles1-gray.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-circles1-green.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-circles1-green.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-circles1-red.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-circles1-red.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-circles1-yellow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-circles1-yellow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-circles2-dark-gray.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-circles2-dark-gray.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-circles2-dark-red.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-circles2-dark-red.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-circles2-light-gray.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-circles2-light-gray.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-circles2-light-red.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-circles2-light-red.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-colorarrows-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-colorarrows-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-colorarrows-same.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-colorarrows-same.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-colorarrows-slightly-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-colorarrows-slightly-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-colorarrows-slightly-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-colorarrows-slightly-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-colorarrows-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-colorarrows-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-flags-green.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-flags-green.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-flags-red.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-flags-red.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-flags-yellow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-flags-yellow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-grayarrows-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-grayarrows-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-grayarrows-same.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-grayarrows-same.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-grayarrows-slightly-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-grayarrows-slightly-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-grayarrows-slightly-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-grayarrows-slightly-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-grayarrows-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-grayarrows-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-negative-red-smilie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-negative-red-smilie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-negative-yellow-smilie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-negative-yellow-smilie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-neutral-yellow-smilie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-neutral-yellow-smilie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-pies-empty.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-pies-empty.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-pies-full.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-pies-full.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-pies-half.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-pies-half.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-pies-one-quarter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-pies-one-quarter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-pies-three-quarters.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-pies-three-quarters.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-positive-green-smilie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-positive-green-smilie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-positive-yellow-smilie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-positive-yellow-smilie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-shapes-circle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-shapes-circle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-shapes-diamond.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-shapes-diamond.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-shapes-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-shapes-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-squares-empty.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-squares-empty.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-squares-full.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-squares-full.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-squares-half.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-squares-half.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-squares-one-quarter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-squares-one-quarter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-squares-three-quarters.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-squares-three-quarters.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-stars-empty.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-stars-empty.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-stars-full.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-stars-full.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-stars-half.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-stars-half.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-symbols1-check.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-symbols1-check.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-symbols1-cross.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-symbols1-cross.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-symbols1-exclamation-mark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-symbols1-exclamation-mark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-trafficlights-green.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-trafficlights-green.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-trafficlights-red.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-trafficlights-red.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-trafficlights-yellow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-trafficlights-yellow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-triangles-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-triangles-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-triangles-same.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-triangles-same.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/icon-set-triangles-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/icon-set-triangles-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/lc26049.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/lc26049.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/lftrgt.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/lftrgt.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou011.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou011.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou012.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou012.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/ou09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/ou09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/paste_formats_only.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/paste_formats_only.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/paste_transpose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/paste_transpose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/paste_values_formats.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/paste_values_formats.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/paste_values_only.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/paste_values_only.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/popup_select_current.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/popup_select_current.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/popup_unselect_current.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/popup_unselect_current.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sc26049.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sc26049.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sf01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sf01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sf02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sf02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_All_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_All_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Bottom_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Bottom_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Bottom_Double_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Bottom_Double_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Empty_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Empty_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_FourBorders_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_FourBorders_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Left_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Left_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_LeftAndRight_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_LeftAndRight_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_005.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_005.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_110.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_110.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_250.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_250.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_260.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_260.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_400.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_400.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_450.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_450.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_500.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_500.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_505.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_505.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_750.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorderLineStyle_750.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Right_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Right_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_RightDiagonal_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_RightDiagonal_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Top_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_Top_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_TopAndBottom_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_TopAndBottom_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/fill_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/fill_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/sidebar/Line_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/sidebar/Line_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/topdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/topdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/xml_attribute.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/xml_attribute.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/xml_element.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/xml_element.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sc/res/xml_element_repeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sc/res/xml_element_repeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-box.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-box.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-checkerboard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-checkerboard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-comb.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-comb.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-cover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-cover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-cube-turning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-cube-turning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-cut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-cut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-diagonal-squares.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-diagonal-squares.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-dissolve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-dissolve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-fade.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-fade.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-fall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-fall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-finedissolve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-finedissolve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-glitter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-glitter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-honeycomb.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-honeycomb.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-iris.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-iris.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-newsflash.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-newsflash.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-none.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-none.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-push.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-push.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-random-bars.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-random-bars.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-random.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-random.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-revolving-circles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-revolving-circles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-ripple.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-ripple.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-rochade.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-rochade.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-shape.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-shape.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-split.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-split.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-static.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-static.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-tile-flip.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-tile-flip.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-turn-around.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-turn-around.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-turn-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-turn-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-turning-helix.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-turning-helix.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-uncover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-uncover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-venetian-blinds-3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-venetian-blinds-3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-venetian-blinds.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-venetian-blinds.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-vortex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-vortex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-wedge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-wedge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-wheel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-wheel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/cmd/transition-wipe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/cmd/transition-wipe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/chart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/chart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/click_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/click_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/del1bmp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/del1bmp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/delall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/delall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/docclose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/docclose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/docopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/docopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/doctext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/doctext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/effect_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/effect_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/effectfade_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/effectfade_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/effectole_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/effectole_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/effectpath_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/effectpath_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/effectshape_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/effectshape_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/fade_effect_indicator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/fade_effect_indicator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/foilh01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/foilh01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/foilh02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/foilh02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/foilh03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/foilh03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/foilh04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/foilh04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/foilh06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/foilh06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/foilh09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/foilh09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/foiln01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/foiln01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/foilnone.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/foilnone.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/get1obj.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/get1obj.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/getallob.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/getallob.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/hlplhorz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/hlplhorz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/hlplvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/hlplvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/hlppoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/hlppoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/image.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/image.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_empty.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_empty.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_head01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_head01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_head02a.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_head02a.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_head02b.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_head02b.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_head02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_head02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_head03a.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_head03a.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_head03b.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_head03b.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_head03c.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_head03c.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_head03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_head03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_head04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_head04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_head06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_head06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_textonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_textonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_vertical01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_vertical01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/layout_vertical02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/layout_vertical02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/minimize_presi_80.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/minimize_presi_80.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/nv08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/nv08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/object.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/object.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/objects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/objects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/orgchart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/orgchart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/pageexcl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/pageexcl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/pageobjs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/pageobjs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/pagobjex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/pagobjex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_chart_large_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_chart_large_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_chart_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_chart_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_chart_small_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_chart_small_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_chart_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_chart_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_image_large_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_image_large_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_image_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_image_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_image_small_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_image_small_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_image_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_image_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_movie_large_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_movie_large_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_movie_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_movie_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_movie_small_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_movie_small_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_movie_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_movie_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_table_large_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_table_large_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_table_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_table_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_table_small_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_table_small_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/placeholder_table_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/placeholder_table_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/pointericon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/pointericon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-Background.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-Background.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveBottomCallout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveBottomCallout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveBottomLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveBottomLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveBottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveBottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveBottomRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveBottomRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveTopLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveTopLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveTop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveTop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveTopRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderActiveTopRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderBottomLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderBottomLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderBottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderBottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderBottomRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderBottomRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarBottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarBottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarTopLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarTopLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarTop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarTop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarTopRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderToolbarTopRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderTopLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderTopLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderTop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderTop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderTopRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-BorderTopRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonEffectNextDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonEffectNextDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonEffectNextMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonEffectNextMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonEffectNextNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonEffectNextNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonEffectNextSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonEffectNextSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonExitPresenterMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonExitPresenterMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonExitPresenterNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonExitPresenterNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameCenterMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameCenterMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameCenterNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameCenterNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameLeftMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameLeftMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameLeftNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameLeftNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameRightMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameRightMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameRightNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonFrameRightNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonHelpMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonHelpMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonHelpNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonHelpNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonMinusDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonMinusDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonMinusMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonMinusMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonMinusNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonMinusNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonMinusSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonMinusSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonNotesDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonNotesDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonNotesMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonNotesMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonNotesNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonNotesNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonNotesSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonNotesSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPauseTimerMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPauseTimerMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPauseTimerNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPauseTimerNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPlusDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPlusDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPlusMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPlusMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPlusNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPlusNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPlusSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonPlusSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonRestartTimerMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonRestartTimerMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonRestartTimerNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonRestartTimerNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonResumeTimerMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonResumeTimerMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonResumeTimerNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonResumeTimerNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlidePreviousDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlidePreviousDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlidePreviousNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlidePreviousNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlidePreviousSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlidePreviousSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlideSorterDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlideSorterDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlideSorterMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlideSorterMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlideSorterNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlideSorterNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlideSorterSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSlideSorterSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSwitchMonitorNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ButtonSwitchMonitorNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowDownDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowDownDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowDownNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowDownNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowUpDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowUpDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowUpNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarArrowUpNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbBottomNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbBottomNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbTopDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbTopDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbTopNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ScrollbarThumbTopNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/presenterscreen-ViewBackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/presenterscreen-ViewBackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/sf01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/sf01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/sf02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/sf02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/slide_sorter_focus_border.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/slide_sorter_focus_border.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/slide_sorter_hide_slide_overlay.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/slide_sorter_hide_slide_overlay.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sd/res/table.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sd/res/table.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/128x128_math_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/actiontemplates017.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/actiontemplates017.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/actionview029.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/actionview029.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/chevron.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/chevron.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/grip.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/grip.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/hlpbookclosed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/hlpbookclosed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/hlpbookopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/hlpbookopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/indexoff_big.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/indexoff_big.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/indexoff_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/indexoff_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/indexon_big.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/indexon_big.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/indexon_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/indexon_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/menu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/menu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/placeholder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/placeholder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/signet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/signet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/symphony/morebutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/symphony/morebutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sfx2/res/symphony/open_more.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sfx2/res/symphony/open_more.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/closer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/closer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/ed01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/ed01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/ed02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/ed02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/ed03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/ed03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/ed04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/ed04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/ed05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/ed05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/ed07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/ed07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/ed08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/ed08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/info_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/info_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/info_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/info_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/list_add.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/list_add.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/triangle_down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/triangle_down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/triangle_right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/triangle_right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/up_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/up_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svtools/res/up_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svtools/res/up_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/adding-selection_10x22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/adding-selection_10x22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/blend3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/blend3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/block-selection_10x22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/block-selection_10x22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/border_cell_all_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/border_cell_all_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/border_cell_diag_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/border_cell_diag_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/border_cell_l_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/border_cell_l_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/border_cell_lr_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/border_cell_lr_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/border_cell_none_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/border_cell_none_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/border_cell_tb_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/border_cell_tb_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/brightlit_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/brightlit_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/cd02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/cd02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/cropmarkers.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/cropmarkers.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/dimlit_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/dimlit_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/directioneast_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/directioneast_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/directionnorth_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/directionnorth_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/directionnortheast_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/directionnortheast_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/directionnorthwest_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/directionnorthwest_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/directionsouth_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/directionsouth_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/directionsoutheast_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/directionsoutheast_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/directionsouthwest_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/directionsouthwest_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/directionstraight_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/directionstraight_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/directionwest_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/directionwest_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/doc_modified_feedback.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/doc_modified_no_14.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/doc_modified_no_14.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/doc_modified_yes_14.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/doc_modified_yes_14.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/doublesi.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/doublesi.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/extending-selection_10x22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/extending-selection_10x22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/extrusion05inch_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/extrusion05inch_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/extrusion0inch_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/extrusion0inch_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/extrusion1inch_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/extrusion1inch_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/extrusion2inch_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/extrusion2inch_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/extrusion4inch_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/extrusion4inch_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/extrusioninfinity_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/extrusioninfinity_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr011.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr011.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr012.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr012.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr013.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr013.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr014.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr014.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr015.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr015.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fr09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fr09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw011.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw011.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw012.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw012.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw013.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw013.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw014.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw014.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw015.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw015.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw016.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw016.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw017.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw017.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw018.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw018.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw019.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw019.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw020.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw020.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw021.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw021.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fw06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fw06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwbhcirc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwbhcirc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwbotarc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwbotarc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwbuttn1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwbuttn1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwbuttn2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwbuttn2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwbuttn3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwbuttn3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwbuttn4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwbuttn4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwlftarc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwlftarc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwlhcirc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwlhcirc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwrgtarc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwrgtarc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwrhcirc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwrhcirc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/fwtoparc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/fwtoparc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/galdefl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/galdefl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/galdefs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/galdefs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/galdetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/galdetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/galicon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/galicon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/galmedia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/galmedia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/galnorl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/galnorl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/galnors.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/galnors.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/galrdol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/galrdol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/galrdos.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/galrdos.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/id016.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/id016.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/invert3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/invert3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/legtyp4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/legtyp4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lght2sid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lght2sid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lightfrombottom_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lightfrombottom_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lightfrombottomleft_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lightfrombottomleft_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lightfrombottomright_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lightfrombottomright_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lightfromfront_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lightfromfront_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lightfromleft_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lightfromleft_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lightfromright_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lightfromright_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lightfromtop_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lightfromtop_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lightfromtopleft_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lightfromtopleft_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lightfromtopright_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lightfromtopright_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lighton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lighton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/light.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/light.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/listview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/listview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lo01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lo01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lo02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lo02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/lo03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/lo03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/markers.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/markers.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/material.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/material.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/matte_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/matte_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/metal_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/metal_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/modula3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/modula3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/normallit_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/normallit_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/normflat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/normflat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/normobjs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/normobjs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/normsphe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/normsphe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/notcheck.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/notcheck.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/nu04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/nu04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/objspc3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/objspc3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pageshadow35x35.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pageshadow35x35.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/parallel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/parallel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/plastic_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/plastic_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr011.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr011.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr012.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr012.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr013.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr013.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr014.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr014.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr015.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr015.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr016.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr016.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr017.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr017.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr018.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr018.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr019.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr019.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr020.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr020.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr021.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr021.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/pr09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/pr09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/rectbtns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/rectbtns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/replac3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/replac3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/selection_10x22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/selection_10x22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/sh01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/sh01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/sh02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/sh02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/sh03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/sh03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/sh04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/sh04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/sh05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/sh05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/shadow3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/shadow3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/shadow_bottom_left_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/shadow_bottom_left_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/shadow_bottom_right_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/shadow_bottom_right_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/shadow_none_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/shadow_none_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/shadow_top_left_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/shadow_top_left_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/shadow_top_right_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/shadow_top_right_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/slidezoombutton_10.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/slidezoombutton_10.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/slidezoomin_10.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/slidezoomin_10.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/slidezoomout_10.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/slidezoomout_10.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/sphere3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/sphere3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/standard-selection_10x22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/standard-selection_10x22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/axial.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/axial.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/blank.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/blank.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/ellipsoid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/ellipsoid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/Indent2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/Indent2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/Indent3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/Indent3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/Indent4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/Indent4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/last_custom_common_grey.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/last_custom_common_grey.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/last_custom_common.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/last_custom_common.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/line10.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/line10.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/line1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/line1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/line2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/line2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/line3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/line3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/line4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/line4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/line5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/line5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/line6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/line6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/line7.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/line7.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/line8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/line8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/line9.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/line9.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/linear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/linear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/Quadratic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/Quadratic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/radial.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/radial.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/rotate_left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/rotate_left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/rotate_right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/rotate_right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/selected-line10.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/selected-line10.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/selected-line1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/selected-line1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/selected-line2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/selected-line2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/selected-line3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/selected-line3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/selected-line4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/selected-line4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/selected-line5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/selected-line5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/selected-line6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/selected-line6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/selected-line7.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/selected-line7.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/selected-line8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/selected-line8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/selected-line9.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/selected-line9.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing_loose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing_loose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing_loose_s.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing_loose_s.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing_normal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing_normal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing_normal_s.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing_normal_s.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing_tight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing_tight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing_tight_s.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing_tight_s.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing_very_loose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing_very_loose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing_very_loose_s.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing_very_loose_s.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing_very_tight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing_very_tight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/spacing_very_tight_s.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/spacing_very_tight_s.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/Square.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/Square.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/width1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/width1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/width2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/width2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/width3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/width3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/width4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/width4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/width5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/width5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/width6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/width6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/width7.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/width7.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/symphony/width8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/symphony/width8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/wireframe_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/wireframe_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/zetlhor2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/zetlhor2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/zetlver2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/zetlver2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/svx/res/zoom_page_statusbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/svx/res/zoom_page_statusbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/all_left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/all_left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/all_right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/all_right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/doublepage_10x22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/doublepage_a_10x22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/emptypage_10x14.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/emptypage_a_10x14.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envhc_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envhc_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envhc_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envhc_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envhl_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envhl_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envhl_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envhl_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envhr_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envhr_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envhr_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envhr_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envvc_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envvc_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envvc_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envvc_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envvl_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envvl_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envvl_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envvl_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envvr_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envvr_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/envvr_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/envvr_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/nc20000.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/nc20000.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/one_left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/one_left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/one_right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/one_right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/re01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/re01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/re02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/re02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/re03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/re03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/re04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/re04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/redline_deleted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/redline_deleted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/redline_fmtcollset.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/redline_fmtcollset.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/redline_formatted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/redline_formatted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/redline_inserted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/redline_inserted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/redline_tablechg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/redline_tablechg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sc20234.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sc20234.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sc20236.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sc20236.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sc20245.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sc20245.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sc20246.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sc20246.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sc20248.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sc20248.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sf01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sf01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sf03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sf03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sf05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sf05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column1_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column1_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column2_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column2_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column3_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column3_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/columncopy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/columncopy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_1_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_1_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_2_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_2_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_3_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_3_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_copy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_copy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/columnleft_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/columnleft_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_left_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_left_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_right_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/column_L_right_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/columnright_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/columnright_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/formatcopy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/formatcopy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/format_L_copy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/format_L_copy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/format_L_wide_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/format_L_wide_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/formatmirror_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/formatmirror_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/formatnarrow_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/formatnarrow_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/formatnormal_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/formatnormal_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/formatwide_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/formatwide_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/portraitcopy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sidebar/pageproppanel/portraitcopy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sr20012.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sr20012.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sr20018.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sr20018.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/sr20019.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/sr20019.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/twopages_10x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/twopages_10x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/twopages_a_10x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr011.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr011.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/sw/res/wr09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/sw/res/wr09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/check1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/check1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/check2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/check2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/check3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/check3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/check4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/check4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/check5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/check5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/check6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/check6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/check7.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/check7.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/check8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/check8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/check9.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/check9.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/collate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/collate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/errorbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/errorbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/fatcross.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/fatcross.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/infobox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/infobox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/MergeEmptyHidden.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/MergeEmptyHidden.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/MergeFirstCell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/MergeFirstCell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/MergeKeepHidden.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/MergeKeepHidden.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/ncollate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/ncollate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/querybox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/querybox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/radio1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/radio1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/radio2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/radio2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/radio3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/radio3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/radio4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/radio4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/radio5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/radio5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/radio6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/radio6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/successbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/successbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/vcl/res/warningbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/vcl/res/warningbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/wizards/res/formarrangefree_42.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/wizards/res/formarrangefree_42.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/wizards/res/formarrangelistside_42.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/wizards/res/formarrangelistside_42.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/wizards/res/formarrangelisttop_42.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/wizards/res/formarrangelisttop_42.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/wizards/res/formarrangetable_42.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/wizards/res/formarrangetable_42.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/wizards/res/landscape_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/wizards/res/landscape_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/wizards/res/portrait_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/wizards/res/portrait_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/xmlsecurity/res/certificate_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/xmlsecurity/res/certificate_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/xmlsecurity/res/certificate_40x56.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/xmlsecurity/res/certificate_40x56.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/xmlsecurity/res/notcertificate_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/xmlsecurity/res/notcertificate_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/xmlsecurity/res/notcertificate_40x56.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/xmlsecurity/res/notcertificate_40x56.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura/xmlsecurity/res/signet_11x16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura/xmlsecurity/res/signet_11x16.png differ diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/AUTHORS libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/AUTHORS --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/AUTHORS 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/AUTHORS 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,19 @@ +------------------------ Sukapura Icon Theme for LibreOffice ------------------------ +Copyright (c) 2019-2023 Rizal Muttaqin + +Sukapura whose the name is taken after a kingdom of my hometown Tasikmalaya is +derived from Colibre, designed to fit macOS desktop. + +The Colibre Icon Theme in icons/ + + Original author: Andreas Kainz + + Icon theme is released under Creative Commons CC0 + You are free to adapt and use them for commercial purposes + without attributing the original author or source. Although + not required, a link back to LibreOffice is appreciated. + + For additional Information go to the Creative Commons webpage + https://creativecommons.org/publicdomain/zero/1.0/ + +------------------------ Sukapura Icon Theme for LibreOffice ------------------------ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/avmedia/res/avaudiologo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/avmedia/res/avaudiologo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/avmedia/res/avemptylogo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/avmedia/res/avemptylogo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/areas3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/areas3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/areas_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/areas_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/areasfull3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/areasfull3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/areasfull_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/areasfull_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/areaspiled3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/areaspiled3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/areaspiled_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/areaspiled_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/bar3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/bar3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/bar3ddeep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/bar3ddeep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/bar_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/bar_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/barpercent3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/barpercent3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/barpercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/barpercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/barstack3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/barstack3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/barstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/barstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/bubble_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/bubble_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/columnline_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/columnline_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/columnpercent3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/columnpercent3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/columnpercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/columnpercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/columns3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/columns3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/columns3ddeep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/columns3ddeep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/columns_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/columns_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/columnstack3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/columnstack3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/columnstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/columnstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/columnstackline_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/columnstackline_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/cone_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/cone_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/conedeep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/conedeep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/conehori_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/conehori_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/conehorideep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/conehorideep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/conehoripercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/conehoripercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/conehoristack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/conehoristack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/conepercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/conepercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/conestack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/conestack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/cylinder_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/cylinder_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/cylinderdeep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/cylinderdeep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/cylinderhori_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/cylinderhori_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/cylinderhorideep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/cylinderhorideep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/cylinderhoriprocent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/cylinderhoriprocent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/cylinderhoristack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/cylinderhoristack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/cylinderpercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/cylinderpercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/cylinderstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/cylinderstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/dataeditor_icon05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/dataeditor_icon05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/dataeditor_icon06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/dataeditor_icon06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/dataeditor_icon07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/dataeditor_icon07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/dataeditor_icon08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/dataeditor_icon08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/dataeditor_icon09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/dataeditor_icon09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/donut3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/donut3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/donut3dexploded_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/donut3dexploded_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/donut_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/donut_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/donutexploded_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/donutexploded_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/errorbothhori_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/errorbothhori_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/errorbothverti_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/errorbothverti_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/errordown_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/errordown_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/errorleft_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/errorleft_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/errorright_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/errorright_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/errorup_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/errorup_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/net_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/net_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/netfill_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/netfill_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/netlinepoint_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/netlinepoint_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/netlinepointstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/netlinepointstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/netpoint_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/netpoint_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/netpointstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/netpointstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/netstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/netstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/netstackfill_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/netstackfill_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/nostackdirect3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/nostackdirect3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/nostackdirectboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/nostackdirectboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/nostackdirectlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/nostackdirectlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/nostackdirectpoints_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/nostackdirectpoints_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/nostacksmooth3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/nostacksmooth3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/nostacksmoothboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/nostacksmoothboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/nostacksmoothlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/nostacksmoothlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/nostackstepped3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/nostackstepped3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/nostacksteppedboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/nostacksteppedboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/nostacksteppedlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/nostacksteppedlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pie3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pie3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pie3dexploded_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pie3dexploded_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pie_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pie_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pieexploded_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pieexploded_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pyramind_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pyramind_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pyraminddeep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pyraminddeep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pyramindhori_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pyramindhori_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pyramindhorideep_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pyramindhorideep_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pyramindhoripercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pyramindhoripercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pyramindhoristack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pyramindhoristack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pyramindpercent_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pyramindpercent_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/pyramindstack_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/pyramindstack_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/regavg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/regavg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/regexp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/regexp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/reglin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/reglin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/reglog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/reglog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/regno.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/regno.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/regpoly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/regpoly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/regpow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/regpow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stackdirect3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stackdirect3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stackdirectboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stackdirectboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stackdirectlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stackdirectlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stackdirectpoints_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stackdirectpoints_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stacksmooth3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stacksmooth3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stacksmoothboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stacksmoothboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stacksmoothlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stacksmoothlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stackstepped3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stackstepped3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stacksteppedboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stacksteppedboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stacksteppedlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stacksteppedlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/step_center_x_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/step_center_x_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/step_center_y_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/step_center_y_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/step_end_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/step_end_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/step_start_30.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/step_start_30.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stock_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stock_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stockblock_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stockblock_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stockcolumns_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stockcolumns_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/stockcolumnsattach_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/stockcolumnsattach_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/typearea_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/typearea_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/typebar_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/typebar_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/typebubble_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/typebubble_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/typecolumn_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/typecolumn_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/typecolumnline_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/typecolumnline_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/typenet_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/typenet_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/typepie_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/typepie_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/typepointline_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/typepointline_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/typestock_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/typestock_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/typexy_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/typexy_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/valueaxisdirect3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/valueaxisdirect3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/valueaxisdirectboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/valueaxisdirectboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/valueaxisdirectlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/valueaxisdirectlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/valueaxisdirectpoints_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/valueaxisdirectpoints_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/valueaxissmooth3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/valueaxissmooth3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/valueaxissmoothboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/valueaxissmoothboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/valueaxissmoothlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/valueaxissmoothlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/valueaxisstepped3d_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/valueaxisstepped3d_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/valueaxissteppedboth_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/valueaxissteppedboth_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/chart2/res/valueaxissteppedlines_52x60.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/chart2/res/valueaxissteppedlines_52x60.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/accent1cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/accent1cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/accent2cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/accent2cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/accent3cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/accent3cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/acceptalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/acceptalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/accepttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/accepttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/accepttrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/accepttrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/accepttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/accepttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/actionmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/actionmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/adddirect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/adddirect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/addfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/addfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/additionsdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/additionsdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/addname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/addname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/addprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/addprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/addressbooksource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/addressbooksource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/addtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/addtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/addwatch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/addwatch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/advancedmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/advancedmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/alignblock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/alignblock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/alignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/alignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/aligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/aligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/aligndown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/aligndown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/alignhorizontalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/alignhorizontalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/alignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/alignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/alignmiddle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/alignmiddle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/alignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/alignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/aligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/aligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/alignup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/alignup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/alignverticalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/alignverticalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/animationeffects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/animationeffects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/animationmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/animationmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/animationobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/animationobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ar/setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ar/setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.chevron.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.chevron.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.circular-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.circular-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.corner-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.corner-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.left-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.left-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.left-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.left-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.left-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.left-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.notched-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.notched-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.pentagon-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.pentagon-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.quad-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.quad-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.quad-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.quad-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.split-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.split-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.split-round-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.split-round-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.s-sharped-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.s-sharped-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.striped-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.striped-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-right-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/arrowshapes.up-right-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/assignlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/assignlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/assignmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/assignmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/attributepagesize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/attributepagesize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/auditingfillmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/auditingfillmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/auditmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/auditmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/autocontrolfocus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/autocontrolfocus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/autoformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/autoformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/autooutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/autooutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/autopilotmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/autopilotmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/autoredactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/autoredactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/autosum.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/autosum.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/avmediaplayer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/avmediaplayer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/backcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/backcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/backgroundcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/backgroundcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/backward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/backward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicideappear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicideappear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.block-arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.block-arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.can.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.can.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.cross.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.cross.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.diamond.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.diamond.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.frame.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.frame.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.hexagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.hexagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.isosceles-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.isosceles-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.octagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.octagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.paper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.paper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.pentagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.pentagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.right-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.right-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.ring.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.ring.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.round-quadrat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.round-quadrat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.trapezoid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicshapes.trapezoid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicstepinto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicstepinto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicstepout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicstepout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicstepover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicstepover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/basicstop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/basicstop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/beforeobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/beforeobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/behindobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/behindobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bezierappend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bezierappend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bezierclose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bezierclose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bezierconvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bezierconvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/beziercutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/beziercutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bezierdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bezierdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bezieredge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bezieredge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/beziereliminatepoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/beziereliminatepoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bezierfill.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bezierfill.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bezierinsert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bezierinsert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/beziermove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/beziermove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/beziersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/beziersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/beziersymmetric.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/beziersymmetric.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bezier_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bezier_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/backcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/backcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bg/wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bg/wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bibliographycomponent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bibliographycomponent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bmpmask.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bmpmask.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/borderdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/borderdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/break.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/break.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bringtofront.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bringtofront.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/browseview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/browseview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/calculate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/calculate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.cloud-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.cloud-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.line-callout-1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.line-callout-1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.line-callout-2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.line-callout-2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.line-callout-3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.line-callout-3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.rectangular-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.rectangular-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.round-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/calloutshapes.round-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/cancel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/cancel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/capturepoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/capturepoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/cellprotection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/cellprotection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/chainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/chainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/changebezier.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/changebezier.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/changecasetolower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/changecasetolower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/changecasetoupper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/changecasetoupper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/changedatabasefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/changedatabasefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/changepicture.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/changepicture.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/changepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/changepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/charmapcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/charmapcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/checkbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/checkbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/choosecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/choosecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/choosedesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/choosedesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/choosemacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/choosemacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/choosepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/choosepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/circlearc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/circlearc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/circlecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/circlecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/circlecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/circlecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/circlepie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/circlepie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/circlepie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/circlepie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/circle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/circle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/circle_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/circle_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/cleararrowdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/cleararrowdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/cleararrowprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/cleararrowprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/cleararrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/cleararrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/closedoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/closedoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/closedocs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/closedocs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/closemasterview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/closemasterview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/closepreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/closepreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/colorscaleformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/colorscaleformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/colorsettings.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/colorsettings.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/combine.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/combine.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/combobox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/combobox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/commentchangetracking.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/commentchangetracking.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/comparedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/comparedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/compilebasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/compilebasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/compressgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/compressgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/conddateformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/conddateformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/conditionalformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/conditionalformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/cone.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/cone.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/configuredialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/configuredialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorcircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorcircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorcircles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorcircles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorcirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorcirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvecircles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvecircles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurvecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorcurve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinesarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinesarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinesarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinesarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinesarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinesarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinescircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinescircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinescirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlinescirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connectorlines.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connectorlines.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/connect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/connect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/contourdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/contourdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/controlcodes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/controlcodes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/controlproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/controlproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/convertinto3dlathe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/convertinto3dlathe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/convertinto3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/convertinto3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/copyobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/copyobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/copy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/copy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/crookrotate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/crookrotate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/crookslant.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/crookslant.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/crop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/crop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/currencyfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/currencyfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/customshowdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/customshowdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/cut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/cut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/cylinder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/cylinder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/cyramid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/cyramid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dataarearefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dataarearefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/databarformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/databarformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dataconsolidate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dataconsolidate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/datadatapilotrun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/datadatapilotrun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/datafilterautofilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/datafilterautofilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/datafilterspecialfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/datafilterspecialfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/datafilterstandardfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/datafilterstandardfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dataform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dataform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dataimport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dataimport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dataincolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dataincolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/datainrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/datainrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dataprovider.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dataprovider.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dataproviderrefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dataproviderrefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dataranges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dataranges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/datasort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/datasort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/datastreams.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/datastreams.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/datasubtotals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/datasubtotals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/datefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/datefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbaddrelation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbaddrelation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbchangedesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbchangedesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbclearquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbclearquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbdistinctvalues.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbdistinctvalues.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbformdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbformdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbformedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbformedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbformopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbformopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbformrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbformrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbindexdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbindexdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbnewform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbnewform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbnewquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbnewquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbnewquerysql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbnewquerysql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbnewreport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbnewreport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbnewtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbnewtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbnewview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbnewview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbnewviewsql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbnewviewsql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbquerydelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbquerydelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbqueryedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbqueryedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbqueryopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbqueryopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbquerypropertiesdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbquerypropertiesdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbqueryrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbqueryrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbrelationdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbrelationdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbreportdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbreportdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbreportedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbreportedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbreportopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbreportopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbreportrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbreportrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbsortingandgrouping.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbsortingandgrouping.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbtabledelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbtabledelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbtableedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbtableedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbtableopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbtableopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbtablerename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbtablerename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbviewaliases.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbviewaliases.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbviewforms.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbviewforms.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbviewfunctions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbviewfunctions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbviewqueries.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbviewqueries.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbviewreports.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbviewreports.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbviewtablenames.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbviewtablenames.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dbviewtables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dbviewtables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/de/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/de/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/de/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/de/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/de/numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/de/numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/de/numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/de/numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/de/numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/de/numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/de/numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/de/numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/decrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/decrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/decrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/decrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/decrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/decrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/defaultcharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/defaultcharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/definedbname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/definedbname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/definename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/definename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/defineprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/defineprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deleteallannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deleteallannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deleteallbreaks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deleteallbreaks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deleteannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deleteannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deletecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deletecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deletecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deletecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deletemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deletemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deletepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deletepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deletepivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deletepivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/delete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/delete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deleteprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deleteprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deleterows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deleterows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deleteslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deleteslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/deletetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/deletetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/developmenttoolsdockingwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/developmenttoolsdockingwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diaeffect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diaeffect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diagramarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diagramarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diagramaxis.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diagramaxis.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diagramaxisx.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diagramaxisx.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diagramaxisxyz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diagramaxisxyz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diagramaxisy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diagramaxisy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diagramaxisz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diagramaxisz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diagramdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diagramdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diagramtype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diagramtype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diagramwall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diagramwall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diamode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diamode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diaspeed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diaspeed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/diatime.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/diatime.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dismantle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dismantle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/displaymasterbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/displaymasterbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/displaymasterobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/displaymasterobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/displaymode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/displaymode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributehorzcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributehorzcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributehorzdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributehorzdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributehorzleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributehorzleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributehorzright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributehorzright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributerows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributerows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributeselection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributeselection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributevertbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributevertbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributevertcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributevertcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributevertdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributevertdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/distributeverttop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/distributeverttop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/documentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/documentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/downsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/downsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/drawcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/drawcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/drawchart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/drawchart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dsbinsertcontent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dsbinsertcontent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/dsbrowserexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/dsbrowserexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/duplicatepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/duplicatepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/duplicatesheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/duplicatesheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/duplicateslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/duplicateslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/editannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/editannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/editcurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/editcurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/editdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/editdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/editframeset.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/editframeset.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/editglossary.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/editglossary.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/editheaderandfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/editheaderandfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/edithyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/edithyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/editprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/editprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/editqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/editqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ellipsecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ellipsecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ellipsecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ellipsecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ellipse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ellipse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ellipse_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ellipse_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/emojicontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/emojicontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/emphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/emphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/entergroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/entergroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/entirecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/entirecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/entirecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/entirecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/entirerow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/entirerow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/equalizeheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/equalizeheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/equalizewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/equalizewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/errorcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/errorcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/es/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/es/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/es/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/es/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/es/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/es/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/euroconverter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/euroconverter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/executereport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/executereport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/expandpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/expandpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/exportdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/exportdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/exportdirecttoepub.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/exportdirecttoepub.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/exportdirecttopdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/exportdirecttopdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/exportto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/exportto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/extendedhelp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/extendedhelp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/extrusion3dcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/extrusion3dcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/extrusiondepthfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/extrusiondepthfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/extrusiondirectionfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/extrusiondirectionfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/extrusionlightingfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/extrusionlightingfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/extrusionsurfacefloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/extrusionsurfacefloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/extrusiontiltdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/extrusiontiltdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/extrusiontiltleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/extrusiontiltleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/extrusiontiltright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/extrusiontiltright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/extrusiontiltup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/extrusiontiltup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/filecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/filecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/filedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/filedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/filefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/filefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/filldown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/filldown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fillleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fillleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fillright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fillright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fillshadow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fillshadow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fillup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fillup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/firstpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/firstpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/firstrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/firstrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/firstslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/firstslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-card.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-card.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-collate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-collate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-decision.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-decision.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-delay.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-delay.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-direct-access-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-direct-access-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-display.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-display.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-document.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-document.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-internal-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-internal-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-manual-input.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-manual-input.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-multidocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-multidocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-off-page-connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-off-page-connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-or.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-or.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-predefined-process.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-predefined-process.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-preparation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-preparation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-punched-tape.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-punched-tape.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-sequential-access.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-sequential-access.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-sort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-sort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-stored-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-stored-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-summing-junction.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-summing-junction.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-terminator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.flowchart-terminator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/flowchartshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkgalleryfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkgalleryfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontwork.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontwork.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworksameletterheights.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworksameletterheights.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-down-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-down-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-down-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-down-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-left-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-left-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-left-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-left-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-right-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-right-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-right-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-right-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-up-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-up-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-up-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-arch-up-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-chevron-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-chevron-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-chevron-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-chevron-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-curve-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-curve-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-curve-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-curve-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-fade-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-fade-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-fade-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-fade-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-fade-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-fade-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-inflate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-inflate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-open-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-open-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-open-circle-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-open-circle-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-plain-text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-plain-text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-slant-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-slant-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-slant-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-slant-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-stop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-stop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-triangle-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-triangle-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-wave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fontworkshapetype.fontwork-wave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/footnotedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/footnotedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formatcelldialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formatcelldialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formatcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formatcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formatgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formatgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formatline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formatline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formatpaintbrush.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formatpaintbrush.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formattedfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formattedfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formatungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formatungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formdesigntools.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formdesigntools.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formelcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formelcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formfiltered.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formfiltered.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formfilternavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formfilternavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/formproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/formproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/forward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/forward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fr/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fr/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/framedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/framedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/framelinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/framelinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/freeline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/freeline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/freeline_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/freeline_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/freezepanesfirstcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/freezepanesfirstcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/freezepanesfirstrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/freezepanesfirstrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/freezepanes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/freezepanes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/fullscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/fullscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gallery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gallery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/glueeditmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/glueeditmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/glueescapedirectionbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/glueescapedirectionbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/glueescapedirectionleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/glueescapedirectionleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/glueescapedirectionright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/glueescapedirectionright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/glueescapedirectiontop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/glueescapedirectiontop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gluehorzaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gluehorzaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gluehorzalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gluehorzalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gluehorzalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gluehorzalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/glueinsertpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/glueinsertpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gluepercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gluepercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gluevertalignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gluevertalignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gluevertaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gluevertaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gluevertaligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gluevertaligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/goalseekdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/goalseekdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gotoendofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gotoendofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gotoend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gotoend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gotopage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gotopage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gotostartofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gotostartofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gotostartoftable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gotostartoftable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/grafblue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/grafblue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/grafcontrast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/grafcontrast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/grafgamma.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/grafgamma.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/grafgreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/grafgreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/grafluminance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/grafluminance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/grafred.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/grafred.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graftransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graftransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfilterinvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfilterinvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltermosaic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltermosaic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfilterpopart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfilterpopart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfilterposter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfilterposter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfilterrelief.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfilterrelief.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfilterremovenoise.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfilterremovenoise.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltersepia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltersepia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltersharpen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltersharpen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltersobel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltersobel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltersolarize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphicfiltersolarize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/graphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/graphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/greatestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/greatestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/greatestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/greatestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/grid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/grid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/griduse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/griduse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/gridvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/gridvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/groupbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/groupbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/group.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/group.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/grow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/grow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/halfsphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/halfsphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/handoutmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/handoutmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hangingindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hangingindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/heading1parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/heading1parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/heading2parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/heading2parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/heading3parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/heading3parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/heading4parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/heading4parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/heading5parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/heading5parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/heading6parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/heading6parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/helpindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/helpindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/helplinesmove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/helplinesmove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/helplinesuse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/helplinesuse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/helplinesvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/helplinesvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hideallnotes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hideallnotes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hidecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hidecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hidedetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hidedetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hidenote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hidenote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hiderow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hiderow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hideslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hideslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hidewhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hidewhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hscrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hscrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hu/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hu/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hu/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hu/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hu/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hu/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/iconsetformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/iconsetformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/imagebutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/imagebutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/imagecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/imagecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/imagemapdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/imagemapdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/importdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/importdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/importfromfile.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/importfromfile.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/incrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/incrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/incrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/incrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/incrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/incrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/inputlinevisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/inputlinevisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/inscellsctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/inscellsctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertauthoritiesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertauthoritiesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertbookmark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertbookmark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertcaptiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertcaptiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertcellsdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertcellsdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertcellsright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertcellsright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertcolumnbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertcolumnbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertcolumnsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertcolumnsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertcolumnsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertcolumnsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertdatefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertdatefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertdraw.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertdraw.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertendnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertendnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertenvelope.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertenvelope.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertexternaldatasource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertexternaldatasource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertfieldctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertfieldctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertfootnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertfootnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertheader.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertheader.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/inserthyperlinkcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/inserthyperlinkcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/inserthyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/inserthyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertindexesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertmath.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertmath.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertmenutitles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertmenutitles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertmultiindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertmultiindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertobjectfloatingframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertobjectfloatingframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertpagebreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertpagebreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertpagecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertpagecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertpagenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertpagenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertplugin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertplugin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertreferencefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertrowbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertrowbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertrowsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertrowsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertrowsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertrowsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertsection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertsection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertslidecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertslidecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertslidenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertslidenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertslidetitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertslidetitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertsound.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertsound.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertspreadsheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertspreadsheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertsymbol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertsymbol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/inserttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/inserttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/inserttimefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/inserttimefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/inserttitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/inserttitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/inserttopicfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/inserttopicfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/inserttreecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/inserttreecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/insertvideo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/insertvideo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/inspectordeck.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/inspectordeck.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/interactivegradient.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/interactivegradient.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/interactivetransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/interactivetransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/intersect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/intersect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/it/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/it/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/jumptonexttablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/jumptonexttablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/jumptoprevtablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/jumptoprevtablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/km/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/km/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/km/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/km/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/km/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/km/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/km/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/km/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ko/verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ko/verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/lastpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/lastpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/lastrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/lastrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/lastslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/lastslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/leaveallgroups.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/leaveallgroups.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/leavegroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/leavegroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/legend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/legend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-clearscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-clearscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-gobackward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-gobackward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-goforward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-goforward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-home.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-home.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/librelogo-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/linearrowcircle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/linearrowcircle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/linearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/linearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/linearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/linearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/linearrowsquare.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/linearrowsquare.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/linearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/linearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/linecirclearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/linecirclearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/line_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/line_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/lineendstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/lineendstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/line.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/line.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/linesquarearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/linesquarearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/linestyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/linestyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/linewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/linewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/listbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/listbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/loadbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/loadbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/lock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/lock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/macrorecorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/macrorecorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mailmergecreatedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mailmergecreatedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mailmergeemaildocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mailmergeemaildocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mailmergeexcludeentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mailmergeexcludeentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mailmergeprintdocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mailmergeprintdocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mailmergesavedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mailmergesavedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mailmergewizard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mailmergewizard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/managebreakpoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/managebreakpoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/managelanguage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/managelanguage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/managexmlsource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/managexmlsource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/marks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/marks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/masterlayouts.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/masterlayouts.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/masterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/masterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/matchgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/matchgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/measureline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/measureline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mediamute.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mediamute.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mediapause.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mediapause.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mediarepeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mediarepeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/menubar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/menubar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mergedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mergedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mergedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mergedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/merge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/merge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mergetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mergetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mirror.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mirror.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/mirrorvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/mirrorvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/modifyframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/modifyframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/modifypage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/modifypage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/moduledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/moduledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/morecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/morecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/morphing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/morphing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/movedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/movedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/movedownsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/movedownsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/movepagedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/movepagedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/movepagefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/movepagefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/movepagelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/movepagelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/movepageup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/movepageup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/move.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/move.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/moveslidedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/moveslidedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/moveslidefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/moveslidefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/moveslidelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/moveslidelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/moveslideup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/moveslideup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/moveup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/moveup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/moveupsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/moveupsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/name.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/name.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/navigationbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/navigationbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/navigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/navigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/newarrangement.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/newarrangement.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/newdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/newdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/newhtmldoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/newhtmldoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/newwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/newwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/nextannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/nextannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/nextpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/nextpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/nextrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/nextrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/nextslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/nextslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/nexttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/nexttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/nl/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/nl/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/nl/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/nl/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/nl/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/nl/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/normalmultipanegui.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/normalmultipanegui.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/normalviewmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/normalviewmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/notesmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/notesmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/notesmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/notesmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/numberformatdate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/numberformatdate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/numberformatpercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/numberformatpercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/numberformatscientific.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/numberformatscientific.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/numberformatstandard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/numberformatstandard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/numericfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/numericfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/objectalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/objectalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/objectalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/objectalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/objectcatalog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/objectcatalog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/objectposition.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/objectposition.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/objecttitledescription.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/objecttitledescription.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ok.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ok.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/open.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/open.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/openreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/openreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/openremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/openremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/optimizetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/optimizetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/optionstreedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/optionstreedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/orientation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/orientation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/outlinecollapseall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/outlinecollapseall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/outlinecollapse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/outlinecollapse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/outlineexpandall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/outlineexpandall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/outlineexpand.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/outlineexpand.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/outlineformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/outlineformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/outlinemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/outlinemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/outputqualityblackwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/outputqualityblackwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/outputqualitygrayscale.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/outputqualitygrayscale.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pagebreakmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pagebreakmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pagecolumntype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pagecolumntype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pagemargin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pagemargin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pagemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pagemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pagesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pagesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/paragraphdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/paragraphdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/paralefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/paralefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pararighttoleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pararighttoleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/paraspacedecrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/paraspacedecrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/paraspaceincrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/paraspaceincrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pasteaslink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pasteaslink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pasteonlyformula.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pasteonlyformula.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pasteonlytext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pasteonlytext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pasteonlyvalue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pasteonlyvalue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/paste.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/paste.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pastespecial.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pastespecial.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pastetransposed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pastetransposed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pasteunformatted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pasteunformatted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/patternfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/patternfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/photoalbumdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/photoalbumdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pl/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pl/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pl/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pl/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/polygon_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/polygon_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/polygon_diagonal_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/polygon_diagonal_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/polygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/polygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/polygon_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/polygon_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/preformattedparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/preformattedparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/presentationcurrentslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/presentationcurrentslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/presentationdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/presentationdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/presentationlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/presentationlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/presentationminimizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/presentationminimizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/presentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/presentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/previewprintoptions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/previewprintoptions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/previousannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/previousannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/previouspage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/previouspage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/previousrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/previousrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/previousslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/previousslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/previoustrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/previoustrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/prevrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/prevrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/printdefault.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/printdefault.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/printersetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/printersetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/printlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/printlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/print.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/print.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/printpreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/printpreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/progressbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/progressbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/protectbookmarks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/protectbookmarks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/protectfields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/protectfields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/protect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/protect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/protecttracechangemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/protecttracechangemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/pushbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/pushbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/quit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/quit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/quotecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/quotecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/quoteparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/quoteparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/radiobutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/radiobutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/recalcpivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/recalcpivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/recentfilelist.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/recentfilelist.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/recsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/recsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/rect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/rect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/rect_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/rect_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/rect_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/rect_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/rect_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/rect_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/redactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/redactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/redactedexportblack.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/redactedexportblack.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/redactedexportwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/redactedexportwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/redo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/redo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/refreshformcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/refreshformcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/rejectalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/rejectalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/rejecttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/rejecttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/rejecttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/rejecttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/reload.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/reload.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/removefiltersort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/removefiltersort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/removehyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/removehyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/remove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/remove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/removetableof.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/removetableof.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/renamemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/renamemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/renameobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/renameobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/renamepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/renamepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/renameslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/renameslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/repeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/repeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/replycomment.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/replycomment.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/reportnavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/reportnavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/reverseorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/reverseorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/rotateleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/rotateleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/rotateright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/rotateright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ru/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ru/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ru/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ru/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ru/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ru/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/runbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/runbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/runmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/runmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/saveacopy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/saveacopy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/saveall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/saveall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/saveas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/saveas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/saveasremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/saveasremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/saveastemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/saveastemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/savebackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/savebackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/savebasicas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/savebasicas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/save.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/save.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sbaexecutesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sbaexecutesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sbanativesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sbanativesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/scan.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/scan.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/scriptorganizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/scriptorganizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/scrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/scrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/searchdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/searchdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sectionshrinkbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sectionshrinkbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sectionshrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sectionshrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sectionshrinktop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sectionshrinktop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/selectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/selectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/selectbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/selectbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/selectdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/selectdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/selectdb.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/selectdb.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/selectobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/selectobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/selecttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/selecttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/selecttables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/selecttables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/selectunprotectedcells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/selectunprotectedcells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sendfax.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sendfax.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sendmail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sendmail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sendtoback.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sendtoback.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/setborderstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/setborderstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/setdocumentproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/setdocumentproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/setminimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/setminimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/setminimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/setminimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/setobjecttobackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/setobjecttobackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/setobjecttoforeground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/setobjecttoforeground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/setoptimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/setoptimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/setoptimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/setoptimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/setreminder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/setreminder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/shadowcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/shadowcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sharedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sharedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/shear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/shear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/shell3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/shell3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showannotations.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showannotations.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showbookview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showbookview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showdatanavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showdatanavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showdetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showdetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showerrors.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showerrors.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showfmexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showfmexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showinvalid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showinvalid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showmultiplepages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showmultiplepages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/shownote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/shownote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/show.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/show.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showsinglepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showsinglepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showtoolbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showtoolbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showtrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showtrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showtwopages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showtwopages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/showwhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/showwhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/shrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/shrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sidebar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sidebar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/signaturelinedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/signaturelinedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/signature.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/signature.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/signpdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/signpdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sl/bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sl/bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sl/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sl/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/slidechangewindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/slidechangewindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/slidemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/slidemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/slidesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/slidesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/smallcaps.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/smallcaps.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/smallestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/smallestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/smallestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/smallestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/snapborder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/snapborder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/snapframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/snapframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/snappoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/snappoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/solidcreate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/solidcreate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/solverdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/solverdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sourcecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sourcecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/spacepara15.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/spacepara15.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/spacepara1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/spacepara1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/spacepara2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/spacepara2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/spacing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/spacing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/sphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/sphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/spinbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/spinbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/splitcell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/splitcell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/splittable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/splittable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/splitwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/splitwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/square.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/square.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/square_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/square_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/square_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/square_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/square_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/square_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.bang.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.bang.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.concave-star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.concave-star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.doorplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.doorplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.horizontal-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.horizontal-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.signet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.signet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star12.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star12.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.star8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.vertical-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/starshapes.vertical-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/statisticsmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/statisticsmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/statusbarvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/statusbarvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/strongemphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/strongemphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/styleapply.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/styleapply.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/subscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/subscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/substract.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/substract.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/subtitleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/subtitleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/superscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/superscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/switchcontroldesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/switchcontroldesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/switchxformsdesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/switchxformsdesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.brace-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.brace-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.bracket-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.bracket-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.cloud.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.cloud.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.diamond-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.diamond-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.flower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.flower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.forbidden.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.forbidden.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.heart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.heart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.left-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.left-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.left-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.left-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.lightning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.lightning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.moon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.moon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.octagon-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.octagon-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.puzzle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.puzzle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.quad-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.quad-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.right-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.right-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.right-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.right-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.sun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/symbolshapes.sun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/tabdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/tabdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/tabledeselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/tabledeselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/tabledesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/tabledesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/tabledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/tabledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/tablemodefix.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/tablemodefix.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/tablemodefixprop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/tablemodefixprop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/tablemodevariable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/tablemodevariable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/tablenumberformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/tablenumberformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/tableselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/tableselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/testmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/testmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/textbodyparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/textbodyparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/texttocolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/texttocolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/thesaurus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/thesaurus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/timefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/timefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/titlepagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/titlepagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/titleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/titleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/toggleanchortype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/toggleanchortype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/toggleaxistitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/toggleaxistitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/togglebreakpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/togglebreakpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/togglegridhorizontal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/togglegridhorizontal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/togglegridvertical.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/togglegridvertical.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/togglelegend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/togglelegend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/togglemergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/togglemergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/toggleobjectbeziermode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/toggleobjectbeziermode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/toggleobjectrotatemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/toggleobjectrotatemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/togglesheetgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/togglesheetgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/toggletabbarvisibility.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/toggletabbarvisibility.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/toggletitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/toggletitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/toolbarmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/toolbarmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/toolprotectiondocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/toolprotectiondocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/torus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/torus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/tr/italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/tr/italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/trackchangesbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/trackchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/trackchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/transformdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/transformdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/undo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/undo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/ungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/ungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/unhainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/unhainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/unsetcellsreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/unsetcellsreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/updatecurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/updatecurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/upsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/upsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/urlbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/urlbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/validation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/validation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/versiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/versiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/verticalcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/verticalcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/verticaltextfittosizetool.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/verticaltextfittosizetool.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/vfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/vfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/viewdatasourcebrowser.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/viewdatasourcebrowser.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/viewformasgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/viewformasgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/viewrowcolumnheaders.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/viewrowcolumnheaders.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/viewvaluehighlighting.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/viewvaluehighlighting.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/vruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/vruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/watermark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/watermark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/window3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/window3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/wrapcontour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/wrapcontour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/wrapideal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/wrapideal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/wrapleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/wrapleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/wrapoff.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/wrapoff.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/wrapon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/wrapon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/wrapright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/wrapright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/wraptext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/wraptext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/wrapthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/wrapthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/xlinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/xlinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoom100percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoom100percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoom200percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoom200percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoomin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoomin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoommode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoommode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoomnext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoomnext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoomobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoomobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoomoptimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoomoptimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoomout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoomout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoompage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoompage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoompagewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoompagewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoompanning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoompanning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/32/zoomprevious.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/32/zoomprevious.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/lc_setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/lc_setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ar/sc_setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ar/sc_setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_backcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_backcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/lc_wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/lc_wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bg/sc_wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bg/sc_wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/lc_numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/lc_numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/lc_numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/lc_numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/lc_numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/lc_numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/lc_numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/lc_numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/sc_numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/sc_numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/sc_numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/sc_numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/sc_numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/sc_numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/de/sc_numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/de/sc_numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/deletetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/deletetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/es/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/es/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/es/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/es/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/es/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/es/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/es/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/es/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/es/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/es/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/es/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/es/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/fr/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/fr/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/fr/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/fr/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/hu/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/hu/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/hu/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/hu/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/hu/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/hu/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/hu/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/hu/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/hu/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/hu/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/it/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/it/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/it/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/it/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/km/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/km/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/km/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/km/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/km/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/km/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/km/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/km/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/km/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/km/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/km/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/km/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/km/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/km/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/km/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/km/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/lc_verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/lc_verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ko/sc_verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ko/sc_verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_accent1cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_accent1cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_accent2cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_accent2cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_accent3cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_accent3cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_acceptalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_acceptalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_accepttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_accepttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_accepttrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_accepttrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_accepttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_accepttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_actionmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_actionmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_adddirect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_adddirect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_addfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_addfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_additionsdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_additionsdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_addname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_addname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_addprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_addprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_addressbooksource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_addressbooksource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_addtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_addtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_addwatch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_addwatch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_advancedmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_advancedmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_alignblock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_alignblock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_alignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_alignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_aligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_aligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_aligndown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_aligndown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_alignhorizontalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_alignhorizontalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_alignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_alignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_alignmiddle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_alignmiddle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_alignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_alignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_aligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_aligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_alignup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_alignup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_alignverticalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_alignverticalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_animationeffects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_animationeffects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_animationmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_animationmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_animationobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_animationobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.chevron.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.chevron.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.circular-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.circular-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.corner-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.corner-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.left-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.left-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.left-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.left-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.left-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.left-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.notched-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.notched-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.pentagon-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.pentagon-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.quad-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.quad-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.quad-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.quad-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.split-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.split-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.split-round-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.split-round-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.s-sharped-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.s-sharped-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.striped-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.striped-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-right-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_arrowshapes.up-right-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_assignlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_assignlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_assignmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_assignmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_attributepagesize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_attributepagesize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_auditingfillmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_auditingfillmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_auditmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_auditmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_autocontrolfocus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_autocontrolfocus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_autoformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_autoformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_autooutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_autooutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_autopilotmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_autopilotmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_autoredactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_autoredactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_autosum.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_autosum.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_avmediaplayer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_avmediaplayer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_backcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_backcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_backgroundcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_backgroundcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_backward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_backward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_badcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_badcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicideappear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicideappear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.block-arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.block-arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.can.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.can.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.cross.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.cross.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.diamond.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.diamond.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.frame.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.frame.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.hexagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.hexagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.isosceles-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.isosceles-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.octagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.octagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.paper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.paper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.pentagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.pentagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.right-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.right-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.ring.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.ring.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.round-quadrat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.round-quadrat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.trapezoid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicshapes.trapezoid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicstepinto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicstepinto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicstepout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicstepout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicstepover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicstepover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_basicstop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_basicstop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_beforeobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_beforeobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_behindobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_behindobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bezierappend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bezierappend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bezierclose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bezierclose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bezierconvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bezierconvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_beziercutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_beziercutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bezierdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bezierdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bezieredge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bezieredge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_beziereliminatepoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_beziereliminatepoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bezierfill.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bezierfill.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bezierinsert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bezierinsert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_beziermove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_beziermove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_beziersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_beziersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_beziersymmetric.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_beziersymmetric.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bezier_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bezier_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bibliographycomponent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bibliographycomponent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bmpmask.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bmpmask.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_borderdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_borderdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_break.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_break.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bringtofront.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bringtofront.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_browseview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_browseview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_calculate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_calculate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.cloud-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.cloud-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.line-callout-1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.line-callout-1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.line-callout-2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.line-callout-2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.line-callout-3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.line-callout-3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.rectangular-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.rectangular-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.round-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_calloutshapes.round-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_cancel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_cancel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_capturepoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_capturepoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_cellprotection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_cellprotection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_chainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_chainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_changebezier.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_changebezier.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_changecasetolower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_changecasetolower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_changecasetoupper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_changecasetoupper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_changedatabasefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_changedatabasefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_changepicture.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_changepicture.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_changepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_changepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_charmapcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_charmapcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_checkbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_checkbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_choosecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_choosecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_choosedesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_choosedesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_choosemacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_choosemacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_choosepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_choosepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_circlearc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_circlearc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_circlecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_circlecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_circlecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_circlecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_circlepie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_circlepie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_circlepie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_circlepie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_circle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_circle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_circle_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_circle_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_cleararrowdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_cleararrowdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_cleararrowprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_cleararrowprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_cleararrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_cleararrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_closedoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_closedoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_closedocs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_closedocs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_closemasterview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_closemasterview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_closepreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_closepreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_colorscaleformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_colorscaleformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_colorsettings.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_colorsettings.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_combine.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_combine.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_combobox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_combobox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_commentchangetracking.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_commentchangetracking.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_comparedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_comparedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_compilebasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_compilebasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_compressgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_compressgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_conddateformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_conddateformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_conditionalformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_conditionalformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_cone.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_cone.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_configuredialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_configuredialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcircles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcircles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvecircles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvecircles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurvecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorcurve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinesarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinesarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinesarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinesarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinesarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinesarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinescircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinescircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinescirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlinescirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlines.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connectorlines.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_connect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_connect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_contourdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_contourdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_controlcodes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_controlcodes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_controlproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_controlproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_convertinto3dlathe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_convertinto3dlathe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_convertinto3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_convertinto3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_copyobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_copyobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_copy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_copy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_crookrotate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_crookrotate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_crookslant.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_crookslant.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_crop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_crop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_currencyfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_currencyfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_customshowdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_customshowdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_cut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_cut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_cylinder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_cylinder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_cyramid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_cyramid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dataarearefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dataarearefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_databarformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_databarformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dataconsolidate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dataconsolidate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_datadatapilotrun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_datadatapilotrun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_datafilterautofilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_datafilterautofilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_datafilterspecialfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_datafilterspecialfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_datafilterstandardfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_datafilterstandardfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dataform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dataform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dataimport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dataimport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dataincolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dataincolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_datainrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_datainrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dataprovider.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dataprovider.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dataproviderrefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dataproviderrefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dataranges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dataranges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_datasort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_datasort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_datastreams.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_datastreams.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_datasubtotals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_datasubtotals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_datefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_datefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbaddrelation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbaddrelation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbchangedesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbchangedesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbclearquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbclearquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbdistinctvalues.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbdistinctvalues.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbformdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbformdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbformedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbformedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbformopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbformopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbformrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbformrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbindexdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbindexdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewquerysql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewquerysql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewreport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewreport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewviewsql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbnewviewsql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbquerydelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbquerydelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbqueryedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbqueryedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbqueryopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbqueryopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbquerypropertiesdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbquerypropertiesdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbqueryrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbqueryrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbrelationdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbrelationdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbreportdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbreportdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbreportedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbreportedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbreportopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbreportopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbreportrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbreportrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbsortingandgrouping.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbsortingandgrouping.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbtabledelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbtabledelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbtableedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbtableedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbtableopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbtableopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbtablerename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbtablerename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewaliases.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewaliases.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewforms.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewforms.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewfunctions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewfunctions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewqueries.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewqueries.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewreports.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewreports.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewtablenames.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewtablenames.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewtables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dbviewtables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_decrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_decrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_decrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_decrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_decrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_decrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_defaultcharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_defaultcharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_definedbname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_definedbname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_definename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_definename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_defineprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_defineprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deleteallannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deleteallannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deleteallbreaks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deleteallbreaks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deleteannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deleteannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deletecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deletecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deletecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deletecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deletemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deletemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deletepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deletepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deletepivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deletepivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_delete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_delete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deleteprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deleteprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deleterows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deleterows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deleteslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deleteslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_deletetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_deletetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_developmenttoolsdockingwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_developmenttoolsdockingwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diaeffect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diaeffect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diagramarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diagramarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diagramaxis.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diagramaxis.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diagramaxisx.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diagramaxisx.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diagramaxisxyz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diagramaxisxyz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diagramaxisy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diagramaxisy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diagramaxisz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diagramaxisz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diagramdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diagramdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diagramtype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diagramtype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diagramwall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diagramwall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diamode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diamode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diaspeed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diaspeed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_diatime.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_diatime.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dismantle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dismantle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_displaymasterbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_displaymasterbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_displaymasterobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_displaymasterobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_displaymode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_displaymode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributehorzcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributehorzcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributehorzdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributehorzdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributehorzleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributehorzleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributehorzright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributehorzright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributerows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributerows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributeselection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributeselection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributevertbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributevertbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributevertcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributevertcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributevertdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributevertdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_distributeverttop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_distributeverttop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_documentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_documentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_downsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_downsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_drawcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_drawcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_drawchart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_drawchart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dsbinsertcontent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dsbinsertcontent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_dsbrowserexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_dsbrowserexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_duplicatepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_duplicatepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_duplicatesheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_duplicatesheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_duplicateslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_duplicateslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_editannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_editannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_editcurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_editcurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_editdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_editdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_editframeset.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_editframeset.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_editglossary.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_editglossary.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_editheaderandfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_editheaderandfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_edithyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_edithyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_editprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_editprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_editqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_editqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_ellipsecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_ellipsecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_ellipsecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_ellipsecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_ellipse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_ellipse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_ellipse_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_ellipse_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_emojicontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_emojicontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_emphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_emphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_entergroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_entergroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_entirecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_entirecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_entirecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_entirecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_entirerow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_entirerow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_equalizeheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_equalizeheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_equalizewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_equalizewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_errorcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_errorcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_euroconverter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_euroconverter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_executereport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_executereport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_expandpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_expandpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_exportdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_exportdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_exportdirecttoepub.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_exportdirecttoepub.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_exportdirecttopdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_exportdirecttopdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_exportto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_exportto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_extendedhelp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_extendedhelp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_extrusion3dcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_extrusion3dcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiondepthfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiondepthfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiondirectionfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiondirectionfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_extrusionlightingfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_extrusionlightingfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_extrusionsurfacefloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_extrusionsurfacefloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiontiltdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiontiltdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiontiltleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiontiltleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiontiltright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiontiltright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiontiltup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_extrusiontiltup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_filecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_filecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_filedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_filedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_filefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_filefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_filldown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_filldown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fillleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fillleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fillright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fillright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fillshadow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fillshadow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fillup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fillup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_firstpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_firstpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_firstrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_firstrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_firstslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_firstslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-card.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-card.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-collate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-collate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-decision.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-decision.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-delay.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-delay.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-direct-access-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-direct-access-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-display.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-display.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-document.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-document.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-internal-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-internal-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-manual-input.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-manual-input.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-multidocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-multidocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-off-page-connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-off-page-connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-or.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-or.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-predefined-process.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-predefined-process.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-preparation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-preparation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-punched-tape.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-punched-tape.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-sequential-access.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-sequential-access.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-sort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-sort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-stored-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-stored-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-summing-junction.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-summing-junction.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-terminator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.flowchart-terminator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_flowchartshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkgalleryfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkgalleryfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontwork.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontwork.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworksameletterheights.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworksameletterheights.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-chevron-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-chevron-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-chevron-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-chevron-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-curve-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-curve-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-curve-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-curve-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-fade-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-inflate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-inflate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-plain-text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-plain-text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-slant-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-slant-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-slant-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-slant-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-stop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-stop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-triangle-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-triangle-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-wave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fontworkshapetype.fontwork-wave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_footnotedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formatcelldialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formatcelldialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formatcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formatcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formatgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formatgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formatline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formatline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formatpaintbrush.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formatpaintbrush.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formattedfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formattedfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formatungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formatungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formdesigntools.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formdesigntools.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formelcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formelcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formfiltered.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formfiltered.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formfilternavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formfilternavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_formproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_formproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_forward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_forward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_framedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_framedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_framelinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_framelinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_freeline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_freeline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_freeline_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_freeline_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_freezepanesfirstcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_freezepanesfirstcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_freezepanesfirstrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_freezepanesfirstrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_freezepanes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_freezepanes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_fullscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_fullscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gallery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gallery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_glueeditmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_glueeditmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_glueescapedirectionbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_glueescapedirectionbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_glueescapedirectionleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_glueescapedirectionleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_glueescapedirectionright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_glueescapedirectionright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_glueescapedirectiontop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_glueescapedirectiontop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gluehorzaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gluehorzaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gluehorzalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gluehorzalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gluehorzalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gluehorzalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_glueinsertpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_glueinsertpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gluepercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gluepercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gluevertalignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gluevertalignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gluevertaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gluevertaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gluevertaligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gluevertaligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_goalseekdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_goalseekdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_goodcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_goodcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gotoendofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gotoendofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gotoend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gotoend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gotopage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gotopage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gotostartofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gotostartofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gotostartoftable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gotostartoftable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_grafblue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_grafblue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_grafcontrast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_grafcontrast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_grafgamma.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_grafgamma.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_grafgreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_grafgreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_grafluminance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_grafluminance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_grafred.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_grafred.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graftransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graftransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfilterinvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfilterinvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltermosaic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltermosaic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfilterpopart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfilterpopart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfilterposter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfilterposter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfilterrelief.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfilterrelief.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfilterremovenoise.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfilterremovenoise.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltersepia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltersepia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltersharpen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltersharpen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltersobel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltersobel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltersolarize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphicfiltersolarize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_graphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_graphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_greatestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_greatestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_greatestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_greatestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_grid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_grid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_griduse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_griduse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_gridvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_gridvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_groupbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_groupbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_group.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_group.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_grow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_grow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_halfsphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_halfsphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_handoutmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_handoutmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hangingindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hangingindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_heading1parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_heading1parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_heading2parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_heading2parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_heading3parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_heading3parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_heading4parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_heading4parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_heading5parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_heading5parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_heading6parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_heading6parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_helpindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_helpindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_helplinesmove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_helplinesmove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_helplinesuse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_helplinesuse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_helplinesvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_helplinesvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hideallnotes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hideallnotes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hidecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hidecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hidedetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hidedetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hidenote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hidenote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hiderow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hiderow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hideslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hideslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hidewhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hidewhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hscrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hscrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_iconsetformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_iconsetformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_imagebutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_imagebutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_imagecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_imagecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_imagemapdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_imagemapdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_importdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_importdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_importfromfile.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_importfromfile.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_incrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_incrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_incrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_incrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_incrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_incrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_inputlinevisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_inputlinevisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_inscellsctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_inscellsctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertauthoritiesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertauthoritiesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertbookmark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertcaptiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertcaptiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertcellsdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertcellsdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertcellsright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertcellsright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertcolumnbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertcolumnbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertcolumnsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertcolumnsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertcolumnsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertcolumnsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertdatefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertdatefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertdraw.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertdraw.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertendnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertendnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertenvelope.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertenvelope.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertexternaldatasource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertexternaldatasource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertfieldctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertfieldctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertfootnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertheader.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertheader.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_inserthyperlinkcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_inserthyperlinkcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_inserthyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_inserthyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertindexesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertlinebreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertlinebreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertmath.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertmath.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertmenutitles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertmenutitles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertmultiindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertmultiindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertobjectfloatingframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertobjectfloatingframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertpagebreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertpagebreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertpagecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertpagecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertpagenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertpagenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertplugin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertplugin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertreferencefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertrowbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertrowbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertrowsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertrowsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertrowsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertrowsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertsection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertsection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertslidecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertslidecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertslidenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertslidenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertslidetitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertslidetitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertsound.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertsound.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertspreadsheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertspreadsheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertsymbol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertsymbol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_inserttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_inserttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_inserttimefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_inserttimefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_inserttitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_inserttitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_inserttopicfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_inserttopicfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_inserttreecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_inserttreecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_insertvideo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_insertvideo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_inspectordeck.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_inspectordeck.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_interactivegradient.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_interactivegradient.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_interactivetransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_interactivetransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_intersect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_intersect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_jumptonexttablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_jumptonexttablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_jumptoprevtablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_jumptoprevtablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_lastpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_lastpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_lastrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_lastrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_lastslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_lastslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_leaveallgroups.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_leaveallgroups.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_leavegroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_leavegroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_legend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_legend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-clearscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-clearscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-gobackward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-gobackward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-goforward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-goforward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-home.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-home.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_librelogo-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_linearrowcircle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_linearrowcircle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_linearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_linearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_linearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_linearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_linearrowsquare.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_linearrowsquare.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_linearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_linearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_linecirclearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_linecirclearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_line_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_line_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_lineendstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_lineendstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_line.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_line.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_linesquarearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_linesquarearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_linestyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_linestyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_linewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_linewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_listbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_listbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_loadbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_loadbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_lock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_lock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_macrorecorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_macrorecorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergecreatedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergecreatedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergeemaildocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergeemaildocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergeexcludeentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergeexcludeentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergeprintdocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergeprintdocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergesavedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergesavedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergewizard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mailmergewizard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_managebreakpoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_managebreakpoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_managelanguage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_managelanguage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_managexmlsource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_managexmlsource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_marks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_marks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_masterlayouts.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_masterlayouts.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_masterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_masterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_matchgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_matchgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_measureline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_measureline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mediamute.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mediamute.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mediapause.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mediapause.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mediarepeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mediarepeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_menubar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_menubar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mergedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mergedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mergedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mergedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_merge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_merge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mergetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mergetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mirror.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mirror.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_mirrorvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_mirrorvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_modifyframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_modifyframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_modifypage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_modifypage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_moduledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_moduledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_morecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_morecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_morphing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_morphing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_movedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_movedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_movedownsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_movedownsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_movepagedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_movepagedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_movepagefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_movepagefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_movepagelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_movepagelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_movepageup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_movepageup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_move.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_move.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_moveslidedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_moveslidedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_moveslidefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_moveslidefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_moveslidelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_moveslidelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_moveslideup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_moveslideup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_moveup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_moveup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_moveupsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_moveupsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_name.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_name.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_navigationbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_navigationbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_navigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_navigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_neutralcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_neutralcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_newarrangement.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_newarrangement.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_newdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_newdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_newhtmldoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_newhtmldoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_newwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_newwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_nextannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_nextannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_nextpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_nextpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_nextrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_nextrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_nextslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_nextslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_nexttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_nexttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_normalmultipanegui.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_normalmultipanegui.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_normalviewmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_normalviewmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_notesmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_notesmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_notesmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_notesmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatdate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatdate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatpercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatpercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatscientific.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatscientific.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatstandard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatstandard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_numericfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_numericfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_objectalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_objectalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_objectalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_objectalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_objectcatalog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_objectcatalog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_objectposition.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_objectposition.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_objecttitledescription.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_objecttitledescription.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_ok.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_ok.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_open.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_open.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_openreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_openreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_openremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_openremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_optimizetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_optimizetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_optionstreedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_optionstreedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_orientation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_orientation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_outlinecollapseall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_outlinecollapseall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_outlinecollapse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_outlinecollapse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_outlineexpandall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_outlineexpandall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_outlineexpand.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_outlineexpand.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_outlineformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_outlineformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_outlinemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_outlinemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_outputqualityblackwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_outputqualityblackwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_outputqualitygrayscale.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_outputqualitygrayscale.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pagebreakmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pagebreakmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pagecolumntype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pagecolumntype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pagemargin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pagemargin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pagemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pagemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pagesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pagesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_paragraphdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_paragraphdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_paralefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_paralefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pararighttoleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pararighttoleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_paraspacedecrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_paraspacedecrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_paraspaceincrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_paraspaceincrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pasteaslink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pasteaslink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pasteonlyformula.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pasteonlyformula.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pasteonlytext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pasteonlytext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pasteonlyvalue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pasteonlyvalue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_paste.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_paste.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pastespecial.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pastespecial.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pastetransposed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pastetransposed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pasteunformatted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pasteunformatted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_patternfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_patternfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_photoalbumdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_photoalbumdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_polygon_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_polygon_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_polygon_diagonal_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_polygon_diagonal_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_polygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_polygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_polygon_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_polygon_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_preformattedparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_preformattedparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_presentationcurrentslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_presentationcurrentslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_presentationdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_presentationdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_presentationlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_presentationlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_presentationminimizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_presentationminimizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_presentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_presentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_previewprintoptions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_previewprintoptions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_previousannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_previousannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_previouspage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_previouspage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_previousrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_previousrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_previousslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_previousslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_previoustrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_previoustrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_prevrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_prevrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_printdefault.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_printdefault.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_printersetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_printersetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_printlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_printlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_print.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_print.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_printpreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_printpreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_progressbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_progressbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_protectbookmarks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_protectbookmarks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_protectfields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_protectfields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_protect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_protect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_protecttracechangemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_protecttracechangemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_pushbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_pushbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_quit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_quit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_quotecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_quotecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_quoteparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_quoteparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_radiobutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_radiobutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_recalcpivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_recalcpivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_recentfilelist.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_recentfilelist.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_recsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_recsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_rect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_rect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_rect_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_rect_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_rect_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_rect_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_rect_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_rect_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_redactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_redactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_redactedexportblack.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_redactedexportblack.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_redactedexportwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_redactedexportwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_redo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_redo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_refreshformcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_refreshformcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_rejectalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_rejectalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_rejecttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_rejecttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_rejecttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_rejecttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_reload.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_reload.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_removefiltersort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_removefiltersort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_removehyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_removehyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_remove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_remove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_removetableof.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_removetableof.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_renamemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_renamemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_renameobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_renameobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_renamepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_renamepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_renameslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_renameslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_repeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_repeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_replycomment.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_replycomment.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_reportnavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_reportnavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_reverseorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_reverseorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_rotateleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_rotateleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_rotateright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_rotateright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_ruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_ruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_runbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_runbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_runmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_runmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_saveacopy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_saveacopy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_saveall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_saveall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_saveas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_saveas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_saveasremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_saveasremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_saveastemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_saveastemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_savebackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_savebackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_savebasicas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_savebasicas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_save.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_save.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sbaexecutesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sbaexecutesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sbanativesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sbanativesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_scan.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_scan.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_scriptorganizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_scriptorganizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_scrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_scrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_searchdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_searchdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sectionshrinkbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sectionshrinkbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sectionshrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sectionshrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sectionshrinktop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sectionshrinktop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_selectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_selectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_selectbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_selectbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_selectdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_selectdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_selectdb.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_selectdb.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_selectobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_selectobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_selecttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_selecttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_selecttables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_selecttables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_selectunprotectedcells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_selectunprotectedcells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sendfax.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sendfax.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sendmail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sendmail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sendtoback.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sendtoback.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_setborderstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_setborderstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_setdocumentproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_setdocumentproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_setminimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_setminimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_setminimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_setminimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_setobjecttobackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_setobjecttobackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_setobjecttoforeground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_setobjecttoforeground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_setoptimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_setoptimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_setoptimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_setoptimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_setreminder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_setreminder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_shadowcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_shadowcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sharedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sharedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_shear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_shear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_shell3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_shell3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showannotations.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showannotations.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showbookview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showbookview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showdatanavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showdatanavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showdetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showdetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showerrors.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showerrors.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showfmexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showfmexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showinvalid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showinvalid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showmultiplepages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showmultiplepages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_shownote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_shownote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_show.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_show.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showsinglepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showsinglepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showtoolbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showtoolbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showtrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showtrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showtwopages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showtwopages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_showwhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_showwhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_shrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_shrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sidebar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sidebar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_signaturelinedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_signaturelinedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_signature.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_signature.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_signpdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_signpdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_slidechangewindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_slidechangewindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_slidemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_slidemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_slidesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_slidesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_smallcaps.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_smallcaps.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_smallestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_smallestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_smallestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_smallestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_snapborder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_snapborder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_snapframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_snapframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_snappoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_snappoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_solidcreate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_solidcreate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_solverdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_solverdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sourcecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sourcecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_spacepara15.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_spacepara15.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_spacepara1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_spacepara1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_spacepara2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_spacepara2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_spacing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_spacing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_sphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_sphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_spinbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_spinbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_splitcell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_splitcell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_splittable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_splittable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_splitwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_splitwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_square.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_square.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_square_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_square_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_square_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_square_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_square_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_square_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.bang.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.bang.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.concave-star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.concave-star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.doorplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.doorplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.horizontal-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.horizontal-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.signet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.signet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star12.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star12.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.star8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.vertical-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_starshapes.vertical-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_statisticsmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_statisticsmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_statusbarvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_statusbarvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_strongemphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_strongemphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_styleapply.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_styleapply.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_subscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_subscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_substract.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_substract.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_subtitleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_subtitleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_superscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_superscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_switchcontroldesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_switchcontroldesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_switchxformsdesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_switchxformsdesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.brace-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.brace-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.bracket-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.bracket-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.cloud.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.cloud.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.diamond-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.diamond-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.flower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.flower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.forbidden.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.forbidden.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.heart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.heart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.left-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.left-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.left-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.left-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.lightning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.lightning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.moon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.moon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.octagon-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.octagon-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.puzzle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.puzzle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.quad-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.quad-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.right-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.right-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.right-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.right-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.sun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_symbolshapes.sun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_tabdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_tabdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_tabledeselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_tabledeselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_tabledesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_tabledesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_tabledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_tabledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_tablemodefix.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_tablemodefix.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_tablemodefixprop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_tablemodefixprop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_tablemodevariable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_tablemodevariable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_tablenumberformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_tablenumberformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_tableselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_tableselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_testmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_testmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_textbodyparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_textbodyparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_texttocolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_texttocolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_thesaurus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_thesaurus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_timefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_timefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_titlepagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_titlepagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_titleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_titleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_toggleanchortype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_toggleanchortype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_toggleaxistitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_toggleaxistitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_togglebreakpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_togglebreakpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_togglegridhorizontal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_togglegridhorizontal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_togglegridvertical.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_togglegridvertical.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_togglelegend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_togglelegend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_togglemergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_togglemergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_toggleobjectbeziermode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_toggleobjectbeziermode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_toggleobjectrotatemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_toggleobjectrotatemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_togglesheetgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_togglesheetgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_toggletabbarvisibility.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_toggletabbarvisibility.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_toggletitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_toggletitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_toolbarmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_toolbarmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_toolprotectiondocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_toolprotectiondocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_torus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_torus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_trackchangesbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_trackchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_trackchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_transformdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_transformdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_undo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_undo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_ungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_ungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_unhainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_unhainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_unsetcellsreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_unsetcellsreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_updatecurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_updatecurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_upsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_upsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_urlbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_urlbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_validation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_validation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_versiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_versiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_verticalcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_verticalcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_verticaltextfittosizetool.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_verticaltextfittosizetool.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_vfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_vfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_viewdatasourcebrowser.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_viewdatasourcebrowser.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_viewformasgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_viewformasgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_viewrowcolumnheaders.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_viewrowcolumnheaders.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_viewvaluehighlighting.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_viewvaluehighlighting.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_vruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_vruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_watermark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_watermark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_window3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_window3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_wrapcontour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_wrapcontour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_wrapideal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_wrapideal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_wrapleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_wrapleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_wrapoff.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_wrapoff.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_wrapon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_wrapon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_wrapright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_wrapright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_wraptext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_wraptext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_wrapthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_wrapthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_xlinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_xlinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoom100percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoom100percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoom200percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoom200percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoomin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoomin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoommode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoommode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoomnext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoomnext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoomobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoomobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoomoptimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoomoptimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoomout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoomout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoompage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoompage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoompagewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoompagewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoompanning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoompanning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/lc_zoomprevious.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/lc_zoomprevious.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/nl/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/nl/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/nl/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/nl/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/nl/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/nl/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/nl/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/nl/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/nl/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/nl/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/nl/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/nl/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/pl/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/pl/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/pl/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/pl/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/pl/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/pl/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/pl/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/pl/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ru/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ru/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ru/lc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ru/lc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ru/lc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ru/lc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ru/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ru/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ru/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ru/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/ru/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/ru/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_about.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_about.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_absoluterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_absoluterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_accent1cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_accent1cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_accent2cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_accent2cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_accent3cellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_accent3cellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_acceptalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_acceptalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_accepttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_accepttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_accepttrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_accepttrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_accepttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_accepttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_actionmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_actionmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_adddirect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_adddirect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_addfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_addfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_additionsdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_additionsdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_addname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_addname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_add.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_add.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_addprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_addprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_addressbooksource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_addressbooksource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_addtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_addtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_addwatch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_addwatch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_advancedmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_advancedmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_alignblock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_alignblock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_alignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_alignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_aligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_aligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_aligndown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_aligndown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_alignhorizontalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_alignhorizontalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_alignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_alignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_alignmiddle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_alignmiddle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_alignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_alignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_aligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_aligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_alignup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_alignup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_alignverticalcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_alignverticalcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_alphaliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_alphaliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_alphalowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_alphalowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_animationeffects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_animationeffects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_animationmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_animationmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_animationobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_animationobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.chevron.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.chevron.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.circular-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.circular-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.corner-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.corner-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.left-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.left-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.left-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.left-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.left-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.left-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.notched-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.notched-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.pentagon-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.pentagon-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.quad-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.quad-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.quad-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.quad-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.split-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.split-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.split-round-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.split-round-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.s-sharped-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.s-sharped-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.striped-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.striped-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-down-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-down-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-right-arrow-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-right-arrow-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-right-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-right-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-right-down-arrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_arrowshapes.up-right-down-arrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_assignlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_assignlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_assignmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_assignmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_attributepagesize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_attributepagesize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_auditingfillmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_auditingfillmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_auditmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_auditmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_autocontrolfocus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_autocontrolfocus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_autocorrectdlg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_autocorrectdlg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_autoformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_autoformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_autooutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_autooutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_autopilotmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_autopilotmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_autoredactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_autoredactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_autosum.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_autosum.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_avmediaplayer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_avmediaplayer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_backcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_backcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_backgroundcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_backgroundcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_backward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_backward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_badcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_badcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicideappear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicideappear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.block-arc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.block-arc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.can.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.can.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.cross.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.cross.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.diamond.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.diamond.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.frame.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.frame.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.hexagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.hexagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.isosceles-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.isosceles-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.octagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.octagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.paper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.paper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.pentagon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.pentagon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.right-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.right-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.ring.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.ring.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.round-quadrat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.round-quadrat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.trapezoid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicshapes.trapezoid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicstepinto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicstepinto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicstepout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicstepout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicstepover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicstepover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_basicstop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_basicstop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_beforeobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_beforeobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_behindobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_behindobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bezierappend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bezierappend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bezierclose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bezierclose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bezierconvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bezierconvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_beziercutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_beziercutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bezierdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bezierdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bezieredge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bezieredge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_beziereliminatepoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_beziereliminatepoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bezierfill.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bezierfill.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bezierinsert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bezierinsert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_beziermove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_beziermove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_beziersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_beziersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_beziersymmetric.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_beziersymmetric.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bezier_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bezier_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bibliographycomponent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bibliographycomponent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bmpmask.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bmpmask.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_borderdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_borderdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_break.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_break.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bringtofront.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bringtofront.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_browseview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_browseview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_bulletsandnumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_calculate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_calculate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.cloud-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.cloud-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.line-callout-1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.line-callout-1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.line-callout-2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.line-callout-2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.line-callout-3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.line-callout-3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.rectangular-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.rectangular-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.round-callout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_calloutshapes.round-callout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_cancel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_cancel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_capturepoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_capturepoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_cellprotection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_cellprotection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_chainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_chainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_changebezier.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_changebezier.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_changecasetolower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_changecasetolower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_changecasetoupper.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_changecasetoupper.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_changedatabasefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_changedatabasefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_changepicture.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_changepicture.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_changepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_changepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_chapternumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_chapternumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_charfontname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_charfontname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_charmapcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_charmapcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_checkbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_checkbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_choosecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_choosecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_choosedesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_choosedesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_choosemacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_choosemacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_choosepolygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_choosepolygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_circlearc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_circlearc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_circlecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_circlecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_circlecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_circlecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_circlepie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_circlepie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_circlepie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_circlepie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_circle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_circle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_circle_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_circle_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_cleararrowdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_cleararrowdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_cleararrowprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_cleararrowprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_cleararrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_cleararrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_closedoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_closedoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_closedocs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_closedocs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_closemasterview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_closemasterview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_closepreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_closepreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_colorscaleformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_colorscaleformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_colorsettings.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_colorsettings.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_combine.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_combine.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_combobox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_combobox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_commentchangetracking.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_commentchangetracking.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_comparedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_comparedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_compilebasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_compilebasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_compressgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_compressgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_conddateformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_conddateformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_conditionalformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_conditionalformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_cone.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_cone.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_configuredialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_configuredialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurvearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurvearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurvearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurvearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurvearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurvearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurvecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurvecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurvecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurvecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorcurve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinecircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinecircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinecirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinecirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinesarrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinesarrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinesarrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinesarrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinesarrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinesarrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinescircleend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinescircleend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinescirclestart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlinescirclestart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlines.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connectorlines.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_connect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_connect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_continuenumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_continuenumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_contourdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_contourdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_controlcodes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_controlcodes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_controlproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_controlproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_convertinto3dlathe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_convertinto3dlathe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_convertinto3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_convertinto3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_copyobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_copyobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_copy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_copy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_crookrotate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_crookrotate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_crookslant.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_crookslant.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_crop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_crop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_cube.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_cube.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_currencyfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_currencyfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_customshowdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_customshowdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_cut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_cut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_cylinder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_cylinder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_cyramid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_cyramid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dataarearefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dataarearefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_databarformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_databarformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dataconsolidate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dataconsolidate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_datadatapilotrun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_datadatapilotrun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_datafilterautofilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_datafilterautofilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_datafilterspecialfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_datafilterspecialfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_datafilterstandardfilter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_datafilterstandardfilter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dataform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dataform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dataimport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dataimport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dataincolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dataincolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_datainrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_datainrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dataprovider.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dataprovider.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dataproviderrefresh.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dataproviderrefresh.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dataranges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dataranges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_datasort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_datasort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_datastreams.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_datastreams.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_datasubtotals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_datasubtotals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_datefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_datefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbaddrelation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbaddrelation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbchangedesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbchangedesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbclearquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbclearquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbdistinctvalues.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbdistinctvalues.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbformdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbformdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbformedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbformedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbformopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbformopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbformrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbformrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbindexdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbindexdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewform.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewform.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewquery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewquery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewquerysql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewquerysql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewreport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewreport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewtable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewtable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewviewsql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbnewviewsql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbquerydelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbquerydelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbqueryedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbqueryedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbqueryopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbqueryopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbquerypropertiesdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbquerypropertiesdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbqueryrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbqueryrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbrelationdesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbrelationdesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbreportdelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbreportdelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbreportedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbreportedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbreportopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbreportopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbreportrename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbreportrename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbsortingandgrouping.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbsortingandgrouping.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbtabledelete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbtabledelete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbtableedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbtableedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbtableopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbtableopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbtablerename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbtablerename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewaliases.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewaliases.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewforms.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewforms.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewfunctions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewfunctions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewqueries.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewqueries.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewreports.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewreports.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewtablenames.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewtablenames.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewtables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dbviewtables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_decrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_decrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_decrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_decrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_decrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_decrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_defaultbullet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_defaultbullet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_defaultcharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_defaultcharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_defaultnumbering.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_defaultnumbering.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_definedbname.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_definedbname.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_definename.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_definename.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_defineprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_defineprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deleteallannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deleteallannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deleteallbreaks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deleteallbreaks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deleteannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deleteannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deletecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deletecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deletecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deletecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deletemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deletemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deletepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deletepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deletepivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deletepivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_delete.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_delete.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deleteprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deleteprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deleterecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deleterecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deleterows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deleterows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deleteslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deleteslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_deletetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_deletetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_designerdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_designerdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_developmenttoolsdockingwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_developmenttoolsdockingwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diaeffect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diaeffect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diagramarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diagramarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diagramaxis.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diagramaxis.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diagramaxisx.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diagramaxisx.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diagramaxisxyz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diagramaxisxyz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diagramaxisy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diagramaxisy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diagramaxisz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diagramaxisz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diagramdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diagramdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diagramtype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diagramtype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diagramwall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diagramwall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diamode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diamode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diaspeed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diaspeed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_diatime.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_diatime.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dismantle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dismantle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_displaymasterbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_displaymasterbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_displaymasterobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_displaymasterobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_displaymode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_displaymode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributecolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributecolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributehorzcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributehorzcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributehorzdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributehorzdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributehorzleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributehorzleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributehorzright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributehorzright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributerows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributerows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributeselection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributeselection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributevertbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributevertbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributevertcenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributevertcenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributevertdistance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributevertdistance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_distributeverttop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_distributeverttop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_documentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_documentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_doubleclicktextedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_doubleclicktextedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_downsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_downsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_drawcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_drawcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_drawchart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_drawchart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dsbinsertcontent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dsbinsertcontent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_dsbrowserexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_dsbrowserexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_duplicatepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_duplicatepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_duplicatesheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_duplicatesheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_duplicateslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_duplicateslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_editannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_editannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_editcurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_editcurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_editdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_editdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_editframeset.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_editframeset.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_editglossary.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_editglossary.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_editheaderandfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_editheaderandfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_edithyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_edithyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_edit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_edit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_editprintarea.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_editprintarea.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_editqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_editqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_editstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_editstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_ellipsecut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_ellipsecut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_ellipsecut_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_ellipsecut_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_ellipse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_ellipse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_ellipse_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_ellipse_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_emojicontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_emojicontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_emphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_emphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_entergroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_entergroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_entirecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_entirecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_entirecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_entirecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_entirerow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_entirerow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_equalizeheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_equalizeheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_equalizewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_equalizewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_errorcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_errorcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_euroconverter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_euroconverter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_executereport.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_executereport.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_expandpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_expandpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_exportdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_exportdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_exportdirecttoepub.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_exportdirecttoepub.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_exportdirecttopdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_exportdirecttopdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_exportto.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_exportto.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_extendedhelp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_extendedhelp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_extrusion3dcolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_extrusion3dcolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiondepthfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiondepthfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiondirectionfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiondirectionfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_extrusionlightingfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_extrusionlightingfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_extrusionsurfacefloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_extrusionsurfacefloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiontiltdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiontiltdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiontiltleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiontiltleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiontiltright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiontiltright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiontiltup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_extrusiontiltup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_filecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_filecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_filedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_filedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_filefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_filefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_filldown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_filldown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fillleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fillleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fillright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fillright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fillshadow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fillshadow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fillup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fillup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_firstpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_firstpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_firstrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_firstrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_firstslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_firstslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-card.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-card.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-collate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-collate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-decision.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-decision.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-delay.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-delay.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-direct-access-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-direct-access-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-display.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-display.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-document.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-document.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-internal-storage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-internal-storage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-manual-input.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-manual-input.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-multidocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-multidocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-off-page-connector.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-off-page-connector.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-or.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-or.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-predefined-process.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-predefined-process.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-preparation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-preparation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-punched-tape.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-punched-tape.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-sequential-access.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-sequential-access.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-sort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-sort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-stored-data.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-stored-data.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-summing-junction.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-summing-junction.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-terminator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.flowchart-terminator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_flowchartshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkgalleryfloater.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkgalleryfloater.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontwork.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontwork.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworksameletterheights.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworksameletterheights.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-chevron-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-chevron-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-chevron-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-chevron-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-curve-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-curve-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-curve-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-curve-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-fade-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-fade-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-fade-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-fade-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-fade-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-fade-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-inflate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-inflate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-plain-text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-plain-text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-slant-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-slant-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-slant-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-slant-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-stop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-stop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-triangle-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-triangle-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-wave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fontworkshapetype.fontwork-wave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_footnotedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formatcelldialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formatcelldialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formatcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formatcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formatgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formatgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formatline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formatline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formatpaintbrush.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formatpaintbrush.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formattedfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formattedfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formatungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formatungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formdesigntools.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formdesigntools.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formelcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formelcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formfiltered.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formfiltered.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formfilternavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formfilternavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_formproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_formproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_forward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_forward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_framedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_framedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_framelinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_framelinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_freeline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_freeline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_freeline_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_freeline_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_freezepanesfirstcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_freezepanesfirstcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_freezepanesfirstrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_freezepanesfirstrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_freezepanes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_freezepanes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_fullscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_fullscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gallery.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gallery.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_glueeditmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_glueeditmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_glueescapedirectionbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_glueescapedirectionbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_glueescapedirectionleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_glueescapedirectionleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_glueescapedirectionright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_glueescapedirectionright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_glueescapedirectiontop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_glueescapedirectiontop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gluehorzaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gluehorzaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gluehorzalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gluehorzalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gluehorzalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gluehorzalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_glueinsertpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_glueinsertpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gluepercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gluepercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gluevertalignbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gluevertalignbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gluevertaligncenter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gluevertaligncenter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gluevertaligntop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gluevertaligntop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_goalseekdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_goalseekdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_goodcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_goodcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gotoendofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gotoendofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gotoend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gotoend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gotopage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gotopage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gotostartofdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gotostartofdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gotostartoftable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gotostartoftable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_grafblue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_grafblue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_grafcontrast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_grafcontrast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_grafgamma.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_grafgamma.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_grafgreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_grafgreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_grafluminance.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_grafluminance.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_grafred.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_grafred.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graftransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graftransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfilterinvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfilterinvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltermosaic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltermosaic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfilterpopart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfilterpopart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfilterposter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfilterposter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfilterrelief.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfilterrelief.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfilterremovenoise.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfilterremovenoise.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltersepia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltersepia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltersharpen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltersharpen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltersmooth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltersmooth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltersobel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltersobel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltersolarize.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphicfiltersolarize.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_graphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_graphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_greatestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_greatestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_greatestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_greatestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_grid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_grid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_griduse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_griduse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_gridvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_gridvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_groupbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_groupbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_groupoutlinemenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_groupoutlinemenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_group.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_group.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_grow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_grow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_halfsphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_halfsphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_handoutmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_handoutmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hangingindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hangingindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_heading1parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_heading1parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_heading2parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_heading2parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_heading3parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_heading3parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_heading4parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_heading4parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_heading5parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_heading5parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_heading6parastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_heading6parastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_helpindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_helpindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_helplinesmove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_helplinesmove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_helplinesuse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_helplinesuse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_helplinesvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_helplinesvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hideallnotes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hideallnotes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hidecolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hidecolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hidedetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hidedetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hidenote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hidenote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hiderow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hiderow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hideslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hideslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hidewhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hidewhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hscrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hscrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_hyphenate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_hyphenate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_iconsetformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_iconsetformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_imagebutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_imagebutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_imagecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_imagecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_imagemapdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_imagemapdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_importdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_importdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_importfromfile.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_importfromfile.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_incrementindent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_incrementindent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_incrementlevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_incrementlevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_incrementsublevels.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_incrementsublevels.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_inputlinevisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_inputlinevisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_inscellsctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_inscellsctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertauthoritiesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertauthoritiesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertbookmark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertbookmark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertcaptiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertcaptiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertcellsdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertcellsdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertcellsright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertcellsright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertcolumnbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertcolumnbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertcolumnsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertcolumnsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertcolumnsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertcolumnsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertcolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertcolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertdatefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertdatefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertdraw.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertdraw.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertendnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertendnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertenvelope.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertenvelope.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertexternaldatasource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertexternaldatasource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertfieldctrl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertfieldctrl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertfixedtext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertfixedtext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertfooter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertfooter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertfootnote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertgraphic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertgraphic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertheader.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertheader.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_inserthyperlinkcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_inserthyperlinkcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_inserthyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_inserthyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertindexesentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertlinebreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertlinebreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertmath.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertmath.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertmenutitles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertmenutitles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertmultiindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertmultiindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertneutralparagraph.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertneutralparagraph.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertobjectfloatingframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertobjectfloatingframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertpagebreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertpagebreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertpagecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertpagecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertpagenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertpagenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertplugin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertplugin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertqrcode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertqrcode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertreferencefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertrowbreak.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertrowbreak.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertrowsafter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertrowsafter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertrowsbefore.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertrowsbefore.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertsection.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertsection.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertslidecountfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertslidecountfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertslidenumberfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertslidenumberfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertslidetitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertslidetitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertsound.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertsound.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertspreadsheet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertspreadsheet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertsymbol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertsymbol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_inserttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_inserttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_inserttimefieldvar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_inserttimefieldvar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_inserttitlefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_inserttitlefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_inserttopicfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_inserttopicfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_inserttreecontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_inserttreecontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_insertvideo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_insertvideo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_inspectordeck.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_inspectordeck.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_interactivegradient.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_interactivegradient.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_interactivetransparence.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_interactivetransparence.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_intersect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_intersect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_jumptonexttablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_jumptonexttablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_jumptoprevtablesel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_jumptoprevtablesel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_label.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_label.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_lastpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_lastpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_lastrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_lastrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_lastslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_lastslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_leaveallgroups.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_leaveallgroups.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_leavegroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_leavegroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_legend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_legend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-clearscreen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-clearscreen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-gobackward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-gobackward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-goforward.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-goforward.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-home.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-home.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_librelogo-right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_linearrowcircle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_linearrowcircle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_linearrowend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_linearrowend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_linearrows.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_linearrows.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_linearrowsquare.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_linearrowsquare.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_linearrowstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_linearrowstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_linecirclearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_linecirclearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_line_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_line_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_lineendstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_lineendstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_linenumberingdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_linenumberingdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_line.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_line.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_linesquarearrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_linesquarearrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_linestyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_linestyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_linewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_linewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_listbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_listbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_loadbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_loadbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_lock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_lock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_macrorecorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_macrorecorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergecreatedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergecreatedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergeemaildocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergeemaildocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergeexcludeentry.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergeexcludeentry.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergeprintdocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergeprintdocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergesavedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergesavedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergewizard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mailmergewizard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_managebreakpoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_managebreakpoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_managelanguage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_managelanguage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_managexmlsource.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_managexmlsource.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_marks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_marks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_masterlayouts.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_masterlayouts.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_masterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_masterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_matchgroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_matchgroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_measureline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_measureline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mediamute.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mediamute.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mediapause.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mediapause.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mediarepeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mediarepeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_menubar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_menubar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mergedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mergedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mergedocuments.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mergedocuments.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_merge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_merge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mergetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mergetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mirror.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mirror.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_mirrorvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_mirrorvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_modifyframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_modifyframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_modifypage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_modifypage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_moduledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_moduledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_morecontrols.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_morecontrols.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_morphing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_morphing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_movedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_movedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_movedownsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_movedownsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_movepagedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_movepagedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_movepagefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_movepagefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_movepagelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_movepagelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_movepageup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_movepageup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_move.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_move.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_moveslidedown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_moveslidedown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_moveslidefirst.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_moveslidefirst.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_moveslidelast.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_moveslidelast.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_moveslideup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_moveslideup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_moveup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_moveup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_moveupsubitems.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_moveupsubitems.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_name.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_name.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_navigationbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_navigationbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_navigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_navigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_neutralcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_neutralcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_newarrangement.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_newarrangement.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_newdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_newdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_newhtmldoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_newhtmldoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_newrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_newrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_newwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_newwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_nextannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_nextannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_nextpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_nextpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_nextrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_nextrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_nextslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_nextslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_nexttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_nexttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_normalmultipanegui.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_normalmultipanegui.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_normalviewmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_normalviewmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_notesmasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_notesmasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_notesmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_notesmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatdate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatdate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatdecdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatdecdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatdecimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatdecimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatincdecimals.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatincdecimals.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatpercent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatpercent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatscientific.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatscientific.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatstandard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatstandard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatthousands.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_numberformatthousands.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_numberingstart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_numberingstart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_numericfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_numericfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_objectalignleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_objectalignleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_objectalignright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_objectalignright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_objectcatalog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_objectcatalog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_objectposition.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_objectposition.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_objecttitledescription.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_objecttitledescription.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_ok.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_ok.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_open.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_open.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_openreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_openreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_openremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_openremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_opentemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_opentemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_optimizetable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_optimizetable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_optionstreedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_optionstreedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_orientation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_orientation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_outlinecollapseall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_outlinecollapseall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_outlinecollapse.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_outlinecollapse.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_outlineexpandall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_outlineexpandall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_outlineexpand.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_outlineexpand.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_outlinefont.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_outlinefont.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_outlineformat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_outlineformat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_outlinemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_outlinemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_outputqualityblackwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_outputqualityblackwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_outputqualitygrayscale.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_outputqualitygrayscale.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_overline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_overline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pagebreakmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pagebreakmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pagecolumntype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pagecolumntype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pagemargin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pagemargin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pagemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pagemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pagesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pagesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_paragraphdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_paragraphdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_paralefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_paralefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pararighttoleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pararighttoleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_paraspacedecrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_paraspacedecrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_paraspaceincrease.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_paraspaceincrease.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pasteaslink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pasteaslink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pasteonlyformula.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pasteonlyformula.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pasteonlytext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pasteonlytext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pasteonlyvalue.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pasteonlyvalue.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_paste.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_paste.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pastespecial.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pastespecial.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pastetransposed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pastetransposed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pasteunformatted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pasteunformatted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_patternfield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_patternfield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_photoalbumdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_photoalbumdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pickthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pickthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pie_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pie_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_polygon_diagonal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_polygon_diagonal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_polygon_diagonal_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_polygon_diagonal_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_polygon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_polygon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_polygon_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_polygon_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_position.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_position.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_preformattedparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_preformattedparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_presentationcurrentslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_presentationcurrentslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_presentationdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_presentationdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_presentationlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_presentationlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_presentationminimizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_presentationminimizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_presentation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_presentation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_previewprintoptions.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_previewprintoptions.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_previousannotation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_previousannotation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_previouspage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_previouspage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_previousrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_previousrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_previousslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_previousslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_previoustrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_previoustrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_prevrecord.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_prevrecord.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_printdefault.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_printdefault.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_printersetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_printersetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_printlayout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_printlayout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_print.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_print.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_printpreview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_printpreview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_progressbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_progressbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_protectbookmarks.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_protectbookmarks.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_protectfields.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_protectfields.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_protect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_protect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_protecttracechangemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_protecttracechangemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_pushbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_pushbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_quickedit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_quickedit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_quit.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_quit.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_quotecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_quotecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_quoteparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_quoteparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_radiobutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_radiobutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_recalcpivottable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_recalcpivottable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_recentfilelist.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_recentfilelist.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_recsave.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_recsave.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_recsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_recsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_rect.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_rect.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_rect_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_rect_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_rect_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_rect_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_rect_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_rect_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_redactdoc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_redactdoc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_redactedexportblack.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_redactedexportblack.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_redactedexportwhite.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_redactedexportwhite.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_redo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_redo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_refreshformcontrol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_refreshformcontrol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_rejectalltrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_rejectalltrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_rejecttrackedchange.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_rejecttrackedchange.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_rejecttrackedchangetonext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_rejecttrackedchangetonext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_reload.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_reload.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_removebullets.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_removebullets.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_removefiltersort.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_removefiltersort.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_removehyperlink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_removehyperlink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_remove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_remove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_removetableof.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_removetableof.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_renamemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_renamemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_renameobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_renameobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_renamepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_renamepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_renameslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_renameslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_repeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_repeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_replycomment.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_replycomment.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_reportnavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_reportnavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_resetattributes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_resetattributes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_reverseorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_reverseorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_romanliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_romanliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_romanlowliststyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_romanlowliststyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_rotateleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_rotateleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_rotateright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_rotateright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_ruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_ruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_runbasic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_runbasic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_runmacro.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_runmacro.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_saveacopy.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_saveacopy.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_saveall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_saveall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_saveas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_saveas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_saveasremote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_saveasremote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_saveastemplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_saveastemplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_savebackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_savebackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_savebasicas.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_savebasicas.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_save.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_save.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sbaexecutesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sbaexecutesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sbanativesql.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sbanativesql.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_scaletext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_scaletext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_scan.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_scan.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_scriptorganizer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_scriptorganizer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_scrollbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_scrollbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_searchdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_searchdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sectionshrinkbottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sectionshrinkbottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sectionshrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sectionshrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sectionshrinktop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sectionshrinktop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_selectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_selectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_selectbackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_selectbackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_selectdata.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_selectdata.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_selectdb.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_selectdb.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_selectobject.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_selectobject.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_selecttable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_selecttable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_selecttables.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_selecttables.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_selectunprotectedcells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_selectunprotectedcells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sendfax.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sendfax.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sendfeedback.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sendfeedback.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sendmail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sendmail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sendtoback.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sendtoback.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_setborderstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_setborderstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_setdocumentproperties.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_setdocumentproperties.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_setminimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_setminimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_setminimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_setminimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_setobjecttobackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_setobjecttobackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_setobjecttoforeground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_setobjecttoforeground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_setoptimalcolumnwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_setoptimalcolumnwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_setoptimalrowheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_setoptimalrowheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_setoutline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_setoutline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_setreminder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_setreminder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_shadowcursor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_shadowcursor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_shadowed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_shadowed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sharedocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sharedocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_shear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_shear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_shell3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_shell3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showannotations.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showannotations.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showbookview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showbookview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showcolumn.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showcolumn.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showdatanavigator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showdatanavigator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showdependents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showdependents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showdetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showdetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showerrors.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showerrors.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showfmexplorer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showfmexplorer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showinvalid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showinvalid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showmultiplepages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showmultiplepages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_shownote.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_shownote.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_show.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_show.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showprecedents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showprecedents.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showrow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showrow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showsinglepage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showsinglepage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showslide.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showslide.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showtoolbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showtoolbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showtrackedchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showtrackedchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showtwopages.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showtwopages.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_showwhitespace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_showwhitespace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_shrink.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_shrink.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sidebar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sidebar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_signaturelinedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_signaturelinedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_signature.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_signature.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_signpdf.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_signpdf.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_size.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_size.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_slidechangewindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_slidechangewindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_slidemasterpage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_slidemasterpage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_slidesetup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_slidesetup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_smallcaps.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_smallcaps.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_smallestheight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_smallestheight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_smallestwidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_smallestwidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_snapborder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_snapborder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_snapframe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_snapframe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_snappoints.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_snappoints.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_solidcreate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_solidcreate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_solverdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_solverdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sortascending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sortascending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sortdescending.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sortdescending.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sourcecharstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sourcecharstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_spacepara15.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_spacepara15.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_spacepara1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_spacepara1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_spacepara2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_spacepara2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_spacing.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_spacing.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_spelling.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_spelling.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_spellonline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_spellonline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_sphere.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_sphere.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_spinbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_spinbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_splitcell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_splitcell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_splittable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_splittable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_splitwindow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_splitwindow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_square.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_square.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_square_rounded.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_square_rounded.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_square_rounded_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_square_rounded_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_square_unfilled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_square_unfilled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.bang.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.bang.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.concave-star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.concave-star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.doorplate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.doorplate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.horizontal-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.horizontal-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.signet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.signet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star12.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star12.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.star8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.vertical-scroll.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_starshapes.vertical-scroll.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_statetablecell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_statetablecell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_statisticsmenu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_statisticsmenu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_statusbarvisible.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_statusbarvisible.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_strikeout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_strikeout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_strongemphasischarstyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_strongemphasischarstyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_styleapply.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_styleapply.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_stylenewbyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_stylenewbyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_styleupdatebyexample.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_styleupdatebyexample.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_subscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_subscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_substract.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_substract.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_subtitleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_subtitleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_superscript.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_superscript.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_switchcontroldesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_switchcontroldesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_switchxformsdesignmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_switchxformsdesignmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.brace-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.brace-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.bracket-pair.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.bracket-pair.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.cloud.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.cloud.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.diamond-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.diamond-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.flower.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.flower.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.forbidden.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.forbidden.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.heart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.heart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.left-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.left-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.left-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.left-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.lightning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.lightning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.moon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.moon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.octagon-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.octagon-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.puzzle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.puzzle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.quad-bevel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.quad-bevel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.right-brace.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.right-brace.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.right-bracket.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.right-bracket.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.sun.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_symbolshapes.sun.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_tabdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_tabdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_tabledeselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_tabledeselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_tabledesign.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_tabledesign.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_tabledialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_tabledialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_tablemodefix.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_tablemodefix.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_tablemodefixprop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_tablemodefixprop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_tablemodevariable.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_tablemodevariable.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_tablenumberformatdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_tablenumberformatdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_tableselectall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_tableselectall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_templatemanager.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_templatemanager.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_testmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_testmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_textbodyparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_textbodyparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_textdirectionlefttoright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_textdirectionlefttoright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_textdirectiontoptobottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_textdirectiontoptobottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_text_marquee.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_text_marquee.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_text.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_text.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_texttocolumns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_texttocolumns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_thesaurus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_thesaurus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_timefield.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_timefield.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_titlepagedialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_titlepagedialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_titleparastyle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_titleparastyle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_toggleanchortype.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_toggleanchortype.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_toggleaxistitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_toggleaxistitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_togglebreakpoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_togglebreakpoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_togglegridhorizontal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_togglegridhorizontal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_togglegridvertical.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_togglegridvertical.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_togglelegend.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_togglelegend.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_togglemergecells.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_togglemergecells.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_toggleobjectbeziermode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_toggleobjectbeziermode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_toggleobjectrotatemode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_toggleobjectrotatemode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_togglesheetgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_togglesheetgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_toggletabbarvisibility.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_toggletabbarvisibility.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_toggletitle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_toggletitle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_toolbarmode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_toolbarmode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_toolprotectiondocument.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_toolprotectiondocument.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_torus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_torus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_trackchangesbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_trackchangesbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_trackchanges.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_trackchanges.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_transformdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_transformdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_underlinedouble.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_underlinedouble.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_underline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_underline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_undo.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_undo.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_ungroup.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_ungroup.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_unhainframes.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_unhainframes.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_unsetcellsreadonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_unsetcellsreadonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_updatecurindex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_updatecurindex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_upsearch.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_upsearch.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_urlbutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_urlbutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_validation.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_validation.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_versiondialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_versiondialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_verticalcaption.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_verticalcaption.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_verticaltextfittosizetool.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_verticaltextfittosizetool.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_verticaltext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_verticaltext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_vfixedline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_vfixedline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_viewdatasourcebrowser.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_viewdatasourcebrowser.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_viewformasgrid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_viewformasgrid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_viewrowcolumnheaders.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_viewrowcolumnheaders.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_viewvaluehighlighting.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_viewvaluehighlighting.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_vruler.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_vruler.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_warningcellstyles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_warningcellstyles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_watermark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_watermark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_window3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_window3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_wordcountdialog.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_wordcountdialog.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_wrapcontour.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_wrapcontour.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_wrapideal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_wrapideal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_wrapleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_wrapleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_wrapoff.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_wrapoff.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_wrapon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_wrapon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_wrapright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_wrapright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_wraptext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_wraptext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_wrapthrough.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_wrapthrough.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_xlinecolor.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_xlinecolor.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoom100percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoom100percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoom200percent.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoom200percent.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoomin.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoomin.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoommode.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoommode.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoomnext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoomnext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoomobjects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoomobjects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoomoptimal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoomoptimal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoomout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoomout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoompage.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoompage.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoompagewidth.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoompagewidth.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoompanning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoompanning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sc_zoomprevious.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sc_zoomprevious.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sl/lc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sl/lc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sl/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sl/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sl/sc_bold.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sl/sc_bold.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/sl/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/sl/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/tr/lc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/tr/lc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/cmd/tr/sc_italic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/cmd/tr/sc_italic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/exwarning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/exwarning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/forms_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/forms_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/jo02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/jo02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/joh01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/joh01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/lc039.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/lc039.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/lc040.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/lc040.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/linked_text_table.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/linked_text_table.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/pkey.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/pkey.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/reports_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/reports_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/sc039.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/sc039.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/dbaccess/res/sc040.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/dbaccess/res/sc040.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/desktop/res/shared_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/desktop/res/shared_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/extensions/res/addresspilot.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/extensions/res/addresspilot.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/extensions/res/scanner/handle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/extensions/res/scanner/handle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/extensions/res/scanner/minus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/extensions/res/scanner/minus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/extensions/res/scanner/plus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/extensions/res/scanner/plus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/extensions/res/update/ui/onlineupdate_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/extensions/res/update/ui/onlineupdate_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/extensions/res/update/ui/onlineupdate_26.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/extensions/res/update/ui/onlineupdate_26.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/formula/res/refinp1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/formula/res/refinp1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/formula/res/refinp2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/formula/res/refinp2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/fpicker/res/fp015.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/fpicker/res/fp015.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/framework/res/recent-documents.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/framework/res/recent-documents.png differ diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/LICENSE libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/LICENSE --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/LICENSE 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/LICENSE 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,158 @@ +Mozilla Public License +Version 2.0 +1. Definitions + +1.1. “Contributor” + + means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. +1.2. “Contributor Version” + + means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. +1.3. “Contribution” + + means Covered Software of a particular Contributor. +1.4. “Covered Software” + + means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. +1.5. “Incompatible With Secondary Licenses” + + means + + that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or + + that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. + +1.6. “Executable Form” + + means any form of the work other than Source Code Form. +1.7. “Larger Work” + + means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. +1.8. “License” + + means this document. +1.9. “Licensable” + + means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. +1.10. “Modifications” + + means any of the following: + + any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or + + any new file in Source Code Form that contains any Covered Software. + +1.11. “Patent Claims” of a Contributor + + means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. +1.12. “Secondary License” + + means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. +1.13. “Source Code Form” + + means the form of the work preferred for making modifications. +1.14. “You” (or “Your”) + + means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + +2. License Grants and Conditions +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: + + under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and + + under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: + + for any code that a Contributor has removed from Covered Software; or + + for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or + + under Patent Claims infringed by Covered Software in the absence of its Contributions. + +This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). +2.5. Representation + +Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. +2.6. Fair Use + +This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. +3. Responsibilities +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + + such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and + + You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). +3.4. Notices + +You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. +4. Inability to Comply Due to Statute or Regulation + +If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. +5. Termination + +5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. +6. Disclaimer of Warranty + +Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. +7. Limitation of Liability + +Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. +8. Litigation + +Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. +9. Miscellaneous + +This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. +10. Versions of the License +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. +10.3. Modified Versions + +If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + +If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. +Exhibit A - Source Code Form License Notice + + 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 https://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. +Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/links.txt libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/links.txt --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/links.txt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/links.txt 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2788 @@ +# avmedia +# ============================================== +avmedia/res/av02048.png cmd/sc_open.png +avmedia/res/av02049.png cmd/sc_runbasic.png +avmedia/res/av02050.png cmd/sc_mediapause.png +avmedia/res/av02051.png cmd/sc_basicstop.png +avmedia/res/av02052.png cmd/sc_mediarepeat.png +avmedia/res/av02053.png cmd/sc_ok.png +avmedia/res/av02054.png cmd/sc_mediamute.png +avmedia/res/avl02048.png cmd/lc_open.png +avmedia/res/avl02049.png cmd/lc_runbasic.png +avmedia/res/avl02050.png cmd/lc_mediapause.png +avmedia/res/avl02051.png cmd/lc_basicstop.png +avmedia/res/avl02052.png cmd/lc_mediarepeat.png +avmedia/res/avl02053.png cmd/lc_ok.png +avmedia/res/avl02054.png cmd/lc_mediamute.png + +# arrangement +# ============================================== +cmd/32/objectbackone.png cmd/32/backward.png +cmd/32/objectforwardone.png cmd/32/forward.png + +cmd/lc_objectbackone.png cmd/lc_backward.png +cmd/lc_objectforwardone.png cmd/lc_forward.png + +cmd/sc_objectbackone.png cmd/sc_backward.png +cmd/sc_objectforwardone.png cmd/sc_forward.png + +# chart2 +# ============================================== +chart2/res/dataeditor_icon01.png cmd/sc_insertrowsafter.png +chart2/res/dataeditor_icon02.png cmd/sc_insertcolumnsafter.png +chart2/res/dataeditor_icon03.png cmd/sc_deleterows.png +chart2/res/dataeditor_icon04.png cmd/sc_deletecolumns.png +chart2/res/selectrange.png formula/res/refinp1.png + +cmd/32/charttitlemenu.png cmd/32/toggletitle.png +cmd/32/diagramaxisall.png cmd/32/diagramaxisxyz.png +cmd/32/diagramaxismenu.png cmd/32/diagramaxis.png +cmd/32/diagramgridmenu.png cmd/32/togglegridhorizontal.png +cmd/32/insertmenuaxes.png cmd/32/diagramaxis.png +cmd/32/insertmenugrids.png cmd/32/togglegridhorizontal.png +cmd/32/insertmenulegend.png cmd/32/legend.png + +cmd/lc_charttitlemenu.png cmd/lc_toggletitle.png +cmd/lc_diagramaxisall.png cmd/lc_diagramaxisxyz.png +cmd/lc_diagramaxismenu.png cmd/lc_diagramaxis.png +cmd/lc_diagramgridmenu.png cmd/lc_togglegridhorizontal.png +cmd/lc_insertmenuaxes.png cmd/lc_diagramaxis.png +cmd/lc_insertmenugrids.png cmd/lc_togglegridhorizontal.png +cmd/lc_insertmenulegend.png cmd/lc_legend.png + +cmd/sc_charttitlemenu.png cmd/sc_toggletitle.png +cmd/sc_diagramaxisall.png cmd/sc_diagramaxisxyz.png +cmd/sc_diagramaxismenu.png cmd/sc_diagramaxis.png +cmd/sc_diagramgridmenu.png cmd/sc_togglegridhorizontal.png +cmd/sc_insertmenuaxes.png cmd/sc_diagramaxis.png +cmd/sc_insertmenugrids.png cmd/sc_togglegridhorizontal.png +cmd/sc_insertmenulegend.png cmd/sc_legend.png + +# cmd +# ============================================== + +# Add +cmd/32/adddatefield.png cmd/32/datefield.png +cmd/32/addons.png cmd/32/insertplugin.png + +cmd/lc_adddatefield.png cmd/lc_datefield.png +cmd/lc_addons.png cmd/lc_insertplugin.png + +cmd/sc_adddatefield.png cmd/sc_datefield.png +cmd/sc_addons.png cmd/sc_insertplugin.png + +# tooltips +cmd/32/autoformatmenu.png cmd/32/autocorrectdlg.png +cmd/32/showinlinetooltips.png cmd/32/shownote.png + +cmd/lc_autoformatmenu.png cmd/lc_autocorrectdlg.png +cmd/lc_showinlinetooltips.png cmd/lc_shownote.png + +cmd/sc_autoformatmenu.png cmd/sc_autocorrectdlg.png +cmd/sc_showinlinetooltips.png cmd/sc_shownote.png + +# Insert +cmd/32/charactermenu.png cmd/32/fontdialog.png +cmd/32/fieldmenu.png cmd/32/addfield.png +cmd/32/graphicmenu.png cmd/32/avmediaplayer.png +cmd/32/insertauthorfield.png cmd/32/dbviewaliases.png +cmd/32/insertavmedia.png cmd/32/avmediaplayer.png +cmd/32/insertctrl.png cmd/32/inserttable.png +cmd/32/insertcurrencyfield.png cmd/32/currencyfield.png +cmd/32/insertdatefield.png cmd/32/datefield.png +cmd/32/insertedit.png cmd/32/edit.png +cmd/32/insertfield.png cmd/32/addfield.png +cmd/32/insertfilecontrol.png cmd/32/filecontrol.png +cmd/32/insertfilefield.png cmd/32/filefield.png +cmd/32/insertformattedfield.png cmd/32/formattedfield.png +cmd/32/insertformcheck.png cmd/32/checkbox.png +cmd/32/insertformcombo.png cmd/32/combobox.png +cmd/32/insertformlist.png cmd/32/listbox.png +cmd/32/insertformmenu.png cmd/32/choosecontrols.png +cmd/32/insertformradio.png cmd/32/radiobutton.png +cmd/32/insertformspin.png cmd/32/spinbutton.png +cmd/32/insertformula.png cmd/32/dbviewfunctions.png +cmd/32/insertformvscroll.png cmd/32/scrollbar.png +cmd/32/insertframeinteract.png cmd/32/insertframe.png +cmd/32/insertframeinteractnocolumns.png cmd/32/insertframe.png +cmd/32/insertimagecontrol.png cmd/32/insertgraphic.png +cmd/32/insertlistbox.png cmd/32/listbox.png +cmd/32/insertnumericfield.png cmd/32/numericfield.png +cmd/32/insertobjectchart.png cmd/32/drawchart.png +cmd/32/insertobjectdialog.png cmd/32/insertobject.png +cmd/32/insertobjectstarmath.png cmd/32/insertmath.png +cmd/32/insertpagefooter.png cmd/32/insertfooter.png +cmd/32/insertpageheader.png cmd/32/insertheader.png +cmd/32/insertpatternfield.png cmd/32/patternfield.png +cmd/32/insertpushbutton.png cmd/32/pushbutton.png +cmd/32/inserttextframe.png cmd/32/insertframe.png +cmd/32/inserttimefield.png cmd/32/timefield.png +cmd/32/insobjctrl.png cmd/32/newdoc.png +cmd/32/numberingmenu.png cmd/32/bulletsandnumberingdialog.png +cmd/32/paragraphmenu.png cmd/32/paragraphdialog.png +cmd/32/shapesmenu.png cmd/32/insertdraw.png +cmd/32/tracechangemode.png cmd/32/trackchanges.png +cmd/32/viewtrackchanges.png cmd/32/showtrackedchanges.png + +cmd/lc_charactermenu.png cmd/lc_fontdialog.png +cmd/lc_fieldmenu.png cmd/lc_addfield.png +cmd/lc_graphicmenu.png cmd/lc_avmediaplayer.png +cmd/lc_insertauthorfield.png cmd/lc_dbviewaliases.png +cmd/lc_insertavmedia.png cmd/lc_avmediaplayer.png +cmd/lc_insertctrl.png cmd/lc_inserttable.png +cmd/lc_insertcurrencyfield.png cmd/lc_currencyfield.png +cmd/lc_insertdatefield.png cmd/lc_datefield.png +cmd/lc_insertedit.png cmd/lc_edit.png +cmd/lc_insertfield.png cmd/lc_addfield.png +cmd/lc_insertfilecontrol.png cmd/lc_filecontrol.png +cmd/lc_insertfilefield.png cmd/lc_filefield.png +cmd/lc_insertformattedfield.png cmd/lc_formattedfield.png +cmd/lc_insertformcheck.png cmd/lc_checkbox.png +cmd/lc_insertformcombo.png cmd/lc_combobox.png +cmd/lc_insertformlist.png cmd/lc_listbox.png +cmd/lc_insertformmenu.png cmd/lc_choosecontrols.png +cmd/lc_insertformradio.png cmd/lc_radiobutton.png +cmd/lc_insertformspin.png cmd/lc_spinbutton.png +cmd/lc_insertformula.png cmd/lc_dbviewfunctions.png +cmd/lc_insertformvscroll.png cmd/lc_scrollbar.png +cmd/lc_insertframeinteract.png cmd/lc_insertframe.png +cmd/lc_insertframeinteractnocolumns.png cmd/lc_insertframe.png +cmd/lc_insertimagecontrol.png cmd/lc_insertgraphic.png +cmd/lc_insertlistbox.png cmd/lc_listbox.png +cmd/lc_insertnumericfield.png cmd/lc_numericfield.png +cmd/lc_insertobjectchart.png cmd/lc_drawchart.png +cmd/lc_insertobjectdialog.png cmd/lc_insertobject.png +cmd/lc_insertobjectstarmath.png cmd/lc_insertmath.png +cmd/lc_insertpagefooter.png cmd/lc_insertfooter.png +cmd/lc_insertpageheader.png cmd/lc_insertheader.png +cmd/lc_insertpatternfield.png cmd/lc_patternfield.png +cmd/lc_insertpushbutton.png cmd/lc_pushbutton.png +cmd/lc_inserttextframe.png cmd/lc_insertframe.png +cmd/lc_inserttimefield.png cmd/lc_timefield.png +cmd/lc_insobjctrl.png cmd/lc_newdoc.png +cmd/lc_numberingmenu.png cmd/lc_bulletsandnumberingdialog.png +cmd/lc_paragraphmenu.png cmd/lc_paragraphdialog.png +cmd/lc_shapesmenu.png cmd/lc_insertdraw.png +cmd/lc_tracechangemode.png cmd/lc_trackchanges.png +cmd/lc_viewtrackchanges.png cmd/lc_showtrackedchanges.png + +cmd/sc_charactermenu.png cmd/sc_fontdialog.png +cmd/sc_fieldmenu.png cmd/sc_addfield.png +cmd/sc_graphicmenu.png cmd/sc_avmediaplayer.png +cmd/sc_insertauthorfield.png cmd/sc_dbviewaliases.png +cmd/sc_insertavmedia.png cmd/sc_avmediaplayer.png +cmd/sc_insertctrl.png cmd/sc_inserttable.png +cmd/sc_insertcurrencyfield.png cmd/sc_currencyfield.png +cmd/sc_insertdatefield.png cmd/sc_datefield.png +cmd/sc_insertedit.png cmd/sc_edit.png +cmd/sc_insertfield.png cmd/sc_addfield.png +cmd/sc_insertfilecontrol.png cmd/sc_filecontrol.png +cmd/sc_insertfilefield.png cmd/sc_filefield.png +cmd/sc_insertformattedfield.png cmd/sc_formattedfield.png +cmd/sc_insertformcheck.png cmd/sc_checkbox.png +cmd/sc_insertformcombo.png cmd/sc_combobox.png +cmd/sc_insertformlist.png cmd/sc_listbox.png +cmd/sc_insertformmenu.png cmd/sc_choosecontrols.png +cmd/sc_insertformradio.png cmd/sc_radiobutton.png +cmd/sc_insertformspin.png cmd/sc_spinbutton.png +cmd/sc_insertformula.png cmd/sc_dbviewfunctions.png +cmd/sc_insertformvscroll.png cmd/sc_scrollbar.png +cmd/sc_insertframeinteract.png cmd/sc_insertframe.png +cmd/sc_insertframeinteractnocolumns.png cmd/sc_insertframe.png +cmd/sc_insertimagecontrol.png cmd/sc_insertgraphic.png +cmd/sc_insertlistbox.png cmd/sc_listbox.png +cmd/sc_insertnumericfield.png cmd/sc_numericfield.png +cmd/sc_insertobjectchart.png cmd/sc_drawchart.png +cmd/sc_insertobjectdialog.png cmd/sc_insertobject.png +cmd/sc_insertobjectstarmath.png cmd/sc_insertmath.png +cmd/sc_insertpagefooter.png cmd/sc_insertfooter.png +cmd/sc_insertpageheader.png cmd/sc_insertheader.png +cmd/sc_insertpatternfield.png cmd/sc_patternfield.png +cmd/sc_insertpushbutton.png cmd/sc_pushbutton.png +cmd/sc_inserttextframe.png cmd/sc_insertframe.png +cmd/sc_inserttimefield.png cmd/sc_timefield.png +cmd/sc_insobjctrl.png cmd/sc_newdoc.png +cmd/sc_numberingmenu.png cmd/sc_bulletsandnumberingdialog.png +cmd/sc_paragraphmenu.png cmd/sc_paragraphdialog.png +cmd/sc_shapesmenu.png cmd/sc_insertdraw.png +cmd/sc_tracechangemode.png cmd/sc_trackchanges.png +cmd/sc_viewtrackchanges.png cmd/sc_showtrackedchanges.png + + +#View Menu +cmd/32/changesmenu.png cmd/32/trackchanges.png + +cmd/sc_changesmenu.png cmd/sc_trackchanges.png + +cmd/lc_changesmenu.png cmd/lc_trackchanges.png + +# Zoom +cmd/32/adjust.png cmd/32/zoomoptimal.png +cmd/32/previewzoom.png cmd/32/zoom.png +cmd/32/view100.png cmd/32/zoom100percent.png +cmd/32/zoomminus.png cmd/32/zoomout.png +cmd/32/zoomplus.png cmd/32/zoomin.png +cmd/32/zoomtoolbox.png cmd/32/zoom.png + +cmd/lc_adjust.png cmd/lc_zoomoptimal.png +cmd/lc_previewzoom.png cmd/lc_zoom.png +cmd/lc_view100.png cmd/lc_zoom100percent.png +cmd/lc_zoomminus.png cmd/lc_zoomout.png +cmd/lc_zoomplus.png cmd/lc_zoomin.png +cmd/lc_zoomtoolbox.png cmd/lc_zoom.png + +cmd/sc_adjust.png cmd/sc_zoomoptimal.png +cmd/sc_previewzoom.png cmd/sc_zoom.png +cmd/sc_view100.png cmd/sc_zoom100percent.png +cmd/sc_zoomminus.png cmd/sc_zoomout.png +cmd/sc_zoomplus.png cmd/sc_zoomin.png +cmd/sc_zoomtoolbox.png cmd/sc_zoom.png + +# Save +cmd/32/savegraphic.png cmd/32/save.png + +cmd/lc_savegraphic.png cmd/lc_save.png + +cmd/sc_savegraphic.png cmd/sc_save.png + +# Text +cmd/32/drawtext.png cmd/32/text.png +cmd/32/fontheight.png cmd/32/scaletext.png +cmd/32/fontworkcharacterspacingfloater.png cmd/32/spacing.png +cmd/32/textfittosizetool.png cmd/32/text_marquee.png +cmd/32/texttoolbox.png cmd/32/text.png + +cmd/lc_drawtext.png cmd/lc_text.png +cmd/lc_fontheight.png cmd/lc_scaletext.png +cmd/lc_fontworkcharacterspacingfloater.png cmd/lc_spacing.png +cmd/lc_textfittosizetool.png cmd/lc_text_marquee.png +cmd/lc_texttoolbox.png cmd/lc_text.png + +cmd/sc_drawtext.png cmd/sc_text.png +cmd/sc_fontheight.png cmd/sc_scaletext.png +cmd/sc_fontworkcharacterspacingfloater.png cmd/sc_spacing.png +cmd/sc_textfittosizetool.png cmd/sc_text_marquee.png +cmd/sc_texttoolbox.png cmd/sc_text.png + +# cmd 3d +cmd/32/convertinto3dlathefast.png cmd/32/convertinto3dlathe.png +cmd/32/extrusiontoggle.png cmd/32/convertinto3d.png +cmd/32/objects3dtoolbox.png cmd/32/cube.png +cmd/32/view3d.png cmd/32/cube.png + +cmd/lc_convertinto3dlathefast.png cmd/lc_convertinto3dlathe.png +cmd/lc_extrusiontoggle.png cmd/lc_convertinto3d.png +cmd/lc_objects3dtoolbox.png cmd/lc_cube.png +cmd/lc_view3d.png cmd/lc_cube.png + +cmd/sc_convertinto3dlathefast.png cmd/sc_convertinto3dlathe.png +cmd/sc_extrusiontoggle.png cmd/sc_convertinto3d.png +cmd/sc_objects3dtoolbox.png cmd/sc_cube.png +cmd/sc_view3d.png cmd/sc_cube.png + +# Control +cmd/32/config.png cmd/32/choosecontrols.png + +cmd/lc_config.png cmd/lc_choosecontrols.png + +cmd/sc_config.png cmd/sc_choosecontrols.png + +# Formatmenu +cmd/32/anchormenu.png cmd/32/toggleanchortype.png +cmd/32/conditionalformatmenu.png cmd/32/colorscaleformatdialog.png +cmd/32/formatbulletsmenu.png cmd/32/defaultbullet.png +cmd/32/formatframemenu.png cmd/32/framedialog.png +cmd/32/formatimagemenu.png cmd/32/graphic.png +cmd/32/formatspacingmenu.png cmd/32/spacepara15.png +cmd/32/formattextmenu.png cmd/32/charfontname.png +cmd/32/spacepara115.png cmd/32/spacepara1.png +cmd/32/textalign.png cmd/32/alignblock.png + +cmd/lc_anchormenu.png cmd/lc_toggleanchortype.png +cmd/lc_conditionalformatmenu.png cmd/lc_colorscaleformatdialog.png +cmd/lc_formatbulletsmenu.png cmd/lc_defaultbullet.png +cmd/lc_formatframemenu.png cmd/lc_framedialog.png +cmd/lc_formatimagemenu.png cmd/lc_graphicdialog.png +cmd/lc_formatspacingmenu.png cmd/lc_spacepara15.png +cmd/lc_formattextmenu.png cmd/lc_charfontname.png +cmd/lc_spacepara115.png cmd/lc_spacepara1.png +cmd/lc_textalign.png cmd/lc_alignblock.png + +cmd/sc_anchormenu.png cmd/sc_toggleanchortype.png +cmd/sc_conditionalformatmenu.png cmd/sc_colorscaleformatdialog.png +cmd/sc_formatbulletsmenu.png cmd/sc_defaultbullet.png +cmd/sc_formatframemenu.png cmd/sc_framedialog.png +cmd/sc_formatimagemenu.png cmd/sc_graphicdialog.png +cmd/sc_formatspacingmenu.png cmd/sc_spacepara15.png +cmd/sc_formattextmenu.png cmd/sc_charfontname.png +cmd/sc_spacepara115.png cmd/sc_spacepara1.png +cmd/sc_textalign.png cmd/sc_alignblock.png + +# Url +cmd/32/openurl.png cmd/32/browseview.png +cmd/32/webhtml.png cmd/32/browseview.png + +cmd/lc_openurl.png cmd/lc_browseview.png +cmd/lc_webhtml.png cmd/lc_browseview.png + +cmd/sc_openurl.png cmd/sc_browseview.png +cmd/sc_webhtml.png cmd/sc_browseview.png + +# Form +cmd/32/hscroll.png cmd/32/hscrollbar.png +cmd/32/insertformhscroll.png cmd/32/hscrollbar.png +cmd/32/scrollbarmenu.png cmd/32/scrollbar.png +cmd/32/vscroll.png cmd/32/scrollbar.png +cmd/32/vscrollbar.png cmd/32/scrollbar.png + +cmd/lc_hscroll.png cmd/lc_hscrollbar.png +cmd/lc_insertformhscroll.png cmd/lc_hscrollbar.png +cmd/lc_scrollbarmenu.png cmd/lc_scrollbar.png +cmd/lc_vscroll.png cmd/lc_scrollbar.png +cmd/lc_vscrollbar.png cmd/lc_scrollbar.png + +cmd/sc_hscroll.png cmd/sc_hscrollbar.png +cmd/sc_insertformhscroll.png cmd/sc_hscrollbar.png +cmd/sc_scrollbarmenu.png cmd/sc_scrollbar.png +cmd/sc_vscroll.png cmd/sc_scrollbar.png +cmd/sc_vscrollbar.png cmd/sc_scrollbar.png + +# Tools +cmd/32/languagemenu.png cmd/32/managelanguage.png +cmd/lc_languagemenu.png cmd/lc_managelanguage.png +cmd/sc_languagemenu.png cmd/sc_managelanguage.png + + +# Annotations +cmd/32/acceptchanges.png cmd/32/trackchangesbar.png +cmd/32/commentchange.png cmd/32/commentchangetracking.png +cmd/32/deleteallnotes.png cmd/32/deleteallannotation.png +cmd/32/deletecomment.png cmd/32/deleteannotation.png +cmd/32/deletenote.png cmd/32/deleteannotation.png +cmd/32/insertannotation.png cmd/32/shownote.png +cmd/32/notevisible.png cmd/32/shownote.png +cmd/32/showallnotes.png cmd/32/showannotations.png +cmd/32/showchanges.png cmd/32/showtrackedchanges.png + +cmd/lc_acceptchanges.png cmd/lc_trackchangesbar.png +cmd/lc_commentchange.png cmd/lc_commentchangetracking.png +cmd/lc_deleteallnotes.png cmd/lc_deleteallannotation.png +cmd/lc_deletecomment.png cmd/lc_deleteannotation.png +cmd/lc_deletenote.png cmd/lc_deleteannotation.png +cmd/lc_insertannotation.png cmd/lc_shownote.png +cmd/lc_notevisible.png cmd/lc_shownote.png +cmd/lc_showallnotes.png cmd/lc_showannotations.png +cmd/lc_showchanges.png cmd/lc_showtrackedchanges.png + +cmd/sc_acceptchanges.png cmd/sc_trackchangesbar.png +cmd/sc_commentchange.png cmd/sc_commentchangetracking.png +cmd/sc_deleteallnotes.png cmd/sc_deleteallannotation.png +cmd/sc_deletecomment.png cmd/sc_deleteannotation.png +cmd/sc_deletenote.png cmd/sc_deleteannotation.png +cmd/sc_formatallnotes.png cmd/sc_editannotation.png +cmd/sc_insertannotation.png cmd/sc_shownote.png +cmd/sc_notevisible.png cmd/sc_shownote.png +cmd/sc_showallnotes.png cmd/sc_showannotations.png +cmd/sc_showchanges.png cmd/sc_showtrackedchanges.png + +# Locale language support +cmd/32/ar/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/ar/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/ar/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/ar/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/ar/recundo.png cmd/32/redo.png +cmd/32/ar/redo.png cmd/32/undo.png +cmd/32/ar/undo.png cmd/32/redo.png +cmd/32/bg/addtextbox.png cmd/32/bg/insertfixedtext.png +cmd/32/bg/autoformatmenu.png cmd/32/bg/autocorrectdlg.png +cmd/32/bg/sortdown.png cmd/32/bg/sortdescending.png +cmd/32/bg/sortup.png cmd/32/bg/sortascending.png +cmd/32/bg/spelldialog.png cmd/32/bg/spelling.png +cmd/32/bg/spellingandgrammardialog.png cmd/32/bg/spelling.png +cmd/32/bg/tablesort.png cmd/32/bg/sortascending.png +cmd/32/bg/textformfield.png cmd/32/bg/edit.png +cmd/32/bg/underline.png cmd/32/hu/underline.png +cmd/32/bg/underlinedouble.png cmd/32/hu/underlinedouble.png +cmd/32/bg/underlinesimple.png cmd/32/hu/underline.png +cmd/32/bg/underlinesingle.png cmd/32/hu/underline.png +cmd/32/es/italic.png cmd/32/de/italic.png +cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png +cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png +cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png +cmd/32/es/numberformatthousands.png cmd/32/de/numberformatthousands.png +cmd/32/es/underlinesimple.png cmd/32/es/underline.png +cmd/32/es/underlinesingle.png cmd/32/es/underline.png +cmd/32/fa/absoluterecord.png cmd/32/ar/absoluterecord.png +cmd/32/fa/alphaliststyle.png cmd/32/ar/alphaliststyle.png +cmd/32/fa/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png +cmd/32/fa/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/fa/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/fa/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png +cmd/32/fa/continuenumbering.png cmd/32/ar/continuenumbering.png +cmd/32/fa/defaultbullet.png cmd/32/ar/defaultbullet.png +cmd/32/fa/defaultnumbering.png cmd/32/ar/defaultnumbering.png +cmd/32/fa/deleterecord.png cmd/32/ar/deleterecord.png +cmd/32/fa/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png +cmd/32/fa/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/fa/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/fa/newrecord.png cmd/32/ar/newrecord.png +cmd/32/fa/numberingstart.png cmd/32/ar/numberingstart.png +cmd/32/fa/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/fa/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/fa/recsave.png cmd/32/ar/recsave.png +cmd/32/fa/recundo.png cmd/32/redo.png +cmd/32/fa/redo.png cmd/32/undo.png +cmd/32/fa/removebullets.png cmd/32/ar/removebullets.png +cmd/32/fa/romanliststyle.png cmd/32/ar/romanliststyle.png +cmd/32/fa/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png +cmd/32/fa/setoutline.png cmd/32/ar/setoutline.png +cmd/32/fa/undo.png cmd/32/redo.png +cmd/32/fr/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png +cmd/32/fr/numberformatdecimal.png cmd/32/de/numberformatdecimal.png +cmd/32/fr/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png +cmd/32/fr/numberformatthousands.png cmd/32/de/numberformatthousands.png +cmd/32/fr/underline.png cmd/32/es/underline.png +cmd/32/fr/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/fr/underlinesimple.png cmd/32/es/underline.png +cmd/32/fr/underlinesingle.png cmd/32/es/underline.png +cmd/32/he/absoluterecord.png cmd/32/ar/absoluterecord.png +cmd/32/he/alphaliststyle.png cmd/32/ar/alphaliststyle.png +cmd/32/he/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png +cmd/32/he/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/he/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/he/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png +cmd/32/he/continuenumbering.png cmd/32/ar/continuenumbering.png +cmd/32/he/defaultbullet.png cmd/32/ar/defaultbullet.png +cmd/32/he/defaultnumbering.png cmd/32/ar/defaultnumbering.png +cmd/32/he/deleterecord.png cmd/32/ar/deleterecord.png +cmd/32/he/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png +cmd/32/he/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/he/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/he/newrecord.png cmd/32/ar/newrecord.png +cmd/32/he/numberingstart.png cmd/32/ar/numberingstart.png +cmd/32/he/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/he/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/he/recsave.png cmd/32/ar/recsave.png +cmd/32/he/recundo.png cmd/32/redo.png +cmd/32/he/redo.png cmd/32/undo.png +cmd/32/he/removebullets.png cmd/32/ar/removebullets.png +cmd/32/he/romanliststyle.png cmd/32/ar/romanliststyle.png +cmd/32/he/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png +cmd/32/he/setoutline.png cmd/32/ar/setoutline.png +cmd/32/he/undo.png cmd/32/redo.png +cmd/32/hu/bold.png cmd/32/de/bold.png +cmd/32/hu/underlinesimple.png cmd/32/hu/underline.png +cmd/32/hu/underlinesingle.png cmd/32/hu/underline.png +cmd/32/id/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png +cmd/32/id/numberformatdecimal.png cmd/32/de/numberformatdecimal.png +cmd/32/id/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png +cmd/32/id/numberformatthousands.png cmd/32/de/numberformatthousands.png +cmd/32/it/bold.png cmd/32/fr/bold.png +cmd/32/it/underline.png cmd/32/es/underline.png +cmd/32/it/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/it/underlinesimple.png cmd/32/es/underline.png +cmd/32/it/underlinesingle.png cmd/32/es/underline.png +cmd/32/km/underlinesimple.png cmd/32/km/underline.png +cmd/32/km/underlinesingle.png cmd/32/km/underline.png +cmd/32/ko/charactermenu.png cmd/32/ko/fontdialog.png +cmd/32/ko/drawtext.png cmd/32/ko/text.png +cmd/32/ko/editstyled.png cmd/32/ko/editstyle.png +cmd/32/ko/fontcolor.png cmd/32/ko/color.png +cmd/32/ko/fontheight.png cmd/32/ko/scaletext.png +cmd/32/ko/formatobjectmenu.png cmd/32/ko/text.png +cmd/32/ko/formattextmenu.png cmd/32/ko/charfontname.png +cmd/32/ko/ordercrit.png cmd/32/ko/datasort.png +cmd/32/ko/sortdown.png cmd/32/ko/sortdescending.png +cmd/32/ko/sortup.png cmd/32/ko/sortascending.png +cmd/32/ko/tablesort.png cmd/32/ko/datasort.png +cmd/32/ko/textattributes.png cmd/32/ko/fontdialog.png +cmd/32/ko/texttoolbox.png cmd/32/ko/text.png +cmd/32/ko/underlinesimple.png cmd/32/ko/underline.png +cmd/32/ko/underlinesingle.png cmd/32/ko/underline.png +cmd/32/ko/viewsidebarstyles.png cmd/32/ko/designerdialog.png +cmd/32/nl/italic.png cmd/32/it/italic.png +cmd/32/nl/underlinesimple.png cmd/32/nl/underline.png +cmd/32/nl/underlinesingle.png cmd/32/nl/underline.png +cmd/32/pl/bold.png cmd/32/fr/bold.png +cmd/32/pl/italic.png cmd/32/de/italic.png +cmd/32/pl/underlinesimple.png cmd/32/pl/underline.png +cmd/32/pl/underlinesingle.png cmd/32/pl/underline.png +cmd/32/pt-BR/bold.png cmd/32/es/bold.png +cmd/32/pt-BR/underline.png cmd/32/es/underline.png +cmd/32/pt-BR/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/pt-BR/underlinesimple.png cmd/32/es/underline.png +cmd/32/pt-BR/underlinesingle.png cmd/32/es/underline.png +cmd/32/pt/bold.png cmd/32/es/bold.png +cmd/32/pt/underline.png cmd/32/es/underline.png +cmd/32/pt/underlinedouble.png cmd/32/es/underlinedouble.png +cmd/32/pt/underlinesimple.png cmd/32/es/underline.png +cmd/32/pt/underlinesingle.png cmd/32/es/underline.png +cmd/32/ru/italic.png cmd/32/de/italic.png +cmd/32/ru/underlinesimple.png cmd/32/ru/underline.png +cmd/32/ru/underlinesingle.png cmd/32/ru/underline.png +cmd/32/sl/underline.png cmd/32/pl/underline.png +cmd/32/sl/underlinedouble.png cmd/32/pl/underlinedouble.png +cmd/32/sl/underlinesimple.png cmd/32/pl/underline.png +cmd/32/sl/underlinesingle.png cmd/32/pl/underline.png +cmd/32/sv/bold.png cmd/32/de/bold.png +cmd/32/sv/italic.png cmd/32/de/italic.png +cmd/32/tr/bold.png cmd/32/sl/bold.png +cmd/32/tr/underline.png cmd/32/hu/underline.png +cmd/32/tr/underlinedouble.png cmd/32/hu/underlinedouble.png +cmd/32/tr/underlinesimple.png cmd/32/hu/underline.png +cmd/32/tr/underlinesingle.png cmd/32/hu/underline.png +cmd/32/underlinesimple.png cmd/32/underline.png +cmd/32/underlinesingle.png cmd/32/underline.png +cmd/32/ur/absoluterecord.png cmd/32/ar/absoluterecord.png +cmd/32/ur/alphaliststyle.png cmd/32/ar/alphaliststyle.png +cmd/32/ur/alphalowliststyle.png cmd/32/ar/alphalowliststyle.png +cmd/32/ur/bulletliststyle.png cmd/32/ar/defaultbullet.png +cmd/32/ur/bulletsandnumberingdialog.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/ur/chapternumberingdialog.png cmd/32/ar/chapternumberingdialog.png +cmd/32/ur/continuenumbering.png cmd/32/ar/continuenumbering.png +cmd/32/ur/defaultbullet.png cmd/32/ar/defaultbullet.png +cmd/32/ur/defaultnumbering.png cmd/32/ar/defaultnumbering.png +cmd/32/ur/deleterecord.png cmd/32/ar/deleterecord.png +cmd/32/ur/insertneutralparagraph.png cmd/32/ar/insertneutralparagraph.png +cmd/32/ur/linenumberdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/ur/linenumberingdialog.png cmd/32/ar/linenumberingdialog.png +cmd/32/ur/newrecord.png cmd/32/ar/newrecord.png +cmd/32/ur/numberingstart.png cmd/32/ar/numberingstart.png +cmd/32/ur/numberliststyle.png cmd/32/ar/defaultnumbering.png +cmd/32/ur/outlinebullet.png cmd/32/ar/bulletsandnumberingdialog.png +cmd/32/ur/recsave.png cmd/32/ar/recsave.png +cmd/32/ur/recundo.png cmd/32/redo.png +cmd/32/ur/redo.png cmd/32/undo.png +cmd/32/ur/removebullets.png cmd/32/ar/removebullets.png +cmd/32/ur/romanliststyle.png cmd/32/ar/romanliststyle.png +cmd/32/ur/romanlowliststyle.png cmd/32/ar/romanlowliststyle.png +cmd/32/ur/setoutline.png cmd/32/ar/setoutline.png +cmd/32/ur/undo.png cmd/32/redo.png +cmd/ar/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/ar/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/ar/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/ar/lc_recundo.png cmd/lc_redo.png +cmd/ar/lc_redo.png cmd/lc_undo.png +cmd/ar/lc_undo.png cmd/lc_redo.png +cmd/ar/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/ar/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/ar/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/ar/sc_recundo.png cmd/sc_redo.png +cmd/ar/sc_redo.png cmd/sc_undo.png +cmd/ar/sc_undo.png cmd/sc_redo.png +cmd/bg/lc_addtextbox.png cmd/bg/lc_insertfixedtext.png +cmd/bg/lc_autoformatmenu.png cmd/bg/lc_autocorrectdlg.png +cmd/bg/lc_sortdown.png cmd/bg/lc_sortdescending.png +cmd/bg/lc_sortup.png cmd/bg/lc_sortascending.png +cmd/bg/lc_spelldialog.png cmd/bg/lc_spelling.png +cmd/bg/lc_spellingandgrammardialog.png cmd/bg/lc_spelling.png +cmd/bg/lc_tablesort.png cmd/bg/lc_sortascending.png +cmd/bg/lc_textformfield.png cmd/bg/lc_edit.png +cmd/bg/lc_underline.png cmd/hu/lc_underline.png +cmd/bg/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png +cmd/bg/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/bg/lc_underlinesingle.png cmd/hu/lc_underline.png +cmd/bg/sc_addtextbox.png cmd/bg/sc_insertfixedtext.png +cmd/bg/sc_autoformatmenu.png cmd/bg/sc_autocorrectdlg.png +cmd/bg/sc_sortdown.png cmd/bg/sc_sortdescending.png +cmd/bg/sc_sortup.png cmd/bg/sc_sortascending.png +cmd/bg/sc_spelldialog.png cmd/bg/sc_spelling.png +cmd/bg/sc_spellingandgrammardialog.png cmd/bg/sc_spelling.png +cmd/bg/sc_tablesort.png cmd/bg/sc_sortascending.png +cmd/bg/sc_textformfield.png cmd/bg/sc_edit.png +cmd/bg/sc_underline.png cmd/hu/sc_underline.png +cmd/bg/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png +cmd/bg/sc_underlinesimple.png cmd/hu/sc_underline.png +cmd/bg/sc_underlinesingle.png cmd/hu/sc_underline.png +cmd/es/lc_italic.png cmd/de/lc_italic.png +cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png +cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png +cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/es/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png +cmd/es/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/es/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/es/sc_italic.png cmd/de/sc_italic.png +cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png +cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png +cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/es/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/es/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/es/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/fa/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png +cmd/fa/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png +cmd/fa/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png +cmd/fa/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/fa/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/fa/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png +cmd/fa/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png +cmd/fa/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png +cmd/fa/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png +cmd/fa/lc_deleterecord.png cmd/ar/lc_deleterecord.png +cmd/fa/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png +cmd/fa/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/fa/lc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/fa/lc_newrecord.png cmd/ar/lc_newrecord.png +cmd/fa/lc_numberingstart.png cmd/ar/lc_numberingstart.png +cmd/fa/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/fa/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/fa/lc_recsave.png cmd/ar/lc_recsave.png +cmd/fa/lc_recundo.png cmd/lc_redo.png +cmd/fa/lc_redo.png cmd/lc_undo.png +cmd/fa/lc_removebullets.png cmd/ar/lc_removebullets.png +cmd/fa/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png +cmd/fa/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png +cmd/fa/lc_setoutline.png cmd/ar/lc_setoutline.png +cmd/fa/lc_undo.png cmd/lc_redo.png +cmd/fa/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png +cmd/fa/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png +cmd/fa/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png +cmd/fa/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/fa/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/fa/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png +cmd/fa/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png +cmd/fa/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png +cmd/fa/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png +cmd/fa/sc_deleterecord.png cmd/ar/sc_deleterecord.png +cmd/fa/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png +cmd/fa/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/fa/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/fa/sc_newrecord.png cmd/ar/sc_newrecord.png +cmd/fa/sc_numberingstart.png cmd/ar/sc_numberingstart.png +cmd/fa/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/fa/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/fa/sc_recsave.png cmd/ar/sc_recsave.png +cmd/fa/sc_recundo.png cmd/sc_redo.png +cmd/fa/sc_redo.png cmd/sc_undo.png +cmd/fa/sc_removebullets.png cmd/ar/sc_removebullets.png +cmd/fa/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png +cmd/fa/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png +cmd/fa/sc_setoutline.png cmd/ar/sc_setoutline.png +cmd/fa/sc_undo.png cmd/sc_redo.png +cmd/fr/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png +cmd/fr/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png +cmd/fr/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/fr/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png +cmd/fr/lc_underline.png cmd/es/lc_underline.png +cmd/fr/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/fr/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/fr/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/fr/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png +cmd/fr/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png +cmd/fr/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/fr/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/fr/sc_underline.png cmd/es/sc_underline.png +cmd/fr/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/fr/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/fr/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/he/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png +cmd/he/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png +cmd/he/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png +cmd/he/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/he/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/he/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png +cmd/he/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png +cmd/he/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png +cmd/he/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png +cmd/he/lc_deleterecord.png cmd/ar/lc_deleterecord.png +cmd/he/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png +cmd/he/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/he/lc_linenumberingdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/he/lc_newrecord.png cmd/ar/lc_newrecord.png +cmd/he/lc_numberingstart.png cmd/ar/lc_numberingstart.png +cmd/he/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/he/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/he/lc_recsave.png cmd/ar/lc_recsave.png +cmd/he/lc_recundo.png cmd/lc_redo.png +cmd/he/lc_redo.png cmd/lc_undo.png +cmd/he/lc_removebullets.png cmd/ar/lc_removebullets.png +cmd/he/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png +cmd/he/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png +cmd/he/lc_setoutline.png cmd/ar/lc_setoutline.png +cmd/he/lc_undo.png cmd/lc_redo.png +cmd/he/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png +cmd/he/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png +cmd/he/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png +cmd/he/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/he/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/he/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png +cmd/he/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png +cmd/he/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png +cmd/he/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png +cmd/he/sc_deleterecord.png cmd/ar/sc_deleterecord.png +cmd/he/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png +cmd/he/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/he/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/he/sc_newrecord.png cmd/ar/sc_newrecord.png +cmd/he/sc_numberingstart.png cmd/ar/sc_numberingstart.png +cmd/he/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/he/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/he/sc_recsave.png cmd/ar/sc_recsave.png +cmd/he/sc_recundo.png cmd/sc_redo.png +cmd/he/sc_redo.png cmd/sc_undo.png +cmd/he/sc_removebullets.png cmd/ar/sc_removebullets.png +cmd/he/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png +cmd/he/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png +cmd/he/sc_setoutline.png cmd/ar/sc_setoutline.png +cmd/he/sc_undo.png cmd/sc_redo.png +cmd/hu/lc_bold.png cmd/de/lc_bold.png +cmd/hu/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/hu/lc_underlinesingle.png cmd/hu/lc_underline.png +cmd/hu/sc_bold.png cmd/de/sc_bold.png +cmd/hu/sc_underlinesimple.png cmd/hu/sc_underline.png +cmd/hu/sc_underlinesingle.png cmd/hu/sc_underline.png +cmd/id/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png +cmd/id/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png +cmd/id/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/id/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png +cmd/id/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png +cmd/id/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png +cmd/id/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/id/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/it/lc_bold.png cmd/fr/lc_bold.png +cmd/it/lc_underline.png cmd/es/lc_underline.png +cmd/it/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/it/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/it/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/it/sc_bold.png cmd/fr/sc_bold.png +cmd/it/sc_underline.png cmd/es/sc_underline.png +cmd/it/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/it/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/it/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/km/lc_underlinesimple.png cmd/km/lc_underline.png +cmd/km/lc_underlinesingle.png cmd/km/lc_underline.png +cmd/km/sc_underlinesimple.png cmd/km/sc_underline.png +cmd/km/sc_underlinesingle.png cmd/km/sc_underline.png +cmd/ko/lc_charactermenu.png cmd/ko/lc_fontdialog.png +cmd/ko/lc_drawtext.png cmd/ko/lc_text.png +cmd/ko/lc_editstyled.png cmd/ko/lc_editstyle.png +cmd/ko/lc_fontcolor.png cmd/ko/lc_color.png +cmd/ko/lc_fontheight.png cmd/ko/lc_scaletext.png +cmd/ko/lc_formatobjectmenu.png cmd/ko/lc_text.png +cmd/ko/lc_formattextmenu.png cmd/ko/lc_charfontname.png +cmd/ko/lc_ordercrit.png cmd/ko/lc_datasort.png +cmd/ko/lc_sortdown.png cmd/ko/lc_sortdescending.png +cmd/ko/lc_sortup.png cmd/ko/lc_sortascending.png +cmd/ko/lc_tablesort.png cmd/ko/lc_datasort.png +cmd/ko/lc_textattributes.png cmd/ko/lc_fontdialog.png +cmd/ko/lc_texttoolbox.png cmd/ko/lc_text.png +cmd/ko/lc_underlinesimple.png cmd/ko/lc_underline.png +cmd/ko/lc_underlinesingle.png cmd/ko/lc_underline.png +cmd/ko/lc_viewsidebarstyles.png cmd/ko/lc_designerdialog.png +cmd/ko/sc_charactermenu.png cmd/ko/sc_fontdialog.png +cmd/ko/sc_drawtext.png cmd/ko/sc_text.png +cmd/ko/sc_editstyled.png cmd/ko/sc_editstyle.png +cmd/ko/sc_fontcolor.png cmd/ko/sc_color.png +cmd/ko/sc_fontheight.png cmd/ko/sc_scaletext.png +cmd/ko/sc_formatobjectmenu.png cmd/ko/sc_text.png +cmd/ko/sc_formattextmenu.png cmd/ko/sc_charfontname.png +cmd/ko/sc_ordercrit.png cmd/ko/sc_datasort.png +cmd/ko/sc_sortdown.png cmd/ko/sc_sortdescending.png +cmd/ko/sc_sortup.png cmd/ko/sc_sortascending.png +cmd/ko/sc_tablesort.png cmd/ko/sc_datasort.png +cmd/ko/sc_textattributes.png cmd/ko/sc_fontdialog.png +cmd/ko/sc_texttoolbox.png cmd/ko/sc_text.png +cmd/ko/sc_underlinesimple.png cmd/ko/sc_underline.png +cmd/ko/sc_underlinesingle.png cmd/ko/sc_underline.png +cmd/ko/sc_viewsidebarstyles.png cmd/ko/sc_designerdialog.png +cmd/lc_underlinesimple.png cmd/lc_underline.png +cmd/lc_underlinesingle.png cmd/lc_underline.png +cmd/nl/lc_italic.png cmd/it/lc_italic.png +cmd/nl/lc_underlinesimple.png cmd/nl/lc_underline.png +cmd/nl/lc_underlinesingle.png cmd/nl/lc_underline.png +cmd/nl/sc_italic.png cmd/it/sc_italic.png +cmd/nl/sc_underlinesimple.png cmd/nl/sc_underline.png +cmd/nl/sc_underlinesingle.png cmd/nl/sc_underline.png +cmd/pl/lc_bold.png cmd/fr/lc_bold.png +cmd/pl/lc_italic.png cmd/de/lc_italic.png +cmd/pl/lc_underlinesimple.png cmd/pl/lc_underline.png +cmd/pl/lc_underlinesingle.png cmd/pl/lc_underline.png +cmd/pl/sc_bold.png cmd/fr/sc_bold.png +cmd/pl/sc_italic.png cmd/de/sc_italic.png +cmd/pl/sc_underlinesimple.png cmd/pl/sc_underline.png +cmd/pl/sc_underlinesingle.png cmd/pl/sc_underline.png +cmd/pt-BR/lc_bold.png cmd/es/lc_bold.png +cmd/pt-BR/lc_underline.png cmd/es/lc_underline.png +cmd/pt-BR/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/pt-BR/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/pt-BR/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/pt-BR/sc_bold.png cmd/es/sc_bold.png +cmd/pt-BR/sc_underline.png cmd/es/sc_underline.png +cmd/pt-BR/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/pt-BR/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/pt-BR/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/pt/lc_bold.png cmd/es/lc_bold.png +cmd/pt/lc_underline.png cmd/es/lc_underline.png +cmd/pt/lc_underlinedouble.png cmd/es/lc_underlinedouble.png +cmd/pt/lc_underlinesimple.png cmd/es/lc_underline.png +cmd/pt/lc_underlinesingle.png cmd/es/lc_underline.png +cmd/pt/sc_bold.png cmd/es/sc_bold.png +cmd/pt/sc_underline.png cmd/es/sc_underline.png +cmd/pt/sc_underlinedouble.png cmd/es/sc_underlinedouble.png +cmd/pt/sc_underlinesimple.png cmd/es/sc_underline.png +cmd/pt/sc_underlinesingle.png cmd/es/sc_underline.png +cmd/ru/lc_italic.png cmd/de/lc_italic.png +cmd/ru/lc_underlinesimple.png cmd/ru/lc_underline.png +cmd/ru/lc_underlinesingle.png cmd/ru/lc_underline.png +cmd/ru/sc_italic.png cmd/de/sc_italic.png +cmd/ru/sc_underlinesimple.png cmd/ru/sc_underline.png +cmd/ru/sc_underlinesingle.png cmd/ru/sc_underline.png +cmd/sc_underlinesimple.png cmd/sc_underline.png +cmd/sc_underlinesingle.png cmd/sc_underline.png +cmd/sl/lc_underline.png cmd/pl/lc_underline.png +cmd/sl/lc_underlinedouble.png cmd/pl/lc_underlinedouble.png +cmd/sl/lc_underlinesimple.png cmd/pl/lc_underline.png +cmd/sl/lc_underlinesingle.png cmd/pl/lc_underline.png +cmd/sl/sc_underline.png cmd/pl/sc_underline.png +cmd/sl/sc_underlinedouble.png cmd/pl/sc_underlinedouble.png +cmd/sl/sc_underlinesimple.png cmd/pl/sc_underline.png +cmd/sl/sc_underlinesingle.png cmd/pl/sc_underline.png +cmd/sv/lc_bold.png cmd/de/lc_bold.png +cmd/sv/lc_italic.png cmd/de/lc_italic.png +cmd/sv/sc_bold.png cmd/de/sc_bold.png +cmd/sv/sc_italic.png cmd/de/sc_italic.png +cmd/tr/lc_bold.png cmd/sl/lc_bold.png +cmd/tr/lc_underline.png cmd/hu/lc_underline.png +cmd/tr/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png +cmd/tr/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/tr/lc_underlinesingle.png cmd/hu/lc_underline.png +cmd/tr/sc_bold.png cmd/sl/sc_bold.png +cmd/tr/sc_underline.png cmd/hu/sc_underline.png +cmd/tr/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png +cmd/tr/sc_underlinesimple.png cmd/hu/sc_underline.png +cmd/tr/sc_underlinesingle.png cmd/hu/sc_underline.png +cmd/ur/lc_absoluterecord.png cmd/ar/lc_absoluterecord.png +cmd/ur/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png +cmd/ur/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png +cmd/ur/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png +cmd/ur/lc_bulletsandnumberingdialog.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/ur/lc_chapternumberingdialog.png cmd/ar/lc_chapternumberingdialog.png +cmd/ur/lc_continuenumbering.png cmd/ar/lc_continuenumbering.png +cmd/ur/lc_defaultbullet.png cmd/ar/lc_defaultbullet.png +cmd/ur/lc_defaultnumbering.png cmd/ar/lc_defaultnumbering.png +cmd/ur/lc_deleterecord.png cmd/ar/lc_deleterecord.png +cmd/ur/lc_insertneutralparagraph.png cmd/ar/lc_insertneutralparagraph.png +cmd/ur/lc_linenumberdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/ur/lc_linenumberingdialog.png cmd/ar/lc_linenumberingdialog.png +cmd/ur/lc_newrecord.png cmd/ar/lc_newrecord.png +cmd/ur/lc_numberingstart.png cmd/ar/lc_numberingstart.png +cmd/ur/lc_numberliststyle.png cmd/ar/lc_defaultnumbering.png +cmd/ur/lc_outlinebullet.png cmd/ar/lc_bulletsandnumberingdialog.png +cmd/ur/lc_recsave.png cmd/ar/lc_recsave.png +cmd/ur/lc_recundo.png cmd/lc_redo.png +cmd/ur/lc_redo.png cmd/lc_undo.png +cmd/ur/lc_removebullets.png cmd/ar/lc_removebullets.png +cmd/ur/lc_romanliststyle.png cmd/ar/lc_romanliststyle.png +cmd/ur/lc_romanlowliststyle.png cmd/ar/lc_romanlowliststyle.png +cmd/ur/lc_setoutline.png cmd/ar/lc_setoutline.png +cmd/ur/lc_undo.png cmd/lc_redo.png +cmd/ur/sc_absoluterecord.png cmd/ar/sc_absoluterecord.png +cmd/ur/sc_alphaliststyle.png cmd/ar/sc_alphaliststyle.png +cmd/ur/sc_alphalowliststyle.png cmd/ar/sc_alphalowliststyle.png +cmd/ur/sc_bulletliststyle.png cmd/ar/sc_defaultbullet.png +cmd/ur/sc_bulletsandnumberingdialog.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/ur/sc_chapternumberingdialog.png cmd/ar/sc_chapternumberingdialog.png +cmd/ur/sc_continuenumbering.png cmd/ar/sc_continuenumbering.png +cmd/ur/sc_defaultbullet.png cmd/ar/sc_defaultbullet.png +cmd/ur/sc_defaultnumbering.png cmd/ar/sc_defaultnumbering.png +cmd/ur/sc_deleterecord.png cmd/ar/sc_deleterecord.png +cmd/ur/sc_insertneutralparagraph.png cmd/ar/sc_insertneutralparagraph.png +cmd/ur/sc_linenumberdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/ur/sc_linenumberingdialog.png cmd/ar/sc_linenumberingdialog.png +cmd/ur/sc_newrecord.png cmd/ar/sc_newrecord.png +cmd/ur/sc_numberingstart.png cmd/ar/sc_numberingstart.png +cmd/ur/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png +cmd/ur/sc_outlinebullet.png cmd/ar/sc_bulletsandnumberingdialog.png +cmd/ur/sc_recsave.png cmd/ar/sc_recsave.png +cmd/ur/sc_recundo.png cmd/sc_redo.png +cmd/ur/sc_redo.png cmd/sc_undo.png +cmd/ur/sc_removebullets.png cmd/ar/sc_removebullets.png +cmd/ur/sc_romanliststyle.png cmd/ar/sc_romanliststyle.png +cmd/ur/sc_romanlowliststyle.png cmd/ar/sc_romanlowliststyle.png +cmd/ur/sc_setoutline.png cmd/ar/sc_setoutline.png +cmd/ur/sc_undo.png cmd/sc_redo.png + +# Template Menu +cmd/32/templatemenu.png cmd/32/adddirect.png +cmd/lc_templatemenu.png cmd/lc_adddirect.png +cmd/sc_templatemenu.png cmd/sc_adddirect.png + +# Animation +cmd/32/customanimation.png cmd/32/diaeffect.png +cmd/lc_customanimation.png cmd/lc_diaeffect.png +cmd/sc_customanimation.png cmd/sc_diaeffect.png + +# Media +cmd/32/datastreamsplay.png cmd/32/runbasic.png +cmd/32/datastreamsstop.png cmd/32/basicstop.png + +cmd/lc_datastreamsplay.png cmd/lc_runbasic.png +cmd/lc_datastreamsstop.png cmd/lc_basicstop.png + +cmd/sc_datastreamsplay.png cmd/sc_runbasic.png +cmd/sc_datastreamsstop.png cmd/sc_basicstop.png + +# Alignment +cmd/32/alignhorizontalceter.png cmd/32/alignhorizontalcenter.png +cmd/32/alignvcenter.png cmd/32/alignverticalcenter.png +cmd/32/objectalign.png cmd/32/objectalignleft.png +cmd/32/sectionalignbottom.png cmd/32/aligndown.png +cmd/32/sectionalignleft.png cmd/32/objectalignleft.png +cmd/32/sectionalignright.png cmd/32/objectalignright.png +cmd/32/sectionaligntop.png cmd/32/alignup.png + +cmd/lc_alignhorizontalceter.png cmd/lc_alignhorizontalcenter.png +cmd/lc_alignvcenter.png cmd/lc_alignverticalcenter.png +cmd/lc_objectalign.png cmd/lc_objectalignleft.png +cmd/lc_sectionalignbottom.png cmd/lc_aligndown.png +cmd/lc_sectionalignleft.png cmd/lc_objectalignleft.png +cmd/lc_sectionalignright.png cmd/lc_objectalignright.png +cmd/lc_sectionaligntop.png cmd/lc_alignup.png + +cmd/sc_alignhorizontalceter.png cmd/sc_alignhorizontalcenter.png +cmd/sc_alignvcenter.png cmd/sc_alignverticalcenter.png +cmd/sc_objectalign.png cmd/sc_objectalignleft.png +cmd/sc_sectionalignbottom.png cmd/sc_aligndown.png +cmd/sc_sectionalignleft.png cmd/sc_objectalignleft.png +cmd/sc_sectionalignright.png cmd/sc_objectalignright.png +cmd/sc_sectionaligntop.png cmd/sc_alignup.png + +# Graphic +cmd/32/colorview.png cmd/32/graphicfilterinvert.png +cmd/32/grafinvert.png cmd/32/graphicfilterinvert.png +cmd/32/grafmode.png cmd/32/graphicdialog.png + +cmd/lc_colorview.png cmd/lc_graphicfilterinvert.png +cmd/lc_grafinvert.png cmd/lc_graphicfilterinvert.png +cmd/lc_grafmode.png cmd/lc_graphicdialog.png + +cmd/sc_colorview.png cmd/sc_graphicfilterinvert.png +cmd/sc_grafinvert.png cmd/sc_graphicfilterinvert.png +cmd/sc_grafmode.png cmd/sc_graphicdialog.png + +# shapes +cmd/32/arrowshapes.left-right-arrow.png cmd/32/arrowshapes.png +cmd/32/basicshapes.circle-pie.png cmd/32/pie.png +cmd/32/basicshapes.circle.png cmd/32/circle.png +cmd/32/basicshapes.parallelogram.png cmd/32/flowchartshapes.flowchart-data.png +cmd/32/basicshapes.round-rectangle.png cmd/32/rect_rounded.png +cmd/32/calloutshapes.round-rectangular-callout.png cmd/32/calloutshapes.png +cmd/32/flowchartshapes.flowchart-alternate-process.png cmd/32/basicshapes.round-quadrat.png +cmd/32/flowchartshapes.flowchart-connector.png cmd/32/circle.png +cmd/32/flowchartshapes.flowchart-extract.png cmd/32/basicshapes.isosceles-triangle.png +cmd/32/flowchartshapes.flowchart-magnetic-disk.png cmd/32/basicshapes.can.png +cmd/32/flowchartshapes.flowchart-manual-operation.png cmd/32/basicshapes.trapezoid.png +cmd/32/flowchartshapes.flowchart-merge.png cmd/32/fontworkshapetype.fontwork-triangle-down.png +cmd/32/fontworkshapetype.fontwork-circle-pour.png cmd/32/basicshapes.ring.png +cmd/32/fontworkshapetype.fontwork-fade-down.png cmd/32/basicshapes.trapezoid.png +cmd/32/fontworkshapetype.fontwork-triangle-up.png cmd/32/basicshapes.isosceles-triangle.png +cmd/32/measureattributes.png cmd/32/measureline.png +cmd/32/symbolshapes.smiley.png cmd/32/symbolshapes.png + + +cmd/lc_arrowshapes.left-right-arrow.png cmd/lc_arrowshapes.png +cmd/lc_basicshapes.circle-pie.png cmd/lc_pie.png +cmd/lc_basicshapes.circle.png cmd/lc_circle.png +cmd/lc_basicshapes.parallelogram.png cmd/lc_flowchartshapes.flowchart-data.png +cmd/lc_basicshapes.round-rectangle.png cmd/lc_rect_rounded.png +cmd/lc_calloutshapes.round-rectangular-callout.png cmd/lc_calloutshapes.png +cmd/lc_flowchartshapes.flowchart-alternate-process.png cmd/lc_basicshapes.round-quadrat.png +cmd/lc_flowchartshapes.flowchart-connector.png cmd/lc_circle.png +cmd/lc_flowchartshapes.flowchart-extract.png cmd/lc_basicshapes.isosceles-triangle.png +cmd/lc_flowchartshapes.flowchart-magnetic-disk.png cmd/lc_basicshapes.can.png +cmd/lc_flowchartshapes.flowchart-manual-operation.png cmd/lc_basicshapes.trapezoid.png +cmd/lc_flowchartshapes.flowchart-merge.png cmd/lc_fontworkshapetype.fontwork-triangle-down.png +cmd/lc_fontworkshapetype.fontwork-circle-pour.png cmd/lc_basicshapes.ring.png +cmd/lc_fontworkshapetype.fontwork-fade-down.png cmd/lc_basicshapes.trapezoid.png +cmd/lc_fontworkshapetype.fontwork-triangle-up.png cmd/lc_basicshapes.isosceles-triangle.png +cmd/lc_measureattributes.png cmd/lc_measureline.png +cmd/lc_symbolshapes.smiley.png cmd/lc_symbolshapes.png + +cmd/sc_arrowshapes.left-right-arrow.png cmd/sc_arrowshapes.png +cmd/sc_basicshapes.circle-pie.png cmd/sc_pie.png +cmd/sc_basicshapes.circle.png cmd/sc_circle.png +cmd/sc_basicshapes.parallelogram.png cmd/sc_flowchartshapes.flowchart-data.png +cmd/sc_basicshapes.round-rectangle.png cmd/sc_rect_rounded.png +cmd/sc_calloutshapes.round-rectangular-callout.png cmd/sc_calloutshapes.png +cmd/sc_flowchartshapes.flowchart-alternate-process.png cmd/sc_basicshapes.round-quadrat.png +cmd/sc_flowchartshapes.flowchart-connector.png cmd/sc_circle.png +cmd/sc_flowchartshapes.flowchart-extract.png cmd/sc_basicshapes.isosceles-triangle.png +cmd/sc_flowchartshapes.flowchart-magnetic-disk.png cmd/sc_basicshapes.can.png +cmd/sc_flowchartshapes.flowchart-manual-operation.png cmd/sc_basicshapes.trapezoid.png +cmd/sc_flowchartshapes.flowchart-merge.png cmd/sc_fontworkshapetype.fontwork-triangle-down.png +cmd/sc_fontworkshapetype.fontwork-circle-pour.png cmd/sc_basicshapes.ring.png +cmd/sc_fontworkshapetype.fontwork-fade-down.png cmd/sc_basicshapes.trapezoid.png +cmd/sc_fontworkshapetype.fontwork-triangle-up.png cmd/sc_basicshapes.isosceles-triangle.png +cmd/sc_measureattributes.png cmd/sc_measureline.png +cmd/sc_symbolshapes.smiley.png cmd/sc_symbolshapes.png + +# Open +cmd/32/openfromwriter.png cmd/32/open.png +cmd/32/openfromcalc.png cmd/32/open.png + +cmd/lc_openfromwriter.png cmd/lc_open.png +cmd/lc_openfromcalc.png cmd/lc_open.png + +cmd/sc_openfromwriter.png cmd/sc_open.png +cmd/sc_openfromcalc.png cmd/sc_open.png + +# Mail Merge +cmd/32/dsbformletter.png cmd/32/mailmergewizard.png +cmd/lc_dsbformletter.png cmd/lc_mailmergewizard.png +cmd/sc_dsbformletter.png cmd/sc_mailmergewizard.png + +# Merge +cmd/32/mergedocument.png cmd/32/mergedocuments.png +cmd/lc_mergedocument.png cmd/lc_mergedocuments.png +cmd/sc_mergedocument.png cmd/sc_mergedocuments.png + +# Layout +cmd/32/attributepagesize.png cmd/32/ruler.png + +cmd/lc_attributepagesize.png cmd/lc_ruler.png + +cmd/sc_attributepagesize.png cmd/sc_ruler.png + +# Print +cmd/32/printpagepreview.png cmd/32/printpreview.png + +cmd/lc_printpagepreview.png cmd/lc_printpreview.png + +cmd/sc_printpagepreview.png cmd/sc_printpreview.png + +# Folder +cmd/32/open_h.png cmd/32/open.png + +cmd/lc_open_h.png cmd/lc_open.png + +cmd/sc_open_h.png cmd/sc_open.png + +# Wizard +cmd/32/commontaskbarvisible.png cmd/32/autopilotmenu.png +cmd/32/dbnewformautopilot.png cmd/32/autopilotmenu.png +cmd/32/dbnewqueryautopilot.png cmd/32/autopilotmenu.png +cmd/32/dbnewreportautopilot.png cmd/32/autopilotmenu.png +cmd/32/dbnewtableautopilot.png cmd/32/autopilotmenu.png +cmd/32/graphicfiltertoolbox.png cmd/32/autopilotmenu.png +cmd/32/usewizards.png cmd/32/autopilotmenu.png + +cmd/lc_commontaskbarvisible.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewformautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewqueryautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewreportautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_dbnewtableautopilot.png cmd/lc_autopilotmenu.png +cmd/lc_graphicfiltertoolbox.png cmd/lc_autopilotmenu.png +cmd/lc_usewizards.png cmd/lc_autopilotmenu.png + +cmd/sc_commontaskbarvisible.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewformautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewqueryautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewreportautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_dbnewtableautopilot.png cmd/sc_autopilotmenu.png +cmd/sc_graphicfiltertoolbox.png cmd/sc_autopilotmenu.png +cmd/sc_usewizards.png cmd/sc_autopilotmenu.png + +# Filter +cmd/32/autofilter.png cmd/32/datafilterautofilter.png +cmd/32/filtercrit.png cmd/32/datafilterstandardfilter.png +cmd/32/formfilter.png cmd/32/datafilterspecialfilter.png +cmd/32/formfilterexecute.png cmd/32/datafilterstandardfilter.png +cmd/32/removefilter.png cmd/32/removefiltersort.png + +cmd/lc_autofilter.png cmd/lc_datafilterautofilter.png +cmd/lc_filtercrit.png cmd/lc_datafilterstandardfilter.png +cmd/lc_formfilter.png cmd/lc_datafilterspecialfilter.png +cmd/lc_formfilterexecute.png cmd/lc_datafilterstandardfilter.png +cmd/lc_removefilter.png cmd/lc_removefiltersort.png + +cmd/sc_autofilter.png cmd/sc_datafilterautofilter.png +cmd/sc_filtercrit.png cmd/sc_datafilterstandardfilter.png +cmd/sc_formfilter.png cmd/sc_datafilterspecialfilter.png +cmd/sc_formfilterexecute.png cmd/sc_datafilterstandardfilter.png +cmd/sc_removefilter.png cmd/sc_removefiltersort.png + +# Bullets +cmd/32/bulletliststyle.png cmd/32/defaultbullet.png +cmd/32/defaultparastyle.png cmd/32/controlcodes.png +cmd/32/linenumberdialog.png cmd/32/linenumberingdialog.png +cmd/32/numberliststyle.png cmd/32/defaultnumbering.png +cmd/32/outlinebullet.png cmd/32/bulletsandnumberingdialog.png + +cmd/lc_bulletliststyle.png cmd/lc_defaultbullet.png +cmd/lc_defaultparastyle.png cmd/lc_controlcodes.png +cmd/lc_linenumberdialog.png cmd/lc_linenumberingdialog.png +cmd/lc_numberliststyle.png cmd/lc_defaultnumbering.png +cmd/lc_outlinebullet.png cmd/lc_bulletsandnumberingdialog.png + +cmd/sc_bulletliststyle.png cmd/sc_defaultbullet.png +cmd/sc_defaultparastyle.png cmd/sc_controlcodes.png +cmd/sc_linenumberdialog.png cmd/sc_linenumberingdialog.png +cmd/sc_numberliststyle.png cmd/sc_defaultnumbering.png +cmd/sc_outlinebullet.png cmd/sc_bulletsandnumberingdialog.png + +# Group +cmd/32/groupmenu.png cmd/32/formatgroup.png + +cmd/lc_groupmenu.png cmd/lc_formatgroup.png + +cmd/sc_groupmenu.png cmd/sc_formatgroup.png + +# Undo +cmd/32/recundo.png cmd/32/undo.png +cmd/lc_recundo.png cmd/lc_undo.png +cmd/sc_recundo.png cmd/sc_undo.png + +# Bezier +cmd/32/bezieredge.png cmd/32/bezierappend.png +cmd/lc_bezieredge.png cmd/lc_bezierappend.png +cmd/sc_bezieredge.png cmd/sc_bezierappend.png + +# Rotate +cmd/32/clickchangerotation.png cmd/32/toggleobjectrotatemode.png +cmd/lc_clickchangerotation.png cmd/lc_toggleobjectrotatemode.png +cmd/sc_clickchangerotation.png cmd/sc_toggleobjectrotatemode.png + +# AddField +cmd/32/fieldnames.png cmd/32/addfield.png +cmd/lc_fieldnames.png cmd/lc_addfield.png +cmd/sc_fieldnames.png cmd/sc_addfield.png + +# Edit +cmd/32/dsbeditdoc.png cmd/32/editdoc.png + +cmd/lc_dsbeditdoc.png cmd/lc_editdoc.png + +cmd/sc_dsbeditdoc.png cmd/sc_editdoc.png + +# Quit +cmd/32/closewin.png cmd/32/quit.png +cmd/lc_closewin.png cmd/lc_quit.png +cmd/sc_closewin.png cmd/sc_quit.png + +# Close +cmd/32/exitsearch.png cmd/32/closepreview.png +cmd/lc_exitsearch.png cmd/lc_closepreview.png +cmd/sc_exitsearch.png cmd/sc_closepreview.png + +# Cancel +cmd/32/no.png cmd/32/cancel.png +cmd/lc_no.png cmd/lc_cancel.png +cmd/sc_no.png cmd/sc_cancel.png + +# Page +cmd/32/insertobjctrl.png cmd/32/drawchart.png + +cmd/lc_insertobjctrl.png cmd/lc_drawchart.png + +cmd/sc_insertobjctrl.png cmd/sc_drawchart.png + +# Line +cmd/32/shapeslinemenu.png cmd/32/line.png +cmd/32/xlinestyle.png cmd/32/linestyle.png + +cmd/lc_shapeslinemenu.png cmd/lc_line.png +cmd/lc_xlinestyle.png cmd/lc_linestyle.png + +cmd/sc_shapeslinemenu.png cmd/sc_line.png +cmd/sc_xlinestyle.png cmd/sc_linestyle.png + +# Mail merge +cmd/32/mailmergefirstentry.png cmd/32/firstrecord.png +cmd/32/mailmergelastentry.png cmd/32/lastrecord.png +cmd/32/mailmergenextentry.png cmd/32/nextrecord.png +cmd/32/mailmergepreventry.png cmd/32/prevrecord.png + +cmd/lc_mailmergefirstentry.png cmd/lc_firstrecord.png +cmd/lc_mailmergelastentry.png cmd/lc_lastrecord.png +cmd/lc_mailmergenextentry.png cmd/lc_nextrecord.png +cmd/lc_mailmergepreventry.png cmd/lc_prevrecord.png + +cmd/sc_mailmergefirstentry.png cmd/sc_firstrecord.png +cmd/sc_mailmergelastentry.png cmd/sc_lastrecord.png +cmd/sc_mailmergenextentry.png cmd/sc_nextrecord.png +cmd/sc_mailmergepreventry.png cmd/sc_prevrecord.png + +# Arrows +cmd/32/arrowstoolbox.png cmd/32/linearrowend.png +cmd/lc_arrowstoolbox.png cmd/lc_linearrowend.png +cmd/sc_arrowstoolbox.png cmd/sc_linearrowend.png + +# < +cmd/32/browsebackward.png cmd/32/prevrecord.png +cmd/32/navigateback.png cmd/32/prevrecord.png +cmd/32/pageup.png cmd/32/previouspage.png + +cmd/lc_browsebackward.png cmd/lc_prevrecord.png +cmd/lc_navigateback.png cmd/lc_prevrecord.png +cmd/lc_pageup.png cmd/lc_previouspage.png + +cmd/sc_browsebackward.png cmd/sc_prevrecord.png +cmd/sc_navigateback.png cmd/sc_prevrecord.png +cmd/sc_pageup.png cmd/sc_previouspage.png + +# > +cmd/32/navigateforward.png cmd/32/nextrecord.png +cmd/32/pagedown.png cmd/32/nextpage.png + +cmd/lc_navigateforward.png cmd/lc_nextrecord.png +cmd/lc_pagedown.png cmd/lc_nextpage.png + +cmd/sc_navigateforward.png cmd/sc_nextrecord.png +cmd/sc_pagedown.png cmd/sc_nextpage.png + +# >| +cmd/32/gotoendofpage.png cmd/32/lastpage.png + +cmd/lc_gotoendofpage.png cmd/lc_lastpage.png + +cmd/sc_gotoendofpage.png cmd/sc_lastpage.png + +# |< +cmd/32/gotostartofpage.png cmd/32/firstpage.png + +cmd/lc_gotostartofpage.png cmd/lc_firstpage.png + +cmd/sc_gotostartofpage.png cmd/sc_firstpage.png + +# Hyperlink +cmd/32/hyperlinkdialog.png cmd/32/inserthyperlink.png +cmd/lc_hyperlinkdialog.png cmd/lc_inserthyperlink.png +cmd/sc_hyperlinkdialog.png cmd/sc_inserthyperlink.png + +# Spellcheck +cmd/32/spelldialog.png cmd/32/spelling.png +cmd/32/spellingandgrammardialog.png cmd/32/spelling.png + +cmd/lc_spelldialog.png cmd/lc_spelling.png +cmd/lc_spellingandgrammardialog.png cmd/lc_spelling.png + +cmd/sc_spelldialog.png cmd/sc_spelling.png +cmd/sc_spellingandgrammardialog.png cmd/sc_spelling.png + +# Color +cmd/32/backgroundpatterncontroller.png cmd/32/backgroundcolor.png +cmd/32/characterbackgroundpattern.png cmd/32/backcolor.png +cmd/32/fillcolor.png cmd/32/backgroundcolor.png +cmd/32/fillstyle.png cmd/32/backgroundcolor.png +cmd/32/fontcolor.png cmd/32/color.png +cmd/32/formatarea.png cmd/32/backgroundcolor.png +cmd/32/tablecellbackgroundcolor.png cmd/32/backgroundcolor.png + +cmd/lc_backgroundpatterncontroller.png cmd/lc_backgroundcolor.png +cmd/lc_characterbackgroundpattern.png cmd/lc_backcolor.png +cmd/lc_fillcolor.png cmd/lc_backgroundcolor.png +cmd/lc_fillstyle.png cmd/lc_backgroundcolor.png +cmd/lc_fontcolor.png cmd/lc_color.png +cmd/lc_formatarea.png cmd/lc_backgroundcolor.png +cmd/lc_tablecellbackgroundcolor.png cmd/lc_backgroundcolor.png + +cmd/sc_backgroundpatterncontroller.png cmd/sc_backgroundcolor.png +cmd/sc_characterbackgroundpattern.png cmd/sc_backcolor.png +cmd/sc_fillcolor.png cmd/sc_backgroundcolor.png +cmd/sc_fillstyle.png cmd/sc_backgroundcolor.png +cmd/sc_fontcolor.png cmd/sc_color.png +cmd/sc_formatarea.png cmd/sc_backgroundcolor.png +cmd/sc_tablecellbackgroundcolor.png cmd/sc_backgroundcolor.png + +# Paragraph Alignment +cmd/32/centerpara.png cmd/32/alignhorizontalcenter.png +cmd/32/fontworkalignmentfloater.png cmd/32/alignhorizontalcenter.png +cmd/32/justifypara.png cmd/32/alignblock.png +cmd/32/leftpara.png cmd/32/alignleft.png +cmd/32/rightpara.png cmd/32/alignright.png + +cmd/lc_centerpara.png cmd/lc_alignhorizontalcenter.png +cmd/lc_fontworkalignmentfloater.png cmd/lc_alignhorizontalcenter.png +cmd/lc_justifypara.png cmd/lc_alignblock.png +cmd/lc_leftpara.png cmd/lc_alignleft.png +cmd/lc_rightpara.png cmd/lc_alignright.png + +cmd/sc_centerpara.png cmd/sc_alignhorizontalcenter.png +cmd/sc_fontworkalignmentfloater.png cmd/sc_alignhorizontalcenter.png +cmd/sc_justifypara.png cmd/sc_alignblock.png +cmd/sc_leftpara.png cmd/sc_alignleft.png +cmd/sc_rightpara.png cmd/sc_alignright.png + +# Thesaurus +cmd/32/thesaurusdialog.png cmd/32/thesaurus.png +cmd/lc_thesaurusdialog.png cmd/lc_thesaurus.png +cmd/sc_thesaurusdialog.png cmd/sc_thesaurus.png + +# View +cmd/32/availabletoolbars.png cmd/32/showtoolbar.png +cmd/32/sidebarmenu.png cmd/32/sidebar.png +cmd/32/toolbarsmenu.png cmd/32/showtoolbar.png +cmd/lc_availabletoolbars.png cmd/lc_showtoolbar.png +cmd/lc_sidebarmenu.png cmd/lc_sidebar.png +cmd/lc_toolbarsmenu.png cmd/lc_showtoolbar.png +cmd/sc_availabletoolbars.png cmd/sc_showtoolbar.png +cmd/sc_sidebarmenu.png cmd/sc_sidebar.png +cmd/sc_toolbarsmenu.png cmd/sc_showtoolbar.png + +# Vertical Text Alignment +cmd/32/cellvertbottom.png cmd/32/alignbottom.png +cmd/32/cellvertcenter.png cmd/32/alignverticalcenter.png +cmd/32/cellverttop.png cmd/32/aligntop.png +cmd/32/commonalignbottom.png cmd/32/alignbottom.png +cmd/32/commonalignhorizontalcenter.png cmd/32/alignhorizontalcenter.png +cmd/32/commonalignjustified.png cmd/32/alignblock.png +cmd/32/commonalignleft.png cmd/32/alignleft.png +cmd/32/commonalignright.png cmd/32/alignright.png +cmd/32/commonaligntop.png cmd/32/aligntop.png +cmd/32/commonalignverticalcenter.png cmd/32/alignverticalcenter.png + +cmd/lc_cellvertbottom.png cmd/lc_alignbottom.png +cmd/lc_cellvertcenter.png cmd/lc_alignverticalcenter.png +cmd/lc_cellverttop.png cmd/lc_aligntop.png +cmd/lc_commonalignbottom.png cmd/lc_alignbottom.png +cmd/lc_commonalignhorizontalcenter.png cmd/lc_alignhorizontalcenter.png +cmd/lc_commonalignjustified.png cmd/lc_alignblock.png +cmd/lc_commonalignleft.png cmd/lc_alignleft.png +cmd/lc_commonalignright.png cmd/lc_alignright.png +cmd/lc_commonaligntop.png cmd/lc_aligntop.png +cmd/lc_commonalignverticalcenter.png cmd/lc_alignverticalcenter.png + +cmd/sc_cellvertbottom.png cmd/sc_alignbottom.png +cmd/sc_cellvertcenter.png cmd/sc_alignverticalcenter.png +cmd/sc_cellverttop.png cmd/sc_aligntop.png +cmd/sc_commonalignbottom.png cmd/sc_alignbottom.png +cmd/sc_commonalignhorizontalcenter.png cmd/sc_alignhorizontalcenter.png +cmd/sc_commonalignjustified.png cmd/sc_alignblock.png +cmd/sc_commonalignleft.png cmd/sc_alignleft.png +cmd/sc_commonalignright.png cmd/sc_alignright.png +cmd/sc_commonaligntop.png cmd/sc_aligntop.png +cmd/sc_commonalignverticalcenter.png cmd/sc_alignverticalcenter.png + +# paragraph line spacing drop down +cmd/32/linespacing.png cmd/32/spacepara15.png +cmd/lc_linespacing.png cmd/lc_spacepara15.png +cmd/sc_linespacing.png cmd/sc_spacepara15.png + +# calc menu entries +cmd/32/cellcontentsmenu.png cmd/32/calculate.png +cmd/32/chartmenu.png cmd/32/drawchart.png +cmd/32/datapilotmenu.png cmd/32/datadatapilotrun.png +cmd/32/editselectmenu.png cmd/32/selecttables.png +cmd/32/fieldmenu.png cmd/32/insertfieldctrl.png +cmd/32/functionbox.png cmd/32/dbviewfunctions.png +cmd/32/functiondialog.png cmd/32/dbviewfunctions.png +cmd/32/groupoutlinemenu.png cmd/32/autooutline.png +cmd/32/insertanchor.png cmd/32/insertbookmark.png +cmd/32/insertcell.png cmd/32/insertcellsright.png +cmd/32/insertcolumnsmenu.png cmd/32/insertcolumns.png +cmd/32/insertpivottable.png cmd/32/datadatapilotrun.png +cmd/32/insertrowsmenu.png cmd/32/insertrows.png +cmd/32/mergecellsmenu.png cmd/32/togglemergecells.png +cmd/32/navigatemenu.png cmd/32/navigator.png +cmd/32/numberformatmenu.png cmd/32/numberformatstandard.png +cmd/32/objectmenu.png cmd/32/insertobject.png +cmd/32/printrangesmenu.png cmd/32/defineprintarea.png +cmd/32/selectcolumn.png cmd/32/entirecolumn.png +cmd/32/selectdata.png cmd/32/selectdb.png +cmd/32/selectrow.png cmd/32/entirerow.png +cmd/32/sheetcommentmenu.png cmd/32/shownote.png +cmd/32/toolsformsmenu.png cmd/32/dbviewforms.png + +cmd/lc_cellcontentsmenu.png cmd/lc_calculate.png +cmd/lc_chartmenu.png cmd/lc_drawchart.png +cmd/lc_datapilotmenu.png cmd/lc_datadatapilotrun.png +cmd/lc_editselectmenu.png cmd/lc_selecttables.png +cmd/lc_fieldmenu.png cmd/lc_insertfieldctrl.png +cmd/lc_functionbox.png cmd/lc_dbviewfunctions.png +cmd/lc_functiondialog.png cmd/lc_dbviewfunctions.png +cmd/lc_groupoutlinemenu.png cmd/lc_autooutline.png +cmd/lc_insertanchor.png cmd/lc_insertbookmark.png +cmd/lc_insertcell.png cmd/lc_insertcellsright.png +cmd/lc_insertcolumnsmenu.png cmd/lc_insertcolumns.png +cmd/lc_insertpivottable.png cmd/lc_datadatapilotrun.png +cmd/lc_insertrowsmenu.png cmd/lc_insertrows.png +cmd/lc_mergecellsmenu.png cmd/lc_togglemergecells.png +cmd/lc_navigatemenu.png cmd/lc_navigator.png +cmd/lc_numberformatmenu.png cmd/lc_numberformatstandard.png +cmd/lc_objectmenu.png cmd/lc_insertobject.png +cmd/lc_printrangesmenu.png cmd/lc_defineprintarea.png +cmd/lc_selectcolumn.png cmd/lc_entirecolumn.png +cmd/lc_selectdata.png cmd/lc_selectdb.png +cmd/lc_selectrow.png cmd/lc_entirerow.png +cmd/lc_sheetcommentmenu.png cmd/lc_shownote.png +cmd/lc_toolsformsmenu.png cmd/lc_dbviewforms.png + +cmd/sc_cellcontentsmenu.png cmd/sc_calculate.png +cmd/sc_chartmenu.png cmd/sc_drawchart.png +cmd/sc_datapilotmenu.png cmd/sc_datadatapilotrun.png +cmd/sc_editselectmenu.png cmd/sc_selecttables.png +cmd/sc_fieldmenu.png cmd/sc_insertfieldctrl.png +cmd/sc_functionbox.png cmd/sc_dbviewfunctions.png +cmd/sc_functiondialog.png cmd/sc_dbviewfunctions.png +cmd/sc_groupoutlinemenu.png cmd/sc_autooutline.png +cmd/sc_insertanchor.png cmd/sc_insertbookmark.png +cmd/sc_insertcell.png cmd/sc_insertcellsright.png +cmd/sc_insertcolumnsmenu.png cmd/sc_insertcolumns.png +cmd/sc_insertpivottable.png cmd/sc_datadatapilotrun.png +cmd/sc_insertrowsmenu.png cmd/sc_insertrows.png +cmd/sc_mergecellsmenu.png cmd/sc_togglemergecells.png +cmd/sc_navigatemenu.png cmd/sc_navigator.png +cmd/sc_numberformatmenu.png cmd/sc_numberformatstandard.png +cmd/sc_objectmenu.png cmd/sc_insertobject.png +cmd/sc_printrangesmenu.png cmd/sc_defineprintarea.png +cmd/sc_selectcolumn.png cmd/sc_entirecolumn.png +cmd/sc_selectdata.png cmd/sc_selectdb.png +cmd/sc_selectrow.png cmd/sc_entirerow.png +cmd/sc_sheetcommentmenu.png cmd/sc_shownote.png +cmd/sc_toolsformsmenu.png cmd/sc_dbviewforms.png + +# Shapes +cmd/32/basicshapes.ellipse.png cmd/32/ellipse.png +cmd/32/basicshapes.png cmd/32/basicshapes.diamond.png +cmd/32/basicshapes.rectangle.png cmd/32/rect.png +cmd/32/ellipsetoolbox.png cmd/32/ellipse.png +cmd/32/linetoolbox.png cmd/32/freeline_unfilled.png +cmd/32/rectangletoolbox.png cmd/32/rect.png + +cmd/lc_basicshapes.ellipse.png cmd/lc_ellipse.png +cmd/lc_basicshapes.png cmd/lc_basicshapes.diamond.png +cmd/lc_basicshapes.rectangle.png cmd/lc_rect.png +cmd/lc_ellipsetoolbox.png cmd/lc_ellipse.png +cmd/lc_linetoolbox.png cmd/lc_freeline_unfilled.png +cmd/lc_rectangletoolbox.png cmd/lc_rect.png + +cmd/sc_basicshapes.ellipse.png cmd/sc_ellipse.png +cmd/sc_basicshapes.png cmd/sc_basicshapes.diamond.png +cmd/sc_basicshapes.rectangle.png cmd/sc_rect.png +cmd/sc_ellipsetoolbox.png cmd/sc_ellipse.png +cmd/sc_linetoolbox.png cmd/sc_freeline_unfilled.png +cmd/sc_rectangletoolbox.png cmd/sc_rect.png + +# Format +cmd/32/insertcurrentdate.png cmd/32/datefield.png +cmd/32/insertcurrenttime.png cmd/32/timefield.png +cmd/32/insertobjectchartfromfile.png cmd/32/drawchart.png +cmd/32/pageformatdialog.png cmd/32/pagedialog.png + +cmd/lc_insertcurrentdate.png cmd/lc_datefield.png +cmd/lc_insertcurrenttime.png cmd/lc_timefield.png +cmd/lc_insertobjectchartfromfile.png cmd/lc_drawchart.png +cmd/lc_pageformatdialog.png cmd/lc_pagedialog.png + +cmd/sc_insertcurrentdate.png cmd/sc_datefield.png +cmd/sc_insertcurrenttime.png cmd/sc_timefield.png +cmd/sc_insertobjectchartfromfile.png cmd/sc_drawchart.png +cmd/sc_pageformatdialog.png cmd/sc_pagedialog.png + +# Notebookbar +cmd/32/datafilterhideautofilter.png cmd/32/removefiltersort.png +cmd/32/headerandfooter.png cmd/32/editheaderandfooter.png +cmd/32/insertheaderfootermenu.png cmd/32/editheaderandfooter.png +cmd/32/insertsignatureline.png cmd/32/signaturelinedialog.png + +cmd/lc_datafilterhideautofilter.png cmd/lc_removefiltersort.png +cmd/lc_headerandfooter.png cmd/lc_editheaderandfooter.png +cmd/lc_insertheaderfootermenu.png cmd/lc_editheaderandfooter.png +cmd/lc_insertsignatureline.png cmd/lc_signaturelinedialog.png + +cmd/sc_datafilterhideautofilter.png cmd/sc_removefiltersort.png +cmd/sc_headerandfooter.png cmd/sc_editheaderandfooter.png +cmd/sc_insertheaderfootermenu.png cmd/sc_editheaderandfooter.png +cmd/sc_insertsignatureline.png cmd/sc_signaturelinedialog.png + +# Ok +cmd/32/apply.png cmd/32/ok.png +cmd/32/yes.png cmd/32/ok.png + +cmd/lc_apply.png cmd/lc_ok.png +cmd/lc_yes.png cmd/lc_ok.png + +cmd/sc_apply.png cmd/sc_ok.png +cmd/sc_yes.png cmd/sc_ok.png + +# Find Toolbar +cmd/32/findbar.png cmd/32/recsearch.png +cmd/32/scrolltonext.png cmd/32/downsearch.png +cmd/32/scrolltoprevious.png cmd/32/upsearch.png + +cmd/lc_findbar.png cmd/lc_recsearch.png +cmd/lc_scrolltonext.png cmd/lc_downsearch.png +cmd/lc_scrolltoprevious.png cmd/lc_upsearch.png + +cmd/sc_findbar.png cmd/sc_recsearch.png +cmd/sc_scrolltonext.png cmd/sc_downsearch.png +cmd/sc_scrolltoprevious.png cmd/sc_upsearch.png + +# File Menu +cmd/32/exportasmenu.png cmd/32/exportto.png +cmd/32/exporttoepub.png cmd/32/exportdirecttoepub.png +cmd/32/exporttopdf.png cmd/32/exportdirecttopdf.png +cmd/32/templatemenu.png cmd/32/templatemanager.png + +cmd/lc_exportasmenu.png cmd/lc_exportto.png +cmd/lc_exporttoepub.png cmd/lc_exportdirecttoepub.png +cmd/lc_exporttopdf.png cmd/lc_exportdirecttopdf.png +cmd/lc_templatemenu.png cmd/lc_templatemanager.png + +cmd/sc_exportasmenu.png cmd/sc_exportto.png +cmd/sc_exporttoepub.png cmd/sc_exportdirecttoepub.png +cmd/sc_exporttopdf.png cmd/sc_exportdirecttopdf.png +cmd/sc_templatemenu.png cmd/sc_templatemanager.png + +# Edit Menu +cmd/32/editlinksmenu.png cmd/32/insertreferencefield.png +cmd/lc_editlinksmenu.png cmd/lc_insertreferencefield.png +cmd/sc_editlinksmenu.png cmd/sc_insertreferencefield.png + +# Square +cmd/32/basicshapes.quadrat.png cmd/32/square.png +cmd/32/flowchartshapes.flowchart-process.png cmd/32/square.png + +cmd/lc_basicshapes.quadrat.png cmd/lc_square.png +cmd/lc_flowchartshapes.flowchart-process.png cmd/lc_square.png + +cmd/sc_basicshapes.quadrat.png cmd/sc_square.png +cmd/sc_flowchartshapes.flowchart-process.png cmd/sc_square.png + +# Sort +cmd/32/ordercrit.png cmd/32/datasort.png +cmd/32/sortdialog.png cmd/32/datasort.png +cmd/32/sortdown.png cmd/32/sortdescending.png +cmd/32/sortup.png cmd/32/sortascending.png +cmd/32/tablesort.png cmd/32/sortascending.png + +cmd/lc_ordercrit.png cmd/lc_datasort.png +cmd/lc_sortdialog.png cmd/lc_datasort.png +cmd/lc_sortdown.png cmd/lc_sortdescending.png +cmd/lc_sortup.png cmd/lc_sortascending.png +cmd/lc_tablesort.png cmd/lc_sortascending.png + +cmd/sc_ordercrit.png cmd/sc_datasort.png +cmd/sc_sortdialog.png cmd/sc_datasort.png +cmd/sc_sortdown.png cmd/sc_sortdescending.png +cmd/sc_sortup.png cmd/sc_sortascending.png +cmd/sc_tablesort.png cmd/sc_sortascending.png + +# Code +cmd/32/sourceview.png cmd/32/symbolshapes.brace-pair.png +cmd/lc_sourceview.png cmd/lc_symbolshapes.brace-pair.png +cmd/sc_sourceview.png cmd/sc_symbolshapes.brace-pair.png + +# Config +cmd/32/formatselection.png cmd/32/configuredialog.png +cmd/lc_formatselection.png cmd/lc_configuredialog.png +cmd/sc_formatselection.png cmd/sc_configuredialog.png + +# Hyphenation +cmd/32/hyphenation.png cmd/32/hyphenate.png +cmd/lc_hyphenation.png cmd/lc_hyphenate.png +cmd/sc_hyphenation.png cmd/sc_hyphenate.png + +# Currency +cmd/32/numberformatcurrency.png cmd/32/currencyfield.png +cmd/32/numberformatcurrencysimple.png cmd/32/currencyfield.png + +cmd/lc_numberformatcurrency.png cmd/lc_currencyfield.png +cmd/lc_numberformatcurrencysimple.png cmd/lc_currencyfield.png + +cmd/sc_numberformatcurrency.png cmd/sc_currencyfield.png +cmd/sc_numberformatcurrencysimple.png cmd/sc_currencyfield.png + +# Fontwork +cmd/32/fontworkshapetype.png cmd/32/fontwork.png +cmd/lc_fontworkshapetype.png cmd/lc_fontwork.png +cmd/sc_fontworkshapetype.png cmd/sc_fontwork.png + +# Ruler +cmd/32/rulermenu.png cmd/32/ruler.png +cmd/32/showruler.png cmd/32/ruler.png + +cmd/lc_rulermenu.png cmd/lc_ruler.png +cmd/lc_showruler.png cmd/lc_ruler.png + +cmd/sc_rulermenu.png cmd/sc_ruler.png +cmd/sc_showruler.png cmd/sc_ruler.png + +# Graphic Quality Color +cmd/32/outputqualitycolor.png cmd/32/insertgraphic.png +cmd/lc_outputqualitycolor.png cmd/lc_insertgraphic.png +cmd/sc_outputqualitycolor.png cmd/sc_insertgraphic.png + +# Show Formula +cmd/32/toggleformula.png cmd/32/dbviewfunctions.png +cmd/lc_toggleformula.png cmd/lc_dbviewfunctions.png +cmd/sc_toggleformula.png cmd/sc_dbviewfunctions.png + +# Axis +cmd/32/toggleaxisdescr.png cmd/32/helplinesvisible.png +cmd/lc_toggleaxisdescr.png cmd/lc_helplinesvisible.png +cmd/sc_toggleaxisdescr.png cmd/sc_helplinesvisible.png + +# Grid +cmd/32/gridmenu.png cmd/32/gridvisible.png +cmd/32/insertgridcontrol.png cmd/32/grid.png + +cmd/lc_gridmenu.png cmd/lc_gridvisible.png +cmd/lc_insertgridcontrol.png cmd/lc_grid.png + +cmd/sc_gridmenu.png cmd/sc_gridvisible.png +cmd/sc_insertgridcontrol.png cmd/sc_grid.png + +# Crop +cmd/32/grafattrcrop.png cmd/32/crop.png +cmd/lc_grafattrcrop.png cmd/lc_crop.png +cmd/sc_grafattrcrop.png cmd/sc_crop.png + +# Extrusion Rotate +cmd/32/rulerrows.png cmd/32/extrusiontiltleft.png +cmd/32/rulerrowsvertical.png cmd/32/extrusiontiltright.png + +cmd/lc_rulerrows.png cmd/lc_extrusiontiltleft.png +cmd/lc_rulerrowsvertical.png cmd/lc_extrusiontiltright.png + +cmd/sc_rulerrows.png cmd/sc_extrusiontiltleft.png +cmd/sc_rulerrowsvertical.png cmd/sc_extrusiontiltright.png + +# Light +svx/res/lightofffrombottom_22.png svx/res/light.png +svx/res/lightofffrombottomleft_22.png svx/res/light.png +svx/res/lightofffrombottomright_22.png svx/res/light.png +svx/res/lightofffromleft_22.png svx/res/light.png +svx/res/lightofffromright_22.png svx/res/light.png +svx/res/lightofffromtop_22.png svx/res/light.png +svx/res/lightofffromtopleft_22.png svx/res/light.png +svx/res/lightofffromtopright_22.png svx/res/light.png +svx/res/lightonfrombottom_22.png svx/res/lighton.png +svx/res/lightonfrombottomleft_22.png svx/res/lighton.png +svx/res/lightonfrombottomright_22.png svx/res/lighton.png +svx/res/lightonfromleft_22.png svx/res/lighton.png +svx/res/lightonfromright_22.png svx/res/lighton.png +svx/res/lightonfromtop_22.png svx/res/lighton.png +svx/res/lightonfromtopleft_22.png svx/res/lighton.png +svx/res/lightonfromtopright_22.png svx/res/lighton.png +svx/res/legtyp1.png cmd/sc_calloutshapes.line-callout-3.png +svx/res/legtyp2.png cmd/sc_calloutshapes.line-callout-1.png +svx/res/legtyp3.png cmd/sc_calloutshapes.line-callout-2.png + +# 3d +svx/res/3dgeo.png cmd/sc_diagramaxisxyz.png +svx/res/3drepres.png cmd/sc_fillshadow.png +svx/res/3dtextur.png cmd/sc_graphicfilterpopart.png +svx/res/3dlight.png svx/res/lighton.png +svx/res/objects.png cmd/sc_objectcatalog.png + +# Presentation +cmd/32/diaauto.png cmd/32/dia.png +cmd/lc_diaauto.png cmd/lc_dia.png +cmd/sc_diaauto.png cmd/sc_dia.png + +# Style +cmd/32/editstyled.png cmd/32/editstyle.png +cmd/32/loadstyles.png cmd/32/open.png +cmd/32/viewsidebarstyles.png cmd/32/designerdialog.png + +cmd/lc_editstyled.png cmd/lc_editstyle.png +cmd/lc_loadstyles.png cmd/lc_open.png +cmd/lc_viewsidebarstyles.png cmd/lc_designerdialog.png + +cmd/sc_editstyled.png cmd/sc_editstyle.png +cmd/sc_loadstyles.png cmd/sc_open.png +cmd/sc_viewsidebarstyles.png cmd/sc_designerdialog.png + +# Outline +cmd/32/outlinedown.png cmd/32/movedown.png +cmd/32/outlineleft.png cmd/32/incrementlevel.png +cmd/32/outlineright.png cmd/32/decrementlevel.png +cmd/32/outlineup.png cmd/32/moveup.png + +cmd/lc_outlinedown.png cmd/lc_movedown.png +cmd/lc_outlineleft.png cmd/lc_incrementlevel.png +cmd/lc_outlineright.png cmd/lc_decrementlevel.png +cmd/lc_outlineup.png cmd/lc_moveup.png + +cmd/sc_outlinedown.png cmd/sc_movedown.png +cmd/sc_outlineleft.png cmd/sc_incrementlevel.png +cmd/sc_outlineright.png cmd/sc_decrementlevel.png +cmd/sc_outlineup.png cmd/sc_moveup.png + +# Index +cmd/32/indexesmenu.png cmd/32/insertindexesentry.png +cmd/32/insertfootnotesmenu.png cmd/32/insertfootnote.png + +cmd/lc_indexesmenu.png cmd/lc_insertindexesentry.png +cmd/lc_insertfootnotesmenu.png cmd/lc_insertfootnote.png + +cmd/sc_indexesmenu.png cmd/sc_insertindexesentry.png +cmd/sc_insertfootnotesmenu.png cmd/sc_insertfootnote.png + +# Mirror +cmd/32/fliphorizontal.png cmd/32/mirror.png +cmd/32/flipmenu.png cmd/32/mirror.png +cmd/32/flipvertical.png cmd/32/mirrorvert.png +cmd/32/mirrorhorz.png cmd/32/mirror.png +cmd/32/objectmirrorhorizontal.png cmd/32/mirror.png +cmd/32/objectmirrorvertical.png cmd/32/mirrorvert.png + +cmd/lc_fliphorizontal.png cmd/lc_mirror.png +cmd/lc_flipmenu.png cmd/lc_mirror.png +cmd/lc_flipvertical.png cmd/lc_mirrorvert.png +cmd/lc_mirrorhorz.png cmd/lc_mirror.png +cmd/lc_objectmirrorhorizontal.png cmd/lc_mirror.png +cmd/lc_objectmirrorvertical.png cmd/lc_mirrorvert.png + +cmd/sc_fliphorizontal.png cmd/sc_mirror.png +cmd/sc_flipmenu.png cmd/sc_mirror.png +cmd/sc_flipvertical.png cmd/sc_mirrorvert.png +cmd/sc_mirrorhorz.png cmd/sc_mirror.png +cmd/sc_objectmirrorhorizontal.png cmd/sc_mirror.png +cmd/sc_objectmirrorvertical.png cmd/sc_mirrorvert.png + +# Connector +cmd/32/connectorcircles.png cmd/32/connector.png +cmd/32/connectorcurvecircles.png cmd/32/connectorcurve.png +cmd/32/connectorlinecircles.png cmd/32/connectorline.png +cmd/32/connectorlinescircles.png cmd/32/connector.png +cmd/32/connectortoolbox.png cmd/32/connector.png + +cmd/lc_connectorcircles.png cmd/lc_connector.png +cmd/lc_connectorcurvecircles.png cmd/lc_connectorcurve.png +cmd/lc_connectorlinecircles.png cmd/lc_connectorline.png +cmd/lc_connectorlinescircles.png cmd/lc_connector.png +cmd/lc_connectortoolbox.png cmd/lc_connector.png + +cmd/sc_connectorcircles.png cmd/sc_connector.png +cmd/sc_connectorcurvecircles.png cmd/sc_connectorcurve.png +cmd/sc_connectorlinecircles.png cmd/sc_connectorline.png +cmd/sc_connectorlinescircles.png cmd/sc_connector.png +cmd/sc_connectortoolbox.png cmd/sc_connector.png + +# Time +cmd/32/numberformattime.png cmd/32/timefield.png +cmd/32/rehearsetimings.png cmd/32/diatime.png +cmd/lc_numberformattime.png cmd/lc_timefield.png +cmd/lc_rehearsetimings.png cmd/lc_diatime.png +cmd/sc_numberformattime.png cmd/sc_timefield.png +cmd/sc_rehearsetimings.png cmd/sc_diatime.png + +# Arrange +cmd/32/arrangeframemenu.png cmd/32/bringtofront.png +cmd/32/arrangemenu.png cmd/32/bringtofront.png + +cmd/lc_arrangeframemenu.png cmd/lc_bringtofront.png +cmd/lc_arrangemenu.png cmd/lc_bringtofront.png + +cmd/sc_arrangeframemenu.png cmd/sc_bringtofront.png +cmd/sc_arrangemenu.png cmd/sc_bringtofront.png + +# Reload +cmd/32/draw.png cmd/32/reload.png +cmd/32/refresh.png cmd/32/reload.png +cmd/32/repaginate.png cmd/32/insertpagenumberfield.png +cmd/32/updateall.png cmd/32/reload.png +cmd/32/updateallindexes.png cmd/32/insertmultiindex.png +cmd/32/updatealllinks.png cmd/32/inserthyperlink.png +cmd/32/updatecharts.png cmd/32/drawchart.png +cmd/32/updatefields.png cmd/32/addfield.png +cmd/32/updatemenu.png cmd/32/reload.png + +cmd/lc_draw.png cmd/lc_reload.png +cmd/lc_refresh.png cmd/lc_reload.png +cmd/lc_repaginate.png cmd/lc_insertpagenumberfield.png +cmd/lc_updateall.png cmd/lc_reload.png +cmd/lc_updateallindexes.png cmd/lc_insertmultiindex.png +cmd/lc_updatealllinks.png cmd/lc_inserthyperlink.png +cmd/lc_updatecharts.png cmd/lc_drawchart.png +cmd/lc_updatefields.png cmd/lc_addfield.png +cmd/lc_updatemenu.png cmd/lc_reload.png + +cmd/sc_draw.png cmd/sc_reload.png +cmd/sc_refresh.png cmd/sc_reload.png +cmd/sc_repaginate.png cmd/sc_insertpagenumberfield.png +cmd/sc_updateall.png cmd/sc_reload.png +cmd/sc_updateallindexes.png cmd/sc_insertmultiindex.png +cmd/sc_updatealllinks.png cmd/sc_inserthyperlink.png +cmd/sc_updatecharts.png cmd/sc_drawchart.png +cmd/sc_updatefields.png cmd/sc_addfield.png +cmd/sc_updatemenu.png cmd/sc_reload.png + +# Select +cmd/32/drawselect.png cmd/32/selectobject.png +cmd/32/selectmode.png cmd/32/selectobject.png + +cmd/lc_drawselect.png cmd/lc_selectobject.png +cmd/lc_selectmode.png cmd/lc_selectobject.png + +cmd/sc_drawselect.png cmd/sc_selectobject.png +cmd/sc_selectmode.png cmd/sc_selectobject.png + +# Database +cmd/32/dbdtableedit.png cmd/32/dbtableedit.png + +cmd/lc_dbdtableedit.png cmd/lc_dbtableedit.png + +cmd/sc_dbdtableedit.png cmd/sc_dbtableedit.png + +# Browse +cmd/32/browsebackward cmd/32/prevrecord.png +cmd/32/browseforward.png cmd/32/nextrecord.png + +cmd/lc_browsebackward cmd/lc_prevrecord.png +cmd/lc_browseforward.png cmd/lc_nextrecord.png + +cmd/sc_browsebackward cmd/lc_prevrecord.png +cmd/sc_browseforward.png cmd/sc_nextrecord.png + +# Macro + +cmd/32/insertscript.png cmd/32/choosemacro.png +cmd/32/macrodialog.png cmd/32/scriptorganizer.png +cmd/32/macroorganizer.png cmd/32/scriptorganizer.png +cmd/32/macrosmenu.png cmd/32/choosemacro.png +cmd/32/toolsmacroedit.png cmd/32/basicideappear.png + +cmd/lc_insertscript.png cmd/lc_choosemacro.png +cmd/lc_macrodialog.png cmd/lc_scriptorganizer.png +cmd/lc_macroorganizer.png cmd/lc_scriptorganizer.png +cmd/lc_macrosmenu.png cmd/lc_choosemacro.png +cmd/lc_toolsmacroedit.png cmd/lc_basicideappear.png + +cmd/sc_insertscript.png cmd/sc_choosemacro.png +cmd/sc_macrodialog.png cmd/sc_scriptorganizer.png +cmd/sc_macroorganizer.png cmd/sc_scriptorganizer.png +cmd/sc_macrosmenu.png cmd/sc_choosemacro.png +cmd/sc_toolsmacroedit.png cmd/sc_basicideappear.png + +# Help +cmd/32/donation.png cmd/32/currencyfield.png +cmd/32/helperdialog.png cmd/32/helpindex.png +cmd/32/questionanswers.png cmd/32/browseview.png +cmd/32/sendfeedback.png cmd/32/insertenvelope.png + +cmd/lc_donation.png cmd/lc_currencyfield.png +cmd/lc_helperdialog.png cmd/lc_helpindex.png +cmd/lc_questionanswers.png cmd/lc_browseview.png +cmd/lc_sendfeedback.png cmd/lc_insertenvelope.png + +cmd/sc_about.png res/mainapp_16_8.png +cmd/sc_donation.png cmd/sc_currencyfield.png +cmd/sc_helperdialog.png cmd/sc_helpindex.png +cmd/sc_questionanswers.png cmd/sc_browseview.png +cmd/sc_sendfeedback.png cmd/sc_insertenvelope.png + +# Math +cmd/32/symbolcatalogue.png cmd/32/insertsymbol.png +cmd/lc_symbolcatalogue.png cmd/lc_insertsymbol.png +cmd/sc_symbolcatalogue.png cmd/sc_insertsymbol.png + +# Plugin +cmd/32/pluginsactive.png cmd/32/insertplugin.png +cmd/lc_pluginsactive.png cmd/lc_insertplugin.png +cmd/sc_pluginsactive.png cmd/sc_insertplugin.png + +# Table +cmd/32/setoptimalcolumnwidthdirect.png cmd/32/setoptimalcolumnwidth.png +cmd/32/starchartdialog.png cmd/32/drawchart.png +cmd/32/tableautofitmenu.png cmd/32/setoptimalrowheight.png +cmd/32/tabledeletemenu.png cmd/32/deletetable.png +cmd/32/tableinsertmenu.png cmd/32/insertrowsafter.png +cmd/32/tablemenu.png cmd/32/tabledialog.png +cmd/32/tableselectmenu.png cmd/32/selecttable.png + +cmd/lc_setoptimalcolumnwidthdirect.png cmd/lc_setoptimalcolumnwidth.png +cmd/lc_starchartdialog.png cmd/lc_drawchart.png +cmd/lc_tableautofitmenu.png cmd/lc_setoptimalrowheight.png +cmd/lc_tabledeletemenu.png cmd/lc_deletetable.png +cmd/lc_tableinsertmenu.png cmd/lc_insertrowsafter.png +cmd/lc_tablemenu.png cmd/lc_tabledialog.png +cmd/lc_tableselectmenu.png cmd/lc_selecttable.png + +cmd/sc_setoptimalcolumnwidthdirect.png cmd/sc_setoptimalcolumnwidth.png +cmd/sc_starchartdialog.png cmd/sc_drawchart.png +cmd/sc_tableautofitmenu.png cmd/sc_setoptimalrowheight.png +cmd/sc_tabledeletemenu.png cmd/sc_deletetable.png +cmd/sc_tableinsertmenu.png cmd/sc_insertrowsafter.png +cmd/sc_tablemenu.png cmd/sc_tabledialog.png +cmd/sc_tableselectmenu.png cmd/sc_selecttable.png + +# text background colour Impress/Draw +cmd/32/charbackcolor.png cmd/32/backcolor.png +cmd/32/setdefault.png cmd/32/resetattributes.png + +cmd/lc_charbackcolor.png cmd/lc_backcolor.png +cmd/lc_setdefault.png cmd/lc_resetattributes.png + +cmd/sc_charbackcolor.png cmd/sc_backcolor.png +cmd/sc_setdefault.png cmd/sc_resetattributes.png + +# Impress +sfx2/res/symphony/sidebar-transition-large.png cmd/lc_slidechangewindow.png + +# Toggle graphics visibility in Writer +cmd/32/showgraphics.png cmd/32/graphic.png +cmd/lc_showgraphics.png cmd/lc_graphic.png +cmd/sc_showgraphics.png cmd/sc_graphic.png + +# navigator +cmd/32/dsbdocumentdatasource.png cmd/32/insertexternaldatasource.png +cmd/32/dsbinsertcolumns.png cmd/32/insertfieldctrl.png +cmd/32/inserttoolbox.png cmd/32/dataimport.png +cmd/32/savesimple.png cmd/32/save.png +cmd/32/sbabrwinsert.png cmd/32/insertfieldctrl.png +cmd/32/showbrowser.png cmd/32/controlproperties.png +cmd/32/showpropbrowser.png cmd/32/controlproperties.png + +cmd/lc_dsbdocumentdatasource.png cmd/lc_insertexternaldatasource.png +cmd/lc_dsbinsertcolumns.png cmd/lc_insertfieldctrl.png +cmd/lc_inserttoolbox.png cmd/lc_dataimport.png +cmd/lc_savesimple.png cmd/lc_save.png +cmd/lc_sbabrwinsert.png cmd/lc_insertfieldctrl.png +cmd/lc_showbrowser.png cmd/lc_controlproperties.png +cmd/lc_showpropbrowser.png cmd/lc_controlproperties.png + +cmd/sc_dsbdocumentdatasource.png cmd/sc_insertexternaldatasource.png +cmd/sc_dsbinsertcolumns.png cmd/sc_insertfieldctrl.png +cmd/sc_inserttoolbox.png cmd/sc_dataimport.png +cmd/sc_savesimple.png cmd/sc_save.png +cmd/sc_sbabrwinsert.png cmd/sc_insertfieldctrl.png +cmd/sc_showbrowser.png cmd/sc_controlproperties.png +cmd/sc_showpropbrowser.png cmd/sc_controlproperties.png + +# Slide command aliases +cmd/32/insertdatefieldfix.png cmd/32/datefield.png +cmd/32/insertpagefield.png cmd/32/insertpagenumberfield.png +cmd/32/insertpagenumber.png cmd/32/insertpagenumberfield.png +cmd/32/insertpagesfield.png cmd/32/insertpagecountfield.png +cmd/32/insertpagetitlefield.png cmd/32/inserttitlefield.png +cmd/32/insertslidefield.png cmd/32/insertslidenumberfield.png +cmd/32/insertslidenumber.png cmd/32/insertslidenumberfield.png +cmd/32/insertslidesfield.png cmd/32/insertslidecountfield.png +cmd/32/inserttimefieldfix.png cmd/32/timefield.png + +cmd/lc_insertdatefieldfix.png cmd/lc_datefield.png +cmd/lc_insertpagefield.png cmd/lc_insertpagenumberfield.png +cmd/lc_insertpagenumber.png cmd/lc_insertpagenumberfield.png +cmd/lc_insertpagesfield.png cmd/lc_insertpagecountfield.png +cmd/lc_insertpagetitlefield.png cmd/lc_inserttitlefield.png +cmd/lc_insertslidefield.png cmd/lc_insertslidenumberfield.png +cmd/lc_insertslidenumber.png cmd/lc_insertslidenumberfield.png +cmd/lc_insertslidesfield.png cmd/lc_insertslidecountfield.png +cmd/lc_inserttimefieldfix.png cmd/lc_timefield.png + +cmd/sc_insertdatefieldfix.png cmd/sc_datefield.png +cmd/sc_insertpagefield.png cmd/sc_insertpagenumberfield.png +cmd/sc_insertpagenumber.png cmd/sc_insertpagenumberfield.png +cmd/sc_insertpagesfield.png cmd/sc_insertpagecountfield.png +cmd/sc_insertpagetitlefield.png cmd/sc_inserttitlefield.png +cmd/sc_insertslidefield.png cmd/sc_insertslidenumberfield.png +cmd/sc_insertslidenumber.png cmd/sc_insertslidenumberfield.png +cmd/sc_insertslidesfield.png cmd/sc_insertslidecountfield.png +cmd/sc_inserttimefieldfix.png cmd/sc_timefield.png + +# database +database/linked_text_table.png dbaccess/res/linked_text_table.png + +# dbaccess +# ============================================== +dbaccess/res/all_left.png cmd/sc_firstrecord.png +dbaccess/res/all_right.png cmd/sc_lastrecord.png +dbaccess/res/db.png cmd/sc_changedatabasefield.png +dbaccess/res/exerror.png cmd/sc_cancel.png +dbaccess/res/exinfo.png cmd/sc_helpindex.png +dbaccess/res/form_16.png cmd/sc_dbviewforms.png +dbaccess/res/forms_32.png cmd/32/dbviewforms.png +dbaccess/res/jo01.png dbaccess/res/pkey.png +dbaccess/res/lc036.png cmd/lc_dbnewreport.png +dbaccess/res/lc037.png cmd/lc_dbreportdelete.png +dbaccess/res/lc038.png cmd/lc_dbreportedit.png +dbaccess/res/nu07.png cmd/sc_ok.png +dbaccess/res/nu08.png cmd/sc_cancel.png +dbaccess/res/one_left.png cmd/sc_prevrecord.png +dbaccess/res/one_right.png cmd/sc_nextrecord.png +dbaccess/res/queries_32.png cmd/32/dbviewqueries.png +dbaccess/res/report_16.png cmd/sc_dbviewreports.png +dbaccess/res/reports_32.png cmd/32/dbviewreports.png +dbaccess/res/sc036.png cmd/sc_dbnewreport.png +dbaccess/res/sc037.png cmd/sc_dbreportdelete.png +dbaccess/res/sc038.png cmd/sc_dbreportedit.png +dbaccess/res/sortdown.png cmd/sc_downsearch.png +dbaccess/res/sortup.png cmd/sc_upsearch.png +dbaccess/res/tables_32.png cmd/32/dbviewtables.png +res/queries_32.png cmd/32/dbviewqueries.png +res/reports_32.png cmd/32/dbviewreports.png +res/tables_32.png cmd/32/dbviewtables.png + +# desktop +# ============================================== +desktop/res/caution_16.png dbaccess/res/exwarning.png +desktop/res/extension_16.png cmd/sc_insertplugin.png +desktop/res/extension_32.png cmd/32/insertplugin.png +desktop/res/info_16.png cmd/sc_helpindex.png +desktop/res/lock_16.png cmd/sc_cellprotection.png + +# extensions +# ============================================== +extensions/res/arrow.png cmd/sc_nextrecord.png +extensions/res/buttonminus.png extensions/res/scanner/minus.png +extensions/res/buttonplus.png extensions/res/scanner/plus.png + +# formula +# ============================================== +formula/res/faperror.png cmd/sc_cancel.png +formula/res/fapok.png cmd/sc_ok.png +formula/res/fapopen.png cmd/sc_open.png +formula/res/fx.png cmd/sc_dbviewfunctions.png + +# fpicker +# ============================================== +fpicker/res/fp011.png res/lc06303.png +fpicker/res/fp014.png res/fp015.png +fpicker/res/fp016.png desktop/res/shared_16.png + +# framework +# ============================================== +framework/res/addtemplate_32.png cmd/32/newdoc.png +framework/res/arrow.png cmd/sc_nextrecord.png +framework/res/extension.png cmd/lc_insertplugin.png +framework/res/folder_32.png cmd/32/open.png +framework/res/info_26.png cmd/lc_helpindex.png +framework/res/remote-documents.png cmd/32/openremote.png +framework/res/templates_32.png cmd/32/templatemanager.png + +# reportdesign +# ============================================== +reportdesign/res/report_16.png cmd/sc_dbviewreports.png +reportdesign/res/sc20557.png cmd/sc_cancel.png +reportdesign/res/sc30768.png cmd/sc_upsearch.png +reportdesign/res/sc30769.png cmd/sc_downsearch.png +reportdesign/res/sc30770.png cmd/sc_cancel.png +reportdesign/res/sortdown.png cmd/sc_downsearch.png +reportdesign/res/sortup.png cmd/sc_upsearch.png +reportdesign/res/sx11047.png cmd/sc_basicshapes.diamond.png +reportdesign/res/sx12452.png cmd/sc_animationeffects.png +reportdesign/res/sx12453.png cmd/sc_animationeffects.png +reportdesign/res/sx12454.png cmd/sc_alignright.png +reportdesign/res/sx12464.png cmd/sc_dbviewreports.png +reportdesign/res/sx12594.png cmd/sc_dbviewfunctions.png + +# res +# ============================================== +res/adrbook.png cmd/sc_viewdatasourcebrowser.png +res/browse.png cmd/sc_browseview.png +res/dir-clos.png cmd/sc_closedocs.png +res/dir-open.png cmd/sc_open.png +res/extension_plus_26.png cmd/lc_insertplugin.png +res/extension_plus_32.png cmd/32/insertplugin.png +res/fileopen.png cmd/sc_open.png +res/foldercl.png cmd/sc_closedocs.png +res/grafikei.png cmd/sc_graphic.png +res/hlinettp.png cmd/32/inserthyperlink.png +res/hlmailtp.png cmd/32/insertenvelope.png +res/im30820.png cmd/sc_scriptorganizer.png +res/im30821.png cmd/sc_choosemacro.png +res/im30826.png res/odm_16_8.png +res/info.png cmd/lc_helpindex.png +res/info_16.png cmd/sc_helpindex.png +res/lc05509.png cmd/lc_print.png +res/lc05539.png cmd/lc_designerdialog.png +res/lc05678.png cmd/lc_inserthyperlinkcontrol.png +res/lc05700.png cmd/lc_redo.png +res/lc05701.png cmd/lc_undo.png +res/lc05710.png cmd/lc_cut.png +res/lc05711.png cmd/lc_copy.png +res/lc10711.png cmd/lc_removefiltersort.png +res/lc10715.png cmd/lc_datafilterstandardfilter.png +res/lc10716.png cmd/lc_datafilterautofilter.png +res/lc10851.png cmd/lc_inserthyperlinkcontrol.png +res/lc10853.png cmd/lc_recsearch.png +res/library_16.png cmd/sc_viewdatasourcebrowser.png +res/lx03131.png res/lx03126.png +res/lx03137.png res/lx03125.png +res/lx03139.png cmd/lc_newhtmldoc.png +res/lx03139_32.png cmd/32/newhtmldoc.png +res/lx03140.png res/lx03125.png +res/lx03144.png res/odf_32_8.png +res/lx03145.png res/otf_32_8.png +res/lx03150.png cmd/32/showsinglepage.png +res/lx03152.png res/lx03125.png +res/lx03153.png res/lx03125.png +res/lx03154.png res/lx03125.png +res/lx03155.png res/lx03125.png +res/lx03156.png res/odt_32_8.png +res/lx03158.png res/lx03125.png +res/lx03160.png res/odg_32_8.png +res/lx03164.png cmd/32/open.png +res/lx03165.png cmd/32/save.png +res/lx03167.png cmd/32/openremote.png +res/lx03188.png cmd/32/dbviewtables.png +res/lx03189.png cmd/32/open.png +res/lx03202.png cmd/32/dbviewqueries.png +res/lx03217.png res/odg_32_8.png +res/lx03218.png res/odg_32_8.png +res/lx03219.png res/lx03125.png +res/lx03220.png res/odg_32_8.png +res/lx03221.png res/odg_32_8.png +res/lx03222.png res/odg_32_8.png +res/lx03226.png res/odm_32_8.png +res/lx03227.png res/odg_32_8.png +res/lx03228.png res/otg_32_8.png +res/lx03239.png cmd/32/dbrelationdesign.png +res/lx03245.png res/odb_24_8.png +res/lx03245_32.png res/odb_32_8.png +res/lx03246.png res/odg_24_8.png +res/lx03246_32.png res/odg_32_8.png +res/lx03247.png res/odf_24_8.png +res/lx03247_32.png res/odf_32_8.png +res/lx03248.png res/odm_24_8.png +res/lx03248_32.png res/odm_32_8.png +res/lx03249.png res/odp_24_8.png +res/lx03249_32.png res/odp_32_8.png +res/lx03250.png res/ods_24_8.png +res/lx03250_32.png res/ods_32_8.png +res/lx03251.png res/odt_24_8.png +res/lx03251_32.png res/odt_32_8.png +res/lx03252.png res/otg_32_8.png +res/lx03253.png res/otp_32_8.png +res/lx03254.png res/ots_32_8.png +res/lx03255.png res/ott_24_8.png +res/lx03255_32.png res/ott_32_8.png +res/lx03256.png cmd/32/insertplugin.png +res/mainapp_16.png res/mainapp_16_8.png +res/mainapp_32.png res/mainapp_32_8.png +res/newdoc.png cmd/sc_closedocs.png +res/oleobj.png cmd/32/insertobject.png +res/plugin.png cmd/32/insertplugin.png +res/printeradmin_16_8.png res/printeradmin_16.png +res/printeradmin_32_8.png res/printeradmin_32.png +res/reload.png cmd/sc_reload.png +res/sc05500.png cmd/sc_adddirect.png +res/sc05501.png cmd/sc_open.png +res/sc05502.png cmd/sc_saveas.png +res/sc05504.png cmd/sc_print.png +res/sc05508.png cmd/sc_reload.png +res/sc05509.png cmd/sc_print.png +res/sc05554.png cmd/sc_backgroundcolor.png +res/sc05555.png cmd/sc_stylenewbyexample.png +res/sc05556.png cmd/sc_styleupdatebyexample.png +res/sc05678.png cmd/sc_inserthyperlink.png +res/sc05711.png cmd/sc_copy.png +res/sc05961.png cmd/sc_recsearch.png +res/sc06300.png cmd/sc_nextrecord.png +res/sc06301.png cmd/sc_prevrecord.png +res/sc10223.png cmd/sc_position.png +res/sc10224.png cmd/sc_size.png +res/sc10350.png cmd/sc_bmpmask.png +res/sc10711.png cmd/sc_removefiltersort.png +res/sc10712.png cmd/sc_sortascending.png +res/sc10713.png cmd/sc_sortdescending.png +res/sc10715.png cmd/sc_datafilterstandardfilter.png +res/sc10716.png cmd/sc_datafilterautofilter.png +res/sc10851.png cmd/sc_inserthyperlink.png +res/sc10853.png cmd/sc_recsearch.png +res/sc10854.png res/target.png +res/sc10863.png cmd/sc_grafluminance.png +res/sc10864.png cmd/sc_grafcontrast.png +res/sc10865.png cmd/sc_grafred.png +res/sc10866.png cmd/sc_grafgreen.png +res/sc10867.png cmd/sc_grafblue.png +res/sc10868.png cmd/sc_grafgamma.png +res/sc10869.png cmd/sc_graftransparence.png +res/sx03137.png res/sx03125.png +res/sx03139.png cmd/sc_newhtmldoc.png +res/sx03140.png res/sx03125.png +res/sx03141.png cmd/32/closedocs.png +res/sx03144.png res/odf_16_8.png +res/sx03145.png res/otf_16_8.png +res/sx03150.png cmd/sc_showsinglepage.png +res/sx03152.png res/sx03125.png +res/sx03153.png res/sx03125.png +res/sx03154.png res/sx03125.png +res/sx03155.png res/sx03125.png +res/sx03156.png res/odt_16_8.png +res/sx03158.png res/sx03125.png +res/sx03160.png res/odg_16_8.png +res/sx03164.png res/harddisk_16.png +res/sx03165.png cmd/sc_save.png +res/sx03167.png cmd/sc_openremote.png +res/sx03188.png cmd/sc_dbviewtables.png +res/sx03189.png cmd/sc_closedocs.png +res/sx03202.png cmd/sc_dbviewqueries.png +res/sx03217.png res/odg_16_8.png +res/sx03218.png res/odg_16_8.png +res/sx03219.png res/sx03125.png +res/sx03220.png res/odg_16_8.png +res/sx03221.png res/odg_16_8.png +res/sx03222.png res/odg_16_8.png +res/sx03226.png res/odm_16_8.png +res/sx03227.png res/odg_16_8.png +res/sx03228.png res/otg_16_8.png +res/sx03239.png cmd/sc_dbrelationdesign.png +res/sx03245.png res/odb_16_8.png +res/sx03246.png res/odg_16_8.png +res/sx03247.png res/odf_16_8.png +res/sx03248.png res/odm_16_8.png +res/sx03249.png res/odp_16_8.png +res/sx03250.png res/ods_16_8.png +res/sx03251.png res/odt_16_8.png +res/sx03252.png res/otg_16_8.png +res/sx03253.png res/otp_16_8.png +res/sx03254.png res/ots_16_8.png +res/sx03255.png res/ott_16_8.png +res/sx03256.png cmd/sc_insertplugin.png +res/sx10144.png cmd/sc_checkbox.png +res/sx10593.png cmd/sc_switchxformsdesignmode.png +res/sx10594.png cmd/sc_pushbutton.png +res/sx10595.png cmd/sc_radiobutton.png +res/sx10596.png cmd/sc_checkbox.png +res/sx10597.png cmd/sc_label.png +res/sx10598.png cmd/sc_groupbox.png +res/sx10599.png cmd/sc_edit.png +res/sx10600.png cmd/sc_listbox.png +res/sx10601.png cmd/sc_combobox.png +res/sx10603.png cmd/sc_grid.png +res/sx10604.png cmd/sc_imagebutton.png +res/sx10605.png cmd/sc_filecontrol.png +res/sx10607.png cmd/sc_navigationbar.png +res/sx10704.png cmd/sc_datefield.png +res/sx10705.png cmd/sc_timefield.png +res/sx10706.png cmd/sc_numberformatstandard.png +res/sx10707.png cmd/sc_currencyfield.png +res/sx10708.png cmd/sc_patternfield.png +res/sx10710.png cmd/sc_imagecontrol.png +res/sx10715.png cmd/sc_datafilterstandardfilter.png +res/sx10728.png cmd/sc_formattedfield.png +res/sx10757.png cmd/sc_timefield.png +res/sx10768.png cmd/sc_scrollbar.png +res/sx10769.png cmd/sc_spinbutton.png +res/sx18013.png res/dialogfolder_16.png + +# sc +# ============================================== +sc/res/date.png cmd/sc_datefield.png +sc/res/dropcopy.png cmd/sc_copy.png +sc/res/droplink.png cmd/sc_insertbookmark.png +sc/res/dropurl.png cmd/sc_inserthyperlinkcontrol.png +sc/res/file.png cmd/sc_open.png +sc/res/fx.png cmd/sc_dbviewfunctions.png +sc/res/lc26047.png cmd/lc_dbviewfunctions.png +sc/res/lc26048.png cmd/lc_autosum.png +sc/res/lc26050.png cmd/lc_cancel.png +sc/res/lc26051.png cmd/lc_ok.png +sc/res/na010.png sw/res/sc20234.png +sc/res/na011.png cmd/sc_ok.png +sc/res/na03.png cmd/sc_dataranges.png +sc/res/na05.png cmd/sc_upsearch.png +sc/res/na06.png cmd/sc_downsearch.png +sc/res/na07.png cmd/sc_thesaurus.png +sc/res/na09.png cmd/sc_animationeffects.png +sc/res/nc01.png cmd/sc_show.png +sc/res/nc02.png cmd/sc_addname.png +sc/res/nc03.png cmd/sc_changedatabasefield.png +sc/res/nc04.png cmd/sc_insertgraphic.png +sc/res/nc05.png cmd/sc_insertobject.png +sc/res/nc06.png cmd/sc_shownote.png +sc/res/nc07.png cmd/sc_insertbookmark.png +sc/res/nc08.png cmd/sc_insertdraw.png +sc/res/page.png cmd/sc_insertpagenumberfield.png +sc/res/pages.png cmd/sc_insertpagecountfield.png +sc/res/sc26047.png cmd/sc_dbviewfunctions.png +sc/res/sc26048.png cmd/sc_autosum.png +sc/res/sc26050.png cmd/sc_cancel.png +sc/res/sc26051.png cmd/sc_ok.png +sc/res/table.png cmd/sc_inserttable.png +sc/res/text.png cmd/sc_text.png +sc/res/time.png cmd/sc_timefield.png + +# sd +# ============================================== +sd/res/breakplayingblue_16.png cmd/sc_mediapause.png +sd/res/comments_indicator.png cmd/sc_shownote.png +sd/res/displaymode_handoutmaster.png cmd/32/handoutmode.png +sd/res/displaymode_notes.png cmd/32/notesmode.png +sd/res/displaymode_notesmaster.png cmd/32/notesmasterpage.png +sd/res/displaymode_outline.png cmd/32/outlinemode.png +sd/res/displaymode_slide.png cmd/32/normalmultipanegui.png +sd/res/displaymode_slidemaster.png cmd/32/slidemasterpage.png +sd/res/displaymode_slidesorter.png cmd/32/diamode.png +sd/res/graphic.png cmd/sc_graphic.png +sd/res/group.png cmd/sc_formatgroup.png +sd/res/nv010.png cmd/sc_inserthyperlink.png +sd/res/nv02.png cmd/sc_freeline_unfilled.png +sd/res/nv03.png cmd/sc_firstrecord.png +sd/res/nv04.png cmd/sc_prevrecord.png +sd/res/nv05.png cmd/sc_nextrecord.png +sd/res/nv06.png cmd/sc_lastrecord.png +sd/res/nv09.png cmd/sc_insertbookmark.png +sd/res/ole.png cmd/sc_insertobject.png +sd/res/page.png cmd/sc_adddirect.png +sd/res/pipette.png cmd/sc_bmpmask.png +sd/res/playblue_16.png cmd/sc_runbasic.png +sd/res/stopplayingblue_16.png cmd/sc_basicstop.png +sd/res/time_16.png cmd/sc_timefield.png +sd/res/waiticon.png cmd/sc_mediapause.png + +# sfx2 +# ============================================== +sfx2/res/actionaction012.png cmd/lc_recsearch.png +sfx2/res/actionaction013.png cmd/lc_optionstreedialog.png +sfx2/res/actiontemplates015.png cmd/lc_ok.png +sfx2/res/actiontemplates016.png cmd/lc_configuredialog.png +sfx2/res/actiontemplates018.png cmd/lc_delete.png +sfx2/res/actiontemplates019.png cmd/lc_editdoc.png +sfx2/res/actiontemplates020.png cmd/lc_exportto.png +sfx2/res/actionview010.png cmd/lc_dataimport.png +sfx2/res/actionview025.png cmd/lc_delete.png +sfx2/res/actionview026.png cmd/lc_openremote.png +sfx2/res/actionview028.png cmd/lc_save.png +sfx2/res/actionview030.png cmd/lc_open.png +sfx2/res/closedoc.png vcl/res/closedoc.png +sfx2/res/deleterow.png cmd/sc_cancel.png +sfx2/res/doccl.png cmd/sc_newdoc.png +sfx2/res/exec_action.png cmd/sc_optionstreedialog.png +sfx2/res/favourite.png cmd/sc_insertbookmark.png +sfx2/res/hlpdoc.png cmd/sc_documentation.png +sfx2/res/minus.png res/minus.png +sfx2/res/newex.png res/plus.png +sfx2/res/plus.png res/plus.png +sfx2/res/search.png cmd/sc_recsearch.png +sfx2/res/select.png cmd/sc_ok.png +sfx2/res/sortascending.png cmd/lc_sortascending.png +sfx2/res/styfam1.png cmd/sc_charfontname.png +sfx2/res/styfam2.png cmd/sc_controlcodes.png +sfx2/res/styfam3.png cmd/sc_linestyle.png +sfx2/res/styfam4.png cmd/sc_showsinglepage.png +sfx2/res/symphony/sidebar-animation-large.png cmd/lc_diaeffect.png +sfx2/res/symphony/sidebar-colors-small.png cmd/sc_colorsettings.png +sfx2/res/symphony/sidebar-functions-large.png cmd/lc_dbviewfunctions.png +sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png +sfx2/res/symphony/sidebar-navigator-large.png cmd/lc_navigator.png +sfx2/res/symphony/sidebar-property-large.png cmd/lc_configuredialog.png +sfx2/res/symphony/sidebar-property-small.png cmd/sc_configuredialog.png +sfx2/res/symphony/sidebar-style-large.png cmd/lc_designerdialog.png +sfx2/res/symphony/sidebar-template-large.png cmd/lc_slidemasterpage.png + +# starmath +# ============================================== +starmath/res/at21717.png cmd/lc_bold.png +starmath/res/at21718.png cmd/lc_italic.png +starmath/res/at21719.png cmd/lc_scaletext.png +starmath/res/at21720.png cmd/lc_charfontname.png +starmath/res/im21108.png cmd/lc_outlineformat.png + +# svtools +# ============================================== +# FolderTree expanded icon +svtools/res/back_large.png cmd/lc_prevrecord.png +svtools/res/back_small.png cmd/sc_prevrecord.png +svtools/res/bmpfont.png cmd/color.png +svtools/res/ed06.png dbaccess/res/pkey.png +svtools/res/folder.png cmd/sc_closedocs.png +svtools/res/folderop.png cmd/sc_open.png +svtools/res/info_large.png cmd/lc_alignleft.png +svtools/res/info_small.png cmd/sc_alignleft.png +svtools/res/my_docs.png cmd/lc_open.png +svtools/res/new_doc.png cmd/lc_newdoc.png +svtools/res/preview_large.png cmd/lc_printpreview.png +svtools/res/preview_small.png cmd/sc_printpreview.png +svtools/res/prnfont.png cmd/sc_charfontname.png +svtools/res/samples.png cmd/lc_choosedesign.png +svtools/res/scalfont.png cmd/sc_scaletext.png +svtools/res/template.png cmd/lc_newdoc.png + +# svx +# ============================================== +svx/res/AdjustColorBlue_16x16.png cmd/sc_grafblue.png +svx/res/AdjustColorGamma_16x16.png cmd/sc_grafgamma.png +svx/res/AdjustColorGreen_16x16.png cmd/sc_grafgreen.png +svx/res/AdjustColorRed_16x16.png cmd/sc_grafred.png +svx/res/ColorModeBlackWhite_16x16.png cmd/sc_outputqualityblackwhite.png +svx/res/ColorModeGrey_16x16.png cmd/sc_outputqualitygrayscale.png +svx/res/apply.png cmd/sc_ok.png +svx/res/caution_11x16.png dbaccess/res/exwarning.png +svx/res/cd01.png cmd/sc_ok.png +svx/res/cd015.png cmd/sc_toggleobjectbeziermode.png +svx/res/cd016.png cmd/sc_beziermove.png +svx/res/cd017.png cmd/sc_bezierinsert.png +svx/res/cd018.png cmd/sc_bezierdelete.png +svx/res/cd020.png cmd/sc_undo.png +svx/res/cd021.png cmd/sc_redo.png +svx/res/cd025.png cmd/sc_autopilotmenu.png +svx/res/cd026.png cmd/sc_bmpmask.png +svx/res/cd05.png cmd/sc_selectobject.png +svx/res/cd06.png cmd/sc_rect.png +svx/res/cd07.png cmd/sc_ellipse.png +svx/res/cd08.png cmd/sc_polygon.png +svx/res/color.png cmd/sc_bmpmask.png +svx/res/colordlg.png cmd/sc_colorsettings.png +svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/fill_color.png cmd/sc_backgroundcolor.png +svx/res/filter3d.png cmd/sc_datafilterstandardfilter.png +svx/res/fontworkaligncentered_16.png cmd/sc_alignhorizontalcenter.png +svx/res/fontworkaligncentered_26.png cmd/lc_alignhorizontalcenter.png +svx/res/fontworkalignjustified_16.png cmd/sc_alignblock.png +svx/res/fontworkalignjustified_26.png cmd/lc_alignblock.png +svx/res/fontworkalignleft_16.png cmd/sc_alignleft.png +svx/res/fontworkalignleft_26.png cmd/lc_alignleft.png +svx/res/fontworkalignright_16.png cmd/sc_alignright.png +svx/res/fontworkalignright_26.png cmd/lc_alignright.png +svx/res/fontworkalignstretch_16.png cmd/sc_text_marquee.png +svx/res/fontworkalignstretch_26.png cmd/lc_text_marquee.png +svx/res/fw07.png cmd/sc_alignleft.png +svx/res/fw08.png cmd/sc_alignhorizontalcenter.png +svx/res/fw09.png cmd/sc_alignright.png +svx/res/graphic.png cmd/sc_graphic.png +svx/res/id01.png cmd/sc_ok.png +svx/res/id018.png cmd/sc_choosemacro.png +svx/res/id019.png cmd/sc_modifyframe.png +svx/res/id02.png cmd/sc_open.png +svx/res/id03.png cmd/sc_save.png +svx/res/id030.png cmd/sc_toggleobjectbeziermode.png +svx/res/id031.png cmd/sc_beziermove.png +svx/res/id032.png cmd/sc_bezierinsert.png +svx/res/id033.png cmd/sc_bezierdelete.png +svx/res/id04.png cmd/sc_selectobject.png +svx/res/id040.png cmd/sc_undo.png +svx/res/id041.png cmd/sc_redo.png +svx/res/id05.png cmd/sc_rect.png +svx/res/id06.png cmd/sc_ellipse.png +svx/res/id07.png cmd/sc_polygon.png +svx/res/id08.png cmd/sc_freeline.png +svx/res/lngcheck.png cmd/sc_spelling.png +svx/res/luminanc.png cmd/sc_graphicfilterinvert.png +svx/res/notcertificate_16.png xmlsecurity/res/notcertificate_16.png +svx/res/nu01.png cmd/sc_ok.png +svx/res/nu02.png cmd/sc_cancel.png +svx/res/nu03.png cmd/sc_shownote.png +svx/res/nu08.png cmd/sc_cancel.png +svx/res/ole.png cmd/sc_insertobject.png +svx/res/para_numbullet_rtl01.png cmd/ar/sc_defaultbullet.png +svx/res/para_numbullet_rtl02.png cmd/ar/sc_defaultnumbering.png +svx/res/parallel_16.png cmd/sc_extrusiondepthfloater.png +svx/res/persp3d.png cmd/sc_extrusiondirectionfloater.png +svx/res/perspective_16.png cmd/sc_extrusiondirectionfloater.png +svx/res/reload.png cmd/sc_reload.png +svx/res/reloads.png cmd/sc_reload.png +svx/res/rotate3d.png cmd/sc_convertinto3dlathe.png +svx/res/signet_11x16.png xmlsecurity/res/signet_11x16.png +svx/res/symphony/AdjustColorBlue_16x16.png cmd/sc_grafblue.png +svx/res/symphony/AdjustColorGamma_16x16.png cmd/sc_grafgamma.png +svx/res/symphony/AdjustColorGreen_16x16.png cmd/sc_grafgreen.png +svx/res/symphony/AdjustColorRed_16x16.png cmd/sc_grafred.png +svx/res/symphony/decrease_font.png cmd/sc_shrink.png +svx/res/symphony/enlarge_font.png cmd/sc_grow.png +svx/res/symphony/fill_color.png cmd/sc_backgroundcolor.png +svx/res/symphony/lpselected-spacing-1.png cmd/lc_spacepara1.png +svx/res/symphony/lpselected-spacing-1_15.png cmd/lc_spacepara1.png +svx/res/symphony/lpselected-spacing-1_5.png cmd/lc_spacepara15.png +svx/res/symphony/lpselected-spacing-2.png cmd/lc_spacepara2.png +svx/res/symphony/lpsmall-spacing-1.png cmd/lc_spacepara1.png +svx/res/symphony/para_numbullet01.png cmd/sc_defaultbullet.png +svx/res/symphony/para_numbullet02.png cmd/sc_defaultnumbering.png +svx/res/symphony/para_numbullet_rtl01.png cmd/ar/sc_defaultbullet.png +svx/res/symphony/para_numbullet_rtl02.png cmd/ar/sc_defaultnumbering.png +svx/res/symphony/sch_backgroundcolor.png cmd/sc_backgroundcolor.png +svx/res/symphony/spacing3.png cmd/sc_spacepara1.png +svx/res/time.png cmd/sc_timefield.png +svx/res/wireframe_16.png cmd/sc_window3d.png + +# sw +# ============================================== +# res +sw/res/lc20556.png cmd/lc_dbviewfunctions.png +sw/res/lc20557.png cmd/lc_cancel.png +sw/res/lc20558.png cmd/lc_ok.png +sw/res/nc20001.png cmd/sc_inserttable.png +sw/res/nc20002.png cmd/sc_insertframe.png +sw/res/nc20003.png cmd/sc_insertgraphic.png +sw/res/nc20004.png cmd/sc_insertobject.png +sw/res/nc20005.png cmd/sc_insertbookmark.png +sw/res/nc20006.png cmd/sc_insertsection.png +sw/res/nc20007.png cmd/sc_inserthyperlink.png +sw/res/nc20008.png cmd/sc_insertreferencefield.png +sw/res/nc20009.png cmd/sc_insertindexesentry.png +sw/res/nc20010.png cmd/sc_shownote.png +sw/res/nc20011.png cmd/sc_insertdraw.png +sw/res/nc20012.png cmd/sc_insertfootnote.png +sw/res/nc20013.png cmd/sc_insertendnote.png +sw/res/sc20171.png cmd/sc_downsearch.png +sw/res/sc20172.png cmd/sc_prevrecord.png +sw/res/sc20173.png cmd/sc_nextrecord.png +sw/res/sc20174.png cmd/sc_upsearch.png +sw/res/sc20175.png cmd/sc_nextrecord.png +sw/res/sc20177.png cmd/sc_insertfooter.png +sw/res/sc20179.png cmd/sc_insertheader.png +sw/res/sc20182.png cmd/sc_toggleanchortype.png +sw/res/sc20183.png cmd/sc_setreminder.png +sw/res/sc20186.png cmd/sc_prevrecord.png +sw/res/sc20233.png cmd/sc_ok.png +sw/res/sc20235.png cmd/sc_inserthyperlink.png +sw/res/sc20238.png cmd/sc_insertbookmark.png +sw/res/sc20239.png cmd/sc_copy.png +sw/res/sc20244.png sw/res/sc20234.png +sw/res/sc20247.png cmd/sc_dataimport.png +sw/res/sc20249.png cmd/sc_navigator.png +sw/res/sc20556.png cmd/sc_dbviewfunctions.png +sw/res/sc20557.png cmd/sc_cancel.png +sw/res/sc20558.png cmd/sc_ok.png +sw/res/sf02.png cmd/sc_designerdialog.png +sw/res/sf04.png sc/res/sf02.png +sw/res/sf06.png cmd/sc_autoformat.png +sw/res/sidebar/pageproppanel/last_custom_common.png svx/res/symphony/last_custom_common.png +sw/res/sidebar/pageproppanel/last_custom_common_grey.png svx/res/symphony/last_custom_common_grey.png +sw/res/sr20000.png cmd/sc_downsearch.png +sw/res/sr20001.png cmd/sc_upsearch.png +sw/res/sr20002.png cmd/sc_inserttable.png +sw/res/sr20003.png cmd/sc_insertframe.png +sw/res/sr20004.png cmd/sc_showsinglepage.png +sw/res/sr20005.png cmd/sc_insertdraw.png +sw/res/sr20006.png cmd/sc_choosecontrols.png +sw/res/sr20007.png cmd/sc_insertsection.png +sw/res/sr20008.png cmd/sc_insertbookmark.png +sw/res/sr20009.png cmd/sc_insertgraphic.png +sw/res/sr20010.png cmd/sc_insertobject.png +sw/res/sr20011.png sw/res/nc20000.png +sw/res/sr20013.png cmd/sc_insertfootnote.png +sw/res/sr20014.png cmd/sc_setreminder.png +sw/res/sr20015.png cmd/sc_shownote.png +sw/res/sr20016.png cmd/sc_recsearch.png +sw/res/sr20017.png cmd/sc_insertindexesentry.png +sw/res/sr20020.png sw/res/sc20234.png +sw/res/sr20021.png cmd/sc_addfield.png +sw/res/sr20022.png cmd/sc_addfield.png +sw/res/sx01.png cmd/sc_changedatabasefield.png +sw/res/sx02.png cmd/sc_dbviewtables.png +sw/res/sx03.png cmd/sc_dbviewqueries.png + +# res +sw/res/page_break.png cmd/sc_insertpagebreak.png +sw/res/styfamnu.png sw/res/sf05.png + +# split cells duplicates +sw/res/zetlhor2.png svx/res/zetlhor2.png +sw/res/zetlver2.png svx/res/zetlver2.png + +# vcl +# ============================================== +vcl/res/index.png cmd/sc_insertmultiindex.png + +# wrap +# ============================================== +cmd/32/wrapmenu.png cmd/32/wrapon.png +cmd/lc_wrapmenu.png cmd/lc_wrapon.png +cmd/sc_wrapmenu.png cmd/sc_wrapon.png + +# xmlsecurity +# ============================================== +xmlsecurity/res/key_12.png dbaccess/res/pkey.png + +cmd/32/columnoperations.png cmd/32/entirecolumn.png +cmd/32/rowoperations.png cmd/32/entirerow.png + +cmd/lc_columnoperations.png cmd/lc_entirecolumn.png +cmd/lc_rowoperations.png cmd/lc_entirerow.png + +cmd/sc_columnoperations.png cmd/sc_entirecolumn.png +cmd/sc_rowoperations.png cmd/sc_entirerow.png + +# calc context menu sheettab +# ============================================== +cmd/32/renametable.png cmd/32/name.png +cmd/32/settabbgcolor.png cmd/32/backgroundcolor.png +cmd/32/sheetlefttoright.png cmd/32/paralefttoright.png +cmd/32/sheetrighttoleft.png cmd/32/pararighttoleft.png +cmd/32/tableevents.png cmd/32/animationeffects.png + +cmd/lc_renametable.png cmd/lc_name.png +cmd/lc_settabbgcolor.png cmd/lc_backgroundcolor.png +cmd/lc_sheetlefttoright.png cmd/lc_paralefttoright.png +cmd/lc_sheetrighttoleft.png cmd/lc_pararighttoleft.png +cmd/lc_tableevents.png cmd/lc_animationeffects.png + +cmd/sc_renametable.png cmd/sc_name.png +cmd/sc_settabbgcolor.png cmd/sc_backgroundcolor.png +cmd/sc_sheetlefttoright.png cmd/sc_paralefttoright.png +cmd/sc_sheetrighttoleft.png cmd/sc_pararighttoleft.png +cmd/sc_tableevents.png cmd/sc_animationeffects.png + +# calc cell style +# ============================================== +cmd/32/badcellstyle.png cmd/32/badcellstyles.png +cmd/32/defaultcellstyles.png cmd/32/defaultcharstyle.png +cmd/32/footnotecellstyles.png cmd/32/insertfootnote.png +cmd/32/goodcellstyle.png cmd/32/goodcellstyles.png +cmd/32/heading1cellstyles.png cmd/32/heading1parastyle.png +cmd/32/heading2cellstyles.png cmd/32/heading2parastyle.png +cmd/32/neutralcellstyle.png cmd/32/neutralcellstyles.png +cmd/32/notecellstyles.png cmd/32/shownote.png +cmd/lc_badcellstyle.png cmd/lc_badcellstyles.png +cmd/lc_defaultcellstyles.png cmd/lc_defaultcharstyle.png +cmd/lc_footnotecellstyles.png cmd/lc_insertfootnote.png +cmd/lc_goodcellstyle.png cmd/lc_goodcellstyles.png +cmd/lc_heading1cellstyles.png cmd/lc_heading1parastyle.png +cmd/lc_heading2cellstyles.png cmd/lc_heading2parastyle.png +cmd/lc_neutralcellstyle.png cmd/lc_neutralcellstyles.png +cmd/lc_notecellstyles.png cmd/lc_shownote.png +cmd/sc_badcellstyle.png cmd/sc_badcellstyles.png +cmd/sc_defaultcellstyles.png cmd/sc_defaultcharstyle.png +cmd/sc_footnotecellstyles.png cmd/sc_insertfootnote.png +cmd/sc_goodcellstyle.png cmd/sc_goodcellstyles.png +cmd/sc_heading1cellstyles.png cmd/sc_heading1parastyle.png +cmd/sc_heading2cellstyles.png cmd/sc_heading2parastyle.png +cmd/sc_neutralcellstyle.png cmd/sc_neutralcellstyles.png +cmd/sc_notecellstyles.png cmd/sc_shownote.png + +# calc context menu rowheader +# ============================================== +cmd/32/columnwidth.png cmd/32/setminimalcolumnwidth.png +cmd/32/rowheight.png cmd/32/setminimalrowheight.png + +cmd/lc_columnwidth.png cmd/lc_setminimalcolumnwidth.png +cmd/lc_rowheight.png cmd/lc_setminimalrowheight.png + +cmd/sc_columnwidth.png cmd/sc_setminimalcolumnwidth.png +cmd/sc_rowheight.png cmd/sc_setminimalrowheight.png + +# calc toolbar previewbar +# ============================================== +cmd/32/exportasgraphic.png cmd/32/insertgraphic.png +cmd/32/margins.png cmd/32/pagemargin.png +cmd/32/namegroup.png cmd/32/renameobject.png + +cmd/lc_exportasgraphic.png cmd/lc_insertgraphic.png +cmd/lc_margins.png cmd/lc_pagemargin.png +cmd/lc_namegroup.png cmd/lc_renameobject.png + +cmd/sc_exportasgraphic.png cmd/sc_insertgraphic.png +cmd/sc_margins.png cmd/sc_pagemargin.png +cmd/sc_namegroup.png cmd/sc_renameobject.png + +# calc toolbar draw +# =============================================== +cmd/32/convertmenu.png cmd/32/bezierconvert.png +cmd/32/mirrormenu.png cmd/32/rotateleft.png +cmd/32/openhyperlinkoncursor.png cmd/32/inserthyperlink.png +cmd/32/rotateflipmenu.png cmd/32/rotateleft.png + +cmd/lc_convertmenu.png cmd/lc_bezierconvert.png +cmd/lc_mirrormenu.png cmd/lc_rotateleft.png +cmd/lc_openhyperlinkoncursor.png cmd/lc_inserthyperlink.png +cmd/lc_rotateflipmenu.png cmd/lc_rotateleft.png + +cmd/sc_convertmenu.png cmd/sc_bezierconvert.png +cmd/sc_mirrormenu.png cmd/sc_rotateleft.png +cmd/sc_openhyperlinkoncursor.png cmd/sc_inserthyperlink.png +cmd/sc_rotateflipmenu.png cmd/sc_rotateleft.png + +# writer +# =============================================== +cmd/32/addtextbox.png cmd/32/insertfixedtext.png +cmd/32/openxmlfiltersettings.png cmd/32/managexmlsource.png + +cmd/lc_addtextbox.png cmd/lc_insertfixedtext.png +cmd/lc_openxmlfiltersettings.png cmd/lc_managexmlsource.png + +cmd/sc_addtextbox.png cmd/sc_insertfixedtext.png +cmd/sc_openxmlfiltersettings.png cmd/sc_managexmlsource.png + +# Writer menu: MSO compatible Form menu +cmd/32/textformfield.png cmd/32/edit.png +cmd/32/checkboxformfield.png cmd/32/checkbox.png +cmd/32/dropdownformfield.png cmd/32/combobox.png +cmd/32/datepickerformfield.png cmd/32/datefield.png + +cmd/lc_textformfield.png cmd/lc_edit.png +cmd/lc_checkboxformfield.png cmd/lc_checkbox.png +cmd/lc_dropdownformfield.png cmd/lc_combobox.png +cmd/lc_datepickerformfield.png cmd/lc_datefield.png + +cmd/sc_textformfield.png cmd/sc_edit.png +cmd/sc_checkboxformfield.png cmd/sc_checkbox.png +cmd/sc_dropdownformfield.png cmd/sc_combobox.png +cmd/sc_datepickerformfield.png cmd/sc_datefield.png + +# menubar icons +cmd/32/com.sun.star.deployment.ui.packagemanagerdialog.png cmd/32/insertplugin.png +cmd/32/focustofindbar.png cmd/32/recsearch.png +cmd/32/formatobjectmenu.png cmd/32/text.png +cmd/32/macroorganizer%3ftabid%3ashort=1.png cmd/32/open.png +cmd/32/textattributes.png cmd/32/fontdialog.png + +cmd/lc_com.sun.star.deployment.ui.packagemanagerdialog.png cmd/lc_insertplugin.png +cmd/lc_focustofindbar.png cmd/lc_recsearch.png +cmd/lc_formatobjectmenu.png cmd/lc_text.png +cmd/lc_macroorganizer%3ftabid%3ashort=1.png cmd/lc_open.png +cmd/lc_textattributes.png cmd/lc_fontdialog.png + +cmd/sc_com.sun.star.deployment.ui.packagemanagerdialog.png cmd/sc_insertplugin.png +cmd/sc_focustofindbar.png cmd/sc_recsearch.png +cmd/sc_formatobjectmenu.png cmd/sc_text.png +cmd/sc_macroorganizer%3ftabid%3ashort=1.png cmd/sc_open.png +cmd/sc_textattributes.png cmd/sc_fontdialog.png + +# Edit menu +cmd/32/editpastespecialmenu.png cmd/32/pastespecial.png +cmd/32/insertcontents.png cmd/32/pastespecial.png +cmd/32/pastespecialmenu.png cmd/32/pastespecial.png + +cmd/lc_editpastespecialmenu.png cmd/lc_pastespecial.png +cmd/lc_insertcontents.png cmd/lc_pastespecial.png +cmd/lc_pastespecialmenu.png cmd/lc_pastespecial.png + +cmd/sc_editpastespecialmenu.png cmd/sc_pastespecial.png +cmd/sc_insertcontents.png cmd/sc_pastespecial.png +cmd/sc_pastespecialmenu.png cmd/sc_pastespecial.png + +# LibreLogo +cmd/32/librelogo-run.png cmd/32/runbasic.png +cmd/32/librelogo-stop.png cmd/32/basicstop.png +cmd/32/librelogo-translate.png cmd/32/editglossary.png + +cmd/lc_librelogo-run.png cmd/lc_runbasic.png +cmd/lc_librelogo-stop.png cmd/lc_basicstop.png +cmd/lc_librelogo-translate.png cmd/lc_editglossary.png + +cmd/sc_librelogo-run.png cmd/sc_runbasic.png +cmd/sc_librelogo-stop.png cmd/sc_basicstop.png +cmd/sc_librelogo-translate.png cmd/sc_editglossary.png + +cmd/sc_stars-full.png sc/res/icon-set-stars-full.png +cmd/sc_stars-empty.png sc/res/icon-set-stars-empty.png + +# Draw/Redaction Toolbar +cmd/32/redactionpreviewexport.png cmd/32/exportdirecttopdf.png +cmd/lc_redactionpreviewexport.png cmd/lc_exportdirecttopdf.png +cmd/sc_redactionpreviewexport.png cmd/sc_exportdirecttopdf.png + +# Contextual Single UI (Writer) +cmd/32/zoom-more.png cmd/32/controlproperties.png +cmd/32/accepttrackedchanges-more.png cmd/32/controlproperties.png +cmd/32/fontdialog-more.png cmd/32/controlproperties.png +cmd/32/paragraphdialog-more.png cmd/32/controlproperties.png +cmd/32/tabledialog-more.png cmd/32/controlproperties.png +cmd/32/transformdialog-more.png cmd/32/controlproperties.png +cmd/32/graphicdialog-more.png cmd/32/controlproperties.png +cmd/32/framedialog-more.png cmd/32/controlproperties.png +cmd/32/objectdialog-more.png cmd/32/controlproperties.png +cmd/32/borderdialog-more.png cmd/32/controlproperties.png +cmd/32/textwrap-more.png cmd/32/controlproperties.png +cmd/32/formatarea-more.png cmd/32/controlproperties.png +cmd/32/formatline-more.png cmd/32/controlproperties.png +cmd/lc_zoom-more.png cmd/lc_controlproperties.png +cmd/lc_accepttrackedchanges-more.png cmd/lc_controlproperties.png +cmd/lc_fontdialog-more.png cmd/lc_controlproperties.png +cmd/lc_paragraphdialog-more.png cmd/lc_controlproperties.png +cmd/lc_tabledialog-more.png cmd/lc_controlproperties.png +cmd/lc_transformdialog-more.png cmd/lc_controlproperties.png +cmd/lc_graphicdialog-more.png cmd/lc_controlproperties.png +cmd/lc_framedialog-more.png cmd/lc_controlproperties.png +cmd/lc_objectdialog-more.png cmd/lc_controlproperties.png +cmd/lc_borderdialog-more.png cmd/lc_controlproperties.png +cmd/lc_textwrap-more.png cmd/lc_controlproperties.png +cmd/lc_formatarea-more.png cmd/lc_controlproperties.png +cmd/lc_formatline-more.png cmd/lc_controlproperties.png +cmd/sc_zoom-more.png cmd/sc_controlproperties.png +cmd/sc_accepttrackedchanges-more.png cmd/sc_controlproperties.png +cmd/sc_fontdialog-more.png cmd/sc_controlproperties.png +cmd/sc_paragraphdialog-more.png cmd/sc_controlproperties.png +cmd/sc_tabledialog-more.png cmd/sc_controlproperties.png +cmd/sc_transformdialog-more.png cmd/sc_controlproperties.png +cmd/sc_graphicdialog-more.png cmd/sc_controlproperties.png +cmd/sc_framedialog-more.png cmd/sc_controlproperties.png +cmd/sc_objectdialog-more.png cmd/sc_controlproperties.png +cmd/sc_borderdialog-more.png cmd/sc_controlproperties.png +cmd/sc_textwrap-more.png cmd/sc_controlproperties.png +cmd/sc_formatarea-more.png cmd/sc_controlproperties.png +cmd/sc_formatline-more.png cmd/sc_controlproperties.png Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/reportdesign/res/sx10454.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/reportdesign/res/sx10454.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/reportdesign/res/sx10928.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/reportdesign/res/sx10928.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/reportdesign/res/sx10929.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/reportdesign/res/sx10929.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/reportdesign/res/sx12452.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/reportdesign/res/sx12452.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/reportdesign/res/sx12453.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/reportdesign/res/sx12453.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/reportdesign/res/sx12466.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/reportdesign/res/sx12466.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/reportdesign/res/sx12468.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/reportdesign/res/sx12468.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/reportdesign/res/sx12603.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/reportdesign/res/sx12603.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/basbrk.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/basbrk.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/base128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/base128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/base_thumbnail_256.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/base_thumbnail_256.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/basobj2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/basobj2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/baswatr.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/baswatr.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/calc128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/calc128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/colorsliderleft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/colorsliderleft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/colorsliderright.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/colorsliderright.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/component_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/component_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/da01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/da01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/da02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/da02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/da03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/da03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/da04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/da04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/da05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/da05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/da06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/da06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/dialogfolder_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/dialogfolder_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/dialogfoldernot_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/dialogfoldernot_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/draw128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/draw128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/fp010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/fp010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/fp015.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/fp015.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/fwthcirc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/fwthcirc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/grafikde.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/grafikde.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/harddisk_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/harddisk_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/helpimg/info.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/helpimg/info.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/helpimg/note.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/helpimg/note.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/helpimg/tip.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/helpimg/tip.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/helpimg/warning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/helpimg/warning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/hldocntp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/hldocntp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/hldoctp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/hldoctp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/im30822.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/im30822.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/im30823.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/im30823.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/im30827.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/im30827.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/im30838.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/im30838.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/im30839.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/im30839.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/im30840.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/im30840.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/im30841.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/im30841.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/impress128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/impress128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/javacomponent_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/javacomponent_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/javalibrary_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/javalibrary_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lc06303.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lc06303.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lftrgt.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lftrgt.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lock.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lock.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03123.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03123.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03125.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03125.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03126.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03126.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03127.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03127.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03129.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03129.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03130.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03130.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03131.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03131.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03132.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03132.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03135.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03135.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03161.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03161.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03162.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03162.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03163.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03163.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03166.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03166.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03243.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03243.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/lx03244.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/lx03244.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/main128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/main128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/mainapp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/mainapp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/mainapp_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/mainapp_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/mainapp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/mainapp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/mainapp_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/mainapp_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/mainapp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/mainapp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/math128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/math128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/minus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/minus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/notebookbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/notebookbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/note.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/note.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odb_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odb_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odb_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odb_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odb_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odb_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odb_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odb_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odf_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odf_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odf_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odf_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odg_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odg_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odg_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odg_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odm_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odm_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odm_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odm_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odm_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odm_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odm_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odm_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odp_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odp_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odp_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odp_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ods_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ods_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ods_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ods_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ods_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ods_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ods_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ods_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ods_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ods_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odt_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odt_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odt_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odt_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odt_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odt_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odt_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odt_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/odt_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/odt_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otf_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otf_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otf_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otf_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otf_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otf_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otf_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otf_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otf_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otf_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otg_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otg_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otg_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otg_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otg_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otg_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otg_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otg_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otg_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otg_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otp_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otp_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otp_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otp_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otp_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otp_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otp_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otp_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/otp_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/otp_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ots_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ots_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ots_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ots_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ots_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ots_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ots_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ots_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ots_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ots_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ott_16_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ott_16_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ott_24_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ott_24_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ott_32_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ott_32_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ott_48_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ott_48_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/ott_96_8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/ott_96_8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/plus.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/plus.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/recentdoc_remove_highlighted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/recentdoc_remove_highlighted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/recentdoc_remove.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/recentdoc_remove.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/savemodified_extralarge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/savemodified_extralarge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/savemodified_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/savemodified_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/savemodified_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/savemodified_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sc06303.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sc06303.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/script.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/script.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/soliline.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/soliline.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03123.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03123.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03125.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03125.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03126.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03126.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03127.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03127.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03129.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03129.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03130.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03130.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03131.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03131.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03132.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03132.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03135.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03135.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03161.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03161.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03162.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03162.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03163.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03163.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03166.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03166.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03187.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03187.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03201.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03201.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03243.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03243.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx03244.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx03244.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx16670.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx16670.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx18022.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx18022.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/sx18027.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/sx18027.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/target.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/target.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/tb01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/tb01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/tb02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/tb02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/tb03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/tb03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/tb04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/tb04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/tb05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/tb05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/templatestar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/templatestar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/topdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/topdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/versionwarning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/versionwarning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/writer128.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/writer128.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/res/xml_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/res/xml_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-bars-empty.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-bars-empty.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-bars-full.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-bars-full.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-bars-half.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-bars-half.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-bars-one-quarter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-bars-one-quarter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-bars-three-quarters.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-bars-three-quarters.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles1-gray.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles1-gray.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles1-green.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles1-green.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles1-red.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles1-red.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles1-yellow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles1-yellow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles2-dark-gray.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles2-dark-gray.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles2-dark-red.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles2-dark-red.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles2-light-gray.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles2-light-gray.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles2-light-red.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-circles2-light-red.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-colorarrows-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-colorarrows-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-colorarrows-same.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-colorarrows-same.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-colorarrows-slightly-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-colorarrows-slightly-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-colorarrows-slightly-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-colorarrows-slightly-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-colorarrows-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-colorarrows-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-flags-green.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-flags-green.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-flags-red.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-flags-red.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-flags-yellow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-flags-yellow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-grayarrows-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-grayarrows-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-grayarrows-same.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-grayarrows-same.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-grayarrows-slightly-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-grayarrows-slightly-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-grayarrows-slightly-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-grayarrows-slightly-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-grayarrows-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-grayarrows-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-negative-red-smilie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-negative-red-smilie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-negative-yellow-smilie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-negative-yellow-smilie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-neutral-yellow-smilie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-neutral-yellow-smilie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-pies-empty.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-pies-empty.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-pies-full.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-pies-full.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-pies-half.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-pies-half.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-pies-one-quarter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-pies-one-quarter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-pies-three-quarters.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-pies-three-quarters.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-positive-green-smilie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-positive-green-smilie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-positive-yellow-smilie.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-positive-yellow-smilie.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-shapes-circle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-shapes-circle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-shapes-diamond.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-shapes-diamond.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-shapes-triangle.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-shapes-triangle.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-squares-empty.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-squares-empty.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-squares-full.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-squares-full.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-squares-half.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-squares-half.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-squares-one-quarter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-squares-one-quarter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-squares-three-quarters.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-squares-three-quarters.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-stars-empty.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-stars-empty.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-stars-full.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-stars-full.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-stars-half.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-stars-half.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-symbols1-check.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-symbols1-check.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-symbols1-cross.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-symbols1-cross.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-symbols1-exclamation-mark.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-symbols1-exclamation-mark.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-trafficlights-green.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-trafficlights-green.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-trafficlights-red.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-trafficlights-red.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-trafficlights-yellow.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-trafficlights-yellow.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-triangles-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-triangles-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-triangles-same.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-triangles-same.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/icon-set-triangles-up.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/icon-set-triangles-up.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/lc26049.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/lc26049.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/lftrgt.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/lftrgt.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou011.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou011.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou012.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou012.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/ou09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/ou09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/paste_formats_only.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/paste_formats_only.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/paste_transpose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/paste_transpose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/paste_values_formats.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/paste_values_formats.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/paste_values_only.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/paste_values_only.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/popup_select_current.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/popup_select_current.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/popup_unselect_current.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/popup_unselect_current.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sc26049.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sc26049.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sf01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sf01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sf02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sf02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_All_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_All_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Bottom_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Bottom_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Bottom_Double_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Bottom_Double_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Empty_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Empty_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_FourBorders_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_FourBorders_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Left_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Left_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_LeftAndRight_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_LeftAndRight_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_005.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_005.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_110.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_110.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_250.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_250.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_260.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_260.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_400.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_400.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_450.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_450.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_500.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_500.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_505.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_505.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_750.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorderLineStyle_750.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Right_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Right_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_RightDiagonal_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_RightDiagonal_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Top_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_Top_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_TopAndBottom_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_TopAndBottom_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/fill_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/fill_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/sidebar/Line_color.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/sidebar/Line_color.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/topdown.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/topdown.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/xml_attribute.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/xml_attribute.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/xml_element.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/xml_element.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sc/res/xml_element_repeat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sc/res/xml_element_repeat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-box.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-box.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-checkerboard.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-checkerboard.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-comb.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-comb.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-cover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-cover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-cube-turning.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-cube-turning.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-cut.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-cut.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-diagonal-squares.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-diagonal-squares.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-dissolve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-dissolve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-fade.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-fade.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-fall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-fall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-finedissolve.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-finedissolve.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-glitter.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-glitter.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-honeycomb.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-honeycomb.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-iris.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-iris.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-newsflash.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-newsflash.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-none.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-none.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-push.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-push.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-random-bars.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-random-bars.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-random.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-random.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-revolving-circles.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-revolving-circles.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-ripple.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-ripple.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-rochade.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-rochade.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-shape.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-shape.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-split.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-split.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-static.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-static.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-tile-flip.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-tile-flip.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-turn-around.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-turn-around.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-turn-down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-turn-down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-turning-helix.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-turning-helix.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-uncover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-uncover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-venetian-blinds-3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-venetian-blinds-3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-venetian-blinds.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-venetian-blinds.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-vortex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-vortex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-wedge.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-wedge.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-wheel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-wheel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/cmd/transition-wipe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/cmd/transition-wipe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/chart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/chart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/click_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/click_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/del1bmp.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/del1bmp.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/delall.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/delall.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/docclose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/docclose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/docopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/docopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/doctext.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/doctext.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/effect_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/effect_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/effectfade_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/effectfade_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/effectole_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/effectole_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/effectpath_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/effectpath_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/effectshape_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/effectshape_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/fade_effect_indicator.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/fade_effect_indicator.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/foilh01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/foilh01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/foilh02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/foilh02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/foilh03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/foilh03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/foilh04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/foilh04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/foilh06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/foilh06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/foilh09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/foilh09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/foiln01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/foiln01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/foilnone.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/foilnone.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/get1obj.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/get1obj.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/getallob.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/getallob.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/hlplhorz.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/hlplhorz.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/hlplvert.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/hlplvert.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/hlppoint.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/hlppoint.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/image.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/image.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_empty.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_empty.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_head01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_head01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_head02a.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_head02a.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_head02b.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_head02b.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_head02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_head02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_head03a.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_head03a.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_head03b.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_head03b.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_head03c.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_head03c.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_head03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_head03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_head04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_head04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_head06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_head06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_textonly.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_textonly.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_vertical01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_vertical01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/layout_vertical02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/layout_vertical02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/minimize_presi_80.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/minimize_presi_80.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/nv08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/nv08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/object.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/object.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/objects.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/objects.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/orgchart.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/orgchart.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/pageexcl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/pageexcl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/pageobjs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/pageobjs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/pagobjex.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/pagobjex.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_chart_large_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_chart_large_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_chart_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_chart_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_chart_small_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_chart_small_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_chart_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_chart_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_image_large_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_image_large_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_image_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_image_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_image_small_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_image_small_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_image_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_image_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_movie_large_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_movie_large_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_movie_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_movie_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_movie_small_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_movie_small_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_movie_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_movie_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_table_large_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_table_large_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_table_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_table_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_table_small_hover.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_table_small_hover.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/placeholder_table_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/placeholder_table_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/pointericon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/pointericon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-Background.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-Background.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveBottomCallout.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveBottomCallout.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveBottomLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveBottomLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveBottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveBottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveBottomRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveBottomRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveTopLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveTopLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveTop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveTop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveTopRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderActiveTopRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderBottomLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderBottomLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderBottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderBottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderBottomRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderBottomRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarBottom.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarBottom.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarTopLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarTopLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarTop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarTop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarTopRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderToolbarTopRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderTopLeft.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderTopLeft.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderTop.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderTop.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderTopRight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-BorderTopRight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonEffectNextDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonEffectNextDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonEffectNextMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonEffectNextMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonEffectNextNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonEffectNextNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonEffectNextSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonEffectNextSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonExitPresenterMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonExitPresenterMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonExitPresenterNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonExitPresenterNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameCenterMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameCenterMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameCenterNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameCenterNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameLeftMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameLeftMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameLeftNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameLeftNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameRightMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameRightMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameRightNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonFrameRightNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonHelpMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonHelpMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonHelpNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonHelpNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonMinusDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonMinusDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonMinusMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonMinusMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonMinusMousOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonMinusMousOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonMinusNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonMinusNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonMinusSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonMinusSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonNotesDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonNotesDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonNotesMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonNotesMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonNotesNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonNotesNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonNotesSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonNotesSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPauseTimerMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPauseTimerMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPauseTimerNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPauseTimerNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPlusDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPlusDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPlusMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPlusMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPlusMousOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPlusMousOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPlusNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPlusNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPlusSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonPlusSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonRestartTimerMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonRestartTimerMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonRestartTimerNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonRestartTimerNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonResumeTimerMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonResumeTimerMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonResumeTimerNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonResumeTimerNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlidePreviousDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlidePreviousDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlidePreviousNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlidePreviousNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlidePreviousSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlidePreviousSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlideSorterDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlideSorterDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlideSorterMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlideSorterMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlideSorterNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlideSorterNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlideSorterSelected.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSlideSorterSelected.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSwitchMonitorNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ButtonSwitchMonitorNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowDownDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowDownDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowDownNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowDownNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowUpDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowUpDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowUpNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarArrowUpNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbBottomNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbBottomNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbTopDisabled.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbTopDisabled.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbTopNormal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ScrollbarThumbTopNormal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ViewBackground.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/presenterscreen-ViewBackground.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/sf01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/sf01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/sf02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/sf02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/slide_sorter_focus_border.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/slide_sorter_focus_border.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/slide_sorter_hide_slide_overlay.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/slide_sorter_hide_slide_overlay.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sd/res/table.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sd/res/table.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/128x128_math_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/actiontemplates017.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/actiontemplates017.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/actionview029.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/actionview029.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/chevron.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/chevron.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/grip.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/grip.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/hlpbookclosed.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/hlpbookclosed.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/hlpbookopen.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/hlpbookopen.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/indexoff_big.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/indexoff_big.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/indexoff_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/indexoff_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/indexon_big.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/indexon_big.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/indexon_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/indexon_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/menu.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/menu.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/placeholder.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/placeholder.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/signet.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/signet.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/symphony/morebutton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/symphony/morebutton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sfx2/res/symphony/open_more.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sfx2/res/symphony/open_more.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/closer.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/closer.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/ed01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/ed01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/ed02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/ed02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/ed03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/ed03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/ed04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/ed04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/ed05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/ed05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/ed07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/ed07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/ed08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/ed08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/info_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/info_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/info_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/info_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/list_add.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/list_add.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/triangle_down.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/triangle_down.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/triangle_right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/triangle_right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/up_large.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/up_large.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svtools/res/up_small.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svtools/res/up_small.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/blend3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/blend3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/border_cell_all_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/border_cell_all_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/border_cell_diag_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/border_cell_diag_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/border_cell_l_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/border_cell_l_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/border_cell_lr_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/border_cell_lr_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/border_cell_none_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/border_cell_none_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/border_cell_tb_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/border_cell_tb_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/brightlit_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/brightlit_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/cd02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/cd02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/cropmarkers.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/cropmarkers.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/dimlit_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/dimlit_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/directioneast_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/directioneast_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/directionnorth_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/directionnorth_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/directionnortheast_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/directionnortheast_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/directionnorthwest_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/directionnorthwest_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/directionsouth_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/directionsouth_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/directionsoutheast_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/directionsoutheast_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/directionsouthwest_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/directionsouthwest_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/directionstraight_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/directionstraight_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/directionwest_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/directionwest_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/doublesi.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/doublesi.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/extrusion05inch_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/extrusion05inch_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/extrusion0inch_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/extrusion0inch_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/extrusion1inch_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/extrusion1inch_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/extrusion2inch_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/extrusion2inch_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/extrusion4inch_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/extrusion4inch_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/extrusioninfinity_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/extrusioninfinity_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr011.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr011.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr012.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr012.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr013.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr013.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr014.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr014.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr015.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr015.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fr09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fr09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw011.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw011.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw012.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw012.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw013.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw013.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw014.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw014.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw015.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw015.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw016.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw016.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw017.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw017.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw018.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw018.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw019.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw019.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw020.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw020.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw021.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw021.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fw06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fw06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwbhcirc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwbhcirc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwbotarc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwbotarc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwbuttn1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwbuttn1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwbuttn2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwbuttn2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwbuttn3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwbuttn3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwbuttn4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwbuttn4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwlftarc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwlftarc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwlhcirc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwlhcirc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwrgtarc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwrgtarc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwrhcirc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwrhcirc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/fwtoparc.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/fwtoparc.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/galdefl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/galdefl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/galdefs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/galdefs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/galdetail.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/galdetail.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/galicon.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/galicon.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/galmedia.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/galmedia.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/galnorl.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/galnorl.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/galnors.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/galnors.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/galrdol.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/galrdol.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/galrdos.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/galrdos.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/id016.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/id016.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/invert3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/invert3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/legtyp4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/legtyp4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lght2sid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lght2sid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lightfrombottom_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lightfrombottom_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lightfrombottomleft_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lightfrombottomleft_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lightfrombottomright_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lightfrombottomright_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lightfromfront_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lightfromfront_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lightfromleft_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lightfromleft_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lightfromright_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lightfromright_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lightfromtop_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lightfromtop_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lightfromtopleft_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lightfromtopleft_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lightfromtopright_22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lightfromtopright_22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lighton.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lighton.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/light.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/light.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/listview.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/listview.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lo01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lo01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lo02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lo02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/lo03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/lo03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/markers.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/markers.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/material.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/material.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/matte_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/matte_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/metal_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/metal_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/modula3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/modula3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/normallit_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/normallit_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/normflat.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/normflat.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/normobjs.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/normobjs.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/normsphe.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/normsphe.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/notcheck.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/notcheck.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/nu04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/nu04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/objspc3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/objspc3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pageshadow35x35.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pageshadow35x35.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/parallel.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/parallel.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/plastic_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/plastic_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr011.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr011.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr012.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr012.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr013.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr013.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr014.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr014.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr015.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr015.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr016.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr016.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr017.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr017.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr018.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr018.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr019.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr019.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr020.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr020.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr021.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr021.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/pr09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/pr09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/rectbtns.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/rectbtns.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/replac3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/replac3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/selection_10x22.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/selection_10x22.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/sh01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/sh01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/sh02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/sh02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/sh03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/sh03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/sh04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/sh04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/sh05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/sh05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/shadow3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/shadow3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/shadow_bottom_left_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/shadow_bottom_left_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/shadow_bottom_right_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/shadow_bottom_right_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/shadow_none_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/shadow_none_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/shadow_top_left_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/shadow_top_left_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/shadow_top_right_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/shadow_top_right_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/slidezoombutton_10.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/slidezoombutton_10.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/slidezoomin_10.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/slidezoomin_10.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/slidezoomout_10.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/slidezoomout_10.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/sphere3d.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/sphere3d.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/axial.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/axial.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/blank.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/blank.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/ellipsoid.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/ellipsoid.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/Indent2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/Indent2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/Indent3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/Indent3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/Indent4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/Indent4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/last_custom_common_grey.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/last_custom_common_grey.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/last_custom_common.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/last_custom_common.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/line10.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/line10.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/line1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/line1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/line2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/line2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/line3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/line3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/line4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/line4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/line5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/line5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/line6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/line6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/line7.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/line7.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/line8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/line8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/line9.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/line9.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/linear.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/linear.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/Quadratic.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/Quadratic.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/radial.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/radial.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/rotate_left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/rotate_left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/rotate_right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/rotate_right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line10.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line10.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line7.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line7.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line9.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/selected-line9.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_loose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_loose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_loose_s.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_loose_s.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_normal.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_normal.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_normal_s.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_normal_s.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_tight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_tight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_tight_s.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_tight_s.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_very_loose.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_very_loose.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_very_loose_s.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_very_loose_s.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_very_tight.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_very_tight.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_very_tight_s.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/spacing_very_tight_s.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/Square.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/Square.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/width1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/width1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/width2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/width2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/width3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/width3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/width4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/width4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/width5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/width5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/width6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/width6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/width7.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/width7.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/symphony/width8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/symphony/width8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/wireframe_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/wireframe_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/zetlhor2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/zetlhor2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/zetlver2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/zetlver2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/svx/res/zoom_page_statusbar.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/svx/res/zoom_page_statusbar.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/all_left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/all_left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/all_right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/all_right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envhc_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envhc_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envhc_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envhc_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envhl_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envhl_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envhl_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envhl_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envhr_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envhr_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envhr_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envhr_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envvc_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envvc_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envvc_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envvc_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envvl_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envvl_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envvl_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envvl_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envvr_l.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envvr_l.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/envvr_u.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/envvr_u.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/nc20000.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/nc20000.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/one_left.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/one_left.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/one_right.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/one_right.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/re01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/re01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/re02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/re02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/re03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/re03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/re04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/re04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/redline_deleted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/redline_deleted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/redline_fmtcollset.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/redline_fmtcollset.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/redline_formatted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/redline_formatted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/redline_inserted.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/redline_inserted.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/redline_tablechg.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/redline_tablechg.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sc20234.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sc20234.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sc20236.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sc20236.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sc20245.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sc20245.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sc20246.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sc20246.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sc20248.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sc20248.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sf01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sf01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sf03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sf03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sf05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sf05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column1_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column1_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column2_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column2_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column3_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column3_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/columncopy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/columncopy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_1_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_1_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_2_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_2_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_3_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_3_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_copy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_copy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/columnleft_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/columnleft_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_left_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_left_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_right_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/column_L_right_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/columnright_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/columnright_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/formatcopy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/formatcopy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/format_L_copy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/format_L_copy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/format_L_wide_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/format_L_wide_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/formatmirror_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/formatmirror_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/formatnarrow_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/formatnarrow_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/formatnormal_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/formatnormal_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/formatwide_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/formatwide_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/portraitcopy_24x24.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sidebar/pageproppanel/portraitcopy_24x24.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sr20012.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sr20012.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sr20018.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sr20018.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/sr20019.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/sr20019.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr010.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr010.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr011.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr011.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr01.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr01.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr02.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr02.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr03.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr03.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr04.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr04.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr05.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr05.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr06.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr06.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr07.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr07.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr08.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr08.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/sw/res/wr09.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/sw/res/wr09.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/check1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/check1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/check2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/check2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/check3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/check3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/check4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/check4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/check5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/check5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/check6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/check6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/check7.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/check7.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/check8.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/check8.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/check9.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/check9.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/collate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/collate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/errorbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/errorbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/fatcross.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/fatcross.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/infobox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/infobox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/MergeEmptyHidden.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/MergeEmptyHidden.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/MergeFirstCell.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/MergeFirstCell.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/MergeKeepHidden.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/MergeKeepHidden.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/ncollate.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/ncollate.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/querybox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/querybox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/radio1.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/radio1.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/radio2.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/radio2.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/radio3.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/radio3.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/radio4.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/radio4.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/radio5.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/radio5.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/radio6.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/radio6.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/successbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/successbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/vcl/res/warningbox.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/vcl/res/warningbox.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/wizards/res/formarrangefree_42.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/wizards/res/formarrangefree_42.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/wizards/res/formarrangelistside_42.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/wizards/res/formarrangelistside_42.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/wizards/res/formarrangelisttop_42.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/wizards/res/formarrangelisttop_42.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/wizards/res/formarrangetable_42.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/wizards/res/formarrangetable_42.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/wizards/res/landscape_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/wizards/res/landscape_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/wizards/res/portrait_32.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/wizards/res/portrait_32.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/xmlsecurity/res/certificate_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/xmlsecurity/res/certificate_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/xmlsecurity/res/certificate_40x56.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/xmlsecurity/res/certificate_40x56.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/xmlsecurity/res/notcertificate_16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/xmlsecurity/res/notcertificate_16.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/xmlsecurity/res/notcertificate_40x56.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/xmlsecurity/res/notcertificate_40x56.png differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark/xmlsecurity/res/signet_11x16.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark/xmlsecurity/res/signet_11x16.png differ diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/AUTHORS libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/AUTHORS --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/AUTHORS 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/AUTHORS 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,19 @@ +------------------------ Sukapura Icon Theme for LibreOffice ------------------------ +Copyright (c) 2019-2023 Rizal Muttaqin + +Sukapura whose the name is taken after a kingdom of my hometown Tasikmalaya is +derived from Colibre, designed to fit macOS desktop. + +The Colibre Icon Theme in icons/ + + Original author: Andreas Kainz + + Icon theme is released under Creative Commons CC0 + You are free to adapt and use them for commercial purposes + without attributing the original author or source. Although + not required, a link back to LibreOffice is appreciated. + + For additional Information go to the Creative Commons webpage + https://creativecommons.org/publicdomain/zero/1.0/ + +------------------------ Sukapura Icon Theme for LibreOffice ------------------------ diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/avmedia/res/avaudiologo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/avmedia/res/avaudiologo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/avmedia/res/avaudiologo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/avmedia/res/avaudiologo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/avmedia/res/avemptylogo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/avmedia/res/avemptylogo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/avmedia/res/avemptylogo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/avmedia/res/avemptylogo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areas3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areas3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areas3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areas3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areas_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areas_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areas_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areas_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areasfull3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areasfull3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areasfull3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areasfull3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areasfull_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areasfull_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areasfull_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areasfull_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areaspiled3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areaspiled3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areaspiled3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areaspiled3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areaspiled_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areaspiled_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/areaspiled_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/areaspiled_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar3ddeep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar3ddeep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar3ddeep_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar3ddeep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/bar_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/barpercent3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/barpercent3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/barpercent3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/barpercent3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/barpercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/barpercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/barpercent_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/barpercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/barstack3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/barstack3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/barstack3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/barstack3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/barstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/barstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/barstack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/barstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/bubble_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/bubble_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/bubble_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/bubble_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnline_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnline_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnline_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnline_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnpercent3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnpercent3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnpercent3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnpercent3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnpercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnpercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnpercent_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnpercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns3ddeep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns3ddeep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns3ddeep_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns3ddeep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columns_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstack3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstack3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstack3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstack3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstackline_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstackline_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstackline_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/columnstackline_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cone_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cone_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cone_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cone_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conedeep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conedeep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conedeep_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conedeep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehori_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehori_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehori_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehori_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehorideep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehorideep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehorideep_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehorideep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehoripercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehoripercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehoripercent_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehoripercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehoristack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehoristack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conehoristack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conepercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conepercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conepercent_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conepercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conestack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conestack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/conestack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/conestack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinder_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinder_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinder_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinder_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderdeep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderdeep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderdeep_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderdeep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhori_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhori_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhori_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhori_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhorideep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhorideep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhorideep_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhorideep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhoriprocent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhoriprocent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhoriprocent_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhoriprocent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhoristack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhoristack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhoristack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderhoristack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderpercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderpercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderpercent_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderpercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderstack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/cylinderstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon06.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon07.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon08.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon09.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/dataeditor_icon09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut3dexploded_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut3dexploded_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut3dexploded_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut3dexploded_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/donut_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/donutexploded_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/donutexploded_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/donutexploded_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/donutexploded_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorbothhori_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorbothhori_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorbothhori_30.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorbothhori_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorbothverti_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorbothverti_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorbothverti_30.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorbothverti_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errordown_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errordown_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errordown_30.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errordown_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorleft_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorleft_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorleft_30.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorleft_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorright_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorright_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorright_30.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorright_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorup_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorup_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorup_30.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/errorup_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/net_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/net_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/net_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/net_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netfill_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netfill_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netfill_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netfill_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netlinepoint_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netlinepoint_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netlinepointstack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netlinepointstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netpoint_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netpoint_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netpoint_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netpointstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netpointstack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netpointstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netstack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netstackfill_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netstackfill_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/netstackfill_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/netstackfill_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirect3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirect3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirect3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirect3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectboth_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectlines_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectpoints_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectpoints_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectpoints_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackdirectpoints_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmooth3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmooth3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmooth3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmooth3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmoothboth_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmoothlines_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackstepped3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackstepped3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackstepped3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostackstepped3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksteppedboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksteppedboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksteppedboth_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksteppedboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksteppedlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksteppedlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksteppedlines_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/nostacksteppedlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,15 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie3dexploded_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie3dexploded_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie3dexploded_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie3dexploded_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,15 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pie_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,15 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pieexploded_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pieexploded_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pieexploded_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pieexploded_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,15 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramind_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramind_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramind_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramind_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyraminddeep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyraminddeep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyraminddeep_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyraminddeep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhori_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhori_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhori_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhori_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhorideep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhorideep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhorideep_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhorideep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhoripercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhoripercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhoripercent_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhoripercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhoristack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhoristack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhoristack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindhoristack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindpercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindpercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindpercent_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindpercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindstack_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/pyramindstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/regavg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/regavg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/regavg.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/regavg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/regexp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/regexp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/regexp.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/regexp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/reglin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/reglin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/reglin.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/reglin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/reglog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/reglog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/reglog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/reglog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/regno.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/regno.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/regno.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/regno.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/regpoly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/regpoly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/regpoly.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/regpoly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/regpow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/regpow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/regpow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/regpow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirect3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirect3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectboth_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectlines_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectpoints_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmooth3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmoothboth_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmoothlines_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackstepped3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stackstepped3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksteppedboth_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksteppedlines_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_center_x_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_center_x_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_center_x_30.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_center_x_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_center_y_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_center_y_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_center_y_30.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_center_y_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_end_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_end_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_end_30.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_end_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_start_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_start_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_start_30.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/step_start_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stock_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stock_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stock_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stock_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockblock_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockblock_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockblock_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockblock_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockcolumns_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockcolumns_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockcolumns_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockcolumns_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockcolumnsattach_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockcolumnsattach_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockcolumnsattach_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/stockcolumnsattach_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typearea_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typearea_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typearea_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typearea_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typebar_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typebar_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typebar_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typebar_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typebubble_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typebubble_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typebubble_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typebubble_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typecolumn_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typecolumn_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typecolumn_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typecolumn_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typecolumnline_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typecolumnline_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typecolumnline_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typecolumnline_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typenet_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typenet_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typenet_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typenet_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typepie_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typepie_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typepie_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typepie_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typepointline_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typepointline_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typepointline_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typepointline_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typestock_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typestock_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typestock_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typestock_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typexy_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typexy_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/typexy_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/typexy_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirect3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectboth_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectlines_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectpoints_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmooth3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmoothboth_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmoothlines_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisstepped3d_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,24 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissteppedboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissteppedboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissteppedboth_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissteppedboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,24 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissteppedlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissteppedlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissteppedlines_52x60.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/chart2/res/valueaxissteppedlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,24 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/absoluterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent1cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent1cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent1cellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent1cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent2cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent2cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent2cellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent2cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent3cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent3cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent3cellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accent3cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/acceptalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/acceptalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/acceptalltrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/acceptalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchangetonext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/accepttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/actionmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/actionmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/actionmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/actionmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/adddirect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/adddirect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/adddirect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/adddirect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/additionsdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/additionsdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/additionsdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/additionsdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addressbooksource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addressbooksource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addressbooksource.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addressbooksource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addtable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addwatch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addwatch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/addwatch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/addwatch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/advancedmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/advancedmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/advancedmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/advancedmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignblock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignblock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignblock.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignblock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligncenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligndown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligndown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligndown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligndown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignhorizontalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignhorizontalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignhorizontalcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignhorizontalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignmiddle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignmiddle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignmiddle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignmiddle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligntop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/aligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignverticalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignverticalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignverticalcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alignverticalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alphaliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/alphalowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationeffects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationeffects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationeffects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationeffects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/animationobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/absoluterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/alphaliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/alphalowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/bulletsandnumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/chapternumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/continuenumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/defaultbullet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/defaultnumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/deleterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/insertneutralparagraph.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/linenumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/newrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/numberingstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/recsave.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/removebullets.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/romanliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/romanlowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/setoutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ar/setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.chevron.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.chevron.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.chevron.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.chevron.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.circular-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.circular-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.circular-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.circular-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.corner-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.corner-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.corner-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.corner-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.down-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.down-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-right-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.left-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.notched-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.notched-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.notched-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.notched-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.pentagon-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.pentagon-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.pentagon-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.pentagon-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.quad-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.quad-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.quad-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.quad-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.quad-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.quad-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.quad-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.quad-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.right-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.split-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.split-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.split-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.split-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.split-round-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.split-round-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.split-round-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.split-round-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.s-sharped-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.s-sharped-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.s-sharped-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.s-sharped-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.striped-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.striped-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.striped-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.striped-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-down-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-down-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-down-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/arrowshapes.up-right-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/assignlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/assignlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/assignlayout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/assignlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/assignmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/assignmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/assignmacro.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/assignmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/attributepagesize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/attributepagesize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/attributepagesize.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/attributepagesize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/auditingfillmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/auditingfillmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/auditingfillmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/auditingfillmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/auditmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/auditmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/auditmenu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/auditmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autocontrolfocus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autocontrolfocus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autocontrolfocus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autocontrolfocus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autocorrectdlg.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autoformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autoformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autoformat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autoformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autooutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autooutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autooutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autooutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autopilotmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autopilotmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autopilotmenu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autopilotmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autoredactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autoredactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autoredactdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autoredactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autosum.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autosum.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/autosum.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/autosum.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/avmediaplayer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/avmediaplayer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/avmediaplayer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/avmediaplayer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/backcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/backcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/backcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/backcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/backgroundcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/backgroundcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/backgroundcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/backgroundcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/backward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/backward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/backward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/backward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicideappear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicideappear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicideappear.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicideappear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.block-arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.block-arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.block-arc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.block-arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.can.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.can.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.can.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.can.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.cross.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.cross.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.cross.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.cross.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.cube.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.diamond.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.diamond.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.diamond.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.diamond.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.frame.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.frame.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.frame.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.frame.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.hexagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.hexagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.hexagon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.hexagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.isosceles-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.isosceles-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.isosceles-triangle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.isosceles-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.octagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.octagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.octagon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.octagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.paper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.paper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.paper.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.paper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.pentagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.pentagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.pentagon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.pentagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.right-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.right-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.right-triangle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.right-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.ring.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.ring.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.ring.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.ring.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.round-quadrat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.round-quadrat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.round-quadrat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.round-quadrat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.trapezoid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.trapezoid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.trapezoid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicshapes.trapezoid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepinto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepinto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepinto.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepinto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstepover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/basicstop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beforeobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beforeobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beforeobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beforeobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/behindobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/behindobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/behindobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/behindobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierappend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierappend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierappend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierappend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierclose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierclose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierclose.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierclose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierconvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierconvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierconvert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierconvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziercutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziercutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziercutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziercutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierdelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezieredge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezieredge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezieredge.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezieredge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziereliminatepoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziereliminatepoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziereliminatepoints.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziereliminatepoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierfill.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierfill.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierfill.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierfill.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierinsert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierinsert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierinsert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezierinsert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziermove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziermove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziermove.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziermove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziersmooth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziersymmetric.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziersymmetric.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziersymmetric.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/beziersymmetric.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezier_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezier_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezier_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bezier_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/autocorrectdlg.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/backcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/backcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/backcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/backcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/doubleclicktextedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/edit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/hyphenate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/insertfixedtext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/label.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/pickthrough.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/quickedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/sortascending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/sortdescending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/spelling.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/spellonline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/strikeout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/text.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/wordcountdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bg/wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bibliographycomponent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bibliographycomponent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bibliographycomponent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bibliographycomponent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bmpmask.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bmpmask.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bmpmask.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bmpmask.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/borderdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/borderdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/borderdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/borderdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/break.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/break.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/break.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/break.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bringtofront.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bringtofront.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bringtofront.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bringtofront.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/browseview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/browseview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/browseview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/browseview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bulletsandnumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/bullet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/bullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calculate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calculate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calculate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calculate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.cloud-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.cloud-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.cloud-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.cloud-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.line-callout-3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.rectangular-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.rectangular-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.rectangular-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.rectangular-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.round-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.round-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.round-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.round-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/calloutshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cancel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cancel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cancel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cancel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/capturepoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/capturepoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/capturepoint.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/capturepoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cellprotection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cellprotection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cellprotection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cellprotection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/chainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/chainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/chainframes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/chainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changebezier.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changebezier.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changebezier.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changebezier.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changecasetolower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changecasetolower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changecasetolower.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changecasetolower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changecasetoupper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changecasetoupper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changecasetoupper.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changecasetoupper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changedatabasefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changedatabasefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changedatabasefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changedatabasefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changepicture.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changepicture.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changepicture.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changepicture.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/changepolygon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/changepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/chapternumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/charfontname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/charmapcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/charmapcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/charmapcontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/charmapcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/checkbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/checkbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/checkbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/checkbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosecontrols.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosedesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosedesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosedesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosedesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosemacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosemacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosemacro.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosemacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosepolygon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/choosepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlearc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlearc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlearc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlearc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlecut.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlecut_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlepie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlepie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlepie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlepie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlepie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlepie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlepie_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circlepie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circle_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circle_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/circle_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/circle_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrowdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrowdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrowdependents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrowdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrowprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrowprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrowprecedents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrowprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cleararrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/closedocs.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/closedocs.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/closedocs.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/closedocs.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/closedoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/closedoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/closedoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/closedoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/closemasterview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/closemasterview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/closemasterview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/closemasterview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/closepreview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/closepreview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/closepreview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/closepreview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/colorscaleformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/colorscaleformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/colorscaleformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/colorscaleformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/colorsettings.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/colorsettings.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/colorsettings.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/colorsettings.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/color.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/combine.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/combine.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/combine.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/combine.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/combobox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/combobox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/combobox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/combobox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/commentchangetracking.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/commentchangetracking.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/commentchangetracking.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/commentchangetracking.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/comparedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/comparedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/comparedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/comparedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/compilebasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/compilebasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/compilebasic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/compilebasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/compressgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/compressgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/compressgraphic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/compressgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/conddateformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/conddateformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/conddateformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/conddateformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/conditionalformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/conditionalformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/conditionalformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/conditionalformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cone.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cone.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cone.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cone.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/configuredialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/configuredialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/configuredialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/configuredialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcircles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcircles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcircles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcircles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecircles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecircles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecircles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecircles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurvecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorcurve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinecircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinecirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinesarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinescircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinescircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinescircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinescircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinescirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinescirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinescirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlinescirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlines.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlines.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlines.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorlines.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connectorline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connector.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/connect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/connect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,58 @@ + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/continuenumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/contourdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/contourdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/contourdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/contourdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/controlcodes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/controlcodes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/controlcodes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/controlcodes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/controlproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/controlproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/controlproperties.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/controlproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/convertinto3dlathe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/convertinto3dlathe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/convertinto3dlathe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/convertinto3dlathe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/convertinto3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/convertinto3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/convertinto3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/convertinto3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/copyobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/copyobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/copyobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/copyobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/copy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/copy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/copy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/copy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/crookrotate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/crookrotate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/crookrotate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/crookrotate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/crookslant.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/crookslant.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/crookslant.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/crookslant.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/crop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/crop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/crop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/crop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cube.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/currencyfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/currencyfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/currencyfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/currencyfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/customshowdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/customshowdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/customshowdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/customshowdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cut.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cylinder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cylinder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cylinder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cylinder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cyramid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cyramid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/cyramid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/cyramid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataarearefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataarearefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataarearefresh.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataarearefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/databarformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/databarformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/databarformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/databarformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataconsolidate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataconsolidate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataconsolidate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataconsolidate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datadatapilotrun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datadatapilotrun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datadatapilotrun.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datadatapilotrun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterautofilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterautofilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterautofilter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterautofilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterspecialfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterspecialfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterspecialfilter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterspecialfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterstandardfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterstandardfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterstandardfilter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datafilterstandardfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataform.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataimport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataimport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataimport.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataimport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataincolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataincolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataincolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataincolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datainrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datainrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datainrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datainrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataproviderrefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataproviderrefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataproviderrefresh.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataproviderrefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataprovider.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataprovider.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataprovider.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataprovider.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataranges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataranges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataranges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dataranges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datasort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datasort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datasort.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datasort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datastreams.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datastreams.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datastreams.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datastreams.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datasubtotals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datasubtotals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datasubtotals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datasubtotals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/datefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/datefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbaddrelation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbaddrelation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbaddrelation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbaddrelation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbchangedesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbchangedesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbchangedesignmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbchangedesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbclearquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbclearquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbclearquery.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbclearquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbdistinctvalues.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbdistinctvalues.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbdistinctvalues.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbdistinctvalues.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformdelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformrename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbformrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbindexdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbindexdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbindexdesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbindexdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewform.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewquerysql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewquerysql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewquerysql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewquerysql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewquery.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewreport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewreport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewreport.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewreport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewtable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewviewsql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewviewsql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewviewsql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewviewsql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbnewview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbquerydelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbquerydelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbquerydelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbquerydelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbquerypropertiesdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbquerypropertiesdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbquerypropertiesdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbquerypropertiesdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryrename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbqueryrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbrelationdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbrelationdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbrelationdesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbrelationdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportdelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportrename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbreportrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbsortingandgrouping.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbsortingandgrouping.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbsortingandgrouping.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbsortingandgrouping.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtabledelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtabledelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtabledelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtabledelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtableedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtableedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtableedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtableedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtableopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtableopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtableopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtableopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtablerename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtablerename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtablerename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbtablerename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewaliases.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewaliases.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewaliases.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewaliases.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewforms.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewforms.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewforms.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewforms.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewfunctions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewfunctions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewfunctions.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewfunctions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewqueries.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewqueries.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewqueries.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewqueries.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewreports.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewreports.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewreports.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewreports.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewtablenames.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewtablenames.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewtablenames.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewtablenames.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewtables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewtables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewtables.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dbviewtables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatdecdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatdecimal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatincdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatthousands.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/de/numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementindent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementlevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementsublevels.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/decrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultbullet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultcharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultcharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultcharstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultcharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultnumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/definedbname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/definedbname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/definedbname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/definedbname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/definename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/definename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/definename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/definename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/defineprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/defineprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/defineprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/defineprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteallannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteallannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteallannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteallannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteallbreaks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteallbreaks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteallbreaks.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteallbreaks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletecell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletecolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletemasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletepivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletepivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletepivottable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletepivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleterows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleterows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleterows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleterows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deleteslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/delete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/delete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/delete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/delete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletetable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/deletetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/designerdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/developmenttoolsdockingwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/developmenttoolsdockingwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/developmenttoolsdockingwindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/developmenttoolsdockingwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diaeffect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diaeffect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diaeffect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diaeffect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxis.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxis.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxis.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxis.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisx.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisx.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisx.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisx.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisxyz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisxyz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisxyz.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisxyz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisz.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramaxisz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramdata.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramtype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramtype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramtype.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramtype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramwall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramwall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramwall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diagramwall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diamode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diamode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diamode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diamode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diaspeed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diaspeed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diaspeed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diaspeed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dia.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diatime.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diatime.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/diatime.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/diatime.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dismantle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dismantle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dismantle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dismantle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymasterbackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymasterbackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymasterbackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymasterbackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymasterobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymasterobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymasterobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymasterobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/displaymode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributecolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzdistance.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributehorzright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributerows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributerows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributerows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributerows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributeselection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributeselection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributeselection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributeselection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertdistance.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributevertdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributeverttop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributeverttop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributeverttop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/distributeverttop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/documentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/documentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/documentation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/documentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/doubleclicktextedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/downsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/downsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/downsearch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/downsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/drawcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/drawcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/drawcaption.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/drawcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/drawchart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/drawchart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/drawchart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/drawchart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dsbinsertcontent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dsbinsertcontent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dsbinsertcontent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dsbinsertcontent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dsbrowserexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dsbrowserexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/dsbrowserexplorer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/dsbrowserexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicatepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicatepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicatepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicatepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicatesheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicatesheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicatesheet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicatesheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicateslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicateslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicateslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/duplicateslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editcurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editcurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editcurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editframeset.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editframeset.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editframeset.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editframeset.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editglossary.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editglossary.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editglossary.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editglossary.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editheaderandfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editheaderandfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editheaderandfooter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editheaderandfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/edithyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/edithyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/edithyperlink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/edithyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editqrcode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/editstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/edit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipsecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipsecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipsecut.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipsecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipsecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipsecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipsecut_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipsecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipse_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipse_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipse_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ellipse_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/emojicontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/emojicontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/emojicontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/emojicontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/emphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/emphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/emphasischarstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/emphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/entergroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/entergroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/entergroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/entergroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirecell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirecolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirerow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirerow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirerow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/entirerow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/equalizeheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/equalizeheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/equalizeheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/equalizeheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/equalizewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/equalizewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/equalizewidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/equalizewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/errorcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/errorcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/errorcellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/errorcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/es/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/euroconverter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/euroconverter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/euroconverter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/euroconverter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/executereport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/executereport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/executereport.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/executereport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/expandpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/expandpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/expandpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/expandpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdirecttoepub.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdirecttoepub.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdirecttoepub.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdirecttoepub.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdirecttopdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdirecttopdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdirecttopdf.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportdirecttopdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportto.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/exportto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extendedhelp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extendedhelp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extendedhelp.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extendedhelp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusion3dcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusion3dcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusion3dcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusion3dcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiondepthfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiondepthfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiondepthfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiondepthfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiondirectionfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiondirectionfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiondirectionfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiondirectionfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusionlightingfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusionlightingfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusionlightingfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusionlightingfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusionsurfacefloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusionsurfacefloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusionsurfacefloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusionsurfacefloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltdown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/extrusiontiltup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fields.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/filecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/filecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/filecontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/filecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/filedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/filedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/filedocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/filedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/filefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/filefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/filefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/filefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/filldown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/filldown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/filldown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/filldown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillshadow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillshadow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillshadow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillshadow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fillup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/firstslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-card.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-card.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-card.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-card.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-collate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-collate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-collate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-collate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-data.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-decision.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-decision.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-decision.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-decision.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-delay.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-delay.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-delay.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-delay.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-direct-access-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-direct-access-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-direct-access-storage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-direct-access-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-display.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-display.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-display.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-display.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-document.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-document.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-document.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-document.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-internal-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-internal-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-internal-storage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-internal-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-manual-input.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-manual-input.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-manual-input.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-manual-input.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-multidocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-multidocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-multidocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-multidocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-off-page-connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-off-page-connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-off-page-connector.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-off-page-connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-or.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-or.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-or.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-or.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-predefined-process.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-predefined-process.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-predefined-process.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-predefined-process.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-preparation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-preparation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-preparation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-preparation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-punched-tape.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-punched-tape.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-punched-tape.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-punched-tape.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-sequential-access.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-sequential-access.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-sequential-access.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-sequential-access.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-sort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-sort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-sort.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-sort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-stored-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-stored-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-stored-data.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-stored-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-summing-junction.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-summing-junction.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-summing-junction.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-summing-junction.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-terminator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-terminator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-terminator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.flowchart-terminator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/flowchartshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkgalleryfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkgalleryfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkgalleryfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkgalleryfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworksameletterheights.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworksameletterheights.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworksameletterheights.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworksameletterheights.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-down-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-down-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-down-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-down-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-down-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-down-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-down-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-down-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-left-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-left-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-left-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-left-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-left-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-left-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-left-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-left-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-right-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-right-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-right-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-right-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-right-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-right-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-right-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-right-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-up-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-up-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-up-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-up-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-up-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-up-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-up-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-arch-up-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-chevron-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-chevron-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-chevron-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-chevron-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-chevron-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-chevron-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-chevron-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-chevron-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-circle-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-curve-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-curve-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-curve-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-curve-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-curve-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-curve-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-curve-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-curve-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-fade-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-inflate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-inflate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-inflate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-inflate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-open-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-open-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-open-circle-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-open-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-open-circle-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-open-circle-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-open-circle-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-open-circle-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-plain-text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-plain-text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-plain-text.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-plain-text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-slant-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-slant-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-slant-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-slant-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-slant-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-slant-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-slant-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-slant-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-stop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-stop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-stop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-stop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-triangle-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-triangle-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-triangle-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-triangle-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-wave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-wave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-wave.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontworkshapetype.fontwork-wave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontwork.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontwork.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontwork.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fontwork.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/footnotedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/footnotedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/footnotedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/footnotedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatcelldialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatcelldialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatcelldialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatcelldialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatcolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatgroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatpaintbrush.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatpaintbrush.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatpaintbrush.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatpaintbrush.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formattedfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formattedfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formattedfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formattedfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatungroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formatungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formdesigntools.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formdesigntools.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formdesigntools.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formdesigntools.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formelcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formelcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formelcursor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formelcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formfiltered.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formfiltered.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formfiltered.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formfiltered.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formfilternavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formfilternavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formfilternavigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formfilternavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/formproperties.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/formproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/forward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/forward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/forward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/forward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fr/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fr/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fr/bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fr/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/framedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/framedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/framedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/framedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/framelinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/framelinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/framelinecolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/framelinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/freeline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/freeline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/freeline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/freeline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/freeline_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/freeline_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/freeline_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/freeline_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanesfirstcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanesfirstcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanesfirstcolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanesfirstcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanesfirstrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanesfirstrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanesfirstrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanesfirstrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/freezepanes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fullscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fullscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/fullscreen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/fullscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gallery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gallery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gallery.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gallery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueeditmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueeditmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueeditmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueeditmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectionright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectiontop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectiontop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectiontop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueescapedirectiontop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzaligncenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzalignleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzalignright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluehorzalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueinsertpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueinsertpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueinsertpoint.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/glueinsertpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluepercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluepercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluepercent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluepercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertalignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertalignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertalignbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertalignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertaligncenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertaligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertaligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertaligntop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gluevertaligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/goalseekdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/goalseekdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/goalseekdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/goalseekdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotoendofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotoendofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotoendofdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotoendofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotoend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotoend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotoend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotoend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotopage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotopage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotopage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotopage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotostartofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotostartofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotostartofdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotostartofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotostartoftable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotostartoftable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotostartoftable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gotostartoftable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafblue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafblue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafblue.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafblue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafcontrast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafcontrast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafcontrast.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafcontrast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafgamma.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafgamma.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafgamma.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafgamma.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafgreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafgreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafgreen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafgreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafluminance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafluminance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafluminance.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafluminance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafred.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafred.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafred.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grafred.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graftransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graftransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graftransparence.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graftransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterinvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterinvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterinvert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterinvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltermosaic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltermosaic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltermosaic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltermosaic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterpopart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterpopart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterpopart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterpopart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterposter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterposter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterposter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterposter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterrelief.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterrelief.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterrelief.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterrelief.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterremovenoise.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterremovenoise.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterremovenoise.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfilterremovenoise.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersepia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersepia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersepia.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersepia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersharpen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersharpen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersharpen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersharpen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersmooth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersobel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersobel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersobel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersobel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersolarize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersolarize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersolarize.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphicfiltersolarize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/graphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/greatestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/greatestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/greatestheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/greatestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/greatestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/greatestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/greatestwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/greatestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/griduse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/griduse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/griduse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/griduse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gridvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gridvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/gridvisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/gridvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/groupbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/groupbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/groupbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/groupbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/group.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/group.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/group.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/group.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/grow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/grow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/halfsphere.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/halfsphere.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/halfsphere.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/halfsphere.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/handoutmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/handoutmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/handoutmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/handoutmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hangingindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hangingindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hangingindent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hangingindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading1parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading1parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading1parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading1parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading2parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading2parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading2parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading2parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading3parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading3parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading3parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading3parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading4parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading4parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading4parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading4parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading5parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading5parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading5parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading5parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading6parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading6parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading6parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/heading6parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/helpindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/helpindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/helpindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/helpindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesmove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesmove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesmove.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesmove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesuse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesuse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesuse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesuse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesvisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/helplinesvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hfixedline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hideallnotes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hideallnotes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hideallnotes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hideallnotes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidecolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidedetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidedetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidedetail.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidedetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidenote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidenote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidenote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidenote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hiderow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hiderow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hiderow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hiderow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hideslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hideslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hideslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hideslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidewhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidewhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidewhitespace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hidewhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hscrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hscrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hscrollbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hscrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hu/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/hyphenate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/iconsetformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/iconsetformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/iconsetformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/iconsetformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagebutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagebutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagebutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagebutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagecontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagemapdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagemapdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagemapdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/imagemapdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/importdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/importdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/importdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/importdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/importfromfile.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/importfromfile.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/importfromfile.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/importfromfile.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementindent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementlevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementsublevels.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/incrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inputlinevisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inputlinevisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inputlinevisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inputlinevisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inscellsctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inscellsctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inscellsctrl.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inscellsctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertauthoritiesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertauthoritiesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertauthoritiesentry.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertauthoritiesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertbookmark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertbookmark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertbookmark.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertbookmark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertbreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcaptiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcaptiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcaptiondialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcaptiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcellsdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcellsdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcellsdown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcellsdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcellsright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcellsright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcellsright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcellsright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnbreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnsafter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnsbefore.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumnsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdatefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdatefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdatefieldvar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdatefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdraw.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdraw.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdraw.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertdraw.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertendnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertendnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertendnote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertendnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertenvelope.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertenvelope.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertenvelope.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertenvelope.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertexternaldatasource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertexternaldatasource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertexternaldatasource.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertexternaldatasource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfieldctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfieldctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfieldctrl.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfieldctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfixedtext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfooter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfootnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfootnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfootnote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertfootnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertgraphic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertheader.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertheader.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertheader.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertheader.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserthyperlinkcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserthyperlinkcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserthyperlinkcontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserthyperlinkcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserthyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserthyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserthyperlink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserthyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertindexesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertindexesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertindexesentry.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertindexesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmath.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmath.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmath.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmath.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmenutitles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmenutitles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmenutitles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmenutitles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmultiindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmultiindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmultiindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertmultiindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertneutralparagraph.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertobjectfloatingframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertobjectfloatingframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertobjectfloatingframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertobjectfloatingframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagebreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagebreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagebreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagebreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagecountfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagenumberfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpagenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertplugin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertplugin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertplugin.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertplugin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertqrcode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertreferencefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertreferencefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertreferencefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertreferencefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowbreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowsafter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowsbefore.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrowsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidecountfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidenumberfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidetitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidetitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidetitlefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertslidetitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsound.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsound.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsound.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsound.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertspreadsheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertspreadsheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertspreadsheet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertspreadsheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsymbol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsymbol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsymbol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertsymbol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttimefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttimefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttimefieldvar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttimefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttitlefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttopicfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttopicfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttopicfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttopicfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttreecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttreecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttreecontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inserttreecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertvideo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertvideo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertvideo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/insertvideo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inspectordeck.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inspectordeck.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/inspectordeck.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/inspectordeck.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/interactivegradient.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/interactivegradient.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/interactivegradient.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/interactivegradient.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/interactivetransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/interactivetransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/interactivetransparence.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/interactivetransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/intersect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/intersect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/intersect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/intersect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/it/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/it/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/it/italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/it/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/jumptonexttablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/jumptonexttablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/jumptonexttablesel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/jumptonexttablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/jumptoprevtablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/jumptoprevtablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/jumptoprevtablesel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/jumptoprevtablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/km/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/charfontname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/color.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/designerdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/editstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/fontdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/outlinefont.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/overline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/resetattributes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/scaletext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/shadowed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/sortascending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/sortdescending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/strikeout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/stylenewbyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/styleupdatebyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/textdirectionlefttoright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/textdirectiontoptobottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/text_marquee.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/text.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/verticaltext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ko/verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/label.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/lastslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/leaveallgroups.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/leaveallgroups.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/leaveallgroups.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/leaveallgroups.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/leavegroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/leavegroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/leavegroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/leavegroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/legend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/legend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/legend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/legend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-clearscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-clearscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-clearscreen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-clearscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-gobackward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-gobackward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-gobackward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-gobackward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-goforward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-goforward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-goforward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-goforward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-home.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-home.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-home.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-home.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/librelogo-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowcircle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowcircle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowcircle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowcircle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowsquare.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowsquare.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowsquare.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowsquare.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linecirclearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linecirclearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linecirclearrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linecirclearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/line_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/line_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/line_diagonal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/line_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/lineendstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/lineendstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/lineendstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/lineendstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linenumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linesquarearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linesquarearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linesquarearrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linesquarearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linestyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linestyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linestyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linestyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/line.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/line.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/line.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/line.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/linewidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/linewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/listbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/listbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/listbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/listbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/loadbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/loadbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/loadbasic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/loadbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/lock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/lock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/lock.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/lock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/macrorecorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/macrorecorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/macrorecorder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/macrorecorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergecreatedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergecreatedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergecreatedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergecreatedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeemaildocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeemaildocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeemaildocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeemaildocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeexcludeentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeexcludeentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeexcludeentry.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeexcludeentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeprintdocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeprintdocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeprintdocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergeprintdocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergesavedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergesavedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergesavedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergesavedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergewizard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergewizard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergewizard.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mailmergewizard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/managebreakpoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/managebreakpoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/managebreakpoints.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/managebreakpoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/managelanguage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/managelanguage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/managelanguage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/managelanguage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/managexmlsource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/managexmlsource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/managexmlsource.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/managexmlsource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/marks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/marks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/marks.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/marks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/masterlayouts.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/masterlayouts.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/masterlayouts.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/masterlayouts.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/masterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/masterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/masterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/masterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/matchgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/matchgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/matchgroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/matchgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/measureline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/measureline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/measureline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/measureline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediamute.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediamute.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediamute.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediamute.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediapause.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediapause.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediapause.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediapause.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediarepeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediarepeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediarepeat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mediarepeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/menubar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/menubar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/menubar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/menubar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergecells.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/merge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/merge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/merge.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/merge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergetable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mergetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mirror.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mirror.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mirror.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mirror.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mirrorvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mirrorvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/mirrorvert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/mirrorvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/modifyframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/modifyframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/modifyframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/modifyframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/modifypage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/modifypage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/modifypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/modifypage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moduledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moduledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moduledialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moduledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/morecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/morecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/morecontrols.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/morecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/morphing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/morphing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/morphing.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/morphing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movedownsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movedownsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movedownsubitems.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movedownsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movedown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagedown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagefirst.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagelast.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepagelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepageup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepageup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepageup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/movepageup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidedown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidefirst.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidelast.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslidelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslideup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslideup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslideup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveslideup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/move.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/move.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/move.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/move.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveupsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveupsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveupsubitems.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveupsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/moveup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/name.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/name.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/name.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/name.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/navigationbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/navigationbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/navigationbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/navigationbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/navigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/navigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/navigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/navigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/newarrangement.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/newarrangement.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/newarrangement.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/newarrangement.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/newdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/newdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/newdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/newdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/newhtmldoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/newhtmldoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/newhtmldoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/newhtmldoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/newrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/newwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/newwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/newwindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/newwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nextslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nexttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nexttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nexttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nexttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/nl/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/normalmultipanegui.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/normalmultipanegui.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/normalmultipanegui.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/normalmultipanegui.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/normalviewmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/normalviewmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/normalviewmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/normalviewmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/notesmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/notesmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/notesmasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/notesmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/notesmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/notesmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/notesmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/notesmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdecdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdecimal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatincdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatpercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatpercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatpercent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatpercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatscientific.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatscientific.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatscientific.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatscientific.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatstandard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatstandard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatstandard.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatstandard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatthousands.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberingstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numericfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numericfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/numericfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/numericfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectalignleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectalignright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectcatalog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectcatalog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectcatalog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectcatalog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectposition.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectposition.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectposition.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/objectposition.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/objecttitledescription.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/objecttitledescription.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/objecttitledescription.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ok.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ok.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ok.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ok.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/openreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/openreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/openreadonly.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/openreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/openremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/openremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/openremote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/openremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/open.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/open.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/open.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/open.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/opentemplate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/optimizetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/optimizetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/optimizetable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/optimizetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/optionstreedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/optionstreedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/optionstreedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/optionstreedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/orientation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/orientation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/orientation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/orientation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinecollapseall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinecollapseall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinecollapseall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinecollapseall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinecollapse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinecollapse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinecollapse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinecollapse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineexpandall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineexpandall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineexpandall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineexpandall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineexpand.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineexpand.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineexpand.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineexpand.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinefont.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineformat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlineformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outlinemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outputqualityblackwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outputqualityblackwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outputqualityblackwhite.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outputqualityblackwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outputqualitygrayscale.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outputqualitygrayscale.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/outputqualitygrayscale.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/outputqualitygrayscale.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/overline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagebreakmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagebreakmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagebreakmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagebreakmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagecolumntype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagecolumntype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagecolumntype.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagecolumntype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagemargin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagemargin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagemargin.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagemargin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagesetup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pagesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/paragraphdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/paragraphdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/paragraphdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/paragraphdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/paralefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/paralefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/paralefttoright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/paralefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pararighttoleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pararighttoleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pararighttoleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pararighttoleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/paraspacedecrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/paraspacedecrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/paraspacedecrease.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/paraspacedecrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/paraspaceincrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/paraspaceincrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/paraspaceincrease.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/paraspaceincrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteaslink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteaslink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteaslink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteaslink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlyformula.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlyformula.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlyformula.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlyformula.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlytext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlytext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlytext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlytext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlyvalue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlyvalue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlyvalue.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteonlyvalue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pastespecial.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pastespecial.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pastespecial.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pastespecial.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/paste.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/paste.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/paste.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/paste.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pastetransposed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pastetransposed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pastetransposed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pastetransposed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteunformatted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteunformatted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteunformatted.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pasteunformatted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/patternfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/patternfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/patternfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/patternfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/photoalbumdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/photoalbumdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/photoalbumdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/photoalbumdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pickthrough.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,58 @@ + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pie_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pl/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pl/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pl/underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pl/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pl/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pl/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pl/underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pl/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_diagonal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_diagonal_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_diagonal_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_diagonal_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_diagonal_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/polygon_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/preformattedparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/preformattedparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/preformattedparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/preformattedparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationcurrentslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationcurrentslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationcurrentslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationcurrentslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationlayout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationminimizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationminimizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationminimizer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentationminimizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/presentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previewprintoptions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previewprintoptions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previewprintoptions.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previewprintoptions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previouspage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previouspage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previouspage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previouspage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previousslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previoustrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previoustrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/previoustrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/previoustrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/prevrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/prevrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/prevrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/prevrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/printdefault.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/printdefault.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/printdefault.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/printdefault.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/printersetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/printersetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/printersetup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/printersetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/printlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/printlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/printlayout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/printlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/printpreview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/printpreview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/printpreview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/printpreview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/print.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/print.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/print.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/print.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/progressbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/progressbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/progressbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/progressbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/protectbookmarks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/protectbookmarks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/protectbookmarks.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/protectbookmarks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/protectfields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/protectfields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/protectfields.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/protectfields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/protect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/protect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/protect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/protect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/protecttracechangemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/protecttracechangemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/protecttracechangemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/protecttracechangemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pushbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pushbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/pushbutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/pushbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/quickedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/quit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/quit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/quit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/quit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/quotecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/quotecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/quotecharstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/quotecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/quoteparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/quoteparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/quoteparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/quoteparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/radiobutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/radiobutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/radiobutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/radiobutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/recalcpivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/recalcpivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/recalcpivottable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/recalcpivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/recentfilelist.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/recentfilelist.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/recentfilelist.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/recentfilelist.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/recsave.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/recsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/recsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/recsearch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/recsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_rounded.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_rounded_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rect_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactedexportblack.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactedexportblack.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactedexportblack.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactedexportblack.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactedexportwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactedexportwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactedexportwhite.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/redactedexportwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/redo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/redo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/redo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/redo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/refreshformcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/refreshformcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/refreshformcontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/refreshformcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejectalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejectalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejectalltrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejectalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejecttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejecttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejecttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejecttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejecttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejecttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejecttrackedchangetonext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rejecttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/reload.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/reload.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/reload.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/reload.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/removebullets.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/removefiltersort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/removefiltersort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/removefiltersort.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/removefiltersort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/removehyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/removehyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/removehyperlink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/removehyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/remove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/remove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/remove.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/remove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/removetableof.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/removetableof.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/removetableof.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/removetableof.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/renamemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/renamemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/renamemasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/renamemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/renameobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/renameobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/renameobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/renameobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/renamepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/renamepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/renamepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/renamepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/renameslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/renameslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/renameslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/renameslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/repeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/repeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/repeat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/repeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/replycomment.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/replycomment.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/replycomment.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/replycomment.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/reportnavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/reportnavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/reportnavigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/reportnavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/resetattributes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/reverseorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/reverseorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/reverseorder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/reverseorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/romanliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/romanlowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rotateleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rotateleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rotateleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rotateleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rotateright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rotateright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/rotateright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/rotateright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ru/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ruler.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/runbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/runbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/runbasic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/runbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/runmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/runmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/runmacro.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/runmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveacopy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveacopy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveacopy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveasremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveasremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveasremote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveasremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveas.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveastemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveastemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveastemplate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/saveastemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/savebackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/savebackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/savebackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/savebackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/savebasicas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/savebasicas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/savebasicas.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/savebasicas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/save.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/save.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/save.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/save.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sbaexecutesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sbaexecutesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sbaexecutesql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sbaexecutesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sbanativesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sbanativesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sbanativesql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sbanativesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/scaletext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/scan.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/scan.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/scan.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/scan.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/scriptorganizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/scriptorganizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/scriptorganizer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/scriptorganizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/scrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/scrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/scrollbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/scrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/searchdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/searchdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/searchdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/searchdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrinkbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrinkbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrinkbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrinkbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrinktop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrinktop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrinktop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sectionshrinktop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectbackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectbackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectbackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectbackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectdata.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectdb.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectdb.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectdb.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectdb.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selecttables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selecttables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selecttables.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selecttables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selecttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selecttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selecttable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selecttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectunprotectedcells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectunprotectedcells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectunprotectedcells.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/selectunprotectedcells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendfax.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendfax.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendfax.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendfax.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendmail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendmail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendmail.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendmail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendtoback.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendtoback.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendtoback.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sendtoback.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setborderstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setborderstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setborderstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setborderstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setdocumentproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setdocumentproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setdocumentproperties.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setdocumentproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setminimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setminimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setminimalcolumnwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setminimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setminimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setminimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setminimalrowheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setminimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setobjecttobackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setobjecttobackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setobjecttobackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setobjecttobackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setobjecttoforeground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setobjecttoforeground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setobjecttoforeground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setobjecttoforeground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoptimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoptimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoptimalcolumnwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoptimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoptimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoptimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoptimalrowheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoptimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setreminder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setreminder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/setreminder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/setreminder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shadowcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shadowcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shadowcursor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shadowcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shadowed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sharedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sharedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sharedocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sharedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shear.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shell3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shell3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shell3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shell3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showannotations.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showannotations.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showannotations.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showannotations.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showbookview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showbookview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showbookview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showbookview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showcolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdatanavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdatanavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdatanavigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdatanavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdependents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdetail.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showdetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showerrors.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showerrors.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showerrors.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showerrors.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showfmexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showfmexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showfmexplorer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showfmexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showinvalid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showinvalid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showinvalid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showinvalid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showmultiplepages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showmultiplepages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showmultiplepages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showmultiplepages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shownote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shownote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shownote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shownote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showprecedents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showsinglepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showsinglepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showsinglepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showsinglepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/show.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/show.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/show.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/show.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtoolbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtoolbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtoolbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtoolbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtwopages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtwopages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtwopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showtwopages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showwhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showwhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/showwhitespace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/showwhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/shrink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/shrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sidebar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sidebar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sidebar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sidebar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/signaturelinedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/signaturelinedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/signaturelinedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/signaturelinedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/signature.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/signature.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/signature.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/signature.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/signpdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/signpdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/signpdf.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/signpdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sl/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sl/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sl/bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sl/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sl/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sl/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sl/italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sl/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidechangewindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidechangewindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidechangewindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidechangewindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidemasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidesetup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/slidesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallcaps.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallcaps.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallcaps.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallcaps.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallestheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallestwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/smallestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/snapborder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/snapborder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/snapborder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/snapborder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/snapframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/snapframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/snapframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/snapframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/snappoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/snappoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/snappoints.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/snappoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/solidcreate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/solidcreate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/solidcreate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/solidcreate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/solverdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/solverdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/solverdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/solverdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sortascending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sortdescending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sourcecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sourcecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sourcecharstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sourcecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara15.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara15.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara15.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara15.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacepara2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacing.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spacing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spelling.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spellonline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sphere.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sphere.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/sphere.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/sphere.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spinbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spinbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/spinbutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/spinbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/splitcell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/splitcell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/splitcell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/splitcell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/splittable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/splittable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/splittable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/splittable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/splitwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/splitwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/splitwindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/splitwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_rounded.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_rounded_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/square.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/square.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/square.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/square.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/square_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.bang.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.bang.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.bang.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.bang.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.concave-star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.concave-star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.concave-star6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.concave-star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.doorplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.doorplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.doorplate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.doorplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.horizontal-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.horizontal-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.horizontal-scroll.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.horizontal-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.signet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.signet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.signet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.signet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star12.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star12.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star12.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star12.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.star8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.vertical-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.vertical-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.vertical-scroll.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/starshapes.vertical-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/statisticsmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/statisticsmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/statisticsmenu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/statisticsmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/statusbarvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/statusbarvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/statusbarvisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/statusbarvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/strikeout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/strongemphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/strongemphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/strongemphasischarstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/strongemphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/styleapply.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/styleapply.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/styleapply.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/styleapply.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/stylenewbyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/styleupdatebyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/subscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/subscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/subscript.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/subscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/substract.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/substract.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/substract.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/substract.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/subtitleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/subtitleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/subtitleparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/subtitleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/superscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/superscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/superscript.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/superscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/switchcontroldesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/switchcontroldesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/switchcontroldesignmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/switchcontroldesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/switchxformsdesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/switchxformsdesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/switchxformsdesignmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/switchxformsdesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.brace-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.brace-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.brace-pair.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.brace-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.bracket-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.bracket-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.bracket-pair.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.bracket-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.cloud.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.cloud.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.cloud.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.cloud.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.diamond-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.diamond-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.diamond-bevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.diamond-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.flower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.flower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.flower.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.flower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.forbidden.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.forbidden.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.forbidden.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.forbidden.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.heart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.heart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.heart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.heart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.left-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.left-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.left-brace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.left-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.left-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.left-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.left-bracket.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.left-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.lightning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.lightning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.lightning.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.lightning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.moon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.moon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.moon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.moon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.octagon-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.octagon-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.octagon-bevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.octagon-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.puzzle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.puzzle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.puzzle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.puzzle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.quad-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.quad-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.quad-bevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.quad-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.right-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.right-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.right-brace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.right-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.right-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.right-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.right-bracket.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.right-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.sun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.sun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.sun.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.sun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/symbolshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledeselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledeselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledeselectall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledeselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tabledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodefixprop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodefixprop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodefixprop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodefixprop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodefix.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodefix.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodefix.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodefix.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodevariable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodevariable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodevariable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablemodevariable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablenumberformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablenumberformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablenumberformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tablenumberformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tableselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tableselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tableselectall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tableselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/templatemanager.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/testmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/testmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/testmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/testmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/textbodyparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/textbodyparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/textbodyparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/textbodyparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/textdirectionlefttoright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/textdirectiontoptobottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/text_marquee.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/text.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/texttocolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/texttocolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/texttocolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/texttocolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/thesaurus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/thesaurus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/thesaurus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/thesaurus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/timefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/timefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/timefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/timefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/titlepagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/titlepagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/titlepagedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/titlepagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/titleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/titleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/titleparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/titleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleanchortype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleanchortype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleanchortype.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleanchortype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleaxistitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleaxistitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleaxistitle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleaxistitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglebreakpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglebreakpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglebreakpoint.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglebreakpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglegridhorizontal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglegridhorizontal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglegridhorizontal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglegridhorizontal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglegridvertical.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglegridvertical.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglegridvertical.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglegridvertical.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglelegend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglelegend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglelegend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglelegend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglemergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglemergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglemergecells.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglemergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleobjectbeziermode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleobjectbeziermode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleobjectbeziermode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleobjectbeziermode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleobjectrotatemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleobjectrotatemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleobjectrotatemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggleobjectrotatemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglesheetgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglesheetgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglesheetgrid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/togglesheetgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggletabbarvisibility.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggletabbarvisibility.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggletabbarvisibility.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggletabbarvisibility.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggletitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggletitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggletitle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toggletitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toolbarmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toolbarmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toolbarmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toolbarmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toolprotectiondocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toolprotectiondocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/toolprotectiondocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/toolprotectiondocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/torus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/torus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/torus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/torus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tr/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tr/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/tr/italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/tr/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/trackchangesbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/trackchangesbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/trackchangesbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/trackchangesbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/trackchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/trackchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/trackchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/trackchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/transformdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/transformdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/transformdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/transformdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/undo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/undo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/undo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/undo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/ungroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/ungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/unhainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/unhainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/unhainframes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/unhainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/unsetcellsreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/unsetcellsreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/unsetcellsreadonly.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/unsetcellsreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/updatecurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/updatecurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/updatecurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/updatecurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/upsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/upsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/upsearch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/upsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/urlbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/urlbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/urlbutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/urlbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/validation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/validation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/validation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/validation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/versiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/versiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/versiondialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/versiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticalcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticalcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticalcaption.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticalcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticaltextfittosizetool.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticaltextfittosizetool.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticaltextfittosizetool.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticaltextfittosizetool.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticaltext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/vfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/vfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/vfixedline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/vfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewdatasourcebrowser.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewdatasourcebrowser.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewdatasourcebrowser.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewdatasourcebrowser.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewformasgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewformasgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewformasgrid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewformasgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewrowcolumnheaders.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewrowcolumnheaders.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewrowcolumnheaders.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewrowcolumnheaders.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewvaluehighlighting.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewvaluehighlighting.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewvaluehighlighting.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/viewvaluehighlighting.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/vruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/vruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/vruler.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/vruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/watermark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/watermark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/watermark.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/watermark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/window3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/window3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/window3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/window3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wordcountdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapcontour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapcontour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapcontour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapcontour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapideal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapideal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapideal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapideal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapoff.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapoff.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapoff.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapoff.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wraptext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wraptext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wraptext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wraptext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapthrough.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/wrapthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/xlinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/xlinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/xlinecolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/xlinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom100percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom100percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom100percent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom100percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom200percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom200percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom200percent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom200percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomin.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoommode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoommode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoommode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoommode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomnext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomnext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomnext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomnext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomoptimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomoptimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomoptimal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomoptimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompagewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompagewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompagewidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompagewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompanning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompanning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompanning.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoompanning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomprevious.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomprevious.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomprevious.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoomprevious.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/32/zoom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/alignblock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/alignblock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/alignblock.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/alignblock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/alignhorizontalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/alignhorizontalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/alignhorizontalcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/alignhorizontalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/alignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/alignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/alignleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/alignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/alignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/alignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/alignright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/alignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_absoluterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_alphaliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_alphalowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_bulletsandnumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_chapternumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_continuenumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_defaultbullet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_defaultnumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_deleterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_insertneutralparagraph.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_linenumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_newrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_numberingstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_recsave.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_removebullets.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_romanliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_romanlowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_setoutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/lc_setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_absoluterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_alphaliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_alphalowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_bulletsandnumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_chapternumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_continuenumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_defaultbullet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_defaultnumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_deleterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_insertneutralparagraph.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_linenumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_newrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_numberingstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_recsave.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_removebullets.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_romanliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_romanlowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_setoutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ar/sc_setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_autocorrectdlg.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_backcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_backcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_backcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_backcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_doubleclicktextedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_edit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_hyphenate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_insertfixedtext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_label.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_pickthrough.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_quickedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_sortascending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_sortdescending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_spelling.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_spellonline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_strikeout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_wordcountdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/lc_wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_autocorrectdlg.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_doubleclicktextedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_edit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_hyphenate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_insertfixedtext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_label.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_pickthrough.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_quickedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_sortascending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_sortdescending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_spelling.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_spellonline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_strikeout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_wordcountdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bg/sc_wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/bulletsandnumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatdecdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatdecimal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatincdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatthousands.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/lc_numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatdecdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatdecimal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatincdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatthousands.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/de/sc_numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/es/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/fr/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/fr/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/fr/lc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/fr/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/fr/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/fr/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/fr/sc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/fr/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/hu/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/hu/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/hu/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/hu/sc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/hu/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/hu/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/hu/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/hu/sc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/hu/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/it/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/it/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/it/lc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/it/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/it/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/it/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/it/sc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/it/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/km/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_charfontname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_color.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_designerdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_editstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_fontdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_outlinefont.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_overline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_resetattributes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_scaletext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_shadowed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_sortascending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_sortdescending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_strikeout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_stylenewbyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_styleupdatebyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_textdirectionlefttoright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_textdirectiontoptobottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_text_marquee.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_text.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_verticaltext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/lc_verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_charfontname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_color.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_designerdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_editstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_fontdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_outlinefont.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_overline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_resetattributes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_scaletext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_shadowed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_sortascending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_sortdescending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_strikeout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_stylenewbyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_styleupdatebyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_textdirectionlefttoright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_textdirectiontoptobottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_text_marquee.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_text.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_verticaltext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ko/sc_verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_absoluterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent1cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent1cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent1cellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent1cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent2cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent2cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent2cellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent2cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent3cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent3cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent3cellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accent3cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_acceptalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_acceptalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_acceptalltrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_acceptalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchangetonext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_accepttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_actionmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_actionmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_actionmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_actionmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_adddirect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_adddirect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_adddirect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_adddirect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_additionsdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_additionsdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_additionsdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_additionsdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addressbooksource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addressbooksource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addressbooksource.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addressbooksource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addtable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addwatch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addwatch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addwatch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_addwatch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_advancedmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_advancedmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_advancedmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_advancedmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignblock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignblock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignblock.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignblock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligncenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligndown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligndown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligndown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligndown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignhorizontalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignhorizontalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignhorizontalcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignhorizontalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignmiddle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignmiddle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignmiddle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignmiddle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligntop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_aligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignverticalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignverticalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignverticalcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alignverticalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alphaliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alphalowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationeffects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationeffects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationeffects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationeffects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_animationobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.chevron.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.chevron.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.chevron.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.chevron.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.circular-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.circular-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.circular-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.circular-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.corner-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.corner-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.corner-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.corner-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.down-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.down-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-right-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.left-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.notched-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.notched-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.notched-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.notched-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.pentagon-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.pentagon-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.pentagon-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.pentagon-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.quad-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.quad-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.quad-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.quad-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.quad-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.quad-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.quad-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.quad-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.right-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.split-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.split-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.split-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.split-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.split-round-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.split-round-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.split-round-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.split-round-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.s-sharped-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.s-sharped-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.s-sharped-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.s-sharped-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.striped-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.striped-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.striped-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.striped-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-down-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-down-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-down-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_arrowshapes.up-right-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_assignlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_assignlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_assignlayout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_assignlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_assignmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_assignmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_assignmacro.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_assignmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_attributepagesize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_attributepagesize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_attributepagesize.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_attributepagesize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_auditingfillmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_auditingfillmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_auditingfillmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_auditingfillmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_auditmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_auditmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_auditmenu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_auditmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autocontrolfocus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autocontrolfocus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autocontrolfocus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autocontrolfocus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autocorrectdlg.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autoformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autoformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autoformat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autoformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autooutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autooutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autooutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autooutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autopilotmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autopilotmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autopilotmenu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autopilotmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autoredactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autoredactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autoredactdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autoredactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autosum.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autosum.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autosum.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_autosum.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_avmediaplayer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_avmediaplayer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_avmediaplayer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_avmediaplayer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backgroundcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backgroundcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backgroundcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backgroundcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_backward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_badcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_badcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_badcellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_badcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicideappear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicideappear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicideappear.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicideappear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.block-arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.block-arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.block-arc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.block-arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.can.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.can.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.can.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.can.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.cross.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.cross.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.cross.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.cross.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.cube.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.diamond.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.diamond.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.diamond.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.diamond.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.frame.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.frame.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.frame.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.frame.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.hexagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.hexagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.hexagon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.hexagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.isosceles-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.isosceles-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.isosceles-triangle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.isosceles-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.octagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.octagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.octagon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.octagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.paper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.paper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.paper.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.paper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.pentagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.pentagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.pentagon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.pentagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.right-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.right-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.right-triangle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.right-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.ring.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.ring.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.ring.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.ring.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.round-quadrat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.round-quadrat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.round-quadrat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.round-quadrat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.trapezoid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.trapezoid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.trapezoid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicshapes.trapezoid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepinto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepinto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepinto.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepinto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstepover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_basicstop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beforeobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beforeobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beforeobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beforeobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_behindobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_behindobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_behindobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_behindobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierappend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierappend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierappend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierappend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierclose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierclose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierclose.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierclose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierconvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierconvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierconvert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierconvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziercutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziercutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziercutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziercutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierdelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezieredge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezieredge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezieredge.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezieredge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziereliminatepoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziereliminatepoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziereliminatepoints.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziereliminatepoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierfill.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierfill.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierfill.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierfill.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierinsert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierinsert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierinsert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezierinsert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziermove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziermove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziermove.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziermove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziersmooth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziersymmetric.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziersymmetric.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziersymmetric.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_beziersymmetric.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezier_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezier_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezier_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bezier_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bibliographycomponent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bibliographycomponent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bibliographycomponent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bibliographycomponent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bmpmask.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bmpmask.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bmpmask.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bmpmask.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_borderdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_borderdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_borderdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_borderdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_break.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_break.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_break.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_break.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bringtofront.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bringtofront.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bringtofront.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bringtofront.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_browseview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_browseview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_browseview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_browseview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bulletsandnumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bullet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_bullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calculate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calculate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calculate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calculate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.cloud-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.cloud-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.cloud-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.cloud-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.line-callout-3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.rectangular-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.rectangular-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.rectangular-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.rectangular-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.round-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.round-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.round-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.round-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_calloutshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cancel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cancel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cancel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cancel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_capturepoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_capturepoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_capturepoint.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_capturepoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cellprotection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cellprotection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cellprotection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cellprotection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_chainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_chainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_chainframes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_chainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changebezier.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changebezier.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changebezier.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changebezier.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changecasetolower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changecasetolower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changecasetolower.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changecasetolower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changecasetoupper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changecasetoupper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changecasetoupper.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changecasetoupper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changedatabasefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changedatabasefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changedatabasefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changedatabasefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changepicture.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changepicture.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changepicture.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changepicture.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changepolygon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_changepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_chapternumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_charfontname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_charmapcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_charmapcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_charmapcontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_charmapcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_checkbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_checkbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_checkbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_checkbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosecontrols.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosedesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosedesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosedesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosedesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosemacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosemacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosemacro.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosemacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosepolygon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_choosepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlearc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlearc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlearc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlearc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlecut.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlecut_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlepie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlepie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlepie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlepie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlepie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlepie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlepie_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circlepie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circle_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circle_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circle_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_circle_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrowdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrowdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrowdependents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrowdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrowprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrowprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrowprecedents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrowprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cleararrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closedocs.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closedocs.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closedocs.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closedocs.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closedoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closedoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closedoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closedoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closemasterview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closemasterview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closemasterview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closemasterview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closepreview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closepreview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closepreview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_closepreview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_colorscaleformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_colorscaleformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_colorscaleformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_colorscaleformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_colorsettings.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_colorsettings.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_colorsettings.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_colorsettings.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_color.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_combine.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_combine.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_combine.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_combine.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_combobox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_combobox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_combobox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_combobox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_commentchangetracking.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_commentchangetracking.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_commentchangetracking.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_commentchangetracking.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_comparedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_comparedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_comparedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_comparedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_compilebasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_compilebasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_compilebasic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_compilebasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_compressgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_compressgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_compressgraphic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_compressgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_conddateformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_conddateformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_conddateformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_conddateformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_conditionalformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_conditionalformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_conditionalformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_conditionalformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cone.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cone.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cone.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cone.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_configuredialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_configuredialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_configuredialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_configuredialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcircles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcircles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcircles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcircles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecircles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecircles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecircles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecircles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurvecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorcurve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinecircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinecirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinesarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinescircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinescircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinescircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinescircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinescirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinescirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinescirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlinescirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlines.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlines.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlines.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorlines.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connectorline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connector.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_connect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_continuenumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_contourdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_contourdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_contourdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_contourdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_controlcodes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_controlcodes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_controlcodes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_controlcodes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_controlproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_controlproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_controlproperties.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_controlproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_convertinto3dlathe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_convertinto3dlathe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_convertinto3dlathe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_convertinto3dlathe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_convertinto3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_convertinto3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_convertinto3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_convertinto3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_copyobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_copyobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_copyobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_copyobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_copy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_copy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_copy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_copy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crookrotate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crookrotate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crookrotate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crookrotate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crookslant.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crookslant.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crookslant.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crookslant.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_crop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cube.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_currencyfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_currencyfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_currencyfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_currencyfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_customshowdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_customshowdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_customshowdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_customshowdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cut.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cylinder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cylinder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cylinder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cylinder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cyramid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cyramid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cyramid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_cyramid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataarearefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataarearefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataarearefresh.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataarearefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_databarformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_databarformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_databarformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_databarformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataconsolidate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataconsolidate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataconsolidate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataconsolidate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datadatapilotrun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datadatapilotrun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datadatapilotrun.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datadatapilotrun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterautofilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterautofilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterautofilter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterautofilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterspecialfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterspecialfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterspecialfilter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterspecialfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterstandardfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterstandardfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterstandardfilter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datafilterstandardfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataform.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataimport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataimport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataimport.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataimport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataincolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataincolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataincolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataincolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datainrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datainrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datainrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datainrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataproviderrefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataproviderrefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataproviderrefresh.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataproviderrefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataprovider.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataprovider.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataprovider.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataprovider.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataranges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataranges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataranges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dataranges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datasort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datasort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datasort.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datasort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datastreams.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datastreams.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datastreams.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datastreams.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datasubtotals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datasubtotals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datasubtotals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datasubtotals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_datefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbaddrelation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbaddrelation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbaddrelation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbaddrelation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbchangedesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbchangedesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbchangedesignmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbchangedesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbclearquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbclearquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbclearquery.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbclearquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbdistinctvalues.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbdistinctvalues.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbdistinctvalues.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbdistinctvalues.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformdelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformrename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbformrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbindexdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbindexdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbindexdesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbindexdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewform.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewquerysql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewquerysql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewquerysql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewquerysql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewquery.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewreport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewreport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewreport.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewreport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewtable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewviewsql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewviewsql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewviewsql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewviewsql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbnewview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbquerydelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbquerydelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbquerydelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbquerydelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbquerypropertiesdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbquerypropertiesdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbquerypropertiesdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbquerypropertiesdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryrename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbqueryrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbrelationdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbrelationdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbrelationdesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbrelationdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportdelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportrename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbreportrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbsortingandgrouping.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbsortingandgrouping.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbsortingandgrouping.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbsortingandgrouping.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtabledelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtabledelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtabledelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtabledelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtableedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtableedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtableedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtableedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtableopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtableopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtableopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtableopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtablerename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtablerename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtablerename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbtablerename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewaliases.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewaliases.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewaliases.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewaliases.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewforms.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewforms.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewforms.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewforms.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewfunctions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewfunctions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewfunctions.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewfunctions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewqueries.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewqueries.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewqueries.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewqueries.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewreports.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewreports.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewreports.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewreports.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewtablenames.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewtablenames.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewtablenames.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewtablenames.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewtables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewtables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewtables.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dbviewtables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementindent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementlevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementsublevels.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_decrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultbullet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultcharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultcharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultcharstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultcharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultnumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_definedbname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_definedbname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_definedbname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_definedbname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_definename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_definename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_definename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_definename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defineprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defineprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defineprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_defineprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteallannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteallannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteallannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteallannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteallbreaks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteallbreaks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteallbreaks.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteallbreaks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletecell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletecolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletemasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletepivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletepivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletepivottable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletepivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleterows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleterows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleterows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleterows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deleteslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_delete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_delete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_delete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_delete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletetable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_deletetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_designerdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_developmenttoolsdockingwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_developmenttoolsdockingwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_developmenttoolsdockingwindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_developmenttoolsdockingwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diaeffect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diaeffect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diaeffect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diaeffect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxis.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxis.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxis.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxis.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisx.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisx.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisx.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisx.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisxyz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisxyz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisxyz.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisxyz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisz.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramaxisz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramdata.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramtype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramtype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramtype.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramtype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramwall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramwall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramwall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diagramwall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diamode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diamode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diamode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diamode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diaspeed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diaspeed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diaspeed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diaspeed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dia.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diatime.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diatime.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diatime.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_diatime.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dismantle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dismantle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dismantle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dismantle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymasterbackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymasterbackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymasterbackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymasterbackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymasterobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymasterobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymasterobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymasterobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_displaymode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributecolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzdistance.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributehorzright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributerows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributerows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributerows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributerows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributeselection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributeselection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributeselection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributeselection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertdistance.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributevertdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributeverttop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributeverttop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributeverttop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_distributeverttop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_documentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_documentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_documentation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_documentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_doubleclicktextedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_downsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_downsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_downsearch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_downsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_drawcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_drawcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_drawcaption.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_drawcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_drawchart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_drawchart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_drawchart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_drawchart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dsbinsertcontent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dsbinsertcontent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dsbinsertcontent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dsbinsertcontent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dsbrowserexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dsbrowserexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dsbrowserexplorer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_dsbrowserexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicatepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicatepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicatepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicatepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicatesheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicatesheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicatesheet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicatesheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicateslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicateslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicateslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_duplicateslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editcurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editcurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editcurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editframeset.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editframeset.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editframeset.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editframeset.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editglossary.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editglossary.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editglossary.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editglossary.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editheaderandfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editheaderandfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editheaderandfooter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editheaderandfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_edithyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_edithyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_edithyperlink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_edithyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editqrcode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_edit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipsecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipsecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipsecut.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipsecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipsecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipsecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipsecut_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipsecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipse_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipse_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipse_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ellipse_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_emojicontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_emojicontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_emojicontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_emojicontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_emphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_emphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_emphasischarstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_emphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entergroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entergroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entergroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entergroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirecell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirecolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirerow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirerow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirerow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_entirerow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_equalizeheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_equalizeheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_equalizeheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_equalizeheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_equalizewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_equalizewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_equalizewidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_equalizewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_errorcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_errorcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_errorcellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_errorcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_euroconverter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_euroconverter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_euroconverter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_euroconverter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_executereport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_executereport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_executereport.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_executereport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_expandpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_expandpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_expandpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_expandpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdirecttoepub.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdirecttoepub.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdirecttoepub.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdirecttoepub.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdirecttopdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdirecttopdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdirecttopdf.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportdirecttopdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportto.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_exportto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extendedhelp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extendedhelp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extendedhelp.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extendedhelp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusion3dcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusion3dcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusion3dcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusion3dcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiondepthfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiondepthfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiondepthfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiondepthfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiondirectionfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiondirectionfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiondirectionfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiondirectionfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusionlightingfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusionlightingfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusionlightingfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusionlightingfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusionsurfacefloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusionsurfacefloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusionsurfacefloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusionsurfacefloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltdown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_extrusiontiltup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fields.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filecontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filedocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filldown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filldown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filldown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_filldown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillshadow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillshadow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillshadow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillshadow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fillup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_firstslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-card.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-card.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-card.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-card.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-collate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-collate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-collate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-collate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-data.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-decision.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-decision.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-decision.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-decision.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-delay.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-delay.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-delay.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-delay.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-direct-access-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-direct-access-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-direct-access-storage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-direct-access-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-display.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-display.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-display.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-display.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-document.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-document.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-document.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-document.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-internal-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-internal-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-internal-storage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-internal-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-manual-input.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-manual-input.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-manual-input.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-manual-input.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-multidocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-multidocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-multidocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-multidocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-off-page-connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-off-page-connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-off-page-connector.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-off-page-connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-or.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-or.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-or.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-or.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-predefined-process.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-predefined-process.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-predefined-process.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-predefined-process.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-preparation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-preparation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-preparation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-preparation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-punched-tape.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-punched-tape.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-punched-tape.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-punched-tape.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-sequential-access.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-sequential-access.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-sequential-access.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-sequential-access.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-sort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-sort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-sort.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-sort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-stored-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-stored-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-stored-data.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-stored-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-summing-junction.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-summing-junction.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-summing-junction.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-summing-junction.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-terminator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-terminator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-terminator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.flowchart-terminator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_flowchartshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkgalleryfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkgalleryfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkgalleryfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkgalleryfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworksameletterheights.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworksameletterheights.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworksameletterheights.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworksameletterheights.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-chevron-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-chevron-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-chevron-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-chevron-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-chevron-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-chevron-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-chevron-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-chevron-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-circle-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-curve-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-curve-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-curve-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-curve-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-curve-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-curve-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-curve-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-curve-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-fade-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-inflate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-inflate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-inflate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-inflate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-plain-text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-plain-text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-plain-text.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-plain-text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-slant-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-slant-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-slant-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-slant-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-slant-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-slant-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-slant-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-slant-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-stop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-stop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-stop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-stop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-triangle-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-triangle-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-triangle-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-triangle-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-wave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-wave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-wave.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontworkshapetype.fontwork-wave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontwork.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontwork.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontwork.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fontwork.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_footnotedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_footnotedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_footnotedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_footnotedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatcelldialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatcelldialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatcelldialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatcelldialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatcolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatgroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatpaintbrush.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatpaintbrush.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatpaintbrush.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatpaintbrush.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formattedfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formattedfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formattedfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formattedfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatungroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formatungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formdesigntools.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formdesigntools.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formdesigntools.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formdesigntools.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formelcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formelcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formelcursor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formelcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formfiltered.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formfiltered.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formfiltered.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formfiltered.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formfilternavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formfilternavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formfilternavigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formfilternavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formproperties.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_formproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_forward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_forward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_forward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_forward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_framedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_framedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_framedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_framedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_framelinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_framelinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_framelinecolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_framelinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freeline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freeline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freeline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freeline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freeline_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freeline_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freeline_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freeline_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanesfirstcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanesfirstcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanesfirstcolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanesfirstcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanesfirstrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanesfirstrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanesfirstrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanesfirstrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_freezepanes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fullscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fullscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fullscreen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_fullscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gallery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gallery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gallery.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gallery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueeditmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueeditmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueeditmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueeditmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectionright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectiontop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectiontop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectiontop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueescapedirectiontop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzaligncenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzalignleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzalignright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluehorzalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueinsertpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueinsertpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueinsertpoint.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_glueinsertpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluepercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluepercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluepercent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluepercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertalignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertalignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertalignbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertalignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertaligncenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertaligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertaligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertaligntop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gluevertaligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_goalseekdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_goalseekdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_goalseekdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_goalseekdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_goodcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_goodcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_goodcellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_goodcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotoendofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotoendofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotoendofdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotoendofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotoend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotoend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotoend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotoend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotopage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotopage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotopage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotopage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotostartofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotostartofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotostartofdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotostartofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotostartoftable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotostartoftable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotostartoftable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gotostartoftable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafblue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafblue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafblue.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafblue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafcontrast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafcontrast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafcontrast.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafcontrast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafgamma.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafgamma.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafgamma.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafgamma.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafgreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafgreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafgreen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafgreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafluminance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafluminance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafluminance.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafluminance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafred.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafred.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafred.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grafred.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graftransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graftransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graftransparence.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graftransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterinvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterinvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterinvert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterinvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltermosaic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltermosaic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltermosaic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltermosaic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterpopart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterpopart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterpopart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterpopart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterposter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterposter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterposter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterposter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterrelief.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterrelief.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterrelief.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterrelief.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterremovenoise.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterremovenoise.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterremovenoise.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfilterremovenoise.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersepia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersepia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersepia.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersepia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersharpen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersharpen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersharpen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersharpen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersmooth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersobel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersobel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersobel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersobel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersolarize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersolarize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersolarize.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphicfiltersolarize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_graphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_greatestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_greatestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_greatestheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_greatestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_greatestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_greatestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_greatestwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_greatestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_griduse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_griduse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_griduse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_griduse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gridvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gridvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gridvisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_gridvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_groupbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_groupbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_groupbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_groupbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_group.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_group.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_group.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_group.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_grow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_halfsphere.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_halfsphere.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_halfsphere.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_halfsphere.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_handoutmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_handoutmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_handoutmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_handoutmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hangingindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hangingindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hangingindent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hangingindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading1parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading1parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading1parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading1parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading2parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading2parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading2parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading2parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading3parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading3parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading3parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading3parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading4parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading4parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading4parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading4parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading5parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading5parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading5parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading5parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading6parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading6parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading6parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_heading6parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helpindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helpindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helpindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helpindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesmove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesmove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesmove.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesmove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesuse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesuse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesuse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesuse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesvisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_helplinesvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hfixedline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hideallnotes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hideallnotes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hideallnotes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hideallnotes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidecolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidedetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidedetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidedetail.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidedetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidenote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidenote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidenote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidenote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hiderow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hiderow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hiderow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hiderow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hideslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hideslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hideslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hideslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidewhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidewhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidewhitespace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hidewhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hscrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hscrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hscrollbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hscrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hyphenate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_iconsetformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_iconsetformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_iconsetformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_iconsetformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagebutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagebutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagebutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagebutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagecontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagemapdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagemapdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagemapdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_imagemapdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_importdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_importdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_importdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_importdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_importfromfile.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_importfromfile.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_importfromfile.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_importfromfile.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementindent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementlevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementsublevels.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_incrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inputlinevisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inputlinevisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inputlinevisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inputlinevisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inscellsctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inscellsctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inscellsctrl.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inscellsctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertauthoritiesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertauthoritiesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertauthoritiesentry.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertauthoritiesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertbookmark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertbookmark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertbookmark.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertbookmark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertbreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcaptiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcaptiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcaptiondialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcaptiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcellsdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcellsdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcellsdown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcellsdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcellsright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcellsright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcellsright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcellsright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnbreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnsafter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnsbefore.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumnsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdatefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdatefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdatefieldvar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdatefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdraw.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdraw.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdraw.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertdraw.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertendnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertendnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertendnote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertendnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertenvelope.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertenvelope.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertenvelope.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertenvelope.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertexternaldatasource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertexternaldatasource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertexternaldatasource.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertexternaldatasource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfieldctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfieldctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfieldctrl.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfieldctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfixedtext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfooter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfootnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfootnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfootnote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertfootnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertgraphic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertheader.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertheader.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertheader.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertheader.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserthyperlinkcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserthyperlinkcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserthyperlinkcontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserthyperlinkcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserthyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserthyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserthyperlink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserthyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertindexesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertindexesentry.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertindexesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertlinebreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertlinebreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertlinebreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertlinebreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmath.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmath.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmath.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmath.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmenutitles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmenutitles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmenutitles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmenutitles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmultiindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmultiindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmultiindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertmultiindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertneutralparagraph.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertobjectfloatingframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertobjectfloatingframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertobjectfloatingframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertobjectfloatingframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagebreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagebreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagebreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagebreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagecountfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagenumberfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpagenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertplugin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertplugin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertplugin.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertplugin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertqrcode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertreferencefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertreferencefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertreferencefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowbreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowsafter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowsbefore.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrowsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidecountfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidenumberfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidetitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidetitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidetitlefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertslidetitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsound.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsound.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsound.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsound.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertspreadsheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertspreadsheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertspreadsheet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertspreadsheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsymbol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsymbol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsymbol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertsymbol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttimefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttimefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttimefieldvar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttimefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttitlefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttopicfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttopicfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttopicfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttopicfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttreecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttreecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttreecontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inserttreecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertvideo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertvideo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertvideo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_insertvideo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inspectordeck.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inspectordeck.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inspectordeck.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_inspectordeck.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_interactivegradient.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_interactivegradient.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_interactivegradient.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_interactivegradient.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_interactivetransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_interactivetransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_interactivetransparence.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_interactivetransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_intersect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_intersect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_intersect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_intersect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_jumptonexttablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_jumptonexttablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_jumptonexttablesel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_jumptonexttablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_jumptoprevtablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_jumptoprevtablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_jumptoprevtablesel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_jumptoprevtablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_label.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lastslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_leaveallgroups.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_leaveallgroups.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_leaveallgroups.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_leaveallgroups.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_leavegroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_leavegroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_leavegroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_leavegroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_legend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_legend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_legend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_legend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-clearscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-clearscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-clearscreen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-clearscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-gobackward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-gobackward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-gobackward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-gobackward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-goforward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-goforward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-goforward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-goforward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-home.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-home.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-home.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-home.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_librelogo-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowcircle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowcircle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowcircle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowcircle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowsquare.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowsquare.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowsquare.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowsquare.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linecirclearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linecirclearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linecirclearrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linecirclearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_line_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_line_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_line_diagonal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_line_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lineendstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lineendstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lineendstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lineendstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linenumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linesquarearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linesquarearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linesquarearrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linesquarearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linestyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linestyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linestyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linestyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_line.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_line.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_line.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_line.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linewidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_linewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_listbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_listbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_listbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_listbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_loadbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_loadbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_loadbasic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_loadbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lock.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_lock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_macrorecorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_macrorecorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_macrorecorder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_macrorecorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergecreatedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergecreatedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergecreatedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergecreatedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeemaildocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeemaildocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeemaildocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeemaildocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeexcludeentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeexcludeentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeexcludeentry.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeexcludeentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeprintdocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeprintdocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeprintdocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergeprintdocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergesavedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergesavedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergesavedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergesavedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergewizard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergewizard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergewizard.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mailmergewizard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managebreakpoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managebreakpoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managebreakpoints.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managebreakpoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managelanguage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managelanguage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managelanguage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managelanguage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managexmlsource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managexmlsource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managexmlsource.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_managexmlsource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_marks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_marks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_marks.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_marks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_masterlayouts.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_masterlayouts.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_masterlayouts.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_masterlayouts.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_masterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_masterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_masterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_masterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_matchgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_matchgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_matchgroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_matchgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_measureline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_measureline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_measureline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_measureline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediamute.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediamute.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediamute.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediamute.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediapause.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediapause.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediapause.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediapause.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediarepeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediarepeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediarepeat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mediarepeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_menubar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_menubar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_menubar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_menubar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergecells.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_merge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_merge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_merge.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_merge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergetable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mergetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mirror.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mirror.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mirror.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mirror.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mirrorvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mirrorvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mirrorvert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_mirrorvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_modifyframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_modifyframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_modifyframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_modifyframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_modifypage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_modifypage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_modifypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_modifypage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moduledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moduledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moduledialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moduledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_morecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_morecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_morecontrols.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_morecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_morphing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_morphing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_morphing.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_morphing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movedownsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movedownsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movedownsubitems.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movedownsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movedown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagedown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagefirst.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagelast.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepagelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepageup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepageup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepageup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_movepageup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidedown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidefirst.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidelast.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslidelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslideup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslideup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslideup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveslideup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_move.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_move.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_move.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_move.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveupsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveupsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveupsubitems.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveupsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_moveup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_name.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_name.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_name.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_name.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_navigationbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_navigationbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_navigationbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_navigationbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_navigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_navigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_navigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_navigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_neutralcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_neutralcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_neutralcellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_neutralcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newarrangement.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newarrangement.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newarrangement.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newarrangement.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newhtmldoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newhtmldoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newhtmldoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newhtmldoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newwindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_newwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nextslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nexttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nexttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nexttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_nexttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_normalmultipanegui.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_normalmultipanegui.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_normalmultipanegui.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_normalmultipanegui.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_normalviewmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_normalviewmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_normalviewmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_normalviewmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_notesmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_notesmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_notesmasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_notesmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_notesmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_notesmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_notesmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_notesmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdecdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdecimal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatincdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatpercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatpercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatpercent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatpercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +% \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatscientific.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatscientific.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatscientific.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatscientific.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatstandard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatstandard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatstandard.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatstandard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatthousands.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberingstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numericfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numericfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numericfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_numericfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectalignleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectalignright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectcatalog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectcatalog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectcatalog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectcatalog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectposition.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectposition.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectposition.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objectposition.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objecttitledescription.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objecttitledescription.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_objecttitledescription.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ok.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ok.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ok.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ok.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_openreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_openreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_openreadonly.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_openreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_openremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_openremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_openremote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_openremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_open.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_open.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_open.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_open.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_opentemplate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_optimizetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_optimizetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_optimizetable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_optimizetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_optionstreedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_optionstreedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_optionstreedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_optionstreedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_orientation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_orientation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_orientation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_orientation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinecollapseall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinecollapseall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinecollapseall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinecollapseall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinecollapse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinecollapse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinecollapse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinecollapse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineexpandall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineexpandall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineexpandall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineexpandall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineexpand.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineexpand.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineexpand.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineexpand.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinefont.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineformat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlineformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outlinemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outputqualityblackwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outputqualityblackwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outputqualityblackwhite.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outputqualityblackwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outputqualitygrayscale.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outputqualitygrayscale.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outputqualitygrayscale.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_outputqualitygrayscale.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_overline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagebreakmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagebreakmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagebreakmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagebreakmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagecolumntype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagecolumntype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagecolumntype.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagecolumntype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagemargin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagemargin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagemargin.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagemargin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagesetup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pagesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paragraphdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paragraphdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paragraphdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paragraphdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paralefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paralefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paralefttoright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paralefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pararighttoleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pararighttoleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pararighttoleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pararighttoleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paraspacedecrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paraspacedecrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paraspacedecrease.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paraspacedecrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paraspaceincrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paraspaceincrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paraspaceincrease.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paraspaceincrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteaslink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteaslink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteaslink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteaslink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlyformula.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlyformula.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlyformula.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlyformula.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlytext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlytext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlytext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlytext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlyvalue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlyvalue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlyvalue.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteonlyvalue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pastespecial.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pastespecial.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pastespecial.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pastespecial.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paste.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paste.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paste.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_paste.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pastetransposed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pastetransposed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pastetransposed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pastetransposed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteunformatted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteunformatted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteunformatted.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pasteunformatted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_patternfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_patternfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_patternfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_patternfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_photoalbumdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_photoalbumdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_photoalbumdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_photoalbumdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pickthrough.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pie_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_diagonal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_diagonal_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_diagonal_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_diagonal_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_diagonal_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_polygon_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_preformattedparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_preformattedparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_preformattedparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_preformattedparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationcurrentslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationcurrentslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationcurrentslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationcurrentslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationlayout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationminimizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationminimizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationminimizer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentationminimizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_presentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previewprintoptions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previewprintoptions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previewprintoptions.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previewprintoptions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previouspage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previouspage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previouspage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previouspage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previousslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previoustrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previoustrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previoustrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_previoustrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_prevrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_prevrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_prevrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_prevrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printdefault.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printdefault.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printdefault.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printdefault.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printersetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printersetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printersetup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printersetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printlayout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printpreview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printpreview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printpreview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_printpreview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_print.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_print.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_print.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_print.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_progressbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_progressbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_progressbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_progressbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protectbookmarks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protectbookmarks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protectbookmarks.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protectbookmarks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protectfields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protectfields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protectfields.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protectfields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protecttracechangemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protecttracechangemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protecttracechangemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_protecttracechangemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pushbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pushbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pushbutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_pushbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quickedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quotecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quotecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quotecharstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quotecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quoteparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quoteparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quoteparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_quoteparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_radiobutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_radiobutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_radiobutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_radiobutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recalcpivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recalcpivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recalcpivottable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recalcpivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recentfilelist.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recentfilelist.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recentfilelist.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recentfilelist.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recsave.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recsearch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_recsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_rounded.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_rounded_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rect_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactedexportblack.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactedexportblack.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactedexportblack.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactedexportblack.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactedexportwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactedexportwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactedexportwhite.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redactedexportwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_redo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_refreshformcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_refreshformcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_refreshformcontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_refreshformcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejectalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejectalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejectalltrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejectalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejecttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejecttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejecttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejecttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejecttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejecttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejecttrackedchangetonext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rejecttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reload.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reload.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reload.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reload.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removebullets.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removefiltersort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removefiltersort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removefiltersort.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removefiltersort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removehyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removehyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removehyperlink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removehyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_remove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_remove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_remove.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_remove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removetableof.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removetableof.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removetableof.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_removetableof.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renamemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renamemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renamemasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renamemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renameobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renameobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renameobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renameobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renamepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renamepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renamepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renamepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renameslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renameslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renameslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_renameslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_repeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_repeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_repeat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_repeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_replycomment.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_replycomment.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_replycomment.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_replycomment.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reportnavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reportnavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reportnavigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reportnavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_resetattributes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reverseorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reverseorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reverseorder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_reverseorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_romanliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_romanlowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rotateleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rotateleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rotateleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rotateleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rotateright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rotateright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rotateright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_rotateright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ruler.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_runbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_runbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_runbasic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_runbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_runmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_runmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_runmacro.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_runmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveacopy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveacopy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveacopy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveasremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveasremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveasremote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveasremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveas.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveastemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveastemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveastemplate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_saveastemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_savebackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_savebackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_savebackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_savebackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_savebasicas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_savebasicas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_savebasicas.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_savebasicas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_save.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_save.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_save.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_save.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sbaexecutesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sbaexecutesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sbaexecutesql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sbaexecutesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sbanativesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sbanativesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sbanativesql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sbanativesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scaletext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +A \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scan.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scan.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scan.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scan.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scriptorganizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scriptorganizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scriptorganizer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scriptorganizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scrollbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_scrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_searchdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_searchdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_searchdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_searchdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrinkbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrinkbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrinkbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrinkbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrinktop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrinktop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrinktop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sectionshrinktop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectbackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectbackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectbackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectbackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectdata.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectdb.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectdb.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectdb.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectdb.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selecttables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selecttables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selecttables.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selecttables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selecttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selecttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selecttable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selecttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectunprotectedcells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectunprotectedcells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectunprotectedcells.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_selectunprotectedcells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendfax.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendfax.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendfax.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendfax.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendmail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendmail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendmail.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendmail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendtoback.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendtoback.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendtoback.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sendtoback.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setborderstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setborderstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setborderstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setborderstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setdocumentproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setdocumentproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setdocumentproperties.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setdocumentproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setminimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setminimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setminimalcolumnwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setminimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setminimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setminimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setminimalrowheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setminimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setobjecttobackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setobjecttobackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setobjecttobackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setobjecttobackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setobjecttoforeground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setobjecttoforeground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setobjecttoforeground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setobjecttoforeground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoptimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoptimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoptimalcolumnwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoptimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoptimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoptimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoptimalrowheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoptimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setreminder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setreminder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setreminder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_setreminder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shadowcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shadowcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shadowcursor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shadowcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shadowed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sharedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sharedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sharedocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sharedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shear.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shell3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shell3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shell3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shell3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showannotations.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showannotations.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showannotations.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showannotations.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showbookview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showbookview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showbookview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showbookview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showcolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdatanavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdatanavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdatanavigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdatanavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdependents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdetail.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showdetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showerrors.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showerrors.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showerrors.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showerrors.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showfmexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showfmexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showfmexplorer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showfmexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showinvalid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showinvalid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showinvalid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showinvalid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showmultiplepages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showmultiplepages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showmultiplepages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showmultiplepages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shownote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shownote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shownote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shownote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showprecedents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showsinglepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showsinglepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showsinglepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showsinglepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_show.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_show.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_show.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_show.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtoolbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtoolbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtoolbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtoolbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtwopages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtwopages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtwopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showtwopages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showwhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showwhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showwhitespace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_showwhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shrink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_shrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sidebar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sidebar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sidebar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sidebar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signaturelinedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signaturelinedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signaturelinedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signaturelinedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signature.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signature.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signature.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signature.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signpdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signpdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signpdf.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_signpdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidechangewindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidechangewindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidechangewindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidechangewindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidemasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidesetup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_slidesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallcaps.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallcaps.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallcaps.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallcaps.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallestheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallestwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_smallestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snapborder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snapborder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snapborder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snapborder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snapframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snapframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snapframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snapframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snappoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snappoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snappoints.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_snappoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_solidcreate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_solidcreate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_solidcreate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_solidcreate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_solverdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_solverdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_solverdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_solverdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sortascending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sortdescending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sourcecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sourcecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sourcecharstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sourcecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara15.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara15.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara15.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara15.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacepara2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacing.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spacing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spelling.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spellonline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sphere.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sphere.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sphere.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_sphere.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spinbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spinbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spinbutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_spinbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splitcell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splitcell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splitcell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splitcell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splittable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splittable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splittable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splittable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splitwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splitwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splitwindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_splitwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_rounded.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_rounded_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_square_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.bang.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.bang.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.bang.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.bang.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.concave-star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.concave-star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.concave-star6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.concave-star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.doorplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.doorplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.doorplate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.doorplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.horizontal-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.horizontal-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.horizontal-scroll.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.horizontal-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.signet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.signet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.signet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.signet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star12.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star12.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star12.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star12.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.star8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.vertical-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.vertical-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.vertical-scroll.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_starshapes.vertical-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_statisticsmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_statisticsmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_statisticsmenu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_statisticsmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_statusbarvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_statusbarvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_statusbarvisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_statusbarvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_strikeout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_strongemphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_strongemphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_strongemphasischarstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_strongemphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_styleapply.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_styleapply.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_styleapply.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_styleapply.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_stylenewbyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_styleupdatebyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_subscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_subscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_subscript.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_subscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_substract.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_substract.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_substract.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_substract.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_subtitleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_subtitleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_subtitleparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_subtitleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_superscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_superscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_superscript.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_superscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_switchcontroldesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_switchcontroldesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_switchcontroldesignmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_switchcontroldesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_switchxformsdesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_switchxformsdesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_switchxformsdesignmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_switchxformsdesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.brace-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.brace-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.brace-pair.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.brace-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.bracket-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.bracket-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.bracket-pair.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.bracket-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.cloud.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.cloud.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.cloud.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.cloud.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.diamond-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.diamond-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.diamond-bevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.diamond-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.flower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.flower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.flower.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.flower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.forbidden.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.forbidden.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.forbidden.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.forbidden.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.heart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.heart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.heart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.heart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.left-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.left-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.left-brace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.left-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.left-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.left-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.left-bracket.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.left-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.lightning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.lightning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.lightning.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.lightning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.moon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.moon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.moon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.moon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.octagon-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.octagon-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.octagon-bevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.octagon-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.puzzle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.puzzle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.puzzle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.puzzle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.quad-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.quad-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.quad-bevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.quad-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.right-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.right-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.right-brace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.right-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.right-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.right-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.right-bracket.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.right-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.sun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.sun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.sun.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.sun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_symbolshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledeselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledeselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledeselectall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledeselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tabledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodefixprop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodefixprop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodefixprop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodefixprop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodefix.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodefix.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodefix.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodefix.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodevariable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodevariable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodevariable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablemodevariable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablenumberformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablenumberformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablenumberformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tablenumberformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tableselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tableselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tableselectall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_tableselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_templatemanager.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_testmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_testmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_testmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_testmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textbodyparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textbodyparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textbodyparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textbodyparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textdirectionlefttoright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textdirectiontoptobottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_text_marquee.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_text.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_texttocolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_texttocolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_texttocolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_texttocolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_thesaurus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_thesaurus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_thesaurus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_thesaurus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_timefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_timefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_timefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_timefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_titlepagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_titlepagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_titlepagedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_titlepagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_titleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_titleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_titleparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_titleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleanchortype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleanchortype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleanchortype.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleanchortype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleaxistitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleaxistitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleaxistitle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleaxistitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglebreakpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglebreakpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglebreakpoint.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglebreakpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglegridhorizontal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglegridhorizontal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglegridhorizontal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglegridhorizontal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglegridvertical.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglegridvertical.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglegridvertical.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglegridvertical.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglelegend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglelegend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglelegend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglelegend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglemergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglemergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglemergecells.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglemergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleobjectbeziermode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleobjectbeziermode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleobjectbeziermode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleobjectbeziermode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleobjectrotatemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleobjectrotatemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleobjectrotatemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggleobjectrotatemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglesheetgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglesheetgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglesheetgrid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_togglesheetgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggletabbarvisibility.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggletabbarvisibility.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggletabbarvisibility.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggletabbarvisibility.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggletitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggletitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggletitle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toggletitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toolbarmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toolbarmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toolbarmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toolbarmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toolprotectiondocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toolprotectiondocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toolprotectiondocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_toolprotectiondocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_torus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_torus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_torus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_torus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_trackchangesbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_trackchangesbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_trackchangesbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_trackchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_trackchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_trackchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_trackchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_transformdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_transformdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_transformdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_transformdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_undo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_undo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_undo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_undo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ungroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_ungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_unhainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_unhainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_unhainframes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_unhainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_unsetcellsreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_unsetcellsreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_unsetcellsreadonly.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_unsetcellsreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_updatecurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_updatecurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_updatecurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_updatecurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_upsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_upsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_upsearch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_upsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_urlbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_urlbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_urlbutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_urlbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_validation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_validation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_validation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_validation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_versiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_versiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_versiondialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_versiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticalcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticalcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticalcaption.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticalcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticaltextfittosizetool.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticaltextfittosizetool.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticaltextfittosizetool.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticaltextfittosizetool.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticaltext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_vfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_vfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_vfixedline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_vfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewdatasourcebrowser.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewdatasourcebrowser.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewdatasourcebrowser.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewdatasourcebrowser.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewformasgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewformasgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewformasgrid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewformasgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewrowcolumnheaders.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewrowcolumnheaders.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewrowcolumnheaders.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewrowcolumnheaders.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewvaluehighlighting.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewvaluehighlighting.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewvaluehighlighting.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_viewvaluehighlighting.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_vruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_vruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_vruler.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_vruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_watermark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_watermark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_watermark.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_watermark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_window3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_window3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_window3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_window3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wordcountdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapcontour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapcontour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapcontour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapcontour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapideal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapideal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapideal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapideal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapoff.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapoff.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapoff.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapoff.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wraptext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wraptext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wraptext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wraptext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapthrough.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_wrapthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_xlinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_xlinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_xlinecolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_xlinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom100percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom100percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom100percent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom100percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom200percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom200percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom200percent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom200percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomin.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoommode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoommode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoommode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoommode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomnext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomnext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomnext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomnext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomoptimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomoptimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomoptimal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomoptimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompagewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompagewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompagewidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompagewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompanning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompanning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompanning.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoompanning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomprevious.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomprevious.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomprevious.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoomprevious.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/lc_zoom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/nl/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/pl/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/pl/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/pl/lc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/pl/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/pl/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/pl/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/pl/lc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/pl/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/pl/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/pl/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/pl/sc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/pl/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/pl/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/pl/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/pl/sc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/pl/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/removebullets.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/ru/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_about.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_about.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_about.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_about.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_absoluterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent1cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent1cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent1cellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent1cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent2cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent2cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent2cellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent2cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent3cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent3cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent3cellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accent3cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_acceptalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_acceptalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_acceptalltrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_acceptalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchangetonext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_accepttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_actionmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_actionmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_actionmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_actionmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_adddirect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_adddirect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_adddirect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_adddirect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_additionsdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_additionsdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_additionsdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_additionsdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addressbooksource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addressbooksource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addressbooksource.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addressbooksource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_add.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_add.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_add.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_add.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addtable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addwatch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addwatch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addwatch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_addwatch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_advancedmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_advancedmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_advancedmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_advancedmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignblock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignblock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignblock.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignblock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligncenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligndown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligndown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligndown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligndown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignhorizontalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignhorizontalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignhorizontalcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignhorizontalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignmiddle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignmiddle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignmiddle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignmiddle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligntop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_aligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignverticalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignverticalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignverticalcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alignverticalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alphaliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alphalowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationeffects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationeffects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationeffects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationeffects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_animationobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.chevron.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.chevron.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.chevron.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.chevron.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.circular-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.circular-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.circular-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.circular-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.corner-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.corner-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.corner-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.corner-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.down-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.down-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-right-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.left-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.notched-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.notched-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.notched-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.notched-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.pentagon-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.pentagon-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.pentagon-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.pentagon-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.quad-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.quad-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.quad-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.quad-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.quad-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.quad-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.quad-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.quad-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.right-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.split-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.split-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.split-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.split-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.split-round-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.split-round-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.split-round-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.split-round-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.s-sharped-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.s-sharped-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.s-sharped-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.s-sharped-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.striped-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.striped-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.striped-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.striped-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-down-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-down-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-arrow-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-down-arrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_arrowshapes.up-right-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_assignlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_assignlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_assignlayout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_assignlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_assignmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_assignmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_assignmacro.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_assignmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_attributepagesize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_attributepagesize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_attributepagesize.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_attributepagesize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_auditingfillmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_auditingfillmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_auditingfillmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_auditingfillmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_auditmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_auditmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_auditmenu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_auditmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autocontrolfocus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autocontrolfocus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autocontrolfocus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autocontrolfocus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autocorrectdlg.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autoformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autoformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autoformat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autoformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autooutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autooutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autooutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autooutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autopilotmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autopilotmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autopilotmenu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autopilotmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autoredactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autoredactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autoredactdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autoredactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autosum.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autosum.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autosum.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_autosum.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_avmediaplayer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_avmediaplayer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_avmediaplayer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_avmediaplayer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backgroundcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backgroundcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backgroundcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backgroundcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_backward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_badcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_badcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_badcellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_badcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicideappear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicideappear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicideappear.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicideappear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.block-arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.block-arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.block-arc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.block-arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.can.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.can.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.can.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.can.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.cross.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.cross.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.cross.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.cross.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.cube.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.diamond.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.diamond.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.diamond.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.diamond.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.frame.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.frame.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.frame.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.frame.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.hexagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.hexagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.hexagon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.hexagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.isosceles-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.isosceles-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.isosceles-triangle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.isosceles-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.octagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.octagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.octagon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.octagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.paper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.paper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.paper.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.paper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.pentagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.pentagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.pentagon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.pentagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.right-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.right-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.right-triangle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.right-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.ring.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.ring.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.ring.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.ring.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.round-quadrat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.round-quadrat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.round-quadrat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.round-quadrat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.trapezoid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.trapezoid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.trapezoid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicshapes.trapezoid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepinto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepinto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepinto.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepinto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstepover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_basicstop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beforeobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beforeobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beforeobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beforeobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_behindobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_behindobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_behindobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_behindobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierappend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierappend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierappend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierappend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierclose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierclose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierclose.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierclose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierconvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierconvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierconvert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierconvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziercutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziercutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziercutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziercutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierdelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezieredge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezieredge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezieredge.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezieredge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziereliminatepoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziereliminatepoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziereliminatepoints.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziereliminatepoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierfill.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierfill.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierfill.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierfill.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierinsert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierinsert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierinsert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezierinsert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziermove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziermove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziermove.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziermove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziersmooth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziersymmetric.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziersymmetric.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziersymmetric.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_beziersymmetric.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezier_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezier_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezier_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bezier_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bibliographycomponent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bibliographycomponent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bibliographycomponent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bibliographycomponent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bmpmask.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bmpmask.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bmpmask.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bmpmask.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_borderdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_borderdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_borderdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_borderdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_break.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_break.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_break.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_break.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bringtofront.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bringtofront.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bringtofront.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bringtofront.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_browseview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_browseview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_browseview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_browseview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + /&amp;amp;gt; + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bulletsandnumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bullet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_bullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calculate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calculate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calculate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calculate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.cloud-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.cloud-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.cloud-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.cloud-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.line-callout-3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.rectangular-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.rectangular-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.rectangular-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.rectangular-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.round-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.round-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.round-callout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.round-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_calloutshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cancel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cancel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cancel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cancel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_capturepoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_capturepoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_capturepoint.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_capturepoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cellprotection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cellprotection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cellprotection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cellprotection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_chainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_chainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_chainframes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_chainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changebezier.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changebezier.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changebezier.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changebezier.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changecasetolower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changecasetolower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changecasetolower.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changecasetolower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changecasetoupper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changecasetoupper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changecasetoupper.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changecasetoupper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changedatabasefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changedatabasefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changedatabasefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changedatabasefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changepicture.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changepicture.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changepicture.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changepicture.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changepolygon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_changepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_chapternumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_charfontname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_charmapcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_charmapcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_charmapcontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_charmapcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_checkbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_checkbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_checkbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_checkbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosecontrols.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosedesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosedesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosedesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosedesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosemacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosemacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosemacro.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosemacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosepolygon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_choosepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlearc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlearc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlearc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlearc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlecut.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlecut_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlepie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlepie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlepie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlepie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlepie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlepie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlepie_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circlepie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circle_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circle_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circle_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_circle_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrowdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrowdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrowdependents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrowdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrowprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrowprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrowprecedents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrowprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cleararrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closedocs.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closedocs.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closedocs.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closedocs.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closedoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closedoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closedoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closedoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closemasterview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closemasterview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closemasterview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closemasterview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closepreview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closepreview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closepreview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_closepreview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_colorscaleformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_colorscaleformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_colorscaleformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_colorscaleformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_colorsettings.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_colorsettings.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_colorsettings.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_colorsettings.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_color.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_combine.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_combine.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_combine.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_combine.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_combobox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_combobox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_combobox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_combobox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_commentchangetracking.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_commentchangetracking.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_commentchangetracking.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_commentchangetracking.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_comparedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_comparedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_comparedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_comparedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_compilebasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_compilebasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_compilebasic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_compilebasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_compressgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_compressgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_compressgraphic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_compressgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_conddateformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_conddateformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_conddateformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_conddateformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_conditionalformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_conditionalformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_conditionalformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_conditionalformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cone.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cone.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cone.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cone.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_configuredialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_configuredialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_configuredialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_configuredialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvecircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvecirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurvecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorcurve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinecircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinecirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinesarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinescircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinescircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinescircleend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinescircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinescirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinescirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinescirclestart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlinescirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlines.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlines.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlines.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorlines.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connectorline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connector.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_connect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_continuenumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_contourdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_contourdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_contourdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_contourdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_controlcodes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_controlcodes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_controlcodes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_controlcodes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_controlproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_controlproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_controlproperties.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_controlproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_convertinto3dlathe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_convertinto3dlathe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_convertinto3dlathe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_convertinto3dlathe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_convertinto3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_convertinto3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_convertinto3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_convertinto3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_copyobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_copyobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_copyobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_copyobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_copy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_copy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_copy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_copy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crookrotate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crookrotate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crookrotate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crookrotate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crookslant.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crookslant.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crookslant.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crookslant.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_crop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cube.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_currencyfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_currencyfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_currencyfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_currencyfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_customshowdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_customshowdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_customshowdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_customshowdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cut.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cylinder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cylinder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cylinder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cylinder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cyramid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cyramid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cyramid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_cyramid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataarearefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataarearefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataarearefresh.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataarearefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_databarformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_databarformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_databarformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_databarformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataconsolidate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataconsolidate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataconsolidate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataconsolidate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datadatapilotrun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datadatapilotrun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datadatapilotrun.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datadatapilotrun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterautofilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterautofilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterautofilter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterautofilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterspecialfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterspecialfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterspecialfilter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterspecialfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterstandardfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterstandardfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterstandardfilter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datafilterstandardfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataform.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataimport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataimport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataimport.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataimport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataincolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataincolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataincolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataincolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datainrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datainrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datainrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datainrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataproviderrefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataproviderrefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataproviderrefresh.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataproviderrefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataprovider.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataprovider.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataprovider.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataprovider.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataranges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataranges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataranges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dataranges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datasort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datasort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datasort.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datasort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datastreams.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datastreams.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datastreams.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datastreams.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datasubtotals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datasubtotals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datasubtotals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datasubtotals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_datefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbaddrelation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbaddrelation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbaddrelation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbaddrelation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbchangedesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbchangedesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbchangedesignmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbchangedesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbclearquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbclearquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbclearquery.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbclearquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbdistinctvalues.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbdistinctvalues.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbdistinctvalues.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbdistinctvalues.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformdelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformrename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbformrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbindexdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbindexdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbindexdesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbindexdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewform.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewquerysql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewquerysql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewquerysql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewquerysql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewquery.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewreport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewreport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewreport.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewreport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewtable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewviewsql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewviewsql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewviewsql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewviewsql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbnewview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbquerydelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbquerydelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbquerydelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbquerydelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbquerypropertiesdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbquerypropertiesdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbquerypropertiesdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbquerypropertiesdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryrename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbqueryrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbrelationdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbrelationdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbrelationdesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbrelationdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportdelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportrename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbreportrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbsortingandgrouping.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbsortingandgrouping.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbsortingandgrouping.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbsortingandgrouping.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtabledelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtabledelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtabledelete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtabledelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtableedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtableedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtableedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtableedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtableopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtableopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtableopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtableopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtablerename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtablerename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtablerename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbtablerename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewaliases.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewaliases.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewaliases.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewaliases.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewforms.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewforms.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewforms.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewforms.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewfunctions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewfunctions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewfunctions.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewfunctions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewqueries.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewqueries.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewqueries.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewqueries.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewreports.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewreports.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewreports.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewreports.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewtablenames.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewtablenames.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewtablenames.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewtablenames.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewtables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewtables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewtables.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dbviewtables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementindent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementlevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementsublevels.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_decrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultbullet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultcharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultcharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultcharstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultcharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultnumbering.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_definedbname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_definedbname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_definedbname.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_definedbname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_definename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_definename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_definename.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_definename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defineprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defineprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defineprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_defineprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteallannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteallannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteallannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteallannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteallbreaks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteallbreaks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteallbreaks.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteallbreaks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletecell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletecolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletemasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletepivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletepivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletepivottable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletepivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleterecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleterows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleterows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleterows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleterows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deleteslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_delete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_delete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_delete.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_delete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletetable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_deletetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_designerdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_developmenttoolsdockingwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_developmenttoolsdockingwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_developmenttoolsdockingwindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_developmenttoolsdockingwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diaeffect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diaeffect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diaeffect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diaeffect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxis.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxis.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxis.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxis.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisx.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisx.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisx.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisx.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisxyz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisxyz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisxyz.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisxyz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisz.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramaxisz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramdata.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramtype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramtype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramtype.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramtype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramwall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramwall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramwall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diagramwall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diamode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diamode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diamode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diamode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diaspeed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diaspeed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diaspeed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diaspeed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dia.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diatime.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diatime.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diatime.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_diatime.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dismantle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dismantle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dismantle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dismantle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymasterbackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymasterbackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymasterbackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymasterbackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymasterobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymasterobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymasterobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymasterobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_displaymode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributecolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzdistance.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributehorzright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributerows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributerows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributerows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributerows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributeselection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributeselection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributeselection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributeselection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertcenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertdistance.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributevertdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributeverttop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributeverttop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributeverttop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_distributeverttop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_documentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_documentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_documentation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_documentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_doubleclicktextedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_downsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_downsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_downsearch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_downsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_drawcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_drawcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_drawcaption.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_drawcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_drawchart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_drawchart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_drawchart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_drawchart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dsbinsertcontent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dsbinsertcontent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dsbinsertcontent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dsbinsertcontent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dsbrowserexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dsbrowserexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dsbrowserexplorer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_dsbrowserexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicatepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicatepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicatepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicatepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicatesheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicatesheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicatesheet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicatesheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicateslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicateslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicateslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_duplicateslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editcurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editcurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editcurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editframeset.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editframeset.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editframeset.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editframeset.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editglossary.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editglossary.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editglossary.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editglossary.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editheaderandfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editheaderandfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editheaderandfooter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editheaderandfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_edithyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_edithyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_edithyperlink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_edithyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editprintarea.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editqrcode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_edit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipsecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipsecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipsecut.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipsecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipsecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipsecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipsecut_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipsecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipse_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipse_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipse_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ellipse_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_emojicontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_emojicontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_emojicontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_emojicontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_emphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_emphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_emphasischarstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_emphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entergroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entergroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entergroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entergroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirecell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirecolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirerow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirerow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirerow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_entirerow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_equalizeheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_equalizeheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_equalizeheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_equalizeheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_equalizewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_equalizewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_equalizewidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_equalizewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_errorcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_errorcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_errorcellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_errorcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_euroconverter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_euroconverter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_euroconverter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_euroconverter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_executereport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_executereport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_executereport.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_executereport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_expandpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_expandpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_expandpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_expandpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdirecttoepub.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdirecttoepub.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdirecttoepub.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdirecttoepub.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdirecttopdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdirecttopdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdirecttopdf.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportdirecttopdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportto.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_exportto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extendedhelp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extendedhelp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extendedhelp.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extendedhelp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusion3dcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusion3dcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusion3dcolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusion3dcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiondepthfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiondepthfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiondepthfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiondepthfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiondirectionfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiondirectionfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiondirectionfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiondirectionfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusionlightingfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusionlightingfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusionlightingfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusionlightingfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusionsurfacefloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusionsurfacefloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusionsurfacefloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusionsurfacefloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltdown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_extrusiontiltup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fields.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filecontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filedocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filldown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filldown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filldown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_filldown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillshadow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillshadow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillshadow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillshadow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fillup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_firstslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-card.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-card.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-card.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-card.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-collate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-collate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-collate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-collate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-data.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-decision.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-decision.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-decision.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-decision.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-delay.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-delay.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-delay.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-delay.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-direct-access-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-direct-access-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-direct-access-storage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-direct-access-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-display.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-display.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-display.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-display.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-document.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-document.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-document.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-document.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-internal-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-internal-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-internal-storage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-internal-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-manual-input.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-manual-input.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-manual-input.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-manual-input.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-multidocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-multidocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-multidocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-multidocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-off-page-connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-off-page-connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-off-page-connector.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-off-page-connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-or.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-or.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-or.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-or.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-predefined-process.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-predefined-process.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-predefined-process.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-predefined-process.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-preparation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-preparation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-preparation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-preparation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-punched-tape.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-punched-tape.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-punched-tape.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-punched-tape.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-sequential-access.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-sequential-access.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-sequential-access.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-sequential-access.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-sort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-sort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-sort.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-sort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-stored-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-stored-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-stored-data.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-stored-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-summing-junction.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-summing-junction.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-summing-junction.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-summing-junction.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-terminator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-terminator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-terminator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.flowchart-terminator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_flowchartshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkgalleryfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkgalleryfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkgalleryfloater.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkgalleryfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworksameletterheights.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworksameletterheights.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworksameletterheights.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworksameletterheights.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-chevron-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-chevron-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-chevron-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-chevron-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-chevron-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-chevron-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-chevron-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-chevron-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-circle-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-curve-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-curve-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-curve-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-curve-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-curve-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-curve-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-curve-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-curve-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-fade-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-inflate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-inflate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-inflate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-inflate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-plain-text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-plain-text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-plain-text.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-plain-text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-slant-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-slant-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-slant-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-slant-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-slant-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-slant-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-slant-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-slant-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-stop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-stop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-stop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-stop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-triangle-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-triangle-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-triangle-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-triangle-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-wave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-wave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-wave.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontworkshapetype.fontwork-wave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontwork.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontwork.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontwork.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fontwork.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_footnotedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_footnotedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_footnotedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_footnotedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatcelldialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatcelldialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatcelldialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatcelldialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatcolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatgroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatpaintbrush.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatpaintbrush.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatpaintbrush.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatpaintbrush.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formattedfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formattedfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formattedfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formattedfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatungroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formatungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formdesigntools.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formdesigntools.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formdesigntools.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formdesigntools.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formelcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formelcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formelcursor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formelcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formfiltered.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formfiltered.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formfiltered.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formfiltered.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formfilternavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formfilternavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formfilternavigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formfilternavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formproperties.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_formproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_forward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_forward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_forward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_forward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_framedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_framedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_framedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_framedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_framelinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_framelinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_framelinecolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_framelinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freeline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freeline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freeline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freeline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freeline_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freeline_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freeline_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freeline_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanesfirstcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanesfirstcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanesfirstcolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanesfirstcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanesfirstrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanesfirstrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanesfirstrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanesfirstrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_freezepanes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fullscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fullscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fullscreen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_fullscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gallery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gallery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gallery.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gallery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueeditmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueeditmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueeditmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueeditmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectionright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectiontop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectiontop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectiontop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueescapedirectiontop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzaligncenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzalignleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzalignright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluehorzalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueinsertpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueinsertpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueinsertpoint.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_glueinsertpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluepercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluepercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluepercent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluepercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertalignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertalignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertalignbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertalignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertaligncenter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertaligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertaligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertaligntop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gluevertaligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_goalseekdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_goalseekdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_goalseekdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_goalseekdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_goodcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_goodcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_goodcellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_goodcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotoendofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotoendofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotoendofdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotoendofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotoend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotoend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotoend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotoend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotopage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotopage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotopage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotopage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotostartofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotostartofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotostartofdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotostartofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotostartoftable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotostartoftable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotostartoftable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gotostartoftable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafblue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafblue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafblue.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafblue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafcontrast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafcontrast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafcontrast.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafcontrast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafgamma.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafgamma.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafgamma.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafgamma.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafgreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafgreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafgreen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafgreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafluminance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafluminance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafluminance.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafluminance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafred.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafred.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafred.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grafred.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graftransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graftransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graftransparence.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graftransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterinvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterinvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterinvert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterinvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltermosaic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltermosaic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltermosaic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltermosaic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterpopart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterpopart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterpopart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterpopart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterposter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterposter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterposter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterposter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterrelief.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterrelief.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterrelief.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterrelief.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterremovenoise.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterremovenoise.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterremovenoise.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfilterremovenoise.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersepia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersepia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersepia.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersepia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersharpen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersharpen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersharpen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersharpen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersmooth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersobel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersobel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersobel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersobel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersolarize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersolarize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersolarize.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphicfiltersolarize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_graphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_greatestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_greatestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_greatestheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_greatestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_greatestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_greatestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_greatestwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_greatestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_griduse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_griduse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_griduse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_griduse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gridvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gridvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gridvisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_gridvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_groupbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_groupbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_groupbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_groupbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_groupoutlinemenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_groupoutlinemenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_groupoutlinemenu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_groupoutlinemenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_group.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_group.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_group.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_group.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_grow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_halfsphere.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_halfsphere.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_halfsphere.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_halfsphere.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_handoutmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_handoutmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_handoutmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_handoutmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hangingindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hangingindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hangingindent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hangingindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading1parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading1parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading1parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading1parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading2parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading2parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading2parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading2parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading3parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading3parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading3parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading3parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading4parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading4parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading4parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading4parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading5parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading5parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading5parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading5parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading6parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading6parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading6parastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_heading6parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helpindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helpindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helpindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helpindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesmove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesmove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesmove.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesmove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesuse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesuse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesuse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesuse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesvisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_helplinesvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hfixedline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hideallnotes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hideallnotes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hideallnotes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hideallnotes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidecolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidedetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidedetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidedetail.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidedetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidenote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidenote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidenote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidenote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hiderow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hiderow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hiderow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hiderow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hideslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hideslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hideslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hideslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidewhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidewhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidewhitespace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hidewhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hscrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hscrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hscrollbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hscrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hyphenate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_iconsetformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_iconsetformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_iconsetformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_iconsetformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagebutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagebutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagebutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagebutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagecontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagemapdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagemapdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagemapdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_imagemapdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_importdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_importdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_importdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_importdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_importfromfile.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_importfromfile.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_importfromfile.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_importfromfile.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementindent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementlevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementsublevels.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_incrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inputlinevisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inputlinevisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inputlinevisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inputlinevisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inscellsctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inscellsctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inscellsctrl.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inscellsctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertauthoritiesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertauthoritiesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertauthoritiesentry.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertauthoritiesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertbookmark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertbookmark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertbookmark.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertbookmark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertbreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcaptiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcaptiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcaptiondialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcaptiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcellsdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcellsdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcellsdown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcellsdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcellsright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcellsright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcellsright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcellsright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnbreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnsafter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnsbefore.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumnsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdatefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdatefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdatefieldvar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdatefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdraw.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdraw.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdraw.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertdraw.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertendnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertendnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertendnote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertendnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertenvelope.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertenvelope.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertenvelope.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertenvelope.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertexternaldatasource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertexternaldatasource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertexternaldatasource.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertexternaldatasource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfieldctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfieldctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfieldctrl.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfieldctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfixedtext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfooter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfootnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfootnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfootnote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertfootnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertgraphic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertheader.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertheader.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertheader.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertheader.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserthyperlinkcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserthyperlinkcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserthyperlinkcontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserthyperlinkcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserthyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserthyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserthyperlink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserthyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertindexesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertindexesentry.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertindexesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertlinebreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertlinebreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertlinebreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertlinebreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmath.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmath.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmath.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmath.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmenutitles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmenutitles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmenutitles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmenutitles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmultiindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmultiindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmultiindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertmultiindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertneutralparagraph.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertobjectfloatingframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertobjectfloatingframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertobjectfloatingframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertobjectfloatingframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagebreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagebreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagebreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagebreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagecountfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagenumberfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpagenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertplugin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertplugin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertplugin.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertplugin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertqrcode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertreferencefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertreferencefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertreferencefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowbreak.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowsafter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowsbefore.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrowsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidecountfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidenumberfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidetitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidetitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidetitlefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertslidetitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsound.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsound.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsound.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsound.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertspreadsheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertspreadsheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertspreadsheet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertspreadsheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsymbol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsymbol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsymbol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertsymbol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttimefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttimefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttimefieldvar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttimefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttitlefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttopicfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttopicfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttopicfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttopicfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttreecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttreecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttreecontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inserttreecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertvideo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertvideo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertvideo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_insertvideo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inspectordeck.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inspectordeck.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inspectordeck.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_inspectordeck.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_interactivegradient.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_interactivegradient.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_interactivegradient.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_interactivegradient.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_interactivetransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_interactivetransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_interactivetransparence.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_interactivetransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_intersect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_intersect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_intersect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_intersect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_jumptonexttablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_jumptonexttablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_jumptonexttablesel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_jumptonexttablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_jumptoprevtablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_jumptoprevtablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_jumptoprevtablesel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_jumptoprevtablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_label.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lastslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_leaveallgroups.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_leaveallgroups.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_leaveallgroups.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_leaveallgroups.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_leavegroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_leavegroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_leavegroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_leavegroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_legend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_legend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_legend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_legend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-clearscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-clearscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-clearscreen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-clearscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-gobackward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-gobackward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-gobackward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-gobackward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-goforward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-goforward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-goforward.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-goforward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-home.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-home.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-home.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-home.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_librelogo-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowcircle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowcircle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowcircle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowcircle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowsquare.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowsquare.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowsquare.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowsquare.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrows.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linecirclearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linecirclearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linecirclearrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linecirclearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_line_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_line_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_line_diagonal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_line_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lineendstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lineendstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lineendstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lineendstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linenumberingdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linesquarearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linesquarearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linesquarearrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linesquarearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linestyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linestyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linestyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linestyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_line.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_line.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_line.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_line.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linewidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_linewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_listbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_listbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_listbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_listbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_loadbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_loadbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_loadbasic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_loadbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lock.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_lock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_macrorecorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_macrorecorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_macrorecorder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_macrorecorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergecreatedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergecreatedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergecreatedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergecreatedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeemaildocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeemaildocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeemaildocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeemaildocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeexcludeentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeexcludeentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeexcludeentry.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeexcludeentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeprintdocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeprintdocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeprintdocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergeprintdocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergesavedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergesavedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergesavedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergesavedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergewizard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergewizard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergewizard.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mailmergewizard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managebreakpoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managebreakpoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managebreakpoints.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managebreakpoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managelanguage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managelanguage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managelanguage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managelanguage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managexmlsource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managexmlsource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managexmlsource.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_managexmlsource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_marks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_marks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_marks.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_marks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_masterlayouts.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_masterlayouts.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_masterlayouts.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_masterlayouts.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_masterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_masterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_masterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_masterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_matchgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_matchgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_matchgroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_matchgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_measureline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_measureline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_measureline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_measureline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediamute.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediamute.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediamute.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediamute.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediapause.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediapause.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediapause.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediapause.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediarepeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediarepeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediarepeat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mediarepeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_menubar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_menubar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_menubar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_menubar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergecells.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergedocuments.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_merge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_merge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_merge.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_merge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergetable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mergetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mirror.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mirror.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mirror.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mirror.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mirrorvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mirrorvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mirrorvert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_mirrorvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_modifyframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_modifyframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_modifyframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_modifyframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_modifypage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_modifypage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_modifypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_modifypage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moduledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moduledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moduledialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moduledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_morecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_morecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_morecontrols.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_morecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_morphing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_morphing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_morphing.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_morphing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movedownsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movedownsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movedownsubitems.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movedownsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movedown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagedown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagefirst.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagelast.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepagelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepageup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepageup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepageup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_movepageup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidedown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidefirst.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidelast.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslidelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslideup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslideup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslideup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveslideup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_move.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_move.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_move.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_move.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveupsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveupsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveupsubitems.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveupsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_moveup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_name.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_name.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_name.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_name.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_navigationbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_navigationbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_navigationbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_navigationbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_navigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_navigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_navigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_navigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_neutralcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_neutralcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_neutralcellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_neutralcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newarrangement.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newarrangement.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newarrangement.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newarrangement.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newhtmldoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newhtmldoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newhtmldoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newhtmldoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + /&amp;amp;gt; + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newwindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_newwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nextslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nexttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nexttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nexttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_nexttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_normalmultipanegui.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_normalmultipanegui.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_normalmultipanegui.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_normalmultipanegui.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,55 @@ + + + + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_normalviewmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_normalviewmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_normalviewmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_normalviewmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_notesmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_notesmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_notesmasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_notesmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_notesmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_notesmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_notesmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_notesmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdecdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdecimal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatincdecimals.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatpercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatpercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatpercent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatpercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatscientific.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatscientific.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatscientific.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatscientific.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatstandard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatstandard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatstandard.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatstandard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatthousands.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberingstart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numericfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numericfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numericfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_numericfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectalignleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectalignright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectcatalog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectcatalog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectcatalog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectcatalog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectposition.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectposition.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectposition.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objectposition.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objecttitledescription.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objecttitledescription.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objecttitledescription.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_objecttitledescription.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ok.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ok.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ok.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ok.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_openreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_openreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_openreadonly.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_openreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_openremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_openremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_openremote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_openremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_open.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_open.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_open.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_open.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_opentemplate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_optimizetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_optimizetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_optimizetable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_optimizetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_optionstreedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_optionstreedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_optionstreedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_optionstreedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_orientation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_orientation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_orientation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_orientation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinecollapseall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinecollapseall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinecollapseall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinecollapseall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinecollapse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinecollapse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinecollapse.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinecollapse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineexpandall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineexpandall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineexpandall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineexpandall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineexpand.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineexpand.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineexpand.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineexpand.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinefont.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineformat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlineformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outlinemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outputqualityblackwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outputqualityblackwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outputqualityblackwhite.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outputqualityblackwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outputqualitygrayscale.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outputqualitygrayscale.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outputqualitygrayscale.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_outputqualitygrayscale.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_overline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagebreakmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagebreakmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagebreakmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagebreakmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagecolumntype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagecolumntype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagecolumntype.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagecolumntype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagemargin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagemargin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagemargin.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagemargin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagesetup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pagesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paragraphdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paragraphdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paragraphdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paragraphdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paralefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paralefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paralefttoright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paralefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + +/&amp;amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pararighttoleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pararighttoleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pararighttoleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pararighttoleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + +/&amp;amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paraspacedecrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paraspacedecrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paraspacedecrease.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paraspacedecrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paraspaceincrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paraspaceincrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paraspaceincrease.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paraspaceincrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteaslink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteaslink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteaslink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteaslink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlyformula.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlyformula.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlyformula.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlyformula.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlytext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlytext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlytext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlytext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlyvalue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlyvalue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlyvalue.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteonlyvalue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pastespecial.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pastespecial.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pastespecial.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pastespecial.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paste.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paste.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paste.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_paste.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pastetransposed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pastetransposed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pastetransposed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pastetransposed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteunformatted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteunformatted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteunformatted.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pasteunformatted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_patternfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_patternfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_patternfield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_patternfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_photoalbumdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_photoalbumdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_photoalbumdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_photoalbumdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pickthrough.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pie_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_diagonal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_diagonal_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_diagonal_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_diagonal_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_diagonal_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_polygon_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_position.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_position.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_position.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_position.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_preformattedparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_preformattedparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_preformattedparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_preformattedparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationcurrentslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationcurrentslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationcurrentslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationcurrentslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationlayout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationminimizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationminimizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationminimizer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentationminimizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_presentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previewprintoptions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previewprintoptions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previewprintoptions.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previewprintoptions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousannotation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previouspage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previouspage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previouspage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previouspage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previousslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previoustrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previoustrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previoustrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_previoustrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_prevrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_prevrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_prevrecord.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_prevrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printdefault.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printdefault.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printdefault.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printdefault.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printersetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printersetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printersetup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printersetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printlayout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printpreview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printpreview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printpreview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_printpreview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_print.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_print.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_print.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_print.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_progressbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_progressbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_progressbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_progressbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protectbookmarks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protectbookmarks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protectbookmarks.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protectbookmarks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protectfields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protectfields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protectfields.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protectfields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protecttracechangemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protecttracechangemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protecttracechangemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_protecttracechangemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pushbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pushbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pushbutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_pushbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quickedit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quit.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quotecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quotecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quotecharstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quotecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quoteparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quoteparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quoteparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_quoteparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_radiobutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_radiobutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_radiobutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_radiobutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recalcpivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recalcpivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recalcpivottable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recalcpivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recentfilelist.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recentfilelist.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recentfilelist.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recentfilelist.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recsave.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recsearch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_recsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_rounded.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_rounded_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rect_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactdoc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactedexportblack.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactedexportblack.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactedexportblack.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactedexportblack.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactedexportwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactedexportwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactedexportwhite.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redactedexportwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_redo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_refreshformcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_refreshformcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_refreshformcontrol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_refreshformcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejectalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejectalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejectalltrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejectalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejecttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejecttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejecttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejecttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejecttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejecttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejecttrackedchangetonext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rejecttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reload.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reload.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reload.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reload.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removebullets.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removefiltersort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removefiltersort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removefiltersort.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removefiltersort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removehyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removehyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removehyperlink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removehyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_remove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_remove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_remove.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_remove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removetableof.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removetableof.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removetableof.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_removetableof.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renamemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renamemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renamemasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renamemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renameobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renameobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renameobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renameobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renamepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renamepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renamepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renamepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renameslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renameslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renameslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_renameslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_repeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_repeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_repeat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_repeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_replycomment.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_replycomment.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_replycomment.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_replycomment.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reportnavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reportnavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reportnavigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reportnavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_resetattributes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reverseorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reverseorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reverseorder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_reverseorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_romanliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_romanlowliststyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rotateleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rotateleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rotateleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rotateleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rotateright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rotateright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rotateright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_rotateright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ruler.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_runbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_runbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_runbasic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_runbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_runmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_runmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_runmacro.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_runmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveacopy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveacopy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveacopy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveasremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveasremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveasremote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveasremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveas.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveastemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveastemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveastemplate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_saveastemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_savebackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_savebackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_savebackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_savebackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_savebasicas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_savebasicas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_savebasicas.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_savebasicas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_save.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_save.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_save.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_save.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sbaexecutesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sbaexecutesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sbaexecutesql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sbaexecutesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sbanativesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sbanativesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sbanativesql.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sbanativesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scaletext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scan.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scan.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scan.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scan.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scriptorganizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scriptorganizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scriptorganizer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scriptorganizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scrollbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_scrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_searchdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_searchdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_searchdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_searchdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrinkbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrinkbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrinkbottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrinkbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrinktop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrinktop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrinktop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sectionshrinktop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectbackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectbackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectbackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectbackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectdata.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectdb.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectdb.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectdb.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectdb.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectobject.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selecttables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selecttables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selecttables.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selecttables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selecttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selecttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selecttable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selecttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectunprotectedcells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectunprotectedcells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectunprotectedcells.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_selectunprotectedcells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendfax.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendfax.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendfax.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendfax.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendfeedback.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendfeedback.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendfeedback.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendfeedback.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendmail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendmail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendmail.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendmail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendtoback.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendtoback.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendtoback.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sendtoback.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setborderstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setborderstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setborderstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setborderstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setdocumentproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setdocumentproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setdocumentproperties.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setdocumentproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setminimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setminimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setminimalcolumnwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setminimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setminimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setminimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setminimalrowheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setminimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setobjecttobackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setobjecttobackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setobjecttobackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setobjecttobackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setobjecttoforeground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setobjecttoforeground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setobjecttoforeground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setobjecttoforeground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoptimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoptimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoptimalcolumnwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoptimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoptimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoptimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoptimalrowheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoptimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoutline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setreminder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setreminder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setreminder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_setreminder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shadowcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shadowcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shadowcursor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shadowcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shadowed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sharedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sharedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sharedocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sharedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shear.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shell3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shell3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shell3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shell3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showannotations.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showannotations.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showannotations.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showannotations.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showbookview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showbookview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showbookview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showbookview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showcolumn.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdatanavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdatanavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdatanavigator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdatanavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdependents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdetail.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showdetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showerrors.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showerrors.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showerrors.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showerrors.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showfmexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showfmexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showfmexplorer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showfmexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showinvalid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showinvalid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showinvalid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showinvalid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showmultiplepages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showmultiplepages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showmultiplepages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showmultiplepages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shownote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shownote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shownote.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shownote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showprecedents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showrow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showsinglepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showsinglepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showsinglepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showsinglepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showslide.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_show.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_show.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_show.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_show.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtoolbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtoolbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtoolbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtoolbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtrackedchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtwopages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtwopages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtwopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showtwopages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showwhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showwhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showwhitespace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_showwhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shrink.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_shrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sidebar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sidebar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sidebar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sidebar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signaturelinedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signaturelinedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signaturelinedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signaturelinedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signature.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signature.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signature.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signature.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signpdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signpdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signpdf.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_signpdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_size.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_size.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_size.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_size.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidechangewindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidechangewindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidechangewindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidechangewindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidemasterpage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidesetup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_slidesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallcaps.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallcaps.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallcaps.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallcaps.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallestheight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallestwidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_smallestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snapborder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snapborder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snapborder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snapborder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snapframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snapframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snapframe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snapframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snappoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snappoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snappoints.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_snappoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_solidcreate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_solidcreate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_solidcreate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_solidcreate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_solverdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_solverdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_solverdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_solverdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sortascending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sortdescending.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sourcecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sourcecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sourcecharstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sourcecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara15.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara15.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara15.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara15.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacepara2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacing.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spacing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spelling.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spellonline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sphere.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sphere.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sphere.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_sphere.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spinbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spinbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spinbutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_spinbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splitcell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splitcell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splitcell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splitcell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splittable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splittable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splittable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splittable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splitwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splitwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splitwindow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_splitwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_rounded.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_rounded_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_unfilled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_square_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.bang.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.bang.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.bang.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.bang.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.concave-star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.concave-star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.concave-star6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.concave-star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.doorplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.doorplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.doorplate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.doorplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.horizontal-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.horizontal-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.horizontal-scroll.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.horizontal-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.signet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.signet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.signet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.signet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star12.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star12.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star12.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star12.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.star8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.vertical-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.vertical-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.vertical-scroll.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_starshapes.vertical-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statetablecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statetablecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statetablecell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statetablecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statisticsmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statisticsmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statisticsmenu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statisticsmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statusbarvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statusbarvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statusbarvisible.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_statusbarvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_strikeout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_strongemphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_strongemphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_strongemphasischarstyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_strongemphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_styleapply.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_styleapply.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_styleapply.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_styleapply.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_stylenewbyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_styleupdatebyexample.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_subscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_subscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_subscript.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_subscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_substract.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_substract.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_substract.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_substract.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_subtitleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_subtitleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_subtitleparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_subtitleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_superscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_superscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_superscript.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_superscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_switchcontroldesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_switchcontroldesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_switchcontroldesignmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_switchcontroldesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_switchxformsdesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_switchxformsdesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_switchxformsdesignmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_switchxformsdesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.brace-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.brace-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.brace-pair.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.brace-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.bracket-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.bracket-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.bracket-pair.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.bracket-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.cloud.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.cloud.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.cloud.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.cloud.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.diamond-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.diamond-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.diamond-bevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.diamond-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.flower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.flower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.flower.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.flower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.forbidden.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.forbidden.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.forbidden.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.forbidden.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.heart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.heart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.heart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.heart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.left-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.left-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.left-brace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.left-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.left-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.left-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.left-bracket.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.left-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.lightning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.lightning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.lightning.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.lightning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.moon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.moon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.moon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.moon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.octagon-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.octagon-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.octagon-bevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.octagon-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.puzzle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.puzzle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.puzzle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.puzzle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.quad-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.quad-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.quad-bevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.quad-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.right-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.right-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.right-brace.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.right-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.right-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.right-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.right-bracket.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.right-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.sun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.sun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.sun.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.sun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_symbolshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledeselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledeselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledeselectall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledeselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledesign.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tabledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodefixprop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodefixprop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodefixprop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodefixprop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodefix.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodefix.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodefix.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodefix.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodevariable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodevariable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodevariable.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablemodevariable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablenumberformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablenumberformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablenumberformatdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tablenumberformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tableselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tableselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tableselectall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_tableselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_templatemanager.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_testmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_testmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_testmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_testmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textbodyparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textbodyparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textbodyparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textbodyparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textdirectionlefttoright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textdirectiontoptobottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_text_marquee.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_text.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_texttocolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_texttocolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_texttocolumns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_texttocolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_thesaurus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_thesaurus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_thesaurus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_thesaurus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_timefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_timefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_timefield.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_timefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_titlepagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_titlepagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_titlepagedialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_titlepagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_titleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_titleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_titleparastyle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_titleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleanchortype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleanchortype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleanchortype.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleanchortype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleaxistitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleaxistitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleaxistitle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleaxistitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglebreakpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglebreakpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglebreakpoint.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglebreakpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglegridhorizontal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglegridhorizontal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglegridhorizontal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglegridhorizontal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglegridvertical.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglegridvertical.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglegridvertical.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglegridvertical.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglelegend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglelegend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglelegend.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglelegend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglemergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglemergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglemergecells.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglemergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleobjectbeziermode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleobjectbeziermode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleobjectbeziermode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleobjectbeziermode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleobjectrotatemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleobjectrotatemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleobjectrotatemode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggleobjectrotatemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglesheetgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglesheetgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglesheetgrid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_togglesheetgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggletabbarvisibility.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggletabbarvisibility.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggletabbarvisibility.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggletabbarvisibility.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggletitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggletitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggletitle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toggletitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toolbarmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toolbarmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toolbarmode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toolbarmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toolprotectiondocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toolprotectiondocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toolprotectiondocument.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_toolprotectiondocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_torus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_torus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_torus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_torus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_trackchangesbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_trackchangesbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_trackchangesbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_trackchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_trackchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_trackchanges.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_trackchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_transformdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_transformdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_transformdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_transformdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_underlinedouble.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_underline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_undo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_undo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_undo.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_undo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ungroup.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_ungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_unhainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_unhainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_unhainframes.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_unhainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_unsetcellsreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_unsetcellsreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_unsetcellsreadonly.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_unsetcellsreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_updatecurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_updatecurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_updatecurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_updatecurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_upsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_upsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_upsearch.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_upsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_urlbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_urlbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_urlbutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_urlbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_validation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_validation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_validation.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_validation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_versiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_versiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_versiondialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_versiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticalcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticalcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticalcaption.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticalcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticaltextfittosizetool.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticaltextfittosizetool.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticaltextfittosizetool.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticaltextfittosizetool.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticaltext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_vfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_vfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_vfixedline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_vfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewdatasourcebrowser.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewdatasourcebrowser.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewdatasourcebrowser.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewdatasourcebrowser.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewformasgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewformasgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewformasgrid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewformasgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewrowcolumnheaders.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewrowcolumnheaders.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewrowcolumnheaders.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewrowcolumnheaders.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewvaluehighlighting.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewvaluehighlighting.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewvaluehighlighting.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_viewvaluehighlighting.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_vruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_vruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_vruler.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_vruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_warningcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_warningcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_warningcellstyles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_warningcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_watermark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_watermark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_watermark.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_watermark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_window3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_window3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_window3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_window3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wordcountdialog.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapcontour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapcontour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapcontour.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapcontour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapideal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapideal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapideal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapideal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapoff.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapoff.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapoff.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapoff.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wraptext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wraptext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wraptext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wraptext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapthrough.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_wrapthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_xlinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_xlinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_xlinecolor.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_xlinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom100percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom100percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom100percent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom100percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom200percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom200percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom200percent.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom200percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomin.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoommode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoommode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoommode.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoommode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomnext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomnext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomnext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomnext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomobjects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomoptimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomoptimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomoptimal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomoptimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompagewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompagewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompagewidth.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompagewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompanning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompanning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompanning.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoompanning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /&gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomprevious.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomprevious.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomprevious.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoomprevious.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sc_zoom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sl/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sl/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sl/lc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sl/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sl/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sl/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sl/lc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sl/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sl/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sl/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sl/sc_bold.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sl/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sl/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sl/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/sl/sc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/sl/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/tr/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/tr/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/tr/lc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/tr/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/tr/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/tr/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/cmd/tr/sc_italic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/cmd/tr/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/exwarning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/exwarning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/exwarning.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/exwarning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/forms_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/forms_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/forms_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/forms_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,14 @@ + + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/jo02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/jo02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/jo02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/jo02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/joh01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/joh01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/joh01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/joh01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/lc039.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/lc039.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/lc039.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/lc039.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/lc040.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/lc040.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/lc040.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/lc040.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/linked_text_table.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/linked_text_table.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/linked_text_table.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/linked_text_table.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/pkey.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/pkey.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/pkey.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/pkey.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/reports_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/reports_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/reports_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/reports_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/sc039.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/sc039.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/sc039.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/sc039.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/sc040.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/sc040.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/sc040.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/dbaccess/res/sc040.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/desktop/res/shared_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/desktop/res/shared_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/desktop/res/shared_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/desktop/res/shared_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/addresspilot.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/addresspilot.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/addresspilot.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/addresspilot.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/handle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/handle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/handle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/handle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/minus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/minus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/minus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/minus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/plus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/plus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/plus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/scanner/plus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/update/ui/onlineupdate_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/update/ui/onlineupdate_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/update/ui/onlineupdate_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/update/ui/onlineupdate_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/update/ui/onlineupdate_26.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/update/ui/onlineupdate_26.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/extensions/res/update/ui/onlineupdate_26.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/extensions/res/update/ui/onlineupdate_26.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/formula/res/refinp1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/formula/res/refinp1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/formula/res/refinp1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/formula/res/refinp1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/formula/res/refinp2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/formula/res/refinp2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/formula/res/refinp2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/formula/res/refinp2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/fpicker/res/fp015.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/fpicker/res/fp015.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/fpicker/res/fp015.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/fpicker/res/fp015.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/framework/res/recent-documents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/framework/res/recent-documents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/framework/res/recent-documents.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/framework/res/recent-documents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/LICENSE libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/LICENSE --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/LICENSE 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/LICENSE 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,158 @@ +Mozilla Public License +Version 2.0 +1. Definitions + +1.1. “Contributor” + + means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. +1.2. “Contributor Version” + + means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. +1.3. “Contribution” + + means Covered Software of a particular Contributor. +1.4. “Covered Software” + + means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. +1.5. “Incompatible With Secondary Licenses” + + means + + that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or + + that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. + +1.6. “Executable Form” + + means any form of the work other than Source Code Form. +1.7. “Larger Work” + + means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. +1.8. “License” + + means this document. +1.9. “Licensable” + + means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. +1.10. “Modifications” + + means any of the following: + + any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or + + any new file in Source Code Form that contains any Covered Software. + +1.11. “Patent Claims” of a Contributor + + means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. +1.12. “Secondary License” + + means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. +1.13. “Source Code Form” + + means the form of the work preferred for making modifications. +1.14. “You” (or “Your”) + + means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + +2. License Grants and Conditions +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: + + under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and + + under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: + + for any code that a Contributor has removed from Covered Software; or + + for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or + + under Patent Claims infringed by Covered Software in the absence of its Contributions. + +This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). +2.5. Representation + +Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. +2.6. Fair Use + +This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. +3. Responsibilities +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + + such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and + + You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). +3.4. Notices + +You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. +4. Inability to Comply Due to Statute or Regulation + +If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. +5. Termination + +5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. +6. Disclaimer of Warranty + +Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. +7. Limitation of Liability + +Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. +8. Litigation + +Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. +9. Miscellaneous + +This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. +10. Versions of the License +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. +10.3. Modified Versions + +If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + +If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. +Exhibit A - Source Code Form License Notice + + 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 https://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. +Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10454.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10454.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10454.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10454.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10928.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10928.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10928.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10928.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10929.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10929.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10929.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx10929.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12452.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12452.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12452.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12452.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12453.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12453.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12453.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12453.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12466.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12466.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12466.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12466.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12468.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12468.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12468.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12468.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12603.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12603.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12603.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/reportdesign/res/sx12603.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/basbrk.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/basbrk.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/basbrk.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/basbrk.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/base128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/base128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/base128.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/base128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/base_thumbnail_256.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/base_thumbnail_256.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/base_thumbnail_256.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/base_thumbnail_256.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,991 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/basobj2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/basobj2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/basobj2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/basobj2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/baswatr.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/baswatr.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/baswatr.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/baswatr.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/calc128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/calc128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/calc128.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/calc128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/colorsliderleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/colorsliderleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/colorsliderleft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/colorsliderleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/colorsliderright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/colorsliderright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/colorsliderright.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/colorsliderright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/component_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/component_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/component_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/component_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/da06.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/da06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/dialogfolder_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/dialogfolder_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/dialogfolder_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/dialogfolder_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/dialogfoldernot_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/dialogfoldernot_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/dialogfoldernot_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/dialogfoldernot_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/draw128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/draw128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/draw128.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/draw128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/fp010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/fp010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/fp010.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/fp010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/fp015.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/fp015.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/fp015.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/fp015.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/fwthcirc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/fwthcirc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/fwthcirc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/fwthcirc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/grafikde.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/grafikde.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/grafikde.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/grafikde.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/harddisk_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/harddisk_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/harddisk_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/harddisk_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/helpimg/info.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/helpimg/info.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/helpimg/info.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/helpimg/info.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/helpimg/note.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/helpimg/note.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/helpimg/note.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/helpimg/note.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/helpimg/tip.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/helpimg/tip.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/helpimg/tip.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/helpimg/tip.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/helpimg/warning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/helpimg/warning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/helpimg/warning.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/helpimg/warning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/hldocntp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/hldocntp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/hldocntp.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/hldocntp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/hldoctp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/hldoctp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/hldoctp.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/hldoctp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30822.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30822.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30822.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30822.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30823.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30823.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30823.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30823.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30827.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30827.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30827.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30827.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30838.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30838.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30838.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30838.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30839.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30839.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30839.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30839.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30840.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30840.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30840.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30840.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30841.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30841.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/im30841.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/im30841.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/impress128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/impress128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/impress128.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/impress128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/javacomponent_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/javacomponent_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/javacomponent_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/javacomponent_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/javalibrary_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/javalibrary_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/javalibrary_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/javalibrary_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lc06303.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lc06303.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lc06303.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lc06303.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lftrgt.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lftrgt.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lftrgt.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lftrgt.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lock.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03123.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03123.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03123.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03123.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03125.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03125.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03125.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03125.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03126.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03126.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03126.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03126.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03127.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03127.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03127.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03127.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03129.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03129.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03129.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03129.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03130.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03130.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03130.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03130.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03131.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03131.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03131.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03131.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03132.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03132.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03132.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03132.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03135.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03135.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03135.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03135.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03161.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03161.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03161.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03161.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03162.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03162.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03162.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03162.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03163.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03163.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03163.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03163.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03166.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03166.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03166.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03166.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03243.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03243.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03243.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03243.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03244.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03244.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/lx03244.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/lx03244.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/main128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/main128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/main128.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/main128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/mainapp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/mainapp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/mainapp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/mainapp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/mainapp_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/mainapp_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/mainapp_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/mainapp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/mainapp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/mainapp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/mainapp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/mainapp_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/mainapp_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/mainapp_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/mainapp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/mainapp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/mainapp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/math128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/math128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/math128.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/math128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/minus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/minus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/minus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/minus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/notebookbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/notebookbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/notebookbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/notebookbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/note.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/note.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/note.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/note.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odb_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odb_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odb_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odb_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odb_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odb_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odb_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odb_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odb_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odb_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odb_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odb_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odb_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odf_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odf_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odf_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odf_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odf_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odf_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odf_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odf_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odg_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odg_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odg_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odg_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odg_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odg_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odg_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odg_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odm_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odm_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odm_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odm_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odm_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odm_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odm_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odm_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odm_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odm_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odm_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odm_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odm_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odp_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odp_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odp_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odp_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odp_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odp_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odp_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odp_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ods_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ods_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ods_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ods_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ods_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ods_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ods_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ods_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ods_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ods_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ods_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ods_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ods_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ods_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ods_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ods_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ods_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odt_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odt_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odt_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odt_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odt_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odt_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odt_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odt_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odt_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odt_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odt_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odt_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odt_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odt_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odt_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/odt_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/odt_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otf_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otf_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otf_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otf_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otf_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otf_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otf_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otf_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otg_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otg_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otg_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otg_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otg_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otg_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otg_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otg_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otp_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otp_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otp_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otp_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otp_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otp_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/otp_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/otp_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ots_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ots_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ots_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ots_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ots_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ots_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ots_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ots_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ots_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ots_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ots_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ots_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ots_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ots_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ots_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ots_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ots_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ott_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ott_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ott_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ott_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ott_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ott_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ott_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ott_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ott_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ott_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ott_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ott_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ott_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ott_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ott_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/ott_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/ott_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/plus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/plus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/plus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/plus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/recentdoc_remove_highlighted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/recentdoc_remove_highlighted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/recentdoc_remove_highlighted.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/recentdoc_remove_highlighted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/recentdoc_remove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/recentdoc_remove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/recentdoc_remove.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/recentdoc_remove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/savemodified_extralarge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/savemodified_extralarge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/savemodified_extralarge.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/savemodified_extralarge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/savemodified_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/savemodified_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/savemodified_large.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/savemodified_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/savemodified_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/savemodified_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/savemodified_small.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/savemodified_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sc06303.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sc06303.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sc06303.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sc06303.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/script.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/script.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/script.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/script.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/soliline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/soliline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/soliline.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/soliline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03123.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03123.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03123.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03125.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03125.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03125.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03125.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03126.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03126.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03126.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03126.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03127.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03127.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03127.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03127.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03129.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03129.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03129.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03129.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03130.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03130.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03130.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03130.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03131.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03131.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03131.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03131.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03132.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03132.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03132.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03132.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03135.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03135.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03135.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03135.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03161.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03161.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03161.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03161.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03162.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03162.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03162.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03162.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03163.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03163.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03163.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03163.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03166.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03166.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03166.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03166.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03187.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03187.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03187.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03187.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03201.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03201.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03201.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03201.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03243.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03243.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03243.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03243.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03244.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03244.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx03244.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx03244.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx16670.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx16670.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx16670.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx16670.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx18022.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx18022.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx18022.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx18022.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx18027.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx18027.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/sx18027.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/sx18027.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/target.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/target.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/target.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/target.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/tb01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/tb01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/tb01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/tb01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/tb02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/tb02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/tb02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/tb02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/tb03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/tb03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/tb03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/tb03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/tb04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/tb04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/tb04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/tb04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/tb05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/tb05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/tb05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/tb05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/templatestar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/templatestar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/templatestar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/templatestar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/topdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/topdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/topdown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/topdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/versionwarning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/versionwarning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/versionwarning.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/versionwarning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/writer128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/writer128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/writer128.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/writer128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/xml_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/xml_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/res/xml_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/res/xml_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-empty.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-empty.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-empty.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-empty.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-full.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-full.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-full.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-full.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-half.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-half.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-half.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-half.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-one-quarter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-one-quarter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-one-quarter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-one-quarter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-three-quarters.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-three-quarters.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-three-quarters.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-bars-three-quarters.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-gray.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-gray.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-gray.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-gray.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-green.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-green.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-green.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-green.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-red.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-red.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-red.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-red.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-yellow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-yellow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-yellow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles1-yellow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-dark-gray.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-dark-gray.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-dark-gray.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-dark-gray.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-dark-red.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-dark-red.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-dark-red.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-dark-red.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-light-gray.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-light-gray.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-light-gray.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-light-gray.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-light-red.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-light-red.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-light-red.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-circles2-light-red.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,2 @@ + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-same.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-same.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-same.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-same.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-slightly-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-slightly-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-slightly-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-slightly-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-slightly-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-slightly-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-slightly-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-slightly-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-colorarrows-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-green.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-green.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-green.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-green.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-red.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-red.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-red.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-red.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-yellow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-yellow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-yellow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-flags-yellow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-same.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-same.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-same.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-same.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-slightly-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-slightly-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-slightly-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-slightly-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-slightly-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-slightly-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-slightly-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-slightly-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-grayarrows-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-negative-red-smilie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-negative-red-smilie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-negative-red-smilie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-negative-red-smilie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-negative-yellow-smilie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-negative-yellow-smilie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-negative-yellow-smilie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-negative-yellow-smilie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-neutral-yellow-smilie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-neutral-yellow-smilie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-neutral-yellow-smilie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-neutral-yellow-smilie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-empty.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-empty.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-empty.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-empty.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-full.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-full.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-full.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-full.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-half.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-half.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-half.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-half.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-one-quarter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-one-quarter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-one-quarter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-one-quarter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-three-quarters.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-three-quarters.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-three-quarters.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-pies-three-quarters.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-positive-green-smilie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-positive-green-smilie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-positive-green-smilie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-positive-green-smilie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-positive-yellow-smilie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-positive-yellow-smilie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-positive-yellow-smilie.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-positive-yellow-smilie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-circle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-circle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-circle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-circle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-diamond.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-diamond.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-diamond.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-diamond.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-triangle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-shapes-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-empty.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-empty.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-empty.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-empty.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-full.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-full.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-full.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-full.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-half.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-half.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-half.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-half.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-one-quarter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-one-quarter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-one-quarter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-one-quarter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-three-quarters.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-three-quarters.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-three-quarters.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-squares-three-quarters.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-empty.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-empty.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-empty.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-empty.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-full.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-full.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-full.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-full.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-half.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-half.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-half.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-stars-half.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-check.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-check.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-check.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-check.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-cross.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-cross.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-cross.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-cross.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-exclamation-mark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-exclamation-mark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-exclamation-mark.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-symbols1-exclamation-mark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-green.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-green.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-green.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-green.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-red.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-red.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-red.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-red.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-yellow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-yellow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-yellow.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-trafficlights-yellow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-same.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-same.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-same.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-same.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-up.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/icon-set-triangles-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/lc26049.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/lc26049.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/lc26049.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/lc26049.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/lftrgt.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/lftrgt.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/lftrgt.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/lftrgt.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou010.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou011.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou011.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou011.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou011.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou012.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou012.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou012.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou012.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou06.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou07.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou08.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/ou09.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/ou09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_formats_only.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_formats_only.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_formats_only.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_formats_only.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_transpose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_transpose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_transpose.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_transpose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_values_formats.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_values_formats.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_values_formats.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_values_formats.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_values_only.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_values_only.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_values_only.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/paste_values_only.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/popup_select_current.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/popup_select_current.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/popup_select_current.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/popup_select_current.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/popup_unselect_current.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/popup_unselect_current.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/popup_unselect_current.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/popup_unselect_current.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sc26049.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sc26049.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sc26049.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sc26049.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sf01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sf01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sf01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sf01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sf02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sf02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sf02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sf02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_All_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_All_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_All_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_All_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_Double_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_Double_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_Double_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_Double_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Empty_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Empty_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Empty_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Empty_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_FourBorders_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_FourBorders_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_FourBorders_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_FourBorders_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Left_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Left_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Left_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Left_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_LeftAndRight_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_LeftAndRight_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_LeftAndRight_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_LeftAndRight_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_005.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_005.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_005.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_005.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_110.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_110.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_110.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_110.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_250.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_250.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_250.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_250.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_260.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_260.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_260.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_260.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_400.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_400.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_400.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_400.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_450.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_450.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_450.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_450.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_500.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_500.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_500.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_500.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_505.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_505.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_505.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_505.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_750.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_750.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_750.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorderLineStyle_750.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Right_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Right_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Right_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Right_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_RightDiagonal_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_RightDiagonal_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_RightDiagonal_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_RightDiagonal_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Top_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Top_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Top_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_Top_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopAndBottom_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopAndBottom_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopAndBottom_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopAndBottom_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/fill_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/fill_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/fill_color.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/fill_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/Line_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/Line_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/Line_color.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/sidebar/Line_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/topdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/topdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/topdown.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/topdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_attribute.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_attribute.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_attribute.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_attribute.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_element_repeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_element_repeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_element_repeat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_element_repeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_element.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_element.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_element.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sc/res/xml_element.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-box.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-box.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-box.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-box.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-checkerboard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-checkerboard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-checkerboard.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-checkerboard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-comb.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-comb.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-comb.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-comb.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cube-turning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cube-turning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cube-turning.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cube-turning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cut.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-cut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-diagonal-squares.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-diagonal-squares.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-diagonal-squares.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-diagonal-squares.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-dissolve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-dissolve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-dissolve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-dissolve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-fade.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-fade.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-fade.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-fade.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-fall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-fall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-fall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-fall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-finedissolve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-finedissolve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-finedissolve.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-finedissolve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-glitter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-glitter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-glitter.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-glitter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-honeycomb.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-honeycomb.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-honeycomb.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-honeycomb.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-iris.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-iris.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-iris.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-iris.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-newsflash.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-newsflash.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-newsflash.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-newsflash.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-none.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-none.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-none.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-none.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-push.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-push.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-push.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-push.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-random-bars.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-random-bars.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-random-bars.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-random-bars.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-random.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-random.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-random.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-random.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-revolving-circles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-revolving-circles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-revolving-circles.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-revolving-circles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-ripple.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-ripple.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-ripple.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-ripple.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-rochade.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-rochade.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-rochade.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-rochade.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-shape.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-shape.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-shape.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-shape.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-split.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-split.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-split.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-split.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-static.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-static.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-static.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-static.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-tile-flip.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-tile-flip.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-tile-flip.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-tile-flip.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turn-around.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turn-around.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turn-around.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turn-around.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turn-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turn-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turn-down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turn-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turning-helix.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turning-helix.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turning-helix.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-turning-helix.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-uncover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-uncover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-uncover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-uncover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-venetian-blinds-3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-venetian-blinds-3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-venetian-blinds-3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-venetian-blinds-3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-venetian-blinds.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-venetian-blinds.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-venetian-blinds.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-venetian-blinds.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-vortex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-vortex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-vortex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-vortex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wedge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wedge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wedge.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wedge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wheel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wheel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wheel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wheel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wipe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wipe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wipe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/cmd/transition-wipe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/chart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/chart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/chart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/chart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/click_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/click_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/click_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/click_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/del1bmp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/del1bmp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/del1bmp.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/del1bmp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/delall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/delall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/delall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/delall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/docclose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/docclose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/docclose.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/docclose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/docopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/docopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/docopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/docopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/doctext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/doctext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/doctext.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/doctext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/effect_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/effect_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/effect_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/effect_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/effectfade_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/effectfade_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/effectfade_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/effectfade_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/effectole_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/effectole_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/effectole_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/effectole_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/effectpath_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/effectpath_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/effectpath_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/effectpath_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/effectshape_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/effectshape_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/effectshape_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/effectshape_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/fade_effect_indicator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/fade_effect_indicator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/fade_effect_indicator.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/fade_effect_indicator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh06.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh09.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilh09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foiln01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foiln01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foiln01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foiln01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilnone.png and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilnone.png differ diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilnone.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilnone.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/foilnone.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/foilnone.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/get1obj.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/get1obj.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/get1obj.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/get1obj.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/getallob.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/getallob.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/getallob.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/getallob.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/hlplhorz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/hlplhorz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/hlplhorz.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/hlplhorz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/hlplvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/hlplvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/hlplvert.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/hlplvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/hlppoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/hlppoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/hlppoint.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/hlppoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/image.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/image.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/image.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/image.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_empty.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_empty.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_empty.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_empty.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02a.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02a.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02a.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02b.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02b.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02b.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02b.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03a.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03a.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03a.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03b.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03b.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03b.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03b.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03c.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03c.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03c.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head06.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_head06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_textonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_textonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_textonly.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_textonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_vertical01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_vertical01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_vertical01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_vertical01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_vertical02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_vertical02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_vertical02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/layout_vertical02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/minimize_presi_80.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/minimize_presi_80.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/minimize_presi_80.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/minimize_presi_80.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/nv08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/nv08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/nv08.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/nv08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/objects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/objects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/objects.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/objects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/object.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/object.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/object.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/object.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/orgchart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/orgchart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/orgchart.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/orgchart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/pageexcl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/pageexcl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/pageexcl.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/pageexcl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/pageobjs.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/pageobjs.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/pageobjs.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/pageobjs.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/pagobjex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/pagobjex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/pagobjex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/pagobjex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_large_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_large_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_large_hover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_large_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_large.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_small_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_small_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_small_hover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_small_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_small.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_chart_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_large_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_large_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_large_hover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_large_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_large.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_small_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_small_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_small_hover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_small_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_small.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_image_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_large_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_large_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_large_hover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_large_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_large.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_small_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_small_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_small_hover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_small_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_small.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_movie_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_large_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_large_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_large_hover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_large_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_large.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_small_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_small_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_small_hover.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_small_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_small.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/placeholder_table_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/pointericon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/pointericon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/pointericon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/pointericon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-Background.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-Background.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-Background.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-Background.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomCallout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomCallout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomCallout.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomCallout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomLeft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomRight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottomRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveBottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveLeft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveRight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTopLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTopLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTopLeft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTopLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTopRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTopRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTopRight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTopRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderActiveTop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottomLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottomLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottomLeft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottomLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottomRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottomRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottomRight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottomRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderBottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderLeft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderRight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarBottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarBottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarBottom.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarBottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarLeft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarRight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTopLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTopLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTopLeft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTopLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTopRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTopRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTopRight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTopRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderToolbarTop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTopLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTopLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTopLeft.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTopLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTopRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTopRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTopRight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTopRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTop.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-BorderTop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextSelected.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonEffectNextSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonExitPresenterMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonExitPresenterMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonExitPresenterMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonExitPresenterMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonExitPresenterNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonExitPresenterNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonExitPresenterNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonExitPresenterNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameCenterMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameCenterMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameCenterMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameCenterMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameCenterNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameCenterNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameCenterNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameCenterNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameLeftMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameLeftMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameLeftMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameLeftMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameLeftNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameLeftNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameLeftNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameLeftNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameRightMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameRightMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameRightMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameRightMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameRightNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameRightNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameRightNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonFrameRightNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonHelpMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonHelpMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonHelpMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonHelpMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonHelpNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonHelpNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonHelpNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonHelpNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusMousOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusMousOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusMousOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusMousOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusSelected.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonMinusSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesSelected.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonNotesSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPauseTimerMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPauseTimerMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPauseTimerMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPauseTimerMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPauseTimerNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPauseTimerNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPauseTimerNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPauseTimerNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusMousOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusMousOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusMousOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusMousOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusSelected.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonPlusSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonRestartTimerMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonRestartTimerMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonRestartTimerMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonRestartTimerMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonRestartTimerNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonRestartTimerNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonRestartTimerNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonRestartTimerNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonResumeTimerMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonResumeTimerMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonResumeTimerMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonResumeTimerMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonResumeTimerNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonResumeTimerNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonResumeTimerNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonResumeTimerNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousSelected.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlidePreviousSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterSelected.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSlideSorterSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSwitchMonitorNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSwitchMonitorNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSwitchMonitorNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ButtonSwitchMonitorNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowDownNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarArrowUpNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbBottomNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopDisabled.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopNormal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ScrollbarThumbTopNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ViewBackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ViewBackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ViewBackground.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/presenterscreen-ViewBackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/sf01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/sf01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/sf01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/sf01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/sf02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/sf02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/sf02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/sf02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/slide_sorter_focus_border.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/slide_sorter_focus_border.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/slide_sorter_focus_border.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/slide_sorter_focus_border.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/slide_sorter_hide_slide_overlay.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/slide_sorter_hide_slide_overlay.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/slide_sorter_hide_slide_overlay.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/slide_sorter_hide_slide_overlay.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/table.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/table.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sd/res/table.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sd/res/table.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_calc_doc-p.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_draw_doc-p.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_impress_doc-p.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_math_doc-p.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_math_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_writer_doc-p.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/actiontemplates017.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/actiontemplates017.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/actiontemplates017.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/actiontemplates017.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/actionview029.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/actionview029.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/actionview029.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/actionview029.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/chevron.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/chevron.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/chevron.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/chevron.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/grip.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/grip.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/grip.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/grip.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/hlpbookclosed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/hlpbookclosed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/hlpbookclosed.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/hlpbookclosed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/hlpbookopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/hlpbookopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/hlpbookopen.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/hlpbookopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexoff_big.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexoff_big.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexoff_big.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexoff_big.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexoff_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexoff_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexoff_small.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexoff_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexon_big.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexon_big.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexon_big.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexon_big.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexon_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexon_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexon_small.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/indexon_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/menu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/menu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/menu.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/menu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/placeholder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/placeholder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/placeholder.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/placeholder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/signet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/signet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/signet.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/signet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/symphony/morebutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/symphony/morebutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/symphony/morebutton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/symphony/morebutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/symphony/open_more.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/symphony/open_more.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sfx2/res/symphony/open_more.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sfx2/res/symphony/open_more.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/closer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/closer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/closer.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/closer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed07.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed08.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/ed08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/info_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/info_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/info_large.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/info_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/info_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/info_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/info_small.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/info_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/list_add.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/list_add.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/list_add.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/list_add.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/triangle_down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/triangle_down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/triangle_down.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/triangle_down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/triangle_right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/triangle_right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/triangle_right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/triangle_right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/up_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/up_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/up_large.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/up_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/up_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/up_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svtools/res/up_small.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svtools/res/up_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/blend3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/blend3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/blend3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/blend3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_all_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_all_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_all_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_all_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_diag_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_diag_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_diag_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_diag_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_l_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_l_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_l_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_l_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_lr_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_lr_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_lr_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_lr_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_none_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_none_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_none_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_none_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_tb_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_tb_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_tb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/border_cell_tb_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/brightlit_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/brightlit_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/brightlit_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/brightlit_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/cd02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/cd02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/cd02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/cd02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/cropmarkers.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/cropmarkers.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/cropmarkers.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/cropmarkers.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/dimlit_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/dimlit_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/dimlit_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/dimlit_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directioneast_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directioneast_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directioneast_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directioneast_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnorth_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnorth_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnorth_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnorth_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnortheast_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnortheast_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnortheast_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnortheast_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnorthwest_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnorthwest_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnorthwest_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionnorthwest_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsouth_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsouth_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsouth_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsouth_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsoutheast_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsoutheast_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsoutheast_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsoutheast_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsouthwest_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsouthwest_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsouthwest_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionsouthwest_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionstraight_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionstraight_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionstraight_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionstraight_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionwest_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionwest_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/directionwest_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/directionwest_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/doublesi.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/doublesi.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/doublesi.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/doublesi.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion05inch_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion05inch_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion05inch_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion05inch_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion0inch_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion0inch_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion0inch_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion0inch_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion1inch_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion1inch_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion1inch_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion1inch_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion2inch_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion2inch_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion2inch_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion2inch_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion4inch_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion4inch_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion4inch_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusion4inch_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusioninfinity_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusioninfinity_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusioninfinity_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/extrusioninfinity_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr010.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr011.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr011.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr011.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr011.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr012.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr012.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr012.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr012.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr013.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr013.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr013.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr013.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr014.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr014.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr014.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr014.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr015.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr015.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr015.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr015.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr06.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr07.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr08.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fr09.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fr09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw010.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw011.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw011.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw011.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw011.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw012.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw012.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw012.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw012.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw013.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw013.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw013.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw013.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw014.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw014.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw014.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw014.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw015.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw015.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw015.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw015.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw016.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw016.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw016.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw016.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw017.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw017.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw017.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw017.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw018.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw018.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw018.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw018.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw019.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw019.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw019.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw019.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw020.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw020.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw020.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw020.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw021.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw021.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw021.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw021.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fw06.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fw06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbhcirc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbhcirc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbhcirc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbhcirc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbotarc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbotarc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbotarc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbotarc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwbuttn4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwlftarc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwlftarc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwlftarc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwlftarc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwlhcirc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwlhcirc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwlhcirc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwlhcirc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwrgtarc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwrgtarc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwrgtarc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwrgtarc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwrhcirc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwrhcirc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwrhcirc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwrhcirc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwtoparc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwtoparc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/fwtoparc.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/fwtoparc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galdefl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galdefl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galdefl.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galdefl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galdefs.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galdefs.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galdefs.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galdefs.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galdetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galdetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galdetail.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galdetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galicon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galicon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galicon.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galicon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galmedia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galmedia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galmedia.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galmedia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galnorl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galnorl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galnorl.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galnorl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galnors.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galnors.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galnors.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galnors.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galrdol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galrdol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galrdol.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galrdol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galrdos.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galrdos.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/galrdos.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/galrdos.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/id016.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/id016.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/id016.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/id016.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/invert3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/invert3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/invert3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/invert3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/legtyp4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/legtyp4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/legtyp4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/legtyp4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lght2sid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lght2sid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lght2sid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lght2sid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottom_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottom_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottom_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottom_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottomleft_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottomleft_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottomleft_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottomleft_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottomright_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottomright_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottomright_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfrombottomright_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromfront_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromfront_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromfront_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromfront_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromleft_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromleft_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromleft_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromleft_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromright_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromright_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromright_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromright_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtop_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtop_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtop_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtop_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtopleft_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtopleft_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtopleft_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtopleft_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtopright_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtopright_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtopright_22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lightfromtopright_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lighton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lighton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lighton.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lighton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/light.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/light.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/light.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/light.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/listview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/listview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/listview.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/listview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lo01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lo01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lo01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lo01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lo02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lo02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lo02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lo02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lo03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lo03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/lo03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/lo03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/markers.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/markers.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/markers.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/markers.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/material.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/material.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/material.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/material.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/matte_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/matte_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/matte_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/matte_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/metal_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/metal_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/metal_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/metal_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/modula3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/modula3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/modula3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/modula3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/normallit_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/normallit_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/normallit_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/normallit_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/normflat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/normflat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/normflat.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/normflat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/normobjs.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/normobjs.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/normobjs.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/normobjs.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/normsphe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/normsphe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/normsphe.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/normsphe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/notcheck.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/notcheck.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/notcheck.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/notcheck.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/nu04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/nu04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/nu04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/nu04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/objspc3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/objspc3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/objspc3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/objspc3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pageshadow35x35.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pageshadow35x35.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pageshadow35x35.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pageshadow35x35.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,5 @@ + + + + /> + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/parallel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/parallel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/parallel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/parallel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/plastic_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/plastic_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/plastic_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/plastic_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr010.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr011.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr011.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr011.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr011.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr012.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr012.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr012.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr012.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr013.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr013.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr013.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr013.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr014.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr014.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr014.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr014.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr015.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr015.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr015.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr015.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr016.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr016.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr016.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr016.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr017.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr017.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr017.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr017.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr018.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr018.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr018.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr018.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr019.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr019.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr019.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr019.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr020.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr020.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr020.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr020.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr021.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr021.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr021.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr021.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr06.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr07.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr08.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/pr09.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/pr09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/rectbtns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/rectbtns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/rectbtns.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/rectbtns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/replac3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/replac3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/replac3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/replac3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/selection_10x22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/selection_10x22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/selection_10x22.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/selection_10x22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sh01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sh01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sh01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sh01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sh02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sh02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sh02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sh02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sh03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sh03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sh03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sh03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sh04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sh04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sh04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sh04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sh05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sh05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sh05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sh05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_bottom_left_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_bottom_left_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_bottom_left_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_bottom_left_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_bottom_right_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_bottom_right_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_bottom_right_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_bottom_right_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_none_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_none_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_none_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_none_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_top_left_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_top_left_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_top_left_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_top_left_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_top_right_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_top_right_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_top_right_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/shadow_top_right_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoombutton_10.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoombutton_10.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoombutton_10.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoombutton_10.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoomin_10.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoomin_10.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoomin_10.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoomin_10.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoomout_10.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoomout_10.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoomout_10.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/slidezoomout_10.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sphere3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sphere3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/sphere3d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/sphere3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/axial.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/axial.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/axial.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/axial.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/blank.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/blank.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/blank.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/blank.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/ellipsoid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/ellipsoid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/ellipsoid.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/ellipsoid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Indent4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/last_custom_common_grey.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/last_custom_common_grey.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/last_custom_common_grey.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/last_custom_common_grey.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/last_custom_common.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/last_custom_common.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/last_custom_common.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/last_custom_common.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line10.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line10.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line10.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line10.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line7.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line7.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line7.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line7.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line9.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line9.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line9.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/line9.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/linear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/linear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/linear.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/linear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Quadratic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Quadratic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Quadratic.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Quadratic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/radial.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/radial.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/radial.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/radial.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/rotate_left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/rotate_left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/rotate_left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/rotate_left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/rotate_right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/rotate_right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/rotate_right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/rotate_right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line10.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line10.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line10.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line10.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line7.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line7.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line7.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line7.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line9.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line9.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line9.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/selected-line9.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_loose_s.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_loose_s.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_loose_s.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_loose_s.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_loose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_loose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_loose.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_loose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_normal_s.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_normal_s.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_normal_s.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_normal_s.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_normal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_normal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_normal.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_normal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_tight_s.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_tight_s.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_tight_s.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_tight_s.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_tight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_tight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_tight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_tight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_loose_s.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_loose_s.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_loose_s.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_loose_s.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_loose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_loose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_loose.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_loose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_tight_s.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_tight_s.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_tight_s.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_tight_s.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_tight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_tight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_tight.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/spacing_very_tight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Square.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Square.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Square.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/Square.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width7.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width7.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width7.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width7.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/symphony/width8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/wireframe_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/wireframe_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/wireframe_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/wireframe_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/zetlhor2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/zetlhor2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/zetlhor2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/zetlhor2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/zetlver2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/zetlver2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/zetlver2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/zetlver2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/zoom_page_statusbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/zoom_page_statusbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/svx/res/zoom_page_statusbar.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/svx/res/zoom_page_statusbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/all_left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/all_left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/all_left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/all_left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/all_right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/all_right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/all_right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/all_right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhc_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhc_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhc_l.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhc_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhc_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhc_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhc_u.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhc_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhl_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhl_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhl_l.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhl_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhl_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhl_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhl_u.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhl_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhr_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhr_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhr_l.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhr_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhr_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhr_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envhr_u.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envhr_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvc_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvc_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvc_l.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvc_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvc_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvc_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvc_u.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvc_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvl_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvl_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvl_l.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvl_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvl_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvl_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvl_u.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvl_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvr_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvr_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvr_l.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvr_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvr_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvr_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/envvr_u.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/envvr_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/nc20000.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/nc20000.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/nc20000.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/nc20000.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/one_left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/one_left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/one_left.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/one_left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/one_right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/one_right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/one_right.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/one_right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/re01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/re01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/re01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/re01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/re02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/re02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/re02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/re02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/re03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/re03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/re03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/re03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/re04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/re04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/re04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/re04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_deleted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_deleted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_deleted.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_deleted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_fmtcollset.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_fmtcollset.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_fmtcollset.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_fmtcollset.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_formatted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_formatted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_formatted.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_formatted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_inserted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_inserted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_inserted.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_inserted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_tablechg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_tablechg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_tablechg.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/redline_tablechg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20234.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20234.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20234.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20234.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,3 @@ + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20236.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20236.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20236.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20236.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20245.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20245.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20245.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20245.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,8 @@ + + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20246.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20246.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20246.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20246.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20248.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20248.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20248.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sc20248.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,9 @@ + + + + + + + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sf01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sf01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sf01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sf01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,7 @@ + + + + + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sf03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sf03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sf03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sf03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sf05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sf05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sf05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sf05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column1_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column1_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column1_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column1_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column2_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column2_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column2_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column2_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column3_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column3_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column3_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column3_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columncopy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columncopy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columncopy_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columncopy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_1_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_1_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_1_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_1_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_2_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_2_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_2_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_2_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_3_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_3_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_3_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_3_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_copy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_copy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_copy_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_copy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columnleft_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columnleft_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columnleft_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columnleft_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_left_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_left_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_left_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_left_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_right_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_right_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_right_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/column_L_right_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columnright_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columnright_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columnright_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/columnright_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatcopy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatcopy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatcopy_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatcopy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_copy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_copy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_copy_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_copy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_wide_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_wide_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_wide_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/format_L_wide_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatmirror_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatmirror_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatmirror_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatmirror_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatnarrow_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatnarrow_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatnarrow_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatnarrow_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatnormal_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatnormal_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatnormal_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatnormal_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatwide_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatwide_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatwide_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/formatwide_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/portraitcopy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/portraitcopy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/portraitcopy_24x24.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sidebar/pageproppanel/portraitcopy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20012.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20012.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20012.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20012.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20018.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20018.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20018.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20018.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20019.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20019.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20019.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/sr20019.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ + + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr010.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr011.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr011.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr011.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr011.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr01.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr02.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr03.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr04.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr05.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr06.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr07.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr08.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/sw/res/wr09.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/sw/res/wr09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check7.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check7.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check7.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check7.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check9.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check9.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/check9.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/check9.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/collate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/collate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/collate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/collate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/errorbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/errorbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/errorbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/errorbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/fatcross.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/fatcross.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/fatcross.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/fatcross.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/infobox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/infobox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/infobox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/infobox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeEmptyHidden.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeEmptyHidden.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeEmptyHidden.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeEmptyHidden.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeFirstCell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeFirstCell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeFirstCell.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeFirstCell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeKeepHidden.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeKeepHidden.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeKeepHidden.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/MergeKeepHidden.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/ncollate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/ncollate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/ncollate.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/ncollate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/querybox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/querybox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/querybox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/querybox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio1.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio2.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio3.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio4.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio5.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio6.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/radio6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/successbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/successbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/successbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/successbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/warningbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/warningbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/vcl/res/warningbox.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/vcl/res/warningbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangefree_42.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangefree_42.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangefree_42.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangefree_42.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangelistside_42.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangelistside_42.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangelistside_42.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangelistside_42.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangelisttop_42.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangelisttop_42.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangelisttop_42.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangelisttop_42.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangetable_42.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangetable_42.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangetable_42.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/formarrangetable_42.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/landscape_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/landscape_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/landscape_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/landscape_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/portrait_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/portrait_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/wizards/res/portrait_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/wizards/res/portrait_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/certificate_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/certificate_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/certificate_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/certificate_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/certificate_40x56.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/certificate_40x56.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/certificate_40x56.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/certificate_40x56.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,624 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/notcertificate_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/notcertificate_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/notcertificate_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/notcertificate_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/notcertificate_40x56.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/notcertificate_40x56.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/notcertificate_40x56.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/notcertificate_40x56.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,658 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/signet_11x16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/signet_11x16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/signet_11x16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_dark_svg/xmlsecurity/res/signet_11x16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/AUTHORS libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/AUTHORS --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/AUTHORS 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/AUTHORS 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ ------------------------ Sukapura Icon Theme for LibreOffice ------------------------ -Copyright (c) 2019-2020 Rizal Muttaqin +Copyright (c) 2019-2023 Rizal Muttaqin -Sukapura whose the name is taken after a kingdom of my hometown Tasikmalaya is +Sukapura whose the name is taken after a kingdom of my hometown Tasikmalaya is derived from Colibre, designed to fit macOS desktop. The Colibre Icon Theme in icons/ diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/avmedia/res/avaudiologo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/avmedia/res/avaudiologo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/avmedia/res/avaudiologo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/avmedia/res/avaudiologo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/avmedia/res/avemptylogo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/avmedia/res/avemptylogo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/avmedia/res/avemptylogo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/avmedia/res/avemptylogo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areas3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areas3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areas3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areas3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areas_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areas_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areas_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areas_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areasfull3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areasfull3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areasfull3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areasfull3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areasfull_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areasfull_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areasfull_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areasfull_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areaspiled3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areaspiled3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areaspiled3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areaspiled3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areaspiled_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areaspiled_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/areaspiled_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/areaspiled_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/bar3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/bar3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/bar3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/bar3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/bar3ddeep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/bar3ddeep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/bar3ddeep_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/bar3ddeep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/bar_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/bar_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/bar_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/bar_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/barpercent3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/barpercent3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/barpercent3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/barpercent3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/barpercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/barpercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/barpercent_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/barpercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/barstack3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/barstack3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/barstack3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/barstack3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/barstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/barstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/barstack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/barstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/bubble_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/bubble_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/bubble_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/bubble_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnline_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnline_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnline_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnline_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnpercent3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnpercent3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnpercent3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnpercent3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnpercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnpercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnpercent_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnpercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columns3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columns3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columns3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columns3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columns3ddeep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columns3ddeep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columns3ddeep_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columns3ddeep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columns_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columns_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columns_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columns_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnstack3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnstack3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnstack3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnstack3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnstack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnstackline_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnstackline_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/columnstackline_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/columnstackline_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cone_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cone_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cone_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cone_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conedeep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conedeep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conedeep_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conedeep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conehori_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conehori_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conehori_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conehori_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conehorideep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conehorideep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conehorideep_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conehorideep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conehoripercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conehoripercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conehoripercent_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conehoripercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conehoristack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conehoristack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conehoristack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conepercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conepercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conepercent_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conepercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conestack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conestack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/conestack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/conestack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinder_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinder_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinder_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinder_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderdeep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderdeep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderdeep_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderdeep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhori_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhori_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhori_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhori_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhorideep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhorideep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhorideep_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhorideep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhoriprocent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhoriprocent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhoriprocent_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhoriprocent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhoristack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhoristack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhoristack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderhoristack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderpercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderpercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderpercent_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderpercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/cylinderstack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/cylinderstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon06.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon07.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon08.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon09.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/dataeditor_icon09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/donut3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/donut3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/donut3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/donut3dexploded_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/donut3dexploded_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/donut3dexploded_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/donut3dexploded_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/donut_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/donut_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/donut_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/donut_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/donutexploded_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/donutexploded_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/donutexploded_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/donutexploded_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errorbothhori_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errorbothhori_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errorbothhori_30.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errorbothhori_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errorbothverti_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errorbothverti_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errorbothverti_30.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errorbothverti_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errordown_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errordown_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errordown_30.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errordown_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errorleft_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errorleft_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errorleft_30.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errorleft_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errorright_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errorright_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errorright_30.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errorright_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errorup_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errorup_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/errorup_30.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/errorup_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/net_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/net_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/net_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/net_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netfill_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netfill_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netfill_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netfill_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netlinepoint_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netlinepoint_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netlinepointstack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netlinepointstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netpoint_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netpoint_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netpoint_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netpointstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netpointstack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netpointstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netstack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netstackfill_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netstackfill_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/netstackfill_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/netstackfill_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirect3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirect3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirect3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirect3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectboth_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectlines_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectpoints_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectpoints_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectpoints_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostackdirectpoints_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmooth3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmooth3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmooth3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmooth3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmoothboth_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmoothlines_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostackstepped3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostackstepped3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostackstepped3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostackstepped3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostacksteppedboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostacksteppedboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostacksteppedboth_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostacksteppedboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostacksteppedlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostacksteppedlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/nostacksteppedlines_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/nostacksteppedlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pie3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pie3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pie3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pie3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -12,4 +12,4 @@ NaTVShbEJeel7XxHQCt75YF29v74xGvSot8jkemllgRO4ASuB5henh5sqHt+wWrw4rTeUPdMHPgb lLyInZCuE8MAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTUtMTEtMjZUMTU6MjM6MTArMDA6MDD7CboL AAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE1LTExLTI2VDE1OjE2OjU3KzAwOjAwtHKfhgAAAABJRU5E -rkJggg=="/> \ No newline at end of file +rkJggg=="/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pie3dexploded_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pie3dexploded_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pie3dexploded_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pie3dexploded_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -12,4 +12,4 @@ NaTVShbEJeel7XxHQCt75YF29v74xGvSot8jkemllgRO4ASuB5henh5sqHt+wWrw4rTeUPdMHPgb lLyInZCuE8MAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTUtMTEtMjZUMTU6MjM6MTArMDA6MDD7CboL AAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE1LTExLTI2VDE1OjE2OjU3KzAwOjAwtHKfhgAAAABJRU5E -rkJggg=="/> \ No newline at end of file +rkJggg=="/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pie_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pie_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pie_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pie_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -12,4 +12,4 @@ NaTVShbEJeel7XxHQCt75YF29v74xGvSot8jkemllgRO4ASuB5henh5sqHt+wWrw4rTeUPdMHPgb lLyInZCuE8MAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTUtMTEtMjZUMTU6MjM6MTArMDA6MDD7CboL AAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE1LTExLTI2VDE1OjE2OjU3KzAwOjAwtHKfhgAAAABJRU5E -rkJggg=="/> \ No newline at end of file +rkJggg=="/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pieexploded_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pieexploded_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pieexploded_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pieexploded_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -12,4 +12,4 @@ NaTVShbEJeel7XxHQCt75YF29v74xGvSot8jkemllgRO4ASuB5henh5sqHt+wWrw4rTeUPdMHPgb lLyInZCuE8MAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTUtMTEtMjZUMTU6MjM6MTArMDA6MDD7CboL AAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE1LTExLTI2VDE1OjE2OjU3KzAwOjAwtHKfhgAAAABJRU5E -rkJggg=="/> \ No newline at end of file +rkJggg=="/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramind_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramind_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramind_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramind_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyraminddeep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyraminddeep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyraminddeep_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyraminddeep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhori_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhori_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhori_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhori_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhorideep_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhorideep_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhorideep_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhorideep_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhoripercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhoripercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhoripercent_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhoripercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhoristack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhoristack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhoristack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindhoristack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindpercent_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindpercent_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindpercent_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindpercent_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindstack_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindstack_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/pyramindstack_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/pyramindstack_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/regavg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/regavg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/regavg.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/regavg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/regexp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/regexp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/regexp.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/regexp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/reglin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/reglin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/reglin.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/reglin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/reglog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/reglog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/reglog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/reglog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/regno.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/regno.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/regno.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/regno.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/regpoly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/regpoly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/regpoly.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/regpoly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/regpow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/regpow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/regpow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/regpow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stackdirect3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stackdirect3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectboth_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectlines_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectpoints_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stacksmooth3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stacksmoothboth_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stacksmoothlines_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stackstepped3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stackstepped3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stacksteppedboth_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stacksteppedlines_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/step_center_x_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/step_center_x_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/step_center_x_30.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/step_center_x_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/step_center_y_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/step_center_y_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/step_center_y_30.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/step_center_y_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/step_end_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/step_end_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/step_end_30.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/step_end_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/step_start_30.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/step_start_30.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/step_start_30.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/step_start_30.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stock_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stock_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stock_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stock_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stockblock_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stockblock_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stockblock_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stockblock_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stockcolumns_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stockcolumns_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stockcolumns_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stockcolumns_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stockcolumnsattach_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stockcolumnsattach_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/stockcolumnsattach_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/stockcolumnsattach_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typearea_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typearea_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typearea_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typearea_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typebar_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typebar_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typebar_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typebar_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typebubble_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typebubble_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typebubble_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typebubble_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typecolumn_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typecolumn_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typecolumn_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typecolumn_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typecolumnline_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typecolumnline_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typecolumnline_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typecolumnline_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typenet_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typenet_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typenet_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typenet_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typepointline_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typepointline_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typepointline_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typepointline_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typestock_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typestock_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typestock_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typestock_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typexy_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typexy_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/typexy_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/typexy_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -21,4 +21,4 @@ qGTMs1uvGnbhBoBtGmS+Nex6ATYt0CiSXri16xdk7IERM6F7zPg2nGI4/8pR/H/COgMPYeyB98BD BsaXp7M3hm4psM6+OG3eGLo9OuB/l+C84bs2u8sAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTUtMTEt MjZUMTU6MjM6MTArMDA6MDD7CboLAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE1LTExLTI2VDE1OjE2 -OjU3KzAwOjAwtHKfhgAAAABJRU5ErkJggg=="/> \ No newline at end of file +OjU3KzAwOjAwtHKfhgAAAABJRU5ErkJggg=="/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissteppedboth_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissteppedboth_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissteppedboth_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissteppedboth_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -21,4 +21,4 @@ qGTMs1uvGnbhBoBtGmS+Nex6ATYt0CiSXri16xdk7IERM6F7zPg2nGI4/8pR/H/COgMPYeyB98BD BsaXp7M3hm4psM6+OG3eGLo9OuB/l+C84bs2u8sAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTUtMTEt MjZUMTU6MjM6MTArMDA6MDD7CboLAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE1LTExLTI2VDE1OjE2 -OjU3KzAwOjAwtHKfhgAAAABJRU5ErkJggg=="/> \ No newline at end of file +OjU3KzAwOjAwtHKfhgAAAABJRU5ErkJggg=="/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissteppedlines_52x60.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissteppedlines_52x60.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissteppedlines_52x60.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/chart2/res/valueaxissteppedlines_52x60.svg 2023-03-24 16:53:38.000000000 +0000 @@ -21,4 +21,4 @@ qGTMs1uvGnbhBoBtGmS+Nex6ATYt0CiSXri16xdk7IERM6F7zPg2nGI4/8pR/H/COgMPYeyB98BD BsaXp7M3hm4psM6+OG3eGLo9OuB/l+C84bs2u8sAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTUtMTEt MjZUMTU6MjM6MTArMDA6MDD7CboLAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE1LTExLTI2VDE1OjE2 -OjU3KzAwOjAwtHKfhgAAAABJRU5ErkJggg=="/> \ No newline at end of file +OjU3KzAwOjAwtHKfhgAAAABJRU5ErkJggg=="/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/absoluterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accent1cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accent1cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accent1cellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accent1cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accent2cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accent2cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accent2cellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accent2cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accent3cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accent3cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accent3cellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accent3cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/acceptalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/acceptalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/acceptalltrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/acceptalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchangetonext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/accepttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/actionmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/actionmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/actionmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/actionmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/adddirect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/adddirect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/adddirect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/adddirect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/additionsdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/additionsdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/additionsdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/additionsdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addressbooksource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addressbooksource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addressbooksource.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addressbooksource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addtable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addwatch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addwatch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/addwatch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/addwatch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/advancedmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/advancedmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/advancedmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/advancedmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignblock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignblock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignblock.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignblock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/aligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/aligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/aligncenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/aligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/aligndown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/aligndown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/aligndown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/aligndown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignhorizontalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignhorizontalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignhorizontalcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignhorizontalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignmiddle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignmiddle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignmiddle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignmiddle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/aligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/aligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/aligntop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/aligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignverticalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignverticalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alignverticalcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alignverticalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alphaliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/alphalowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/animationeffects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/animationeffects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/animationeffects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/animationeffects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/animationmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/animationmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/animationmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/animationmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/animationobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/animationobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/animationobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/animationobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/absoluterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/alphaliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/alphalowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/bulletsandnumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/chapternumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/continuenumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/defaultbullet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/defaultnumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/deleterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/insertneutralparagraph.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/linenumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/newrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/numberingstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/recsave.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/romanliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/romanlowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ar/setoutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ar/setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.chevron.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.chevron.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.chevron.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.chevron.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.circular-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.circular-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.circular-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.circular-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.corner-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.corner-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.corner-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.corner-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.down-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.down-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-right-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.left-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.notched-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.notched-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.notched-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.notched-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.pentagon-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.pentagon-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.pentagon-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.pentagon-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.quad-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.quad-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.quad-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.quad-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.quad-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.quad-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.quad-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.quad-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.right-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.split-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.split-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.split-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.split-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.split-round-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.split-round-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.split-round-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.split-round-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.s-sharped-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.s-sharped-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.s-sharped-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.s-sharped-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.striped-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.striped-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.striped-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.striped-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-down-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-down-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-down-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/arrowshapes.up-right-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/assignlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/assignlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/assignlayout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/assignlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/assignmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/assignmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/assignmacro.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/assignmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/attributepagesize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/attributepagesize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/attributepagesize.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/attributepagesize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/auditingfillmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/auditingfillmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/auditingfillmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/auditingfillmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/auditmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/auditmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/auditmenu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/auditmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autocontrolfocus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autocontrolfocus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autocontrolfocus.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autocontrolfocus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autocorrectdlg.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autoformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autoformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autoformat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autoformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autooutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autooutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autooutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autooutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autopilotmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autopilotmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autopilotmenu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autopilotmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autoredactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autoredactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autoredactdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autoredactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autosum.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autosum.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/autosum.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/autosum.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/avmediaplayer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/avmediaplayer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/avmediaplayer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/avmediaplayer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/backcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/backcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/backcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/backcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/backgroundcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/backgroundcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/backgroundcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/backgroundcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/backward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/backward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/backward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/backward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicideappear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicideappear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicideappear.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicideappear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.block-arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.block-arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.block-arc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.block-arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.can.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.can.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.can.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.can.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.cross.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.cross.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.cross.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.cross.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.cube.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.diamond.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.diamond.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.diamond.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.diamond.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.frame.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.frame.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.frame.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.frame.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.hexagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.hexagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.hexagon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.hexagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.isosceles-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.isosceles-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.isosceles-triangle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.isosceles-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.octagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.octagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.octagon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.octagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.paper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.paper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.paper.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.paper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.pentagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.pentagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.pentagon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.pentagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.right-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.right-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.right-triangle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.right-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.ring.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.ring.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.ring.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.ring.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.round-quadrat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.round-quadrat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.round-quadrat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.round-quadrat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.trapezoid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.trapezoid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.trapezoid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicshapes.trapezoid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicstepinto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicstepinto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicstepinto.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicstepinto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicstepout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicstepout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicstepout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicstepout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicstepover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicstepover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicstepover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicstepover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicstop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicstop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/basicstop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/basicstop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beforeobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beforeobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beforeobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beforeobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/behindobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/behindobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/behindobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/behindobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierappend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierappend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierappend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierappend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierclose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierclose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierclose.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierclose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierconvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierconvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierconvert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierconvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beziercutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beziercutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beziercutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beziercutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierdelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezieredge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezieredge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezieredge.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezieredge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beziereliminatepoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beziereliminatepoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beziereliminatepoints.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beziereliminatepoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierfill.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierfill.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierfill.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierfill.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierinsert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierinsert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezierinsert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezierinsert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beziermove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beziermove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beziermove.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beziermove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beziersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beziersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beziersmooth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beziersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beziersymmetric.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beziersymmetric.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/beziersymmetric.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/beziersymmetric.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezier_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezier_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bezier_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bezier_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/autocorrectdlg.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/backcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/backcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/backcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/backcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/doubleclicktextedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/edit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/hyphenate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/insertfixedtext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/label.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/pickthrough.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/quickedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/sortascending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/sortdescending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/spelling.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/spellonline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/strikeout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/text.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bg/wordcountdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bg/wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bibliographycomponent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bibliographycomponent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bibliographycomponent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bibliographycomponent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bmpmask.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bmpmask.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bmpmask.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bmpmask.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/borderdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/borderdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/borderdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/borderdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/break.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/break.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/break.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/break.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bringtofront.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bringtofront.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bringtofront.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bringtofront.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/browseview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/browseview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/browseview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/browseview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bulletsandnumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/bullet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/bullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calculate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calculate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calculate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calculate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.cloud-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.cloud-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.cloud-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.cloud-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-3.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.line-callout-3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.rectangular-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.rectangular-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.rectangular-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.rectangular-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.round-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.round-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.round-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.round-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/calloutshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/capturepoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/capturepoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/capturepoint.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/capturepoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cellprotection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cellprotection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cellprotection.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cellprotection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/chainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/chainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/chainframes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/chainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changebezier.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changebezier.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changebezier.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changebezier.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changecasetolower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changecasetolower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changecasetolower.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changecasetolower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changecasetoupper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changecasetoupper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changecasetoupper.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changecasetoupper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changedatabasefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changedatabasefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changedatabasefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changedatabasefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changepicture.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changepicture.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changepicture.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changepicture.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/changepolygon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/changepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/chapternumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/charfontname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/charmapcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/charmapcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/charmapcontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/charmapcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/checkbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/checkbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/checkbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/checkbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/choosecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/choosecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/choosecontrols.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/choosecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,3 @@ - -/&amp;amp;gt; \ No newline at end of file + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/choosedesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/choosedesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/choosedesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/choosedesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/choosemacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/choosemacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/choosemacro.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/choosemacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/choosepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/choosepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/choosepolygon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/choosepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circlearc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circlearc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circlearc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circlearc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circlecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circlecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circlecut.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circlecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circlecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circlecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circlecut_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circlecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circlepie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circlepie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circlepie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circlepie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circlepie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circlepie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circlepie_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circlepie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circle_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circle_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/circle_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/circle_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cleararrowdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cleararrowdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cleararrowdependents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cleararrowdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cleararrowprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cleararrowprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cleararrowprecedents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cleararrowprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cleararrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cleararrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cleararrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cleararrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/closedocs.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/closedocs.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/closedocs.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/closedocs.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/closedoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/closedoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/closedoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/closedoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/closemasterview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/closemasterview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/closemasterview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/closemasterview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/colorscaleformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/colorscaleformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/colorscaleformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/colorscaleformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/color.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/combine.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/combine.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/combine.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/combine.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/combobox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/combobox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/combobox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/combobox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/commentchangetracking.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/commentchangetracking.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/commentchangetracking.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/commentchangetracking.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/comparedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/comparedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/comparedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/comparedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/compilebasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/compilebasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/compilebasic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/compilebasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/compressgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/compressgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/compressgraphic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/compressgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/conddateformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/conddateformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/conddateformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/conddateformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/conditionalformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/conditionalformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/conditionalformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/conditionalformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/configuredialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/configuredialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/configuredialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/configuredialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcircles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcircles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcircles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcircles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecircles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecircles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecircles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecircles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurvecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorcurve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinecircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinecirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinesarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinescircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinescircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinescircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinescircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinescirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinescirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinescirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlinescirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlines.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlines.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorlines.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorlines.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connectorline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connectorline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connector.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/connect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/connect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,58 @@ - \ No newline at end of file + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/continuenumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/contourdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/contourdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/contourdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/contourdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/controlcodes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/controlcodes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/controlcodes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/controlcodes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/controlproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/controlproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/controlproperties.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/controlproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,4 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/convertinto3dlathe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/convertinto3dlathe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/convertinto3dlathe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/convertinto3dlathe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/convertinto3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/convertinto3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/convertinto3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/convertinto3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/copyobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/copyobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/copyobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/copyobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/copy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/copy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/copy.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/copy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/crookrotate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/crookrotate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/crookrotate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/crookrotate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/crookslant.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/crookslant.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/crookslant.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/crookslant.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/crop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/crop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/crop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/crop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cube.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/currencyfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/currencyfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/currencyfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/currencyfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/customshowdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/customshowdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/customshowdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/customshowdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/cut.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/cut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataarearefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataarearefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataarearefresh.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataarearefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/databarformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/databarformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/databarformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/databarformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataconsolidate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataconsolidate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataconsolidate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataconsolidate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datadatapilotrun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datadatapilotrun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datadatapilotrun.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datadatapilotrun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datafilterautofilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datafilterautofilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datafilterautofilter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datafilterautofilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datafilterspecialfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datafilterspecialfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datafilterspecialfilter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datafilterspecialfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datafilterstandardfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datafilterstandardfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datafilterstandardfilter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datafilterstandardfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataform.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataimport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataimport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataimport.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataimport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataincolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataincolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataincolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataincolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datainrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datainrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datainrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datainrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataproviderrefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataproviderrefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataproviderrefresh.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataproviderrefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataprovider.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataprovider.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataprovider.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataprovider.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataranges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataranges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dataranges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dataranges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datasort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datasort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datasort.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datasort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datastreams.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datastreams.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datastreams.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datastreams.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datasubtotals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datasubtotals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datasubtotals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datasubtotals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/datefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/datefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbaddrelation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbaddrelation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbaddrelation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbaddrelation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbchangedesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbchangedesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbchangedesignmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbchangedesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbclearquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbclearquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbclearquery.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbclearquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbdistinctvalues.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbdistinctvalues.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbdistinctvalues.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbdistinctvalues.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbformdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbformdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbformdelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbformdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbformedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbformedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbformedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbformedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbformopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbformopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbformopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbformopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbformrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbformrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbformrename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbformrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbindexdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbindexdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbindexdesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbindexdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewform.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewquerysql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewquerysql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewquerysql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewquerysql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewquery.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewreport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewreport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewreport.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewreport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewtable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewviewsql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewviewsql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewviewsql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewviewsql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbnewview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbnewview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbquerydelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbquerydelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbquerydelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbquerydelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbquerypropertiesdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbquerypropertiesdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbquerypropertiesdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbquerypropertiesdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryrename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbqueryrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbrelationdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbrelationdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbrelationdesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbrelationdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbreportdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbreportdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbreportdelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbreportdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbreportedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbreportedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbreportedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbreportedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbreportopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbreportopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbreportopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbreportopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbreportrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbreportrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbreportrename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbreportrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbsortingandgrouping.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbsortingandgrouping.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbsortingandgrouping.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbsortingandgrouping.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbtabledelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbtabledelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbtabledelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbtabledelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbtableedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbtableedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbtableedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbtableedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbtableopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbtableopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbtableopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbtableopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbtablerename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbtablerename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbtablerename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbtablerename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewaliases.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewaliases.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewaliases.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewaliases.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewforms.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewforms.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewforms.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewforms.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewfunctions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewfunctions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewfunctions.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewfunctions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewqueries.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewqueries.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewqueries.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewqueries.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewreports.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewreports.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewreports.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewreports.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewtablenames.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewtablenames.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewtablenames.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewtablenames.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewtables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewtables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dbviewtables.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dbviewtables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatdecdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatdecimal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatincdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatthousands.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/de/numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/decrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/decrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/decrementindent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/decrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/decrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/decrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/decrementlevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/decrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/decrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/decrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/decrementsublevels.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/decrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/defaultbullet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/defaultcharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/defaultcharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/defaultcharstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/defaultcharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/defaultnumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/definedbname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/definedbname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/definedbname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/definedbname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/definename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/definename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/definename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/definename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/defineprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/defineprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/defineprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/defineprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleteallannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleteallannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleteallannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleteallannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleteallbreaks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleteallbreaks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleteallbreaks.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleteallbreaks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleteannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleteannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleteannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleteannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletecell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletecolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletemasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletepivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletepivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletepivottable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletepivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleteprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleteprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleteprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleteprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleterows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleterows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleterows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleterows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleteslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleteslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deleteslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deleteslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/deletetable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/deletetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/designerdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/developmenttoolsdockingwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/developmenttoolsdockingwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/developmenttoolsdockingwindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/developmenttoolsdockingwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diaeffect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diaeffect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diaeffect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diaeffect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxis.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxis.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxis.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxis.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisx.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisx.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisx.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisx.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisy.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisz.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramaxisz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramdata.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramtype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramtype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramtype.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramtype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramwall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramwall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diagramwall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diagramwall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diamode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diamode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diamode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diamode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diaspeed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diaspeed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diaspeed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diaspeed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dia.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diatime.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diatime.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/diatime.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/diatime.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dismantle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dismantle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dismantle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dismantle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/displaymasterobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/displaymasterobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/displaymasterobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/displaymasterobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/displaymode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/displaymode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/displaymode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/displaymode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributecolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzdistance.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributehorzright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributerows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributerows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributerows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributerows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributeselection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributeselection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributeselection.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributeselection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributevertbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributevertbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributevertbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributevertbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributevertcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributevertcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributevertcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributevertcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributevertdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributevertdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributevertdistance.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributevertdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributeverttop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributeverttop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/distributeverttop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/distributeverttop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/documentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/documentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/documentation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/documentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/doubleclicktextedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/downsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/downsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/downsearch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/downsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/drawcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/drawcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/drawcaption.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/drawcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dsbinsertcontent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dsbinsertcontent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dsbinsertcontent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dsbinsertcontent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dsbrowserexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dsbrowserexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/dsbrowserexplorer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/dsbrowserexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/duplicatepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/duplicatepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/duplicatepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/duplicatepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/duplicatesheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/duplicatesheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/duplicatesheet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/duplicatesheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/duplicateslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/duplicateslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/duplicateslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/duplicateslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editcurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editcurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editcurindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editcurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editframeset.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editframeset.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editframeset.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editframeset.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editglossary.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editglossary.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editglossary.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editglossary.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editheaderandfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editheaderandfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editheaderandfooter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editheaderandfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/edithyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/edithyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/edithyperlink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/edithyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editqrcode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/editstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/edit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ellipsecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ellipsecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ellipsecut.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ellipsecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ellipsecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ellipsecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ellipsecut_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ellipsecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ellipse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ellipse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ellipse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ellipse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ellipse_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ellipse_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ellipse_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ellipse_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/emphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/emphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/emphasischarstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/emphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/entergroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/entergroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/entergroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/entergroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/entirecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/entirecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/entirecell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/entirecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/entirecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/entirecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/entirecolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/entirecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/entirerow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/entirerow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/entirerow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/entirerow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/equalizeheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/equalizeheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/equalizeheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/equalizeheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/equalizewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/equalizewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/equalizewidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/equalizewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/errorcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/errorcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/errorcellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/errorcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/es/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/es/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/es/bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/es/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/es/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/es/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/es/underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/es/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/es/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/es/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/es/underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/es/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/euroconverter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/euroconverter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/euroconverter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/euroconverter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/executereport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/executereport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/executereport.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/executereport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/expandpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/expandpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/expandpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/expandpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/exportdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/exportdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/exportdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/exportdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/exportdirecttoepub.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/exportdirecttoepub.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/exportdirecttoepub.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/exportdirecttoepub.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/exportdirecttopdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/exportdirecttopdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/exportdirecttopdf.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/exportdirecttopdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/exportto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/exportto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/exportto.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/exportto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extendedhelp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extendedhelp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extendedhelp.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extendedhelp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusion3dcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusion3dcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusion3dcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusion3dcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiondepthfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiondepthfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiondepthfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiondepthfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiondirectionfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiondirectionfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiondirectionfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiondirectionfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusionlightingfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusionlightingfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusionlightingfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusionlightingfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusionsurfacefloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusionsurfacefloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusionsurfacefloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusionsurfacefloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltdown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/extrusiontiltup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fields.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,4 @@ - -/&amp;amp;gt; \ No newline at end of file + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/filecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/filecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/filecontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/filecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/filedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/filedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/filedocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/filedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/filefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/filefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/filefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/filefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/filldown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/filldown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/filldown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/filldown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fillleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fillleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fillleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fillleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fillright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fillright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fillright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fillright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fillshadow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fillshadow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fillshadow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fillshadow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fillup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fillup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fillup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fillup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/firstpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/firstpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/firstpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/firstpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/firstrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/firstrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/firstrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/firstrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/firstslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/firstslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/firstslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/firstslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-card.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-card.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-card.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-card.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-collate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-collate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-collate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-collate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-data.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-decision.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-decision.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-decision.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-decision.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-delay.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-delay.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-delay.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-delay.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-direct-access-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-direct-access-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-direct-access-storage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-direct-access-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-display.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-display.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-display.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-display.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-document.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-document.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-document.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-document.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-internal-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-internal-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-internal-storage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-internal-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-manual-input.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-manual-input.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-manual-input.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-manual-input.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-multidocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-multidocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-multidocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-multidocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-off-page-connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-off-page-connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-off-page-connector.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-off-page-connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-or.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-or.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-or.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-or.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-predefined-process.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-predefined-process.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-predefined-process.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-predefined-process.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-preparation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-preparation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-preparation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-preparation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-punched-tape.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-punched-tape.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-punched-tape.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-punched-tape.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-sequential-access.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-sequential-access.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-sequential-access.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-sequential-access.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-sort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-sort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-sort.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-sort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-stored-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-stored-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-stored-data.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-stored-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-summing-junction.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-summing-junction.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-summing-junction.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-summing-junction.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-terminator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-terminator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-terminator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.flowchart-terminator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/flowchartshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkgalleryfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkgalleryfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkgalleryfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkgalleryfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworksameletterheights.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworksameletterheights.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworksameletterheights.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworksameletterheights.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-down-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-down-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-down-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-down-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-down-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-down-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-down-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-down-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-left-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-left-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-left-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-left-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-left-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-left-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-left-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-left-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-right-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-right-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-right-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-right-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-right-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-right-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-right-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-right-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-up-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-up-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-up-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-up-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-up-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-up-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-up-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-arch-up-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-chevron-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-chevron-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-chevron-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-chevron-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-chevron-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-chevron-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-chevron-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-chevron-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-circle-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-curve-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-curve-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-curve-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-curve-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-curve-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-curve-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-curve-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-curve-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up-and-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-fade-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-inflate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-inflate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-inflate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-inflate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-open-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-open-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-open-circle-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-open-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-open-circle-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-open-circle-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-open-circle-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-open-circle-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-plain-text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-plain-text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-plain-text.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-plain-text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-slant-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-slant-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-slant-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-slant-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-slant-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-slant-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-slant-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-slant-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-stop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-stop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-stop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-stop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-triangle-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-triangle-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-triangle-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-triangle-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-wave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-wave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-wave.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontworkshapetype.fontwork-wave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontwork.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontwork.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fontwork.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fontwork.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/footnotedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/footnotedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/footnotedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/footnotedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatcelldialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatcelldialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatcelldialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatcelldialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatcolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatgroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatpaintbrush.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatpaintbrush.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatpaintbrush.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatpaintbrush.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formattedfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formattedfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formattedfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formattedfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formatungroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formatungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formdesigntools.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formdesigntools.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formdesigntools.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formdesigntools.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formelcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formelcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formelcursor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formelcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formfiltered.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formfiltered.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formfiltered.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formfiltered.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formfilternavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formfilternavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formfilternavigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formfilternavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/formproperties.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/formproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/forward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/forward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/forward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/forward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fr/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fr/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fr/bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fr/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/framedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/framedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/framedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/framedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/framelinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/framelinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/framelinecolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/framelinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/freeline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/freeline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/freeline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/freeline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/freeline_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/freeline_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/freeline_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/freeline_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/freezepanesfirstcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/freezepanesfirstcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/freezepanesfirstcolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/freezepanesfirstcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/freezepanesfirstrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/freezepanesfirstrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/freezepanesfirstrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/freezepanesfirstrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/freezepanes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/freezepanes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/freezepanes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/freezepanes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fullscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fullscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/fullscreen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/fullscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gallery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gallery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gallery.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gallery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueeditmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueeditmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueeditmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueeditmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectionright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectiontop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectiontop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectiontop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueescapedirectiontop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzaligncenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzalignleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzalignright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluehorzalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueinsertpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueinsertpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/glueinsertpoint.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/glueinsertpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluepercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluepercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluepercent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluepercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluevertalignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluevertalignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluevertalignbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluevertalignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluevertaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluevertaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluevertaligncenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluevertaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluevertaligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluevertaligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gluevertaligntop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gluevertaligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/goalseekdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/goalseekdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/goalseekdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/goalseekdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gotoendofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gotoendofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gotoendofdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gotoendofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gotoend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gotoend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gotoend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gotoend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gotopage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gotopage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gotopage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gotopage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gotostartofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gotostartofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gotostartofdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gotostartofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gotostartoftable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gotostartoftable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gotostartoftable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gotostartoftable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafblue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafblue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafblue.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafblue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafcontrast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafcontrast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafcontrast.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafcontrast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafgamma.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafgamma.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafgamma.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafgamma.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafgreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafgreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafgreen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafgreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafluminance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafluminance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafluminance.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafluminance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafred.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafred.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grafred.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grafred.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graftransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graftransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graftransparence.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graftransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterinvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterinvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterinvert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterinvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltermosaic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltermosaic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltermosaic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltermosaic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterpopart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterpopart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterpopart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterpopart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterposter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterposter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterposter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterposter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterrelief.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterrelief.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterrelief.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterrelief.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterremovenoise.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterremovenoise.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterremovenoise.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfilterremovenoise.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersepia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersepia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersepia.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersepia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersharpen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersharpen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersharpen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersharpen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersmooth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersobel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersobel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersobel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersobel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersolarize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersolarize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersolarize.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphicfiltersolarize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/graphic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/graphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/greatestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/greatestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/greatestheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/greatestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/greatestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/greatestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/greatestwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/greatestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/griduse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/griduse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/griduse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/griduse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gridvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gridvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/gridvisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/gridvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/groupbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/groupbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/groupbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/groupbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/group.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/group.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/group.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/group.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/grow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/grow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/halfsphere.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/halfsphere.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/halfsphere.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/halfsphere.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/handoutmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/handoutmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/handoutmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/handoutmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hangingindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hangingindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hangingindent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hangingindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading1parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading1parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading1parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading1parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading2parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading2parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading2parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading2parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading3parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading3parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading3parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading3parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading4parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading4parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading4parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading4parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading5parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading5parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading5parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading5parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading6parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading6parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/heading6parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/heading6parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/helpindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/helpindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/helpindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/helpindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/helplinesmove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/helplinesmove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/helplinesmove.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/helplinesmove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/helplinesuse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/helplinesuse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/helplinesuse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/helplinesuse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/helplinesvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/helplinesvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/helplinesvisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/helplinesvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hfixedline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hideallnotes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hideallnotes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hideallnotes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hideallnotes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hidecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hidecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hidecolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hidecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hidedetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hidedetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hidedetail.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hidedetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hidenote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hidenote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hidenote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hidenote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hiderow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hiderow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hiderow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hiderow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hideslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hideslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hideslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hideslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hidewhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hidewhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hidewhitespace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hidewhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hscrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hscrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hscrollbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hscrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1 @@ - - - - - - - /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hu/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hu/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hu/italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hu/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hu/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hu/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hu/underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hu/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hu/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hu/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hu/underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hu/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/hyphenate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/iconsetformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/iconsetformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/iconsetformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/iconsetformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/imagebutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/imagebutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/imagebutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/imagebutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/imagecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/imagecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/imagecontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/imagecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/imagemapdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/imagemapdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/imagemapdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/imagemapdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/importdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/importdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/importdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/importdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/importfromfile.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/importfromfile.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/importfromfile.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/importfromfile.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/incrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/incrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/incrementindent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/incrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/incrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/incrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/incrementlevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/incrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/incrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/incrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/incrementsublevels.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/incrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inputlinevisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inputlinevisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inputlinevisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inputlinevisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inscellsctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inscellsctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inscellsctrl.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inscellsctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertauthoritiesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertauthoritiesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertauthoritiesentry.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertauthoritiesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertbookmark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertbookmark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertbookmark.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertbookmark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertbreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcaptiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcaptiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcaptiondialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcaptiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcellsdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcellsdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcellsdown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcellsdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcellsright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcellsright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcellsright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcellsright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnbreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnsafter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnsbefore.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumnsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertdatefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertdatefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertdatefieldvar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertdatefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertdraw.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertdraw.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertdraw.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertdraw.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertendnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertendnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertendnote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertendnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertenvelope.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertenvelope.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertenvelope.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertenvelope.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertexternaldatasource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertexternaldatasource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertexternaldatasource.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertexternaldatasource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertfieldctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertfieldctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertfieldctrl.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertfieldctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertfixedtext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertfooter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertfootnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertfootnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertfootnote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertfootnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertgraphic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertheader.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertheader.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertheader.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertheader.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserthyperlinkcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserthyperlinkcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserthyperlinkcontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserthyperlinkcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserthyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserthyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserthyperlink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserthyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertindexesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertindexesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertindexesentry.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertindexesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertmasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertmath.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertmath.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertmath.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertmath.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertmenutitles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertmenutitles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertmenutitles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertmenutitles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertmultiindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertmultiindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertmultiindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertmultiindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertneutralparagraph.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertobjectfloatingframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertobjectfloatingframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertobjectfloatingframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertobjectfloatingframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertpagebreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertpagebreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertpagebreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertpagebreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertpagecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertpagecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertpagecountfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertpagecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertpagenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertpagenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertpagenumberfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertpagenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertplugin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertplugin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertplugin.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertplugin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertqrcode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertreferencefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertreferencefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertreferencefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertreferencefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertrowbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertrowbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertrowbreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertrowbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertrowsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertrowsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertrowsafter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertrowsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertrowsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertrowsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertrowsbefore.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertrowsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertsection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertsection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertsection.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertsection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertslidecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertslidecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertslidecountfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertslidecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertslidenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertslidenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertslidenumberfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertslidenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertslidetitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertslidetitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertslidetitlefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertslidetitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertsound.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertsound.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertsound.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertsound.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertspreadsheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertspreadsheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertspreadsheet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertspreadsheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertsymbol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertsymbol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertsymbol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertsymbol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserttable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserttimefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserttimefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserttimefieldvar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserttimefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserttitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserttitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserttitlefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserttitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserttopicfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserttopicfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserttopicfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserttopicfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserttreecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserttreecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inserttreecontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inserttreecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertvideo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertvideo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/insertvideo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/insertvideo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inspectordeck.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inspectordeck.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/inspectordeck.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/inspectordeck.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/interactivegradient.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/interactivegradient.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/interactivegradient.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/interactivegradient.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/interactivetransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/interactivetransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/interactivetransparence.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/interactivetransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/intersect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/intersect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/intersect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/intersect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/it/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/it/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/it/italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/it/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/jumptonexttablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/jumptonexttablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/jumptonexttablesel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/jumptonexttablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/jumptoprevtablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/jumptoprevtablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/jumptoprevtablesel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/jumptoprevtablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/km/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/km/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/km/bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/km/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/km/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/km/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/km/italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/km/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/km/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/km/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/km/underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/km/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/km/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/km/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/km/underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/km/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/charfontname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/color.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/designerdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/editstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/fontdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/outlinefont.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/overline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/resetattributes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/scaletext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/shadowed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/sortascending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/sortdescending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/strikeout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/stylenewbyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/styleupdatebyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/textdirectionlefttoright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/textdirectiontoptobottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/text_marquee.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/text.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ko/verticaltext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ko/verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/label.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/lastpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/lastpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/lastpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/lastpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/lastrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/lastrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/lastrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/lastrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/lastslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/lastslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/lastslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/lastslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/leaveallgroups.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/leaveallgroups.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/leaveallgroups.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/leaveallgroups.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/leavegroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/leavegroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/leavegroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/leavegroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/legend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/legend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/legend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/legend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-clearscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-clearscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-clearscreen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-clearscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-gobackward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-gobackward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-gobackward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-gobackward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-goforward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-goforward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-goforward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-goforward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-home.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-home.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-home.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-home.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/librelogo-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linearrowcircle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linearrowcircle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linearrowcircle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linearrowcircle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linearrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linearrowsquare.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linearrowsquare.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linearrowsquare.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linearrowsquare.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linearrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linearrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linecirclearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linecirclearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linecirclearrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linecirclearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/line_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/line_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/line_diagonal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/line_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/lineendstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/lineendstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/lineendstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/lineendstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linenumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linesquarearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linesquarearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linesquarearrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linesquarearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linestyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linestyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linestyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linestyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/line.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/line.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/line.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/line.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/linewidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/linewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/listbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/listbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/listbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/listbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/loadbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/loadbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/loadbasic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/loadbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/lock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/lock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/lock.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/lock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/macrorecorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/macrorecorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/macrorecorder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/macrorecorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergecreatedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergecreatedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergecreatedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergecreatedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeemaildocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeemaildocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeemaildocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeemaildocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeexcludeentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeexcludeentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeexcludeentry.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeexcludeentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeprintdocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeprintdocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeprintdocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergeprintdocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergesavedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergesavedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergesavedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergesavedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergewizard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergewizard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mailmergewizard.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mailmergewizard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/managebreakpoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/managebreakpoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/managebreakpoints.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/managebreakpoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/managelanguage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/managelanguage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/managelanguage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/managelanguage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/managexmlsource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/managexmlsource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/managexmlsource.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/managexmlsource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/marks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/marks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/marks.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/marks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/masterlayouts.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/masterlayouts.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/masterlayouts.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/masterlayouts.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/masterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/masterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/masterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/masterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/matchgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/matchgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/matchgroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/matchgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/measureline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/measureline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/measureline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/measureline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mediamute.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mediamute.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mediamute.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mediamute.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mediapause.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mediapause.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mediapause.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mediapause.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mediarepeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mediarepeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mediarepeat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mediarepeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/menubar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/menubar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/menubar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/menubar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mergecells.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mergedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mergedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mergedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mergedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mergedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mergedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mergedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mergedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/merge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/merge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/merge.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/merge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mergetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mergetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mergetable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mergetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mirror.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mirror.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mirror.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mirror.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mirrorvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mirrorvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/mirrorvert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/mirrorvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/modifyframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/modifyframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/modifyframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/modifyframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/modifypage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/modifypage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/modifypage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/modifypage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moduledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moduledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moduledialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moduledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/morecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/morecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/morecontrols.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/morecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,4 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/morphing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/morphing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/morphing.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/morphing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movedownsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movedownsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movedownsubitems.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movedownsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movedown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movepagedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movepagedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movepagedown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movepagedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movepagefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movepagefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movepagefirst.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movepagefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movepagelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movepagelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movepagelast.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movepagelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movepageup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movepageup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/movepageup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/movepageup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveslidedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveslidedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveslidedown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveslidedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveslidefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveslidefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveslidefirst.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveslidefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveslidelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveslidelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveslidelast.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveslidelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveslideup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveslideup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveslideup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveslideup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/move.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/move.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/move.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/move.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveupsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveupsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveupsubitems.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveupsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/moveup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/moveup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/name.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/name.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/name.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/name.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/navigationbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/navigationbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/navigationbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/navigationbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/navigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/navigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/navigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/navigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/newarrangement.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/newarrangement.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/newarrangement.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/newarrangement.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/newdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/newdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/newdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/newdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/newhtmldoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/newhtmldoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/newhtmldoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/newhtmldoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/newrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/newwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/newwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/newwindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/newwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nextannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nextannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nextannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nextannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nextpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nextpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nextpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nextpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nextrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nextrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nextrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nextrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nextslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nextslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nextslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nextslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nexttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nexttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nexttrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nexttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nl/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nl/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nl/bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nl/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nl/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nl/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nl/underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nl/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nl/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nl/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/nl/underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/nl/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/normalmultipanegui.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/normalmultipanegui.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/normalmultipanegui.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/normalmultipanegui.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/normalviewmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/normalviewmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/normalviewmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/normalviewmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/notesmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/notesmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/notesmasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/notesmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/notesmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/notesmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/notesmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/notesmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdecdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdecimal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatincdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatpercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatpercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatpercent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatpercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatscientific.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatscientific.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatscientific.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatscientific.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatstandard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatstandard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatstandard.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatstandard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberformatthousands.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numberingstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numericfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numericfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/numericfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/numericfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/objectalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/objectalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/objectalignleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/objectalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/objectalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/objectalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/objectalignright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/objectalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/objectcatalog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/objectcatalog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/objectcatalog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/objectcatalog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/objectposition.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/objectposition.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/objectposition.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/objectposition.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/objecttitledescription.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/objecttitledescription.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/objecttitledescription.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/objecttitledescription.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ok.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ok.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ok.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ok.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/openreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/openreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/openreadonly.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/openreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/openremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/openremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/openremote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/openremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/open.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/open.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/open.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/open.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/opentemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/optimizetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/optimizetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/optimizetable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/optimizetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/optionstreedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/optionstreedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/optionstreedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/optionstreedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/orientation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/orientation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/orientation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/orientation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlinecollapseall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlinecollapseall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlinecollapseall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlinecollapseall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlinecollapse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlinecollapse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlinecollapse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlinecollapse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlineexpandall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlineexpandall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlineexpandall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlineexpandall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlineexpand.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlineexpand.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlineexpand.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlineexpand.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlinefont.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlineformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlineformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlineformat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlineformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlinemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlinemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outlinemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outlinemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outputqualityblackwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outputqualityblackwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outputqualityblackwhite.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outputqualityblackwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outputqualitygrayscale.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outputqualitygrayscale.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/outputqualitygrayscale.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/outputqualitygrayscale.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/overline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagebreakmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagebreakmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagebreakmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagebreakmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagecolumntype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagecolumntype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagecolumntype.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagecolumntype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagemargin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagemargin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagemargin.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagemargin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pagesetup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pagesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/paragraphdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/paragraphdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/paragraphdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/paragraphdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/paralefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/paralefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/paralefttoright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/paralefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pararighttoleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pararighttoleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pararighttoleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pararighttoleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/paraspacedecrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/paraspacedecrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/paraspacedecrease.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/paraspacedecrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/paraspaceincrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/paraspaceincrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/paraspaceincrease.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/paraspaceincrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pasteaslink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pasteaslink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pasteaslink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pasteaslink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlyformula.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlyformula.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlyformula.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlyformula.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlytext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlytext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlytext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlytext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -a \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlyvalue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlyvalue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlyvalue.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pasteonlyvalue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pastespecial.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pastespecial.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pastespecial.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pastespecial.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/paste.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/paste.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/paste.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/paste.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pastetransposed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pastetransposed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pastetransposed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pastetransposed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pasteunformatted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pasteunformatted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pasteunformatted.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pasteunformatted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/patternfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/patternfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/patternfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/patternfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/photoalbumdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/photoalbumdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/photoalbumdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/photoalbumdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pickthrough.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,58 @@ - \ No newline at end of file + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pie_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pl/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pl/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pl/underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pl/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pl/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pl/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pl/underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pl/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/polygon_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/polygon_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/polygon_diagonal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/polygon_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/polygon_diagonal_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/polygon_diagonal_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/polygon_diagonal_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/polygon_diagonal_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/polygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/polygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/polygon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/polygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/polygon_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/polygon_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/polygon_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/polygon_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/preformattedparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/preformattedparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/preformattedparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/preformattedparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/presentationcurrentslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/presentationcurrentslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/presentationcurrentslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/presentationcurrentslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/presentationdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/presentationdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/presentationdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/presentationdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/presentationlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/presentationlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/presentationlayout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/presentationlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/presentationminimizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/presentationminimizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/presentationminimizer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/presentationminimizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/presentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/presentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/presentation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/presentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previewprintoptions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previewprintoptions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previewprintoptions.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previewprintoptions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previousannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previousannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previousannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previousannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previouspage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previouspage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previouspage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previouspage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previousrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previousrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previousrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previousrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previousslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previousslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previousslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previousslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previoustrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previoustrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/previoustrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/previoustrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/prevrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/prevrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/prevrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/prevrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/printdefault.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/printdefault.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/printdefault.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/printdefault.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/printersetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/printersetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/printersetup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/printersetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/printlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/printlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/printlayout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/printlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/printpreview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/printpreview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/printpreview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/printpreview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/print.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/print.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/print.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/print.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/progressbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/progressbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/progressbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/progressbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/protectbookmarks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/protectbookmarks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/protectbookmarks.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/protectbookmarks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/protectfields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/protectfields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/protectfields.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/protectfields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/protect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/protect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/protect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/protect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/protecttracechangemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/protecttracechangemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/protecttracechangemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/protecttracechangemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pushbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pushbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/pushbutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/pushbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/quickedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/quit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/quit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/quit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/quit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/quotecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/quotecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/quotecharstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/quotecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/quoteparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/quoteparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/quoteparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/quoteparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/radiobutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/radiobutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/radiobutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/radiobutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/recalcpivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/recalcpivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/recalcpivottable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/recalcpivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/recentfilelist.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/recentfilelist.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/recentfilelist.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/recentfilelist.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/recsave.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/recsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/recsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/recsearch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/recsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rect_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rect_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rect_rounded.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rect_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rect_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rect_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rect_rounded_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rect_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rect_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rect_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rect_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rect_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/redactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/redactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/redactdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/redactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/redactedexportblack.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/redactedexportblack.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/redactedexportblack.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/redactedexportblack.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/redactedexportwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/redactedexportwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/redactedexportwhite.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/redactedexportwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/redo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/redo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/redo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/redo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/refreshformcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/refreshformcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/refreshformcontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/refreshformcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,5 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rejectalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rejectalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rejectalltrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rejectalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rejecttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rejecttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rejecttrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rejecttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rejecttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rejecttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rejecttrackedchangetonext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rejecttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/reload.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/reload.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/reload.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/reload.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/removebullets.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/removefiltersort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/removefiltersort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/removefiltersort.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/removefiltersort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/removehyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/removehyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/removehyperlink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/removehyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/remove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/remove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/remove.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/remove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/removetableof.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/removetableof.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/removetableof.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/removetableof.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/renamemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/renamemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/renamemasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/renamemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/renameobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/renameobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/renameobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/renameobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/renamepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/renamepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/renamepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/renamepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/renameslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/renameslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/renameslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/renameslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/repeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/repeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/repeat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/repeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/replycomment.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/replycomment.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/replycomment.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/replycomment.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/reportnavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/reportnavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/reportnavigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/reportnavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/resetattributes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/reverseorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/reverseorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/reverseorder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/reverseorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/romanliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/romanlowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rotateleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rotateleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rotateleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rotateleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rotateright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rotateright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/rotateright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/rotateright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ru/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ru/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ru/bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ru/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ru/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ru/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ru/underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ru/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ru/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ru/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ru/underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ru/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ruler.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/runbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/runbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/runbasic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/runbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/runmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/runmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/runmacro.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/runmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/saveacopy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/saveacopy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/saveacopy.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/saveacopy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/saveall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/saveall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/saveall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/saveall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/saveasremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/saveasremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/saveasremote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/saveasremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/saveas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/saveas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/saveas.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/saveas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/saveastemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/saveastemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/saveastemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/saveastemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/savebackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/savebackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/savebackground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/savebackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/savebasicas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/savebasicas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/savebasicas.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/savebasicas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/save.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/save.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/save.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/save.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sbaexecutesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sbaexecutesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sbaexecutesql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sbaexecutesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sbanativesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sbanativesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sbanativesql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sbanativesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/scaletext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/scan.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/scan.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/scan.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/scan.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/scriptorganizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/scriptorganizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/scriptorganizer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/scriptorganizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/scrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/scrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/scrollbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/scrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1 @@ - - - - - - - /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/searchdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/searchdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/searchdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/searchdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrinkbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrinkbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrinkbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrinkbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrinktop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrinktop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrinktop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sectionshrinktop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectbackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectbackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectbackground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectbackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectdata.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectdb.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectdb.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectdb.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectdb.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selecttables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selecttables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selecttables.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selecttables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selecttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selecttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selecttable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selecttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectunprotectedcells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectunprotectedcells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/selectunprotectedcells.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/selectunprotectedcells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sendfax.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sendfax.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sendfax.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sendfax.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sendmail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sendmail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sendmail.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sendmail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sendtoback.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sendtoback.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sendtoback.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sendtoback.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setborderstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setborderstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setborderstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setborderstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setdocumentproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setdocumentproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setdocumentproperties.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setdocumentproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setminimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setminimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setminimalcolumnwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setminimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setminimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setminimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setminimalrowheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setminimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setobjecttobackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setobjecttobackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setobjecttobackground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setobjecttobackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setobjecttoforeground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setobjecttoforeground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setobjecttoforeground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setobjecttoforeground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setoptimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setoptimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setoptimalcolumnwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setoptimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setoptimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setoptimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setoptimalrowheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setoptimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setoutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setreminder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setreminder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/setreminder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/setreminder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shadowcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shadowcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shadowcursor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shadowcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shadowed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sharedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sharedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sharedocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sharedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shear.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shell3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shell3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shell3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shell3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showannotations.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showannotations.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showannotations.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showannotations.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showbookview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showbookview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showbookview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showbookview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showcolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showdatanavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showdatanavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showdatanavigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showdatanavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showdependents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showdetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showdetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showdetail.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showdetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showerrors.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showerrors.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showerrors.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showerrors.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showfmexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showfmexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showfmexplorer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showfmexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showinvalid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showinvalid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showinvalid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showinvalid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showmultiplepages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showmultiplepages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showmultiplepages.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showmultiplepages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shownote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shownote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shownote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shownote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showprecedents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showsinglepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showsinglepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showsinglepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showsinglepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/show.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/show.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/show.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/show.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showtoolbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showtoolbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showtoolbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showtoolbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showtrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showtrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showtrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showtrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showtwopages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showtwopages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showtwopages.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showtwopages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showwhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showwhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/showwhitespace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/showwhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/shrink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/shrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sidebar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sidebar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sidebar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sidebar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/signaturelinedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/signaturelinedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/signaturelinedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/signaturelinedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/signature.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/signature.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/signature.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/signature.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/signpdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/signpdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/signpdf.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/signpdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sl/bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sl/bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sl/bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sl/bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sl/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sl/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sl/italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sl/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/slidechangewindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/slidechangewindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/slidechangewindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/slidechangewindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/slidemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/slidemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/slidemasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/slidemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/slidesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/slidesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/slidesetup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/slidesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/smallcaps.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/smallcaps.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/smallcaps.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/smallcaps.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/smallestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/smallestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/smallestheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/smallestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/smallestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/smallestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/smallestwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/smallestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/snapborder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/snapborder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/snapborder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/snapborder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/snapframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/snapframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/snapframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/snapframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/snappoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/snappoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/snappoints.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/snappoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/solidcreate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/solidcreate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/solidcreate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/solidcreate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/solverdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/solverdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/solverdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/solverdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sortascending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sortdescending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sourcecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sourcecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/sourcecharstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/sourcecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spacepara15.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spacepara15.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spacepara15.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spacepara15.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spacepara1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spacepara1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spacepara1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spacepara1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spacepara2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spacepara2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spacepara2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spacepara2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spacing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spacing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spacing.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spacing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spelling.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spellonline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spinbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spinbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/spinbutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/spinbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/splitcell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/splitcell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/splitcell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/splitcell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/splittable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/splittable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/splittable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/splittable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/splitwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/splitwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/splitwindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/splitwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/square_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/square_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/square_rounded.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/square_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/square_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/square_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/square_rounded_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/square_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/square.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/square.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/square.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/square.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/square_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/square_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/square_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/square_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.bang.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.bang.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.bang.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.bang.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.concave-star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.concave-star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.concave-star6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.concave-star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.doorplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.doorplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.doorplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.doorplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.horizontal-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.horizontal-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.horizontal-scroll.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.horizontal-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.signet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.signet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.signet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.signet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star12.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star12.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star12.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star12.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star5.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.star8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.vertical-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.vertical-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.vertical-scroll.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/starshapes.vertical-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/statisticsmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/statisticsmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/statisticsmenu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/statisticsmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/statusbarvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/statusbarvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/statusbarvisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/statusbarvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/strikeout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/strongemphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/strongemphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/strongemphasischarstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/strongemphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/styleapply.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/styleapply.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/styleapply.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/styleapply.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/stylenewbyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/styleupdatebyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/subscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/subscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/subscript.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/subscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/substract.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/substract.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/substract.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/substract.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/subtitleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/subtitleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/subtitleparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/subtitleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/superscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/superscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/superscript.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/superscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/switchcontroldesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/switchcontroldesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/switchcontroldesignmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/switchcontroldesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/switchxformsdesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/switchxformsdesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/switchxformsdesignmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/switchxformsdesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.brace-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.brace-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.brace-pair.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.brace-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.bracket-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.bracket-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.bracket-pair.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.bracket-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.cloud.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.cloud.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.cloud.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.cloud.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.diamond-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.diamond-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.diamond-bevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.diamond-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.flower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.flower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.flower.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.flower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.forbidden.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.forbidden.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.forbidden.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.forbidden.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.heart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.heart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.heart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.heart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.left-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.left-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.left-brace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.left-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.left-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.left-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.left-bracket.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.left-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.lightning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.lightning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.lightning.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.lightning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.moon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.moon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.moon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.moon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.octagon-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.octagon-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.octagon-bevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.octagon-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.puzzle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.puzzle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.puzzle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.puzzle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.quad-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.quad-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.quad-bevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.quad-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.right-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.right-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.right-brace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.right-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.right-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.right-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.right-bracket.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.right-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.sun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.sun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.sun.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.sun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/symbolshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tabdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tabdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tabdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tabdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tabledeselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tabledeselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tabledeselectall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tabledeselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tabledesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tabledesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tabledesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tabledesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tabledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tabledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tabledialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tabledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tablemodefixprop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tablemodefixprop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tablemodefixprop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tablemodefixprop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tablemodefix.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tablemodefix.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tablemodefix.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tablemodefix.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tablemodevariable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tablemodevariable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tablemodevariable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tablemodevariable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tablenumberformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tablenumberformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tablenumberformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tablenumberformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tableselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tableselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tableselectall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tableselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/templatemanager.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/testmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/testmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/testmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/testmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/textbodyparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/textbodyparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/textbodyparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/textbodyparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/textdirectionlefttoright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/textdirectiontoptobottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/text_marquee.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/text.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/texttocolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/texttocolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/texttocolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/texttocolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/thesaurus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/thesaurus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/thesaurus.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/thesaurus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/timefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/timefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/timefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/timefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/titlepagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/titlepagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/titlepagedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/titlepagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/titleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/titleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/titleparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/titleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggleanchortype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggleanchortype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggleanchortype.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggleanchortype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggleaxistitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggleaxistitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggleaxistitle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggleaxistitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglebreakpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglebreakpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglebreakpoint.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglebreakpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglegridhorizontal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglegridhorizontal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglegridhorizontal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglegridhorizontal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglegridvertical.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglegridvertical.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglegridvertical.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglegridvertical.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglelegend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglelegend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglelegend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglelegend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglemergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglemergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglemergecells.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglemergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggleobjectbeziermode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggleobjectbeziermode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggleobjectbeziermode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggleobjectbeziermode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggleobjectrotatemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggleobjectrotatemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggleobjectrotatemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggleobjectrotatemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglesheetgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglesheetgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/togglesheetgrid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/togglesheetgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggletabbarvisibility.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggletabbarvisibility.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggletabbarvisibility.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggletabbarvisibility.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggletitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggletitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toggletitle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toggletitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toolbarmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toolbarmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toolbarmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toolbarmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toolprotectiondocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toolprotectiondocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/toolprotectiondocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/toolprotectiondocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tr/italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tr/italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/tr/italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/tr/italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/trackchangesbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/trackchangesbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/trackchangesbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/trackchangesbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/trackchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/trackchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/trackchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/trackchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/transformdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/transformdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/transformdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/transformdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/undo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/undo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/undo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/undo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/ungroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/ungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/unhainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/unhainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/unhainframes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/unhainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/unsetcellsreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/unsetcellsreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/unsetcellsreadonly.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/unsetcellsreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/updatecurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/updatecurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/updatecurindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/updatecurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/upsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/upsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/upsearch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/upsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/urlbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/urlbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/urlbutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/urlbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/validation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/validation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/validation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/validation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/versiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/versiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/versiondialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/versiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/verticalcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/verticalcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/verticalcaption.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/verticalcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/verticaltextfittosizetool.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/verticaltextfittosizetool.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/verticaltextfittosizetool.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/verticaltextfittosizetool.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/verticaltext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/vfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/vfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/vfixedline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/vfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/viewdatasourcebrowser.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/viewdatasourcebrowser.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/viewdatasourcebrowser.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/viewdatasourcebrowser.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/viewformasgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/viewformasgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/viewformasgrid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/viewformasgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/viewrowcolumnheaders.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/viewrowcolumnheaders.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/viewrowcolumnheaders.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/viewrowcolumnheaders.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/viewvaluehighlighting.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/viewvaluehighlighting.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/viewvaluehighlighting.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/viewvaluehighlighting.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/vruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/vruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/vruler.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/vruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/watermark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/watermark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/watermark.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/watermark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/window3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/window3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/window3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/window3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wordcountdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapcontour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapcontour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapcontour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapcontour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapideal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapideal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapideal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapideal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapoff.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapoff.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapoff.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapoff.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wraptext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wraptext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wraptext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wraptext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/wrapthrough.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/wrapthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/xlinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/xlinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/xlinecolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/xlinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoom100percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoom100percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoom100percent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoom100percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoom200percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoom200percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoom200percent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoom200percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomin.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoommode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoommode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoommode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoommode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomnext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomnext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomnext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomnext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomoptimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomoptimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomoptimal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomoptimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoompage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoompage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoompage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoompage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoompagewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoompagewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoompagewidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoompagewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoompanning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoompanning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoompanning.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoompanning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomprevious.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomprevious.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoomprevious.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoomprevious.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/32/zoom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/32/zoom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_absoluterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_alphaliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_alphalowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_bulletsandnumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_chapternumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_continuenumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_defaultbullet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_defaultnumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_deleterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_insertneutralparagraph.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_linenumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_newrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_numberingstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_recsave.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_romanliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_romanlowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/lc_setoutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/lc_setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_absoluterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_alphaliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_alphalowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_bulletsandnumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_chapternumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_continuenumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_defaultbullet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_defaultnumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_deleterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_insertneutralparagraph.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_linenumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_newrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_numberingstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_recsave.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_romanliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_romanlowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ar/sc_setoutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ar/sc_setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_autocorrectdlg.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_backcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_backcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_backcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_backcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_doubleclicktextedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_edit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_hyphenate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_insertfixedtext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_label.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_pickthrough.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_quickedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_sortascending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_sortdescending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_spelling.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_spellonline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_strikeout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/lc_wordcountdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/lc_wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_autocorrectdlg.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_doubleclicktextedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_edit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_hyphenate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_insertfixedtext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1 @@ - - - -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_label.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_pickthrough.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_quickedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_sortascending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_sortdescending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_spelling.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_spellonline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_strikeout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/bg/sc_wordcountdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/bg/sc_wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -9,4 +9,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatdecdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatdecimal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatincdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatthousands.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/lc_numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatdecdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatdecimal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatincdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatthousands.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/de/sc_numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/lc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/lc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/lc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/sc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/sc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/es/sc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/es/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/fr/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/fr/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/fr/lc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/fr/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/fr/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/fr/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/fr/sc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/fr/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/hu/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/hu/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/hu/lc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/hu/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/hu/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/hu/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/hu/lc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/hu/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/hu/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/hu/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/hu/lc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/hu/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/hu/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/hu/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/hu/sc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/hu/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/hu/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/hu/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/hu/sc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/hu/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/it/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/it/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/it/lc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/it/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/it/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/it/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/it/sc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/it/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/lc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/lc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/lc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/lc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/sc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/sc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/sc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/km/sc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/km/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_charfontname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_color.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_designerdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_editstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_fontdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_outlinefont.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_overline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_resetattributes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_scaletext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_shadowed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_sortascending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_sortdescending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_strikeout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_stylenewbyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_styleupdatebyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_textdirectionlefttoright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_textdirectiontoptobottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_text_marquee.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_text.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/lc_verticaltext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/lc_verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_charfontname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_color.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_designerdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_editstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_fontdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,3 @@ - -/&amp;gt; \ No newline at end of file + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_outlinefont.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_overline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_resetattributes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_scaletext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_shadowed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_sortascending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_sortdescending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_strikeout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_stylenewbyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_styleupdatebyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_textdirectionlefttoright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_textdirectiontoptobottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_text_marquee.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_text.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ko/sc_verticaltext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ko/sc_verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_absoluterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accent1cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accent1cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accent1cellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accent1cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accent2cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accent2cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accent2cellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accent2cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accent3cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accent3cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accent3cellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accent3cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_acceptalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_acceptalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_acceptalltrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_acceptalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchangetonext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_accepttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_actionmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_actionmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_actionmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_actionmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_adddirect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_adddirect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_adddirect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_adddirect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_additionsdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_additionsdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_additionsdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_additionsdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addressbooksource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addressbooksource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addressbooksource.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addressbooksource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addtable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addwatch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addwatch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_addwatch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_addwatch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_advancedmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_advancedmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_advancedmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_advancedmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignblock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignblock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignblock.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignblock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_aligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_aligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_aligncenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_aligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_aligndown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_aligndown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_aligndown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_aligndown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignhorizontalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignhorizontalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignhorizontalcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignhorizontalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignmiddle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignmiddle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignmiddle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignmiddle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_aligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_aligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_aligntop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_aligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignverticalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignverticalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alignverticalcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alignverticalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alphaliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_alphalowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_animationeffects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_animationeffects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_animationeffects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_animationeffects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_animationmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_animationmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_animationmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_animationmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_animationobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_animationobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_animationobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_animationobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.chevron.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.chevron.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.chevron.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.chevron.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.circular-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.circular-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.circular-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.circular-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.corner-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.corner-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.corner-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.corner-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.down-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.down-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-right-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.left-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.notched-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.notched-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.notched-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.notched-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.pentagon-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.pentagon-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.pentagon-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.pentagon-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.quad-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.quad-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.quad-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.quad-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.quad-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.quad-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.quad-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.quad-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.right-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.split-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.split-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.split-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.split-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.split-round-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.split-round-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.split-round-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.split-round-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.s-sharped-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.s-sharped-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.s-sharped-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.s-sharped-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.striped-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.striped-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.striped-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.striped-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-down-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-down-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-down-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_arrowshapes.up-right-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_assignlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_assignlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_assignlayout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_assignlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_assignmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_assignmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_assignmacro.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_assignmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_attributepagesize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_attributepagesize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_attributepagesize.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_attributepagesize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_auditingfillmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_auditingfillmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_auditingfillmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_auditingfillmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_auditmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_auditmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_auditmenu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_auditmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autocontrolfocus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autocontrolfocus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autocontrolfocus.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autocontrolfocus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autocorrectdlg.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autoformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autoformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autoformat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autoformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autooutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autooutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autooutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autooutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autopilotmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autopilotmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autopilotmenu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autopilotmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autoredactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autoredactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autoredactdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autoredactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autosum.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autosum.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_autosum.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_autosum.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_avmediaplayer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_avmediaplayer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_avmediaplayer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_avmediaplayer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_backcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_backcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_backcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_backcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_backgroundcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_backgroundcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_backgroundcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_backgroundcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_backward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_backward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_backward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_backward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_badcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_badcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_badcellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_badcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicideappear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicideappear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicideappear.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicideappear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.block-arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.block-arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.block-arc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.block-arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.can.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.can.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.can.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.can.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.cross.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.cross.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.cross.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.cross.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.cube.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.diamond.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.diamond.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.diamond.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.diamond.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.frame.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.frame.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.frame.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.frame.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.hexagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.hexagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.hexagon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.hexagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.isosceles-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.isosceles-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.isosceles-triangle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.isosceles-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.octagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.octagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.octagon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.octagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.paper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.paper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.paper.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.paper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.pentagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.pentagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.pentagon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.pentagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.right-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.right-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.right-triangle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.right-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.ring.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.ring.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.ring.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.ring.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.round-quadrat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.round-quadrat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.round-quadrat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.round-quadrat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.trapezoid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.trapezoid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.trapezoid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicshapes.trapezoid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepinto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepinto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepinto.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepinto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicstepover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicstop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicstop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_basicstop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_basicstop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beforeobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beforeobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beforeobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beforeobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_behindobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_behindobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_behindobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_behindobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierappend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierappend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierappend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierappend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierclose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierclose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierclose.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierclose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierconvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierconvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierconvert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierconvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beziercutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beziercutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beziercutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beziercutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierdelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezieredge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezieredge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezieredge.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezieredge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beziereliminatepoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beziereliminatepoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beziereliminatepoints.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beziereliminatepoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierfill.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierfill.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierfill.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierfill.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierinsert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierinsert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezierinsert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezierinsert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beziermove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beziermove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beziermove.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beziermove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beziersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beziersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beziersmooth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beziersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beziersymmetric.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beziersymmetric.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_beziersymmetric.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_beziersymmetric.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezier_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezier_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bezier_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bezier_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bibliographycomponent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bibliographycomponent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bibliographycomponent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bibliographycomponent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bmpmask.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bmpmask.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bmpmask.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bmpmask.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_borderdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_borderdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_borderdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_borderdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_break.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_break.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_break.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_break.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bringtofront.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bringtofront.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bringtofront.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bringtofront.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_browseview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_browseview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_browseview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_browseview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bulletsandnumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_bullet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_bullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calculate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calculate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calculate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calculate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.cloud-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.cloud-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.cloud-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.cloud-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-3.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.line-callout-3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.rectangular-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.rectangular-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.rectangular-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.rectangular-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.round-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.round-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.round-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.round-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_calloutshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_capturepoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_capturepoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_capturepoint.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_capturepoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cellprotection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cellprotection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cellprotection.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cellprotection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_chainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_chainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_chainframes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_chainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changebezier.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changebezier.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changebezier.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changebezier.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changecasetolower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changecasetolower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changecasetolower.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changecasetolower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changecasetoupper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changecasetoupper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changecasetoupper.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changecasetoupper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changedatabasefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changedatabasefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changedatabasefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changedatabasefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changepicture.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changepicture.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changepicture.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changepicture.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_changepolygon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_changepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_chapternumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_charfontname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_charmapcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_charmapcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_charmapcontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_charmapcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_checkbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_checkbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_checkbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_checkbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_choosecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_choosecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_choosecontrols.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_choosecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,4 @@ - -/&amp;amp;gt; \ No newline at end of file + + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_choosedesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_choosedesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_choosedesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_choosedesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_choosemacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_choosemacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_choosemacro.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_choosemacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_choosepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_choosepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_choosepolygon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_choosepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circlearc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circlearc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circlearc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circlearc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circlecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circlecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circlecut.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circlecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circlecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circlecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circlecut_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circlecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circlepie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circlepie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circlepie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circlepie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circlepie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circlepie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circlepie_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circlepie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circle_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circle_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_circle_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_circle_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrowdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrowdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrowdependents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrowdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrowprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrowprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrowprecedents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrowprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cleararrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_closedocs.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_closedocs.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_closedocs.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_closedocs.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_closedoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_closedoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_closedoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_closedoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_closemasterview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_closemasterview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_closemasterview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_closemasterview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_colorscaleformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_colorscaleformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_colorscaleformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_colorscaleformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_color.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_combine.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_combine.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_combine.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_combine.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_combobox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_combobox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_combobox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_combobox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_commentchangetracking.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_commentchangetracking.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_commentchangetracking.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_commentchangetracking.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_comparedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_comparedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_comparedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_comparedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_compilebasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_compilebasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_compilebasic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_compilebasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_compressgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_compressgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_compressgraphic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_compressgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_conddateformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_conddateformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_conddateformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_conddateformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_conditionalformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_conditionalformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_conditionalformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_conditionalformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_configuredialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_configuredialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_configuredialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_configuredialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcircles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcircles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcircles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcircles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecircles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecircles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecircles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecircles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurvecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorcurve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinecircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinecirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinesarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinescircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinescircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinescircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinescircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinescirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinescirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinescirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlinescirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlines.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlines.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlines.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorlines.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connectorline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connectorline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connector.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_connect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_connect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_continuenumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_contourdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_contourdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_contourdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_contourdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_controlcodes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_controlcodes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_controlcodes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_controlcodes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_controlproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_controlproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_controlproperties.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_controlproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,4 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_convertinto3dlathe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_convertinto3dlathe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_convertinto3dlathe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_convertinto3dlathe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_convertinto3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_convertinto3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_convertinto3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_convertinto3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_copyobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_copyobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_copyobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_copyobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_copy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_copy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_copy.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_copy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_crookrotate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_crookrotate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_crookrotate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_crookrotate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_crookslant.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_crookslant.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_crookslant.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_crookslant.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_crop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_crop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_crop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_crop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cube.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_currencyfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_currencyfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_currencyfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_currencyfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_customshowdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_customshowdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_customshowdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_customshowdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cut.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cylinder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cylinder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_cylinder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_cylinder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataarearefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataarearefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataarearefresh.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataarearefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_databarformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_databarformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_databarformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_databarformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataconsolidate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataconsolidate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataconsolidate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataconsolidate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datadatapilotrun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datadatapilotrun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datadatapilotrun.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datadatapilotrun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterautofilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterautofilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterautofilter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterautofilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterspecialfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterspecialfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterspecialfilter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterspecialfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterstandardfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterstandardfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterstandardfilter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datafilterstandardfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataform.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataimport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataimport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataimport.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataimport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataincolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataincolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataincolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataincolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datainrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datainrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datainrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datainrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataproviderrefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataproviderrefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataproviderrefresh.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataproviderrefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataprovider.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataprovider.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataprovider.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataprovider.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataranges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataranges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dataranges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dataranges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datasort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datasort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datasort.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datasort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datastreams.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datastreams.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datastreams.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datastreams.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datasubtotals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datasubtotals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datasubtotals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datasubtotals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_datefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_datefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbaddrelation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbaddrelation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbaddrelation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbaddrelation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbchangedesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbchangedesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbchangedesignmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbchangedesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbclearquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbclearquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbclearquery.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbclearquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbdistinctvalues.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbdistinctvalues.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbdistinctvalues.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbdistinctvalues.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbformdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbformdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbformdelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbformdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbformedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbformedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbformedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbformedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbformopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbformopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbformopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbformopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbformrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbformrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbformrename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbformrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbindexdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbindexdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbindexdesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbindexdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewform.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewquerysql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewquerysql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewquerysql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewquerysql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewquery.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewreport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewreport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewreport.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewreport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewtable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewviewsql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewviewsql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewviewsql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewviewsql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbnewview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbquerydelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbquerydelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbquerydelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbquerydelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbquerypropertiesdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbquerypropertiesdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbquerypropertiesdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbquerypropertiesdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryrename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbqueryrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbrelationdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbrelationdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbrelationdesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbrelationdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportdelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportrename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbreportrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbsortingandgrouping.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbsortingandgrouping.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbsortingandgrouping.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbsortingandgrouping.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbtabledelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbtabledelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbtabledelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbtabledelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbtableedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbtableedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbtableedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbtableedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbtableopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbtableopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbtableopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbtableopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbtablerename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbtablerename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbtablerename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbtablerename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewaliases.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewaliases.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewaliases.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewaliases.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewforms.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewforms.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewforms.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewforms.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewfunctions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewfunctions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewfunctions.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewfunctions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewqueries.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewqueries.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewqueries.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewqueries.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewreports.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewreports.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewreports.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewreports.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewtablenames.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewtablenames.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewtablenames.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewtablenames.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewtables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewtables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewtables.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dbviewtables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_decrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_decrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_decrementindent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_decrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_decrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_decrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_decrementlevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_decrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_decrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_decrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_decrementsublevels.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_decrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_defaultbullet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_defaultcharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_defaultcharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_defaultcharstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_defaultcharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_defaultnumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_definedbname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_definedbname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_definedbname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_definedbname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_definename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_definename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_definename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_definename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_defineprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_defineprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_defineprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_defineprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleteallannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleteallannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleteallannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleteallannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleteallbreaks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleteallbreaks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleteallbreaks.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleteallbreaks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleteannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleteannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleteannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleteannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletecell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletecolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletemasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletepivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletepivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletepivottable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletepivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleteprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleteprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleteprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleteprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleterows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleterows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleterows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleterows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleteslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleteslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deleteslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deleteslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_deletetable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_deletetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_designerdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_developmenttoolsdockingwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_developmenttoolsdockingwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_developmenttoolsdockingwindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_developmenttoolsdockingwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diaeffect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diaeffect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diaeffect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diaeffect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxis.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxis.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxis.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxis.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisx.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisx.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisx.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisx.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisy.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisz.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramaxisz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramdata.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramtype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramtype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramtype.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramtype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramwall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramwall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diagramwall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diagramwall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diamode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diamode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diamode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diamode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diaspeed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diaspeed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diaspeed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diaspeed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dia.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diatime.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diatime.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_diatime.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_diatime.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dismantle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dismantle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dismantle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dismantle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_displaymasterbackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_displaymasterbackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_displaymasterbackground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_displaymasterbackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_displaymasterobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_displaymasterobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_displaymasterobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_displaymasterobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_displaymode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_displaymode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_displaymode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_displaymode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributecolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzdistance.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributehorzright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributerows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributerows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributerows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributerows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributeselection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributeselection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributeselection.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributeselection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertdistance.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributevertdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributeverttop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributeverttop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_distributeverttop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_distributeverttop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_documentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_documentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_documentation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_documentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_doubleclicktextedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_downsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_downsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_downsearch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_downsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_drawcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_drawcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_drawcaption.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_drawcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dsbinsertcontent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dsbinsertcontent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dsbinsertcontent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dsbinsertcontent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dsbrowserexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dsbrowserexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_dsbrowserexplorer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_dsbrowserexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_duplicatepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_duplicatepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_duplicatepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_duplicatepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_duplicatesheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_duplicatesheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_duplicatesheet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_duplicatesheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_duplicateslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_duplicateslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_duplicateslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_duplicateslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editcurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editcurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editcurindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editcurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editframeset.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editframeset.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editframeset.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editframeset.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editglossary.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editglossary.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editglossary.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editglossary.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editheaderandfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editheaderandfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editheaderandfooter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editheaderandfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_edithyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_edithyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_edithyperlink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_edithyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editqrcode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_editstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_edit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ellipsecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ellipsecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ellipsecut.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ellipsecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ellipsecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ellipsecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ellipsecut_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ellipsecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ellipse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ellipse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ellipse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ellipse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ellipse_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ellipse_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ellipse_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ellipse_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_emphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_emphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_emphasischarstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_emphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_entergroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_entergroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_entergroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_entergroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_entirecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_entirecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_entirecell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_entirecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_entirecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_entirecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_entirecolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_entirecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_entirerow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_entirerow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_entirerow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_entirerow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_equalizeheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_equalizeheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_equalizeheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_equalizeheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_equalizewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_equalizewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_equalizewidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_equalizewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_errorcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_errorcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_errorcellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_errorcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_executereport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_executereport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_executereport.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_executereport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_expandpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_expandpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_expandpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_expandpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_exportdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_exportdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_exportdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_exportdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_exportdirecttoepub.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_exportdirecttoepub.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_exportdirecttoepub.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_exportdirecttoepub.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_exportdirecttopdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_exportdirecttopdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_exportdirecttopdf.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_exportdirecttopdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_exportto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_exportto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_exportto.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_exportto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extendedhelp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extendedhelp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extendedhelp.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extendedhelp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusion3dcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusion3dcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusion3dcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusion3dcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiondepthfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiondepthfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiondepthfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiondepthfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiondirectionfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiondirectionfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiondirectionfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiondirectionfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusionlightingfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusionlightingfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusionlightingfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusionlightingfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusionsurfacefloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusionsurfacefloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusionsurfacefloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusionsurfacefloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltdown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_extrusiontiltup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fields.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,3 @@ - -/&amp;amp;gt; \ No newline at end of file + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_filecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_filecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_filecontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_filecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_filedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_filedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_filedocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_filedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_filefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_filefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_filefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_filefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_filldown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_filldown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_filldown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_filldown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fillleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fillleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fillleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fillleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fillright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fillright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fillright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fillright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fillshadow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fillshadow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fillshadow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fillshadow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fillup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fillup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fillup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fillup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_firstpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_firstpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_firstpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_firstpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_firstrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_firstrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_firstrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_firstrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_firstslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_firstslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_firstslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_firstslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-card.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-card.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-card.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-card.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-collate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-collate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-collate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-collate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-data.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-decision.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-decision.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-decision.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-decision.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-delay.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-delay.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-delay.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-delay.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-direct-access-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-direct-access-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-direct-access-storage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-direct-access-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-display.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-display.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-display.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-display.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-document.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-document.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-document.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-document.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-internal-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-internal-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-internal-storage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-internal-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-manual-input.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-manual-input.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-manual-input.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-manual-input.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-multidocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-multidocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-multidocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-multidocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-off-page-connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-off-page-connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-off-page-connector.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-off-page-connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-or.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-or.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-or.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-or.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-predefined-process.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-predefined-process.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-predefined-process.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-predefined-process.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-preparation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-preparation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-preparation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-preparation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-punched-tape.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-punched-tape.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-punched-tape.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-punched-tape.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-sequential-access.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-sequential-access.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-sequential-access.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-sequential-access.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-sort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-sort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-sort.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-sort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-stored-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-stored-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-stored-data.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-stored-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-summing-junction.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-summing-junction.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-summing-junction.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-summing-junction.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-terminator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-terminator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-terminator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.flowchart-terminator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_flowchartshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkgalleryfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkgalleryfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkgalleryfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkgalleryfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworksameletterheights.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworksameletterheights.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworksameletterheights.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworksameletterheights.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-chevron-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-chevron-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-chevron-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-chevron-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-chevron-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-chevron-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-chevron-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-chevron-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-circle-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-curve-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-curve-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-curve-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-curve-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-curve-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-curve-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-curve-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-curve-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-fade-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-inflate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-inflate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-inflate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-inflate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-plain-text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-plain-text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-plain-text.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-plain-text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-slant-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-slant-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-slant-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-slant-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-slant-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-slant-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-slant-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-slant-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-stop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-stop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-stop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-stop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-triangle-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-triangle-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-triangle-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-triangle-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-wave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-wave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-wave.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontworkshapetype.fontwork-wave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontwork.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontwork.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fontwork.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fontwork.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_footnotedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_footnotedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_footnotedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_footnotedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatcelldialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatcelldialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatcelldialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatcelldialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatcolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatgroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatpaintbrush.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatpaintbrush.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatpaintbrush.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatpaintbrush.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formattedfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formattedfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formattedfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formattedfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formatungroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formatungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formdesigntools.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formdesigntools.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formdesigntools.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formdesigntools.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formelcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formelcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formelcursor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formelcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formfiltered.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formfiltered.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formfiltered.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formfiltered.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formfilternavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formfilternavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formfilternavigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formfilternavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_formproperties.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_formproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_forward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_forward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_forward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_forward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_framedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_framedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_framedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_framedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_framelinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_framelinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_framelinecolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_framelinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_freeline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_freeline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_freeline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_freeline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_freeline_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_freeline_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_freeline_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_freeline_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanesfirstcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanesfirstcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanesfirstcolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanesfirstcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanesfirstrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanesfirstrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanesfirstrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanesfirstrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_freezepanes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fullscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fullscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_fullscreen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_fullscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gallery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gallery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gallery.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gallery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueeditmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueeditmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueeditmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueeditmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectionright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectiontop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectiontop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectiontop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueescapedirectiontop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzaligncenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzalignleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzalignright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluehorzalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueinsertpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueinsertpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_glueinsertpoint.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_glueinsertpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluepercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluepercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluepercent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluepercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertalignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertalignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertalignbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertalignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertaligncenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertaligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertaligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertaligntop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gluevertaligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_goalseekdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_goalseekdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_goalseekdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_goalseekdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_goodcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_goodcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_goodcellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_goodcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gotoendofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gotoendofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gotoendofdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gotoendofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gotoend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gotoend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gotoend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gotoend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gotopage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gotopage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gotopage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gotopage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gotostartofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gotostartofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gotostartofdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gotostartofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gotostartoftable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gotostartoftable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gotostartoftable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gotostartoftable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafblue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafblue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafblue.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafblue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafcontrast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafcontrast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafcontrast.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafcontrast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafgamma.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafgamma.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafgamma.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafgamma.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafgreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafgreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafgreen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafgreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafluminance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafluminance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafluminance.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafluminance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafred.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafred.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grafred.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grafred.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graftransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graftransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graftransparence.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graftransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterinvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterinvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterinvert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterinvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltermosaic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltermosaic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltermosaic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltermosaic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterpopart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterpopart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterpopart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterpopart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterposter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterposter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterposter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterposter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterrelief.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterrelief.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterrelief.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterrelief.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterremovenoise.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterremovenoise.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterremovenoise.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfilterremovenoise.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersepia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersepia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersepia.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersepia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersharpen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersharpen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersharpen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersharpen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersmooth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersobel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersobel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersobel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersobel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersolarize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersolarize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersolarize.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphicfiltersolarize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_graphic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_graphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_greatestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_greatestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_greatestheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_greatestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_greatestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_greatestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_greatestwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_greatestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_griduse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_griduse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_griduse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_griduse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gridvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gridvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_gridvisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_gridvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_groupbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_groupbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_groupbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_groupbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_group.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_group.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_group.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_group.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_grow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_grow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_halfsphere.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_halfsphere.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_halfsphere.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_halfsphere.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_handoutmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_handoutmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_handoutmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_handoutmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hangingindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hangingindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hangingindent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hangingindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading1parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading1parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading1parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading1parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading2parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading2parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading2parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading2parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading3parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading3parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading3parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading3parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading4parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading4parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading4parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading4parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading5parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading5parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading5parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading5parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading6parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading6parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_heading6parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_heading6parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_helpindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_helpindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_helpindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_helpindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesmove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesmove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesmove.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesmove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesuse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesuse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesuse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesuse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesvisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_helplinesvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hfixedline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hideallnotes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hideallnotes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hideallnotes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hideallnotes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hidecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hidecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hidecolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hidecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hidedetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hidedetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hidedetail.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hidedetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hidenote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hidenote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hidenote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hidenote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hiderow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hiderow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hiderow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hiderow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hideslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hideslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hideslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hideslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hidewhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hidewhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hidewhitespace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hidewhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hscrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hscrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hscrollbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hscrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1 @@ - - - - - - - /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_hyphenate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_iconsetformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_iconsetformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_iconsetformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_iconsetformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_imagebutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_imagebutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_imagebutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_imagebutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_imagecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_imagecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_imagecontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_imagecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_imagemapdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_imagemapdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_imagemapdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_imagemapdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_importdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_importdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_importdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_importdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_importfromfile.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_importfromfile.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_importfromfile.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_importfromfile.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_incrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_incrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_incrementindent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_incrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_incrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_incrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_incrementlevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_incrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_incrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_incrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_incrementsublevels.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_incrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inputlinevisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inputlinevisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inputlinevisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inputlinevisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inscellsctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inscellsctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inscellsctrl.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inscellsctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertauthoritiesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertauthoritiesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertauthoritiesentry.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertauthoritiesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertbookmark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertbookmark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertbookmark.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertbookmark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertbreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcaptiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcaptiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcaptiondialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcaptiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcellsdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcellsdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcellsdown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcellsdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcellsright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcellsright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcellsright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcellsright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnbreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnsafter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnsbefore.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumnsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertdatefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertdatefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertdatefieldvar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertdatefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertdraw.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertdraw.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertdraw.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertdraw.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertendnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertendnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertendnote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertendnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertenvelope.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertenvelope.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertenvelope.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertenvelope.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertexternaldatasource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertexternaldatasource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertexternaldatasource.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertexternaldatasource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertfieldctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertfieldctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertfieldctrl.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertfieldctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertfixedtext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertfooter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertfootnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertfootnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertfootnote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertfootnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertgraphic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertheader.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertheader.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertheader.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertheader.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserthyperlinkcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserthyperlinkcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserthyperlinkcontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserthyperlinkcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserthyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserthyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserthyperlink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserthyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertindexesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertindexesentry.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertindexesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertlinebreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertlinebreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertlinebreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertlinebreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertmasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertmath.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertmath.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertmath.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertmath.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertmenutitles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertmenutitles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertmenutitles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertmenutitles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertmultiindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertmultiindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertmultiindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertmultiindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertneutralparagraph.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertobjectfloatingframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertobjectfloatingframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertobjectfloatingframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertobjectfloatingframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagebreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagebreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagebreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagebreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagecountfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagenumberfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertpagenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertplugin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertplugin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertplugin.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertplugin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertqrcode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertreferencefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertreferencefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertreferencefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowbreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowsafter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowsbefore.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertrowsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertsection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertsection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertsection.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertsection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidecountfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidenumberfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidetitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidetitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidetitlefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertslidetitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertsound.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertsound.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertsound.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertsound.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertspreadsheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertspreadsheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertspreadsheet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertspreadsheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertsymbol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertsymbol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertsymbol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertsymbol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserttable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserttimefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserttimefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserttimefieldvar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserttimefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserttitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserttitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserttitlefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserttitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserttopicfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserttopicfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserttopicfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserttopicfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserttreecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserttreecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inserttreecontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inserttreecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertvideo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertvideo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_insertvideo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_insertvideo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inspectordeck.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inspectordeck.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_inspectordeck.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_inspectordeck.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_interactivegradient.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_interactivegradient.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_interactivegradient.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_interactivegradient.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_interactivetransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_interactivetransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_interactivetransparence.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_interactivetransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_intersect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_intersect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_intersect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_intersect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_jumptonexttablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_jumptonexttablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_jumptonexttablesel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_jumptonexttablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_jumptoprevtablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_jumptoprevtablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_jumptoprevtablesel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_jumptoprevtablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_label.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_lastpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_lastpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_lastpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_lastpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_lastrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_lastrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_lastrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_lastrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_lastslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_lastslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_lastslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_lastslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_leaveallgroups.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_leaveallgroups.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_leaveallgroups.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_leaveallgroups.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_leavegroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_leavegroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_leavegroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_leavegroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_legend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_legend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_legend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_legend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-clearscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-clearscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-clearscreen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-clearscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-gobackward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-gobackward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-gobackward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-gobackward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-goforward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-goforward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-goforward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-goforward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-home.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-home.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-home.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-home.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_librelogo-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowcircle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowcircle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowcircle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowcircle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowsquare.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowsquare.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowsquare.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowsquare.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linearrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linecirclearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linecirclearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linecirclearrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linecirclearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_line_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_line_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_line_diagonal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_line_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_lineendstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_lineendstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_lineendstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_lineendstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linenumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linesquarearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linesquarearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linesquarearrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linesquarearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linestyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linestyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linestyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linestyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_line.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_line.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_line.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_line.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_linewidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_linewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_listbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_listbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_listbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_listbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_loadbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_loadbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_loadbasic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_loadbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_lock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_lock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_lock.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_lock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_macrorecorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_macrorecorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_macrorecorder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_macrorecorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergecreatedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergecreatedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergecreatedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergecreatedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeemaildocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeemaildocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeemaildocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeemaildocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeexcludeentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeexcludeentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeexcludeentry.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeexcludeentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeprintdocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeprintdocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeprintdocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergeprintdocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergesavedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergesavedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergesavedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergesavedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergewizard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergewizard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergewizard.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mailmergewizard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_managebreakpoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_managebreakpoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_managebreakpoints.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_managebreakpoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_managelanguage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_managelanguage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_managelanguage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_managelanguage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_managexmlsource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_managexmlsource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_managexmlsource.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_managexmlsource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_marks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_marks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_marks.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_marks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_masterlayouts.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_masterlayouts.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_masterlayouts.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_masterlayouts.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_masterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_masterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_masterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_masterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_matchgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_matchgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_matchgroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_matchgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_measureline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_measureline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_measureline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_measureline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mediamute.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mediamute.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mediamute.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mediamute.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mediapause.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mediapause.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mediapause.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mediapause.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mediarepeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mediarepeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mediarepeat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mediarepeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_menubar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_menubar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_menubar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_menubar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mergecells.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mergedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mergedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mergedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mergedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mergedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mergedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mergedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mergedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_merge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_merge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_merge.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_merge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mergetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mergetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mergetable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mergetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mirror.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mirror.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mirror.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mirror.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mirrorvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mirrorvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_mirrorvert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_mirrorvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_modifyframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_modifyframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_modifyframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_modifyframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_modifypage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_modifypage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_modifypage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_modifypage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moduledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moduledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moduledialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moduledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_morecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_morecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_morecontrols.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_morecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,4 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_morphing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_morphing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_morphing.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_morphing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movedownsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movedownsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movedownsubitems.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movedownsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movedown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movepagedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movepagedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movepagedown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movepagedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movepagefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movepagefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movepagefirst.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movepagefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movepagelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movepagelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movepagelast.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movepagelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movepageup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movepageup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_movepageup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_movepageup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidedown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidefirst.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidelast.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveslidelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveslideup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveslideup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveslideup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveslideup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_move.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_move.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_move.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_move.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveupsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveupsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveupsubitems.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveupsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_moveup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_moveup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_name.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_name.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_name.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_name.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_navigationbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_navigationbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_navigationbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_navigationbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_navigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_navigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_navigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_navigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_neutralcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_neutralcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_neutralcellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_neutralcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_newarrangement.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_newarrangement.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_newarrangement.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_newarrangement.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_newdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_newdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_newdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_newdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_newhtmldoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_newhtmldoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_newhtmldoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_newhtmldoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_newrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_newwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_newwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_newwindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_newwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_nextannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_nextannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_nextannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_nextannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_nextpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_nextpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_nextpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_nextpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_nextrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_nextrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_nextrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_nextrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_nextslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_nextslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_nextslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_nextslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_nexttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_nexttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_nexttrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_nexttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_normalmultipanegui.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_normalmultipanegui.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_normalmultipanegui.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_normalmultipanegui.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_normalviewmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_normalviewmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_normalviewmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_normalviewmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_notesmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_notesmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_notesmasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_notesmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_notesmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_notesmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_notesmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_notesmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdecdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdecimal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatincdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatpercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatpercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatpercent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatpercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -% \ No newline at end of file +% \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatscientific.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatscientific.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatscientific.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatscientific.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatstandard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatstandard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatstandard.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatstandard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatthousands.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numberingstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numericfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numericfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_numericfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_numericfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_objectalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_objectalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_objectalignleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_objectalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_objectalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_objectalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_objectalignright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_objectalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_objectcatalog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_objectcatalog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_objectcatalog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_objectcatalog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_objectposition.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_objectposition.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_objectposition.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_objectposition.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_objecttitledescription.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_objecttitledescription.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_objecttitledescription.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_objecttitledescription.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ok.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ok.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ok.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ok.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_openreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_openreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_openreadonly.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_openreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_openremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_openremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_openremote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_openremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_open.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_open.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_open.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_open.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_opentemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_optimizetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_optimizetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_optimizetable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_optimizetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_optionstreedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_optionstreedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_optionstreedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_optionstreedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_orientation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_orientation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_orientation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_orientation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlinecollapseall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlinecollapseall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlinecollapseall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlinecollapseall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlinecollapse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlinecollapse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlinecollapse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlinecollapse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlineexpandall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlineexpandall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlineexpandall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlineexpandall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlineexpand.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlineexpand.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlineexpand.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlineexpand.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlinefont.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlineformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlineformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlineformat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlineformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlinemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlinemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outlinemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outlinemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outputqualityblackwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outputqualityblackwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outputqualityblackwhite.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outputqualityblackwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outputqualitygrayscale.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outputqualitygrayscale.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_outputqualitygrayscale.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_outputqualitygrayscale.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_overline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagebreakmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagebreakmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagebreakmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagebreakmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagecolumntype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagecolumntype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagecolumntype.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagecolumntype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagemargin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagemargin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagemargin.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagemargin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pagesetup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pagesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_paragraphdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_paragraphdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_paragraphdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_paragraphdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_paralefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_paralefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_paralefttoright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_paralefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pararighttoleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pararighttoleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pararighttoleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pararighttoleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_paraspacedecrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_paraspacedecrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_paraspacedecrease.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_paraspacedecrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_paraspaceincrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_paraspaceincrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_paraspaceincrease.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_paraspaceincrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pasteaslink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pasteaslink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pasteaslink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pasteaslink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlyformula.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlyformula.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlyformula.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlyformula.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlytext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlytext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlytext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlytext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlyvalue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlyvalue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlyvalue.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pasteonlyvalue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pastespecial.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pastespecial.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pastespecial.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pastespecial.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_paste.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_paste.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_paste.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_paste.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pastetransposed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pastetransposed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pastetransposed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pastetransposed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pasteunformatted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pasteunformatted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pasteunformatted.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pasteunformatted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_patternfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_patternfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_patternfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_patternfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_photoalbumdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_photoalbumdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_photoalbumdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_photoalbumdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pickthrough.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pie_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_diagonal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_diagonal_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_diagonal_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_diagonal_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_diagonal_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_polygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_polygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_polygon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_polygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_polygon_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_preformattedparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_preformattedparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_preformattedparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_preformattedparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_presentationcurrentslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_presentationcurrentslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_presentationcurrentslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_presentationcurrentslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_presentationdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_presentationdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_presentationdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_presentationdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_presentationlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_presentationlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_presentationlayout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_presentationlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_presentationminimizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_presentationminimizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_presentationminimizer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_presentationminimizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_presentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_presentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_presentation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_presentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previewprintoptions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previewprintoptions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previewprintoptions.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previewprintoptions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previousannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previousannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previousannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previousannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previouspage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previouspage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previouspage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previouspage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previousrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previousrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previousrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previousrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previousslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previousslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previousslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previousslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previoustrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previoustrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_previoustrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_previoustrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_prevrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_prevrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_prevrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_prevrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_printdefault.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_printdefault.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_printdefault.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_printdefault.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_printersetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_printersetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_printersetup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_printersetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_printlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_printlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_printlayout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_printlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_printpreview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_printpreview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_printpreview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_printpreview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_print.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_print.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_print.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_print.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_progressbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_progressbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_progressbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_progressbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_protectbookmarks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_protectbookmarks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_protectbookmarks.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_protectbookmarks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_protectfields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_protectfields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_protectfields.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_protectfields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_protect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_protect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_protect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_protect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_protecttracechangemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_protecttracechangemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_protecttracechangemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_protecttracechangemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pushbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pushbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_pushbutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_pushbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_quickedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_quit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_quit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_quit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_quit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_quotecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_quotecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_quotecharstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_quotecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_quoteparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_quoteparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_quoteparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_quoteparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_radiobutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_radiobutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_radiobutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_radiobutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_recalcpivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_recalcpivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_recalcpivottable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_recalcpivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_recentfilelist.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_recentfilelist.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_recentfilelist.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_recentfilelist.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_recsave.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_recsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_recsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_recsearch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_recsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rect_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rect_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rect_rounded.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rect_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rect_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rect_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rect_rounded_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rect_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rect_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rect_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rect_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rect_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_redactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_redactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_redactdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_redactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_redactedexportblack.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_redactedexportblack.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_redactedexportblack.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_redactedexportblack.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_redactedexportwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_redactedexportwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_redactedexportwhite.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_redactedexportwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_redo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_redo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_redo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_redo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_refreshformcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_refreshformcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_refreshformcontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_refreshformcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,5 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rejectalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rejectalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rejectalltrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rejectalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rejecttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rejecttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rejecttrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rejecttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rejecttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rejecttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rejecttrackedchangetonext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rejecttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_reload.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_reload.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_reload.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_reload.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_removebullets.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_removefiltersort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_removefiltersort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_removefiltersort.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_removefiltersort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_removehyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_removehyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_removehyperlink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_removehyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_remove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_remove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_remove.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_remove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_removetableof.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_removetableof.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_removetableof.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_removetableof.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_renamemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_renamemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_renamemasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_renamemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_renameobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_renameobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_renameobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_renameobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_renamepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_renamepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_renamepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_renamepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_renameslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_renameslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_renameslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_renameslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_repeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_repeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_repeat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_repeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_replycomment.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_replycomment.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_replycomment.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_replycomment.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_reportnavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_reportnavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_reportnavigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_reportnavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_resetattributes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_reverseorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_reverseorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_reverseorder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_reverseorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_romanliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_romanlowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rotateleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rotateleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rotateleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rotateleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rotateright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rotateright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_rotateright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_rotateright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ruler.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_runbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_runbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_runbasic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_runbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_runmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_runmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_runmacro.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_runmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_saveacopy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_saveacopy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_saveacopy.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_saveacopy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_saveall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_saveall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_saveall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_saveall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_saveasremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_saveasremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_saveasremote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_saveasremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_saveas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_saveas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_saveas.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_saveas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_saveastemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_saveastemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_saveastemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_saveastemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_savebackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_savebackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_savebackground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_savebackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_savebasicas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_savebasicas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_savebasicas.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_savebasicas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_save.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_save.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_save.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_save.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sbaexecutesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sbaexecutesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sbaexecutesql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sbaexecutesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sbanativesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sbanativesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sbanativesql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sbanativesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_scaletext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -A \ No newline at end of file +A \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_scan.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_scan.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_scan.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_scan.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_scriptorganizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_scriptorganizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_scriptorganizer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_scriptorganizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_scrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_scrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_scrollbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_scrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1 @@ - - - - - - - /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_searchdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_searchdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_searchdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_searchdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrinkbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrinkbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrinkbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrinkbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrinktop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrinktop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrinktop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sectionshrinktop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectbackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectbackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectbackground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectbackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectdata.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectdb.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectdb.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectdb.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectdb.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selecttables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selecttables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selecttables.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selecttables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selecttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selecttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selecttable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selecttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectunprotectedcells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectunprotectedcells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_selectunprotectedcells.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_selectunprotectedcells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sendfax.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sendfax.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sendfax.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sendfax.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sendmail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sendmail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sendmail.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sendmail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sendtoback.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sendtoback.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sendtoback.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sendtoback.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setborderstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setborderstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setborderstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setborderstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setdocumentproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setdocumentproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setdocumentproperties.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setdocumentproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setminimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setminimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setminimalcolumnwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setminimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setminimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setminimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setminimalrowheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setminimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setobjecttobackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setobjecttobackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setobjecttobackground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setobjecttobackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setobjecttoforeground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setobjecttoforeground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setobjecttoforeground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setobjecttoforeground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setoptimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setoptimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setoptimalcolumnwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setoptimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setoptimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setoptimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setoptimalrowheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setoptimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setoutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setreminder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setreminder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_setreminder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_setreminder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shadowcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shadowcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shadowcursor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shadowcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shadowed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sharedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sharedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sharedocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sharedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shear.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shell3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shell3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shell3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shell3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showannotations.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showannotations.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showannotations.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showannotations.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showbookview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showbookview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showbookview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showbookview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showcolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showdatanavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showdatanavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showdatanavigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showdatanavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showdependents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showdetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showdetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showdetail.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showdetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showerrors.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showerrors.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showerrors.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showerrors.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showfmexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showfmexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showfmexplorer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showfmexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showinvalid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showinvalid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showinvalid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showinvalid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showmultiplepages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showmultiplepages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showmultiplepages.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showmultiplepages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shownote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shownote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shownote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shownote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showprecedents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showsinglepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showsinglepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showsinglepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showsinglepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_show.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_show.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_show.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_show.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showtoolbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showtoolbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showtoolbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showtoolbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showtrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showtrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showtrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showtrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showtwopages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showtwopages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showtwopages.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showtwopages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showwhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showwhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_showwhitespace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_showwhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_shrink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_shrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sidebar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sidebar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sidebar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sidebar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_signaturelinedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_signaturelinedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_signaturelinedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_signaturelinedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_signature.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_signature.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_signature.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_signature.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_signpdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_signpdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_signpdf.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_signpdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_slidechangewindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_slidechangewindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_slidechangewindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_slidechangewindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_slidemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_slidemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_slidemasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_slidemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_slidesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_slidesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_slidesetup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_slidesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_smallcaps.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_smallcaps.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_smallcaps.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_smallcaps.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_smallestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_smallestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_smallestheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_smallestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_smallestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_smallestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_smallestwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_smallestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_snapborder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_snapborder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_snapborder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_snapborder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_snapframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_snapframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_snapframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_snapframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_snappoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_snappoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_snappoints.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_snappoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_solidcreate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_solidcreate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_solidcreate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_solidcreate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_solverdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_solverdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_solverdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_solverdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sortascending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sortdescending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sourcecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sourcecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_sourcecharstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_sourcecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara15.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara15.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara15.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara15.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spacepara2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spacing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spacing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spacing.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spacing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spelling.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spellonline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spinbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spinbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_spinbutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_spinbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_splitcell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_splitcell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_splitcell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_splitcell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_splittable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_splittable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_splittable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_splittable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_splitwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_splitwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_splitwindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_splitwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_square_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_square_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_square_rounded.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_square_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_square_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_square_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_square_rounded_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_square_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_square.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_square.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_square.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_square.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_square_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_square_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_square_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_square_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.bang.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.bang.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.bang.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.bang.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.concave-star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.concave-star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.concave-star6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.concave-star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.doorplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.doorplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.doorplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.doorplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.horizontal-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.horizontal-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.horizontal-scroll.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.horizontal-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.signet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.signet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.signet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.signet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star12.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star12.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star12.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star12.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star5.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.star8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.vertical-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.vertical-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.vertical-scroll.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_starshapes.vertical-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_statisticsmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_statisticsmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_statisticsmenu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_statisticsmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_statusbarvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_statusbarvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_statusbarvisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_statusbarvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_strikeout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_strongemphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_strongemphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_strongemphasischarstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_strongemphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_styleapply.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_styleapply.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_styleapply.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_styleapply.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_stylenewbyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_styleupdatebyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_subscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_subscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_subscript.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_subscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_substract.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_substract.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_substract.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_substract.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_subtitleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_subtitleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_subtitleparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_subtitleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_superscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_superscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_superscript.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_superscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_switchcontroldesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_switchcontroldesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_switchcontroldesignmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_switchcontroldesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_switchxformsdesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_switchxformsdesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_switchxformsdesignmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_switchxformsdesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.brace-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.brace-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.brace-pair.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.brace-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.bracket-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.bracket-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.bracket-pair.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.bracket-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.cloud.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.cloud.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.cloud.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.cloud.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.diamond-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.diamond-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.diamond-bevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.diamond-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.flower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.flower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.flower.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.flower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.forbidden.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.forbidden.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.forbidden.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.forbidden.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.heart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.heart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.heart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.heart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.left-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.left-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.left-brace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.left-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.left-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.left-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.left-bracket.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.left-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.lightning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.lightning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.lightning.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.lightning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.moon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.moon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.moon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.moon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.octagon-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.octagon-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.octagon-bevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.octagon-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.puzzle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.puzzle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.puzzle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.puzzle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.quad-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.quad-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.quad-bevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.quad-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.right-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.right-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.right-brace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.right-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.right-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.right-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.right-bracket.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.right-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.sun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.sun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.sun.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.sun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_symbolshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tabdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tabdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tabdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tabdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tabledeselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tabledeselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tabledeselectall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tabledeselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tabledesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tabledesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tabledesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tabledesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tabledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tabledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tabledialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tabledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodefixprop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodefixprop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodefixprop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodefixprop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodefix.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodefix.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodefix.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodefix.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodevariable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodevariable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodevariable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tablemodevariable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tablenumberformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tablenumberformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tablenumberformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tablenumberformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tableselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tableselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_tableselectall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_tableselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_templatemanager.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_testmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_testmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_testmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_testmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_textbodyparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_textbodyparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_textbodyparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_textbodyparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_textdirectionlefttoright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_textdirectiontoptobottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_text_marquee.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_text.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_texttocolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_texttocolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_texttocolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_texttocolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_thesaurus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_thesaurus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_thesaurus.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_thesaurus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_timefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_timefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_timefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_timefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_titlepagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_titlepagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_titlepagedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_titlepagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_titleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_titleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_titleparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_titleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggleanchortype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggleanchortype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggleanchortype.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggleanchortype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggleaxistitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggleaxistitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggleaxistitle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggleaxistitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglebreakpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglebreakpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglebreakpoint.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglebreakpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglegridhorizontal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglegridhorizontal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglegridhorizontal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglegridhorizontal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglegridvertical.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglegridvertical.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglegridvertical.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglegridvertical.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglelegend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglelegend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglelegend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglelegend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglemergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglemergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglemergecells.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglemergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggleobjectbeziermode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggleobjectbeziermode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggleobjectbeziermode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggleobjectbeziermode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggleobjectrotatemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggleobjectrotatemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggleobjectrotatemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggleobjectrotatemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglesheetgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglesheetgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_togglesheetgrid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_togglesheetgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggletabbarvisibility.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggletabbarvisibility.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggletabbarvisibility.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggletabbarvisibility.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggletitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggletitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toggletitle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toggletitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toolbarmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toolbarmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toolbarmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toolbarmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toolprotectiondocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toolprotectiondocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_toolprotectiondocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_toolprotectiondocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_trackchangesbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_trackchangesbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_trackchangesbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_trackchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_trackchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_trackchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_trackchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_transformdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_transformdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_transformdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_transformdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_undo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_undo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_undo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_undo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_ungroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_ungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_unhainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_unhainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_unhainframes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_unhainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_unsetcellsreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_unsetcellsreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_unsetcellsreadonly.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_unsetcellsreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_updatecurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_updatecurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_updatecurindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_updatecurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_upsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_upsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_upsearch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_upsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_urlbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_urlbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_urlbutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_urlbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_validation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_validation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_validation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_validation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_versiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_versiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_versiondialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_versiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_verticalcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_verticalcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_verticalcaption.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_verticalcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_verticaltextfittosizetool.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_verticaltextfittosizetool.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_verticaltextfittosizetool.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_verticaltextfittosizetool.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_verticaltext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_vfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_vfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_vfixedline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_vfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_viewdatasourcebrowser.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_viewdatasourcebrowser.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_viewdatasourcebrowser.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_viewdatasourcebrowser.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_viewformasgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_viewformasgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_viewformasgrid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_viewformasgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_viewrowcolumnheaders.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_viewrowcolumnheaders.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_viewrowcolumnheaders.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_viewrowcolumnheaders.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_viewvaluehighlighting.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_viewvaluehighlighting.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_viewvaluehighlighting.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_viewvaluehighlighting.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_vruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_vruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_vruler.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_vruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_watermark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_watermark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_watermark.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_watermark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_window3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_window3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_window3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_window3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wordcountdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapcontour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapcontour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapcontour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapcontour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapideal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapideal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapideal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapideal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapoff.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapoff.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapoff.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapoff.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wraptext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wraptext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wraptext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wraptext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_wrapthrough.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_wrapthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_xlinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_xlinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_xlinecolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_xlinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoom100percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoom100percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoom100percent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoom100percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoom200percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoom200percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoom200percent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoom200percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomin.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoommode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoommode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoommode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoommode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomnext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomnext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomnext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomnext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomoptimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomoptimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomoptimal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomoptimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoompage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoompage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoompage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoompage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoompagewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoompagewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoompagewidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoompagewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoompanning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoompanning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoompanning.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoompanning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomprevious.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomprevious.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoomprevious.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoomprevious.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/lc_zoom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/lc_zoom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/lc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/lc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/lc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/sc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/sc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/nl/sc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/nl/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/pl/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/pl/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/pl/lc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/pl/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/pl/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/pl/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/pl/lc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/pl/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/pl/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/pl/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/pl/sc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/pl/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/pl/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/pl/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/pl/sc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/pl/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/recsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/recsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/recsearch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/recsearch.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/lc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/lc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/lc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/lc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/lc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/lc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/lc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/lc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/lc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/sc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/sc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/ru/sc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/ru/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_about.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_about.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_about.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_about.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_absoluterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_absoluterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_absoluterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_absoluterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accent1cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accent1cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accent1cellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accent1cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accent2cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accent2cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accent2cellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accent2cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accent3cellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accent3cellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accent3cellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accent3cellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_acceptalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_acceptalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_acceptalltrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_acceptalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchangetonext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_accepttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_actionmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_actionmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_actionmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_actionmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_adddirect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_adddirect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_adddirect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_adddirect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_additionsdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_additionsdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_additionsdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_additionsdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addressbooksource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addressbooksource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addressbooksource.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addressbooksource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_add.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_add.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_add.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_add.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addtable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addwatch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addwatch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_addwatch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_addwatch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_advancedmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_advancedmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_advancedmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_advancedmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignblock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignblock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignblock.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignblock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_aligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_aligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_aligncenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_aligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_aligndown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_aligndown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_aligndown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_aligndown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignhorizontalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignhorizontalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignhorizontalcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignhorizontalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignmiddle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignmiddle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignmiddle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignmiddle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_aligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_aligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_aligntop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_aligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignverticalcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignverticalcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alignverticalcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alignverticalcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alphaliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alphaliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alphaliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alphaliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alphalowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alphalowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_alphalowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_alphalowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_animationeffects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_animationeffects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_animationeffects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_animationeffects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_animationmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_animationmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_animationmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_animationmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_animationobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_animationobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_animationobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_animationobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.chevron.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.chevron.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.chevron.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.chevron.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.circular-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.circular-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.circular-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.circular-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.corner-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.corner-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.corner-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.corner-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.down-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.down-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-right-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.left-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.notched-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.notched-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.notched-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.notched-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.pentagon-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.pentagon-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.pentagon-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.pentagon-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.quad-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.quad-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.quad-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.quad-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.quad-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.quad-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.quad-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.quad-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.right-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.split-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.split-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.split-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.split-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.split-round-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.split-round-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.split-round-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.split-round-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.s-sharped-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.s-sharped-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.s-sharped-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.s-sharped-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.striped-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.striped-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.striped-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.striped-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-down-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-down-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-down-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-down-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-down-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-arrow-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-arrow-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-arrow-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-arrow-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-down-arrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-down-arrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-down-arrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_arrowshapes.up-right-down-arrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_assignlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_assignlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_assignlayout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_assignlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_assignmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_assignmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_assignmacro.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_assignmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_attributepagesize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_attributepagesize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_attributepagesize.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_attributepagesize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_auditingfillmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_auditingfillmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_auditingfillmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_auditingfillmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_auditmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_auditmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_auditmenu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_auditmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autocontrolfocus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autocontrolfocus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autocontrolfocus.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autocontrolfocus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autocorrectdlg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autocorrectdlg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autocorrectdlg.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autocorrectdlg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autoformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autoformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autoformat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autoformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autooutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autooutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autooutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autooutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autopilotmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autopilotmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autopilotmenu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autopilotmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autoredactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autoredactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autoredactdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autoredactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autosum.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autosum.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_autosum.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_autosum.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_avmediaplayer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_avmediaplayer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_avmediaplayer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_avmediaplayer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_backcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_backcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_backcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_backcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_backgroundcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_backgroundcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_backgroundcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_backgroundcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_backward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_backward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_backward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_backward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_badcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_badcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_badcellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_badcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicideappear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicideappear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicideappear.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicideappear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.block-arc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.block-arc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.block-arc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.block-arc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.can.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.can.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.can.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.can.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.cross.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.cross.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.cross.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.cross.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.cube.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.diamond.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.diamond.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.diamond.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.diamond.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.frame.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.frame.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.frame.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.frame.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.hexagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.hexagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.hexagon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.hexagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.isosceles-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.isosceles-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.isosceles-triangle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.isosceles-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.octagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.octagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.octagon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.octagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.paper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.paper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.paper.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.paper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.pentagon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.pentagon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.pentagon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.pentagon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.right-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.right-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.right-triangle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.right-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.ring.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.ring.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.ring.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.ring.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.round-quadrat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.round-quadrat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.round-quadrat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.round-quadrat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.trapezoid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.trapezoid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.trapezoid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicshapes.trapezoid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepinto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepinto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepinto.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepinto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicstepover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicstop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicstop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_basicstop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_basicstop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,9 @@ - + - /&amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beforeobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beforeobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beforeobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beforeobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_behindobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_behindobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_behindobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_behindobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierappend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierappend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierappend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierappend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierclose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierclose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierclose.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierclose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierconvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierconvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierconvert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierconvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beziercutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beziercutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beziercutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beziercutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierdelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezieredge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezieredge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezieredge.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezieredge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beziereliminatepoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beziereliminatepoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beziereliminatepoints.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beziereliminatepoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierfill.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierfill.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierfill.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierfill.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierinsert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierinsert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezierinsert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezierinsert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beziermove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beziermove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beziermove.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beziermove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beziersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beziersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beziersmooth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beziersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beziersymmetric.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beziersymmetric.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_beziersymmetric.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_beziersymmetric.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezier_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezier_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bezier_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bezier_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bibliographycomponent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bibliographycomponent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bibliographycomponent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bibliographycomponent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bmpmask.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bmpmask.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bmpmask.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bmpmask.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,1000 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_borderdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_borderdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_borderdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_borderdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_break.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_break.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_break.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_break.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bringtofront.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bringtofront.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bringtofront.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bringtofront.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_browseview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_browseview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_browseview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_browseview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,78 @@ - + + + + + + + + + + + + /&amp;amp;gt; - \ No newline at end of file + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bulletsandnumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bulletsandnumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bulletsandnumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bulletsandnumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_bullet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_bullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calculate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calculate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calculate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calculate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.cloud-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.cloud-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.cloud-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.cloud-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-3.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.line-callout-3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.rectangular-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.rectangular-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.rectangular-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.rectangular-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,4 @@ - + -/&amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.round-callout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.round-callout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.round-callout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.round-callout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_calloutshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_capturepoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_capturepoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_capturepoint.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_capturepoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cellprotection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cellprotection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cellprotection.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cellprotection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_chainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_chainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_chainframes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_chainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changebezier.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changebezier.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changebezier.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changebezier.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changecasetolower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changecasetolower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changecasetolower.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changecasetolower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changecasetoupper.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changecasetoupper.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changecasetoupper.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changecasetoupper.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changedatabasefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changedatabasefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changedatabasefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changedatabasefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changepicture.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changepicture.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changepicture.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changepicture.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_changepolygon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_changepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_chapternumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_chapternumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_chapternumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_chapternumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_charfontname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_charfontname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_charfontname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_charfontname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_charmapcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_charmapcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_charmapcontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_charmapcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_checkbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_checkbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_checkbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_checkbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,7 @@ - + - /&gt; - \ No newline at end of file + + /&amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_choosecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_choosecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_choosecontrols.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_choosecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,4 @@ - -/&amp;gt; \ No newline at end of file + + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_choosedesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_choosedesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_choosedesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_choosedesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_choosemacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_choosemacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_choosemacro.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_choosemacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_choosepolygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_choosepolygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_choosepolygon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_choosepolygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,5 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circlearc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circlearc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circlearc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circlearc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circlecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circlecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circlecut.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circlecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circlecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circlecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circlecut_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circlecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circlepie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circlepie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circlepie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circlepie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circlepie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circlepie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circlepie_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circlepie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circle_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circle_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_circle_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_circle_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrowdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrowdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrowdependents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrowdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrowprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrowprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrowprecedents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrowprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cleararrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_closedoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_closedoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_closedoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_closedoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_closemasterview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_closemasterview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_closemasterview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_closemasterview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_colorscaleformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_colorscaleformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_colorscaleformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_colorscaleformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_color.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_combine.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_combine.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_combine.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_combine.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_combobox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_combobox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_combobox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_combobox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_commentchangetracking.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_commentchangetracking.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_commentchangetracking.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_commentchangetracking.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_comparedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_comparedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_comparedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_comparedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_compilebasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_compilebasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_compilebasic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_compilebasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_compressgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_compressgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_compressgraphic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_compressgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_conddateformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_conddateformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_conddateformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_conddateformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_conditionalformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_conditionalformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_conditionalformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_conditionalformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_configuredialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_configuredialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_configuredialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_configuredialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvecircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvecirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurvecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorcurve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinecircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinecircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinecircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinecircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinecirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinecirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinecirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinecirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinesarrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinescircleend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinescircleend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinescircleend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinescircleend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinescirclestart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinescirclestart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinescirclestart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlinescirclestart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlines.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlines.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlines.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorlines.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connectorline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connectorline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connector.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_connect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_connect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_continuenumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_continuenumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_continuenumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_continuenumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_contourdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_contourdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_contourdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_contourdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_controlcodes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_controlcodes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_controlcodes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_controlcodes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_controlproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_controlproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_controlproperties.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_controlproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,8 @@ - + - /&amp;gt; - \ No newline at end of file + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_convertinto3dlathe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_convertinto3dlathe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_convertinto3dlathe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_convertinto3dlathe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_convertinto3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_convertinto3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_convertinto3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_convertinto3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_copyobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_copyobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_copyobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_copyobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_copy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_copy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_copy.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_copy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_crookrotate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_crookrotate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_crookrotate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_crookrotate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_crookslant.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_crookslant.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_crookslant.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_crookslant.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_crop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_crop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_crop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_crop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cube.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cube.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cube.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cube.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_currencyfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_currencyfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_currencyfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_currencyfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_customshowdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_customshowdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_customshowdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_customshowdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cut.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cylinder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cylinder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_cylinder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_cylinder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataarearefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataarearefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataarearefresh.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataarearefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_databarformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_databarformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_databarformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_databarformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataconsolidate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataconsolidate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataconsolidate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataconsolidate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datadatapilotrun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datadatapilotrun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datadatapilotrun.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datadatapilotrun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterautofilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterautofilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterautofilter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterautofilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterspecialfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterspecialfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterspecialfilter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterspecialfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterstandardfilter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterstandardfilter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterstandardfilter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datafilterstandardfilter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataform.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataimport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataimport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataimport.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataimport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataincolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataincolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataincolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataincolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datainrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datainrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datainrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datainrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataproviderrefresh.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataproviderrefresh.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataproviderrefresh.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataproviderrefresh.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataprovider.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataprovider.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataprovider.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataprovider.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataranges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataranges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dataranges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dataranges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datasort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datasort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datasort.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datasort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datastreams.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datastreams.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datastreams.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datastreams.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datasubtotals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datasubtotals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datasubtotals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datasubtotals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_datefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_datefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,8 @@ - + - /&amp;gt; - \ No newline at end of file + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbaddrelation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbaddrelation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbaddrelation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbaddrelation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbchangedesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbchangedesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbchangedesignmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbchangedesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbclearquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbclearquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbclearquery.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbclearquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbdistinctvalues.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbdistinctvalues.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbdistinctvalues.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbdistinctvalues.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbformdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbformdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbformdelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbformdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbformedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbformedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbformedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbformedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbformopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbformopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbformopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbformopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbformrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbformrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbformrename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbformrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbindexdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbindexdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbindexdesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbindexdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewform.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewform.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewform.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewform.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewquerysql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewquerysql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewquerysql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewquerysql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -9,4 +9,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewquery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewquery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewquery.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewquery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewreport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewreport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewreport.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewreport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewtable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewtable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewtable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewtable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewviewsql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewviewsql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewviewsql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewviewsql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,5 +8,6 @@ - /&amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbnewview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbquerydelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbquerydelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbquerydelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbquerydelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbquerypropertiesdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbquerypropertiesdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbquerypropertiesdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbquerypropertiesdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,5 +6,5 @@ - /&amp;amp;amp;amp;gt; - \ No newline at end of file + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryrename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbqueryrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbrelationdesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbrelationdesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbrelationdesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbrelationdesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportdelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportdelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportdelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportdelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportrename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportrename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportrename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbreportrename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbsortingandgrouping.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbsortingandgrouping.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbsortingandgrouping.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbsortingandgrouping.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbtabledelete.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbtabledelete.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbtabledelete.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbtabledelete.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbtableedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbtableedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbtableedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbtableedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbtableopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbtableopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbtableopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbtableopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbtablerename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbtablerename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbtablerename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbtablerename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewaliases.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewaliases.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewaliases.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewaliases.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewforms.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewforms.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewforms.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewforms.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewfunctions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewfunctions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewfunctions.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewfunctions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewqueries.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewqueries.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewqueries.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewqueries.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewreports.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewreports.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewreports.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewreports.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewtablenames.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewtablenames.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewtablenames.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewtablenames.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewtables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewtables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewtables.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dbviewtables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_decrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_decrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_decrementindent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_decrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_decrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_decrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_decrementlevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_decrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_decrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_decrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_decrementsublevels.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_decrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_defaultbullet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_defaultbullet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_defaultbullet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_defaultbullet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_defaultcharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_defaultcharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_defaultcharstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_defaultcharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_defaultnumbering.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_defaultnumbering.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_defaultnumbering.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_defaultnumbering.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_definedbname.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_definedbname.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_definedbname.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_definedbname.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_definename.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_definename.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_definename.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_definename.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_defineprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_defineprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_defineprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_defineprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleteallannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleteallannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleteallannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleteallannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleteallbreaks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleteallbreaks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleteallbreaks.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleteallbreaks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleteannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleteannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleteannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleteannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletecell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletecolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletemasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletepivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletepivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletepivottable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletepivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleteprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleteprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleteprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleteprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleterecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleterecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleterecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleterecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleterows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleterows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleterows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleterows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleteslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleteslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deleteslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deleteslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_deletetable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_deletetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_designerdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_designerdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_designerdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_designerdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_developmenttoolsdockingwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_developmenttoolsdockingwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_developmenttoolsdockingwindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_developmenttoolsdockingwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diaeffect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diaeffect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diaeffect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diaeffect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxis.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxis.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxis.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxis.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisx.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisx.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisx.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisx.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisy.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisz.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramaxisz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramdata.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramtype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramtype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramtype.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramtype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramwall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramwall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diagramwall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diagramwall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diamode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diamode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diamode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diamode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diaspeed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diaspeed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diaspeed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diaspeed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + -/&amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dia.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diatime.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diatime.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_diatime.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_diatime.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dismantle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dismantle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dismantle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dismantle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_displaymasterobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_displaymasterobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_displaymasterobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_displaymasterobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_displaymode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_displaymode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_displaymode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_displaymode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributecolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributecolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributecolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributecolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzdistance.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributehorzright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributerows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributerows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributerows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributerows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributeselection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributeselection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributeselection.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributeselection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertcenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertcenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertcenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertcenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertdistance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertdistance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertdistance.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributevertdistance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributeverttop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributeverttop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_distributeverttop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_distributeverttop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_documentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_documentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_documentation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_documentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_doubleclicktextedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_doubleclicktextedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_doubleclicktextedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_doubleclicktextedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_downsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_downsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_downsearch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_downsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_drawcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_drawcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_drawcaption.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_drawcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dsbinsertcontent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dsbinsertcontent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dsbinsertcontent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dsbinsertcontent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dsbrowserexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dsbrowserexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_dsbrowserexplorer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_dsbrowserexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_duplicatepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_duplicatepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_duplicatepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_duplicatepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_duplicatesheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_duplicatesheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_duplicatesheet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_duplicatesheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_duplicateslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_duplicateslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_duplicateslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_duplicateslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editcurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editcurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editcurindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editcurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editframeset.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editframeset.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editframeset.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editframeset.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editglossary.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editglossary.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editglossary.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editglossary.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editheaderandfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editheaderandfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editheaderandfooter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editheaderandfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_edithyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_edithyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_edithyperlink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_edithyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,5 +6,6 @@ - /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editprintarea.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editprintarea.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editprintarea.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editprintarea.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editqrcode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_editstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_editstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_edit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_edit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_edit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_edit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ellipsecut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ellipsecut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ellipsecut.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ellipsecut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ellipsecut_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ellipsecut_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ellipsecut_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ellipsecut_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ellipse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ellipse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ellipse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ellipse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ellipse_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ellipse_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ellipse_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ellipse_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_emphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_emphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_emphasischarstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_emphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_entergroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_entergroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_entergroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_entergroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_entirecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_entirecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_entirecell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_entirecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_entirecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_entirecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_entirecolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_entirecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_entirerow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_entirerow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_entirerow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_entirerow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_equalizeheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_equalizeheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_equalizeheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_equalizeheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_equalizewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_equalizewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_equalizewidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_equalizewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_errorcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_errorcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_errorcellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_errorcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_executereport.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_executereport.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_executereport.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_executereport.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_expandpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_expandpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_expandpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_expandpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_exportdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_exportdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_exportdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_exportdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_exportdirecttoepub.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_exportdirecttoepub.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_exportdirecttoepub.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_exportdirecttoepub.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_exportdirecttopdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_exportdirecttopdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_exportdirecttopdf.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_exportdirecttopdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_exportto.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_exportto.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_exportto.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_exportto.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extendedhelp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extendedhelp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extendedhelp.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extendedhelp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,5 +7,6 @@ - /&amp;amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusion3dcolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusion3dcolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusion3dcolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusion3dcolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiondepthfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiondepthfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiondepthfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiondepthfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiondirectionfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiondirectionfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiondirectionfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiondirectionfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusionlightingfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusionlightingfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusionlightingfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusionlightingfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusionsurfacefloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusionsurfacefloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusionsurfacefloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusionsurfacefloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltdown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_extrusiontiltup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fields.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,3 @@ - -/&amp;gt; \ No newline at end of file + + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_filecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_filecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_filecontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_filecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -13,5 +13,6 @@ - /&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_filedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_filedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_filedocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_filedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_filefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_filefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_filefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_filefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_filldown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_filldown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_filldown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_filldown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fillleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fillleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fillleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fillleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fillright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fillright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fillright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fillright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fillshadow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fillshadow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fillshadow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fillshadow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fillup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fillup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fillup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fillup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_firstpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_firstpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_firstpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_firstpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_firstrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_firstrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_firstrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_firstrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_firstslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_firstslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_firstslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_firstslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,5 +7,6 @@ - /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-card.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-card.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-card.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-card.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-collate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-collate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-collate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-collate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-data.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-decision.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-decision.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-decision.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-decision.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-delay.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-delay.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-delay.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-delay.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-direct-access-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-direct-access-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-direct-access-storage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-direct-access-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-display.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-display.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-display.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-display.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-document.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-document.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-document.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-document.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-internal-storage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-internal-storage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-internal-storage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-internal-storage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-manual-input.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-manual-input.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-manual-input.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-manual-input.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-multidocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-multidocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-multidocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-multidocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-off-page-connector.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-off-page-connector.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-off-page-connector.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-off-page-connector.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-or.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-or.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-or.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-or.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-predefined-process.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-predefined-process.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-predefined-process.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-predefined-process.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-preparation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-preparation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-preparation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-preparation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-punched-tape.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-punched-tape.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-punched-tape.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-punched-tape.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-sequential-access.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-sequential-access.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-sequential-access.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-sequential-access.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-sort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-sort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-sort.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-sort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-stored-data.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-stored-data.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-stored-data.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-stored-data.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-summing-junction.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-summing-junction.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-summing-junction.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-summing-junction.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-terminator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-terminator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-terminator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.flowchart-terminator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_flowchartshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,5 @@ - + -/&amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkgalleryfloater.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkgalleryfloater.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkgalleryfloater.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkgalleryfloater.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworksameletterheights.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworksameletterheights.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworksameletterheights.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworksameletterheights.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,4 @@ - + -/&amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-down-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-left-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-right-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-arch-up-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-chevron-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-chevron-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-chevron-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-chevron-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-chevron-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-chevron-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-chevron-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-chevron-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-circle-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-curve-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-curve-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-curve-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-curve-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-curve-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-curve-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-curve-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-curve-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up-and-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-fade-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-inflate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-inflate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-inflate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-inflate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-curve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-open-circle-pour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-plain-text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-plain-text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-plain-text.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-plain-text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-slant-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-slant-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-slant-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-slant-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-slant-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-slant-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-slant-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-slant-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-stop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-stop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-stop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-stop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-triangle-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-triangle-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-triangle-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-triangle-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-wave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-wave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-wave.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontworkshapetype.fontwork-wave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontwork.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontwork.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fontwork.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fontwork.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_footnotedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_footnotedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_footnotedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_footnotedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatcelldialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatcelldialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatcelldialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatcelldialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatcolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatgroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatpaintbrush.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatpaintbrush.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatpaintbrush.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatpaintbrush.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formattedfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formattedfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formattedfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formattedfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formatungroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formatungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formdesigntools.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formdesigntools.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formdesigntools.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formdesigntools.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formelcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formelcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formelcursor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formelcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formfiltered.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formfiltered.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formfiltered.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formfiltered.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + - /&amp;amp;gt; - \ No newline at end of file + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formfilternavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formfilternavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formfilternavigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formfilternavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_formproperties.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_formproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + - /&amp;gt; - \ No newline at end of file + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_forward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_forward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_forward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_forward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_framedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_framedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_framedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_framedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_framelinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_framelinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_framelinecolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_framelinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_freeline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_freeline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_freeline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_freeline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_freeline_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_freeline_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_freeline_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_freeline_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanesfirstcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanesfirstcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanesfirstcolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanesfirstcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanesfirstrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanesfirstrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanesfirstrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanesfirstrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_freezepanes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fullscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fullscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_fullscreen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_fullscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gallery.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gallery.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gallery.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gallery.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueeditmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueeditmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueeditmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueeditmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectionright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectiontop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectiontop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectiontop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueescapedirectiontop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzaligncenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzalignleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzalignright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluehorzalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueinsertpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueinsertpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_glueinsertpoint.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_glueinsertpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluepercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluepercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluepercent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluepercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertalignbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertalignbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertalignbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertalignbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertaligncenter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertaligncenter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertaligncenter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertaligncenter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertaligntop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertaligntop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertaligntop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gluevertaligntop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_goalseekdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_goalseekdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_goalseekdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_goalseekdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_goodcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_goodcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_goodcellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_goodcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gotoendofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gotoendofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gotoendofdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gotoendofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gotoend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gotoend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gotoend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gotoend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gotopage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gotopage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gotopage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gotopage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gotostartofdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gotostartofdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gotostartofdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gotostartofdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gotostartoftable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gotostartoftable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gotostartoftable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gotostartoftable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafblue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafblue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafblue.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafblue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafcontrast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafcontrast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafcontrast.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafcontrast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafgamma.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafgamma.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafgamma.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafgamma.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafgreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafgreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafgreen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafgreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafluminance.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafluminance.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafluminance.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafluminance.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafred.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafred.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grafred.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grafred.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graftransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graftransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graftransparence.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graftransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterinvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterinvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterinvert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterinvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltermosaic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltermosaic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltermosaic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltermosaic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterpopart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterpopart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterpopart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterpopart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterposter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterposter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterposter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterposter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterrelief.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterrelief.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterrelief.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterrelief.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterremovenoise.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterremovenoise.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterremovenoise.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfilterremovenoise.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersepia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersepia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersepia.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersepia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersharpen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersharpen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersharpen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersharpen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersmooth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersmooth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersmooth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersmooth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersobel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersobel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersobel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersobel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersolarize.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersolarize.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersolarize.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphicfiltersolarize.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_graphic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_graphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_greatestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_greatestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_greatestheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_greatestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_greatestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_greatestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_greatestwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_greatestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_griduse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_griduse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_griduse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_griduse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,7 @@ - + - /&amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gridvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gridvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_gridvisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_gridvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,6 @@ - + - /&amp;gt; - \ No newline at end of file + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_groupbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_groupbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_groupbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_groupbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_groupoutlinemenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_groupoutlinemenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_groupoutlinemenu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_groupoutlinemenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_group.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_group.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_group.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_group.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_grow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_grow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_halfsphere.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_halfsphere.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_halfsphere.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_halfsphere.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_handoutmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_handoutmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_handoutmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_handoutmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hangingindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hangingindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hangingindent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hangingindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading1parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading1parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading1parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading1parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading2parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading2parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading2parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading2parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading3parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading3parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading3parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading3parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading4parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading4parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading4parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading4parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading5parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading5parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading5parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading5parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading6parastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading6parastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_heading6parastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_heading6parastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_helpindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_helpindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_helpindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_helpindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesmove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesmove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesmove.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesmove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesuse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesuse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesuse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesuse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;gt; \ No newline at end of file + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesvisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_helplinesvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;gt; \ No newline at end of file + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hfixedline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hideallnotes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hideallnotes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hideallnotes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hideallnotes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hidecolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hidecolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hidecolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hidecolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hidedetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hidedetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hidedetail.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hidedetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hidenote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hidenote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hidenote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hidenote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hiderow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hiderow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hiderow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hiderow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hideslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hideslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hideslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hideslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hidewhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hidewhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hidewhitespace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hidewhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hscrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hscrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hscrollbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hscrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1 @@ - - - - - - /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hyphenate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hyphenate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_hyphenate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_hyphenate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_iconsetformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_iconsetformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_iconsetformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_iconsetformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_imagebutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_imagebutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_imagebutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_imagebutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_imagecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_imagecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_imagecontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_imagecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_imagemapdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_imagemapdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_imagemapdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_imagemapdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_importdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_importdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_importdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_importdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_importfromfile.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_importfromfile.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_importfromfile.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_importfromfile.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_incrementindent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_incrementindent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_incrementindent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_incrementindent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_incrementlevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_incrementlevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_incrementlevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_incrementlevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_incrementsublevels.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_incrementsublevels.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_incrementsublevels.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_incrementsublevels.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inputlinevisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inputlinevisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inputlinevisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inputlinevisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inscellsctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inscellsctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inscellsctrl.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inscellsctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertauthoritiesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertauthoritiesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertauthoritiesentry.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertauthoritiesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertbookmark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertbookmark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertbookmark.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertbookmark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertbreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcaptiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcaptiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcaptiondialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcaptiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcellsdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcellsdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcellsdown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcellsdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcellsright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcellsright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcellsright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcellsright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnbreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnsafter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnsbefore.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumnsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertcolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertdatefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertdatefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertdatefieldvar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertdatefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertdraw.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertdraw.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertdraw.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertdraw.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + /&amp;gt; diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertendnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertendnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertendnote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertendnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertenvelope.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertenvelope.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertenvelope.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertenvelope.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertexternaldatasource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertexternaldatasource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertexternaldatasource.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertexternaldatasource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertfieldctrl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertfieldctrl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertfieldctrl.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertfieldctrl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertfixedtext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertfixedtext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertfixedtext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertfixedtext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertfooter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertfooter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertfooter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertfooter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertfootnote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertfootnote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertfootnote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertfootnote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertgraphic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertgraphic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertgraphic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertgraphic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertheader.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertheader.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertheader.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertheader.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserthyperlinkcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserthyperlinkcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserthyperlinkcontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserthyperlinkcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserthyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserthyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserthyperlink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserthyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,9 +1,10 @@ - + - /&amp;amp;amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertindexesentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertindexesentry.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertindexesentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertlinebreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertlinebreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertlinebreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertlinebreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertmasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertmath.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertmath.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertmath.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertmath.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertmenutitles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertmenutitles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertmenutitles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertmenutitles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertmultiindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertmultiindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertmultiindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertmultiindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertneutralparagraph.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertneutralparagraph.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertneutralparagraph.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertneutralparagraph.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertobjectfloatingframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertobjectfloatingframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertobjectfloatingframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertobjectfloatingframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagebreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagebreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagebreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagebreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagecountfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagenumberfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertpagenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertplugin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertplugin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertplugin.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertplugin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertqrcode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertqrcode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertqrcode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertqrcode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertreferencefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertreferencefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertreferencefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowbreak.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowbreak.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowbreak.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowbreak.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowsafter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowsafter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowsafter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowsafter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowsbefore.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowsbefore.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowsbefore.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertrowsbefore.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertsection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertsection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertsection.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertsection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidecountfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidecountfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidecountfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidecountfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -9,4 +9,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidenumberfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidenumberfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidenumberfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidenumberfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -9,4 +9,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidetitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidetitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidetitlefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertslidetitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -9,4 +9,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertsound.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertsound.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertsound.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertsound.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertspreadsheet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertspreadsheet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertspreadsheet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertspreadsheet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertsymbol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertsymbol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertsymbol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertsymbol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserttable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserttimefieldvar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserttimefieldvar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserttimefieldvar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserttimefieldvar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserttitlefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserttitlefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserttitlefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserttitlefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserttopicfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserttopicfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserttopicfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserttopicfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserttreecontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserttreecontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inserttreecontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inserttreecontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,3 @@ - -/&gt; \ No newline at end of file + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertvideo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertvideo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_insertvideo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_insertvideo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inspectordeck.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inspectordeck.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_inspectordeck.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_inspectordeck.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_interactivegradient.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_interactivegradient.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_interactivegradient.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_interactivegradient.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_interactivetransparence.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_interactivetransparence.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_interactivetransparence.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_interactivetransparence.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_intersect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_intersect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_intersect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_intersect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_jumptonexttablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_jumptonexttablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_jumptonexttablesel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_jumptonexttablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_jumptoprevtablesel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_jumptoprevtablesel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_jumptoprevtablesel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_jumptoprevtablesel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_label.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_label.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_label.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_label.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_lastpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_lastpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_lastpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_lastpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_lastrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_lastrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_lastrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_lastrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_lastslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_lastslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_lastslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_lastslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_leaveallgroups.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_leaveallgroups.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_leaveallgroups.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_leaveallgroups.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_leavegroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_leavegroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_leavegroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_leavegroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_legend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_legend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_legend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_legend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-clearscreen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-clearscreen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-clearscreen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-clearscreen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-gobackward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-gobackward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-gobackward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-gobackward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-goforward.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-goforward.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-goforward.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-goforward.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-home.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-home.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-home.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-home.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_librelogo-right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowcircle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowcircle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowcircle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowcircle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowsquare.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowsquare.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowsquare.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowsquare.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linearrows.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linearrows.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linearrows.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linearrows.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linearrowstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linecirclearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linecirclearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linecirclearrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linecirclearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_line_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_line_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_line_diagonal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_line_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + /&gt; diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_lineendstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_lineendstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_lineendstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_lineendstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linenumberingdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linenumberingdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linenumberingdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linenumberingdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linesquarearrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linesquarearrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linesquarearrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linesquarearrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linestyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linestyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linestyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linestyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_line.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_line.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_line.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_line.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + /&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_linewidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_linewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_listbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_listbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_listbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_listbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_loadbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_loadbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_loadbasic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_loadbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_lock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_lock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_lock.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_lock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_macrorecorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_macrorecorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_macrorecorder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_macrorecorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergecreatedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergecreatedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergecreatedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergecreatedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeemaildocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeemaildocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeemaildocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeemaildocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeexcludeentry.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeexcludeentry.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeexcludeentry.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeexcludeentry.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeprintdocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeprintdocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeprintdocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergeprintdocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergesavedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergesavedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergesavedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergesavedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergewizard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergewizard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergewizard.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mailmergewizard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_managebreakpoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_managebreakpoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_managebreakpoints.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_managebreakpoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,9 @@ - + - /&amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_managelanguage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_managelanguage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_managelanguage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_managelanguage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_managexmlsource.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_managexmlsource.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_managexmlsource.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_managexmlsource.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_marks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_marks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_marks.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_marks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_masterlayouts.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_masterlayouts.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_masterlayouts.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_masterlayouts.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_masterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_masterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_masterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_masterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_matchgroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_matchgroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_matchgroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_matchgroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,4 @@ - + -/&amp;gt; \ No newline at end of file + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_measureline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_measureline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_measureline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_measureline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mediamute.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mediamute.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mediamute.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mediamute.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mediapause.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mediapause.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mediapause.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mediapause.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,8 @@ - + - /&amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mediarepeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mediarepeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mediarepeat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mediarepeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,3 @@ - -/&gt; \ No newline at end of file + + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_menubar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_menubar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_menubar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_menubar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mergecells.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mergedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mergedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mergedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mergedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mergedocuments.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mergedocuments.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mergedocuments.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mergedocuments.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_merge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_merge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_merge.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_merge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mergetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mergetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mergetable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mergetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mirror.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mirror.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mirror.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mirror.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mirrorvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mirrorvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_mirrorvert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_mirrorvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_modifyframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_modifyframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_modifyframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_modifyframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_modifypage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_modifypage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_modifypage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_modifypage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moduledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moduledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moduledialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moduledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + - /&amp;gt; - \ No newline at end of file + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_morecontrols.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_morecontrols.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_morecontrols.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_morecontrols.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,5 @@ - + -/&amp;amp;gt; \ No newline at end of file + + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_morphing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_morphing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_morphing.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_morphing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movedownsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movedownsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movedownsubitems.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movedownsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movedown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movepagedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movepagedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movepagedown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movepagedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movepagefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movepagefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movepagefirst.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movepagefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movepagelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movepagelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movepagelast.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movepagelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movepageup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movepageup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_movepageup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_movepageup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidedown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidedown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidedown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidedown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,9 +1,10 @@ - + - /&amp;amp;amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidefirst.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidefirst.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidefirst.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidefirst.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidelast.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidelast.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidelast.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveslidelast.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveslideup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveslideup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveslideup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveslideup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_move.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_move.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_move.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_move.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveupsubitems.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveupsubitems.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveupsubitems.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveupsubitems.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_moveup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_moveup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_name.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_name.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_name.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_name.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;gt; \ No newline at end of file + +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_navigationbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_navigationbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_navigationbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_navigationbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_navigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_navigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_navigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_navigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_neutralcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_neutralcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_neutralcellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_neutralcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_newarrangement.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_newarrangement.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_newarrangement.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_newarrangement.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_newdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_newdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_newdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_newdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_newhtmldoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_newhtmldoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_newhtmldoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_newhtmldoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,106 @@ - + + + + + + + + + + + + + + + + + + /&amp;amp;gt; - \ No newline at end of file + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_newrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_newrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_newrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_newrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_newwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_newwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_newwindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_newwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_nextannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_nextannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_nextannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_nextannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_nextpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_nextpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_nextpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_nextpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_nextrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_nextrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_nextrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_nextrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_nextslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_nextslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_nextslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_nextslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_nexttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_nexttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_nexttrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_nexttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_normalmultipanegui.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_normalmultipanegui.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_normalmultipanegui.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_normalmultipanegui.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,55 @@ - \ No newline at end of file + + + + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_normalviewmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_normalviewmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_normalviewmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_normalviewmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_notesmasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_notesmasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_notesmasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_notesmasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_notesmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_notesmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_notesmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_notesmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdecdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdecdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdecdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdecdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdecimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdecimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdecimal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatdecimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatincdecimals.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatincdecimals.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatincdecimals.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatincdecimals.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatpercent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatpercent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatpercent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatpercent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatscientific.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatscientific.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatscientific.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatscientific.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatstandard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatstandard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatstandard.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatstandard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatthousands.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatthousands.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatthousands.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberformatthousands.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberingstart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberingstart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numberingstart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numberingstart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numericfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numericfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_numericfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_numericfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_objectalignleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_objectalignleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_objectalignleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_objectalignleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_objectalignright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_objectalignright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_objectalignright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_objectalignright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_objectcatalog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_objectcatalog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_objectcatalog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_objectcatalog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_objectposition.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_objectposition.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_objectposition.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_objectposition.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_objecttitledescription.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_objecttitledescription.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_objecttitledescription.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_objecttitledescription.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,140 +1 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ok.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ok.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ok.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ok.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_openremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_openremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_openremote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_openremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_opentemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_opentemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_opentemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_opentemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_optimizetable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_optimizetable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_optimizetable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_optimizetable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_optionstreedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_optionstreedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_optionstreedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_optionstreedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_orientation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_orientation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_orientation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_orientation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlinecollapseall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlinecollapseall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlinecollapseall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlinecollapseall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlinecollapse.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlinecollapse.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlinecollapse.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlinecollapse.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlineexpandall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlineexpandall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlineexpandall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlineexpandall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlineexpand.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlineexpand.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlineexpand.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlineexpand.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlinefont.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlinefont.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlinefont.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlinefont.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlineformat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlineformat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlineformat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlineformat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlinemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlinemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outlinemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outlinemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outputqualityblackwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outputqualityblackwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outputqualityblackwhite.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outputqualityblackwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outputqualitygrayscale.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outputqualitygrayscale.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_outputqualitygrayscale.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_outputqualitygrayscale.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_overline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_overline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_overline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_overline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagebreakmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagebreakmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagebreakmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagebreakmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagecolumntype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagecolumntype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagecolumntype.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagecolumntype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagemargin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagemargin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagemargin.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagemargin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pagesetup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pagesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_paragraphdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_paragraphdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_paragraphdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_paragraphdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + - /&amp;amp;gt; - \ No newline at end of file + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_paralefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_paralefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_paralefttoright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_paralefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,8 @@ - + -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pararighttoleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pararighttoleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pararighttoleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pararighttoleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,8 @@ - + -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_paraspacedecrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_paraspacedecrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_paraspacedecrease.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_paraspacedecrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_paraspaceincrease.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_paraspaceincrease.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_paraspaceincrease.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_paraspaceincrease.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pasteaslink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pasteaslink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pasteaslink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pasteaslink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,3 @@ - -/&amp;amp;amp;gt; \ No newline at end of file + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlyformula.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlyformula.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlyformula.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlyformula.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,5 +6,6 @@ - /&amp;amp;amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlytext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlytext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlytext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlytext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ -/&amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlyvalue.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlyvalue.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlyvalue.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pasteonlyvalue.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ -/&amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pastespecial.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pastespecial.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pastespecial.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pastespecial.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ -/&amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_paste.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_paste.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_paste.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_paste.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pastetransposed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pastetransposed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pastetransposed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pastetransposed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,2 @@ - - - - - - /&amp;amp;gt; - \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pasteunformatted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pasteunformatted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pasteunformatted.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pasteunformatted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ -/&amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_patternfield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_patternfield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_patternfield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_patternfield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_photoalbumdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_photoalbumdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_photoalbumdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_photoalbumdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pickthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pickthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pickthrough.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pickthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pie_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pie_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pie_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pie_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_diagonal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_diagonal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_diagonal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_diagonal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_diagonal_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_diagonal_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_diagonal_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_diagonal_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_polygon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_polygon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_polygon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_polygon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_polygon_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_position.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_position.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_position.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_position.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_preformattedparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_preformattedparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_preformattedparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_preformattedparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_presentationcurrentslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_presentationcurrentslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_presentationcurrentslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_presentationcurrentslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_presentationdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_presentationdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_presentationdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_presentationdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_presentationlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_presentationlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_presentationlayout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_presentationlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_presentationminimizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_presentationminimizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_presentationminimizer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_presentationminimizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;amp;amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_presentation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_presentation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_presentation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_presentation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previewprintoptions.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previewprintoptions.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previewprintoptions.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previewprintoptions.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previousannotation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previousannotation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previousannotation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previousannotation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previouspage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previouspage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previouspage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previouspage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previousrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previousrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previousrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previousrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previousslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previousslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previousslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previousslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previoustrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previoustrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_previoustrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_previoustrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_prevrecord.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_prevrecord.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_prevrecord.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_prevrecord.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_printdefault.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_printdefault.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_printdefault.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_printdefault.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_printersetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_printersetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_printersetup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_printersetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,5 +6,5 @@ - /&amp;amp;amp;amp;gt; - \ No newline at end of file + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_printlayout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_printlayout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_printlayout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_printlayout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_printpreview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_printpreview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_printpreview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_printpreview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_print.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_print.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_print.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_print.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_progressbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_progressbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_progressbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_progressbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_protectbookmarks.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_protectbookmarks.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_protectbookmarks.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_protectbookmarks.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_protectfields.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_protectfields.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_protectfields.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_protectfields.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_protect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_protect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_protect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_protect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_protecttracechangemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_protecttracechangemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_protecttracechangemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_protecttracechangemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pushbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pushbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_pushbutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_pushbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_quickedit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_quickedit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_quickedit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_quickedit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_quit.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_quit.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_quit.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_quit.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_quotecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_quotecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_quotecharstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_quotecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_quoteparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_quoteparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_quoteparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_quoteparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_radiobutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_radiobutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_radiobutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_radiobutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,7 @@ - + - /&amp;gt; - \ No newline at end of file + + /&amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_recalcpivottable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_recalcpivottable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_recalcpivottable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_recalcpivottable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_recentfilelist.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_recentfilelist.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_recentfilelist.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_recentfilelist.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_recsave.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_recsave.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_recsave.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_recsave.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_recsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_recsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_recsearch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_recsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rect_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rect_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rect_rounded.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rect_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rect_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rect_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rect_rounded_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rect_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rect.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rect.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rect.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rect.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rect_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rect_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rect_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rect_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_redactdoc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_redactdoc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_redactdoc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_redactdoc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_redactedexportblack.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_redactedexportblack.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_redactedexportblack.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_redactedexportblack.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_redactedexportwhite.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_redactedexportwhite.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_redactedexportwhite.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_redactedexportwhite.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_redo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_redo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_redo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_redo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_refreshformcontrol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_refreshformcontrol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_refreshformcontrol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_refreshformcontrol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,9 @@ - + - /&amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rejectalltrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rejectalltrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rejectalltrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rejectalltrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rejecttrackedchange.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rejecttrackedchange.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rejecttrackedchange.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rejecttrackedchange.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rejecttrackedchangetonext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rejecttrackedchangetonext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rejecttrackedchangetonext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rejecttrackedchangetonext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_reload.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_reload.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_reload.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_reload.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_removebullets.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_removebullets.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_removebullets.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_removebullets.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_removefiltersort.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_removefiltersort.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_removefiltersort.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_removefiltersort.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_removehyperlink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_removehyperlink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_removehyperlink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_removehyperlink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_remove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_remove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_remove.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_remove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_removetableof.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_removetableof.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_removetableof.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_removetableof.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_renamemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_renamemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_renamemasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_renamemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_renameobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_renameobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_renameobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_renameobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_renamepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_renamepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_renamepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_renamepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_renameslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_renameslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_renameslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_renameslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_repeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_repeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_repeat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_repeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_replycomment.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_replycomment.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_replycomment.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_replycomment.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_reportnavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_reportnavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_reportnavigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_reportnavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_resetattributes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_resetattributes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_resetattributes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_resetattributes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_reverseorder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_reverseorder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_reverseorder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_reverseorder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_romanliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_romanliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_romanliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_romanliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_romanlowliststyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_romanlowliststyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_romanlowliststyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_romanlowliststyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rotateleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rotateleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rotateleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rotateleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rotateright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rotateright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_rotateright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_rotateright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ruler.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_runbasic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_runbasic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_runbasic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_runbasic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,9 @@ - + - /&amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_runmacro.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_runmacro.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_runmacro.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_runmacro.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_saveacopy.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_saveacopy.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_saveacopy.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_saveacopy.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_saveall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_saveall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_saveall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_saveall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_saveasremote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_saveasremote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_saveasremote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_saveasremote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_saveas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_saveas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_saveas.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_saveas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_saveastemplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_saveastemplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_saveastemplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_saveastemplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_savebackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_savebackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_savebackground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_savebackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_savebasicas.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_savebasicas.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_savebasicas.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_savebasicas.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_save.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_save.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_save.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_save.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sbaexecutesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sbaexecutesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sbaexecutesql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sbaexecutesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sbanativesql.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sbanativesql.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sbanativesql.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sbanativesql.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,5 +7,6 @@ - /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_scaletext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_scaletext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_scaletext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_scaletext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_scan.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_scan.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_scan.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_scan.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_scriptorganizer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_scriptorganizer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_scriptorganizer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_scriptorganizer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -7,4 +7,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_scrollbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_scrollbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_scrollbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_scrollbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1 @@ - - - - - - /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_searchdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_searchdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_searchdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_searchdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrinkbottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrinkbottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrinkbottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrinkbottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrinktop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrinktop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrinktop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sectionshrinktop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectbackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectbackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectbackground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectbackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectdata.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectdata.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectdata.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectdata.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectdb.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectdb.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectdb.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectdb.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectobject.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectobject.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectobject.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectobject.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selecttables.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selecttables.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selecttables.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selecttables.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selecttable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selecttable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selecttable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selecttable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectunprotectedcells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectunprotectedcells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_selectunprotectedcells.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_selectunprotectedcells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sendfax.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sendfax.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sendfax.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sendfax.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sendfeedback.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sendfeedback.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sendfeedback.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sendfeedback.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sendmail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sendmail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sendmail.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sendmail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sendtoback.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sendtoback.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sendtoback.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sendtoback.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setborderstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setborderstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setborderstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setborderstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setdocumentproperties.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setdocumentproperties.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setdocumentproperties.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setdocumentproperties.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setminimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setminimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setminimalcolumnwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setminimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setminimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setminimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setminimalrowheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setminimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setobjecttobackground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setobjecttobackground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setobjecttobackground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setobjecttobackground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1 @@ - - - - - /&amp;gt; - \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setobjecttoforeground.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setobjecttoforeground.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setobjecttoforeground.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setobjecttoforeground.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1 @@ - - - - - /&amp;gt; - \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setoptimalcolumnwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setoptimalcolumnwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setoptimalcolumnwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setoptimalcolumnwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setoptimalrowheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setoptimalrowheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setoptimalrowheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setoptimalrowheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,5 +1,5 @@ - + /&gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setoutline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setoutline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setoutline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setoutline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setreminder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setreminder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_setreminder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_setreminder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shadowcursor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shadowcursor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shadowcursor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shadowcursor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shadowed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shadowed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shadowed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shadowed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sharedocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sharedocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sharedocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sharedocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shear.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shell3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shell3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shell3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shell3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showannotations.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showannotations.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showannotations.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showannotations.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showbookview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showbookview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showbookview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showbookview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showcolumn.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showcolumn.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showcolumn.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showcolumn.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showdatanavigator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showdatanavigator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showdatanavigator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showdatanavigator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showdependents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showdependents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showdependents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showdependents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showdetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showdetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showdetail.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showdetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showerrors.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showerrors.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showerrors.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showerrors.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showfmexplorer.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showfmexplorer.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showfmexplorer.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showfmexplorer.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showinvalid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showinvalid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showinvalid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showinvalid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showmultiplepages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showmultiplepages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showmultiplepages.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showmultiplepages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shownote.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shownote.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shownote.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shownote.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showprecedents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showprecedents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showprecedents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showprecedents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showrow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showrow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showrow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showrow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showsinglepage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showsinglepage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showsinglepage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showsinglepage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showslide.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showslide.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showslide.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showslide.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_show.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_show.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_show.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_show.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showtoolbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showtoolbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showtoolbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showtoolbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showtrackedchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showtrackedchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showtrackedchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showtrackedchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showtwopages.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showtwopages.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showtwopages.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showtwopages.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showwhitespace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showwhitespace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_showwhitespace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_showwhitespace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shrink.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shrink.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_shrink.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_shrink.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sidebar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sidebar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sidebar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sidebar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -9,4 +9,4 @@ /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_signaturelinedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_signaturelinedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_signaturelinedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_signaturelinedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_signature.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_signature.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_signature.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_signature.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_signpdf.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_signpdf.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_signpdf.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_signpdf.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_size.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_size.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_size.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_size.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_slidechangewindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_slidechangewindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_slidechangewindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_slidechangewindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_slidemasterpage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_slidemasterpage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_slidemasterpage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_slidemasterpage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_slidesetup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_slidesetup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_slidesetup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_slidesetup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,5 +8,5 @@ - /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + /&amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_smallcaps.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_smallcaps.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_smallcaps.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_smallcaps.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_smallestheight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_smallestheight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_smallestheight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_smallestheight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_smallestwidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_smallestwidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_smallestwidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_smallestwidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_snapborder.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_snapborder.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_snapborder.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_snapborder.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_snapframe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_snapframe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_snapframe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_snapframe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_snappoints.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_snappoints.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_snappoints.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_snappoints.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_solidcreate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_solidcreate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_solidcreate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_solidcreate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_solverdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_solverdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_solverdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_solverdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sortascending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sortascending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sortascending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sortascending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sortdescending.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sortdescending.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sortdescending.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sortdescending.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sourcecharstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sourcecharstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_sourcecharstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_sourcecharstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara15.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara15.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara15.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara15.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spacepara2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spacing.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spacing.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spacing.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spacing.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spelling.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spelling.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spelling.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spelling.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spellonline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spellonline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spellonline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spellonline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spinbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spinbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_spinbutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_spinbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_splitcell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_splitcell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_splitcell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_splitcell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_splittable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_splittable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_splittable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_splittable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_splitwindow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_splitwindow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_splitwindow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_splitwindow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_square_rounded.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_square_rounded.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_square_rounded.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_square_rounded.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_square_rounded_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_square_rounded_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_square_rounded_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_square_rounded_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_square.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_square.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_square.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_square.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_square_unfilled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_square_unfilled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_square_unfilled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_square_unfilled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.bang.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.bang.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.bang.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.bang.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.concave-star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.concave-star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.concave-star6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.concave-star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.doorplate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.doorplate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.doorplate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.doorplate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.horizontal-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.horizontal-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.horizontal-scroll.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.horizontal-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.signet.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.signet.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.signet.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.signet.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star12.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star12.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star12.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star12.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,4 @@ - + -/&amp;gt; \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star5.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.star8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.vertical-scroll.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.vertical-scroll.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.vertical-scroll.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_starshapes.vertical-scroll.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_statetablecell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_statetablecell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_statetablecell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_statetablecell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_statisticsmenu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_statisticsmenu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_statisticsmenu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_statisticsmenu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_statusbarvisible.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_statusbarvisible.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_statusbarvisible.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_statusbarvisible.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_strikeout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_strikeout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_strikeout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_strikeout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_strongemphasischarstyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_strongemphasischarstyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_strongemphasischarstyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_strongemphasischarstyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_styleapply.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_styleapply.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_styleapply.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_styleapply.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,10 @@ - + - /&amp;amp;amp;gt; - \ No newline at end of file + + + /&amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_stylenewbyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_stylenewbyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_stylenewbyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_stylenewbyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_styleupdatebyexample.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_styleupdatebyexample.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_styleupdatebyexample.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_styleupdatebyexample.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_subscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_subscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_subscript.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_subscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_substract.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_substract.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_substract.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_substract.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_subtitleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_subtitleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_subtitleparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_subtitleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_superscript.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_superscript.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_superscript.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_superscript.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_switchcontroldesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_switchcontroldesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_switchcontroldesignmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_switchcontroldesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_switchxformsdesignmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_switchxformsdesignmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_switchxformsdesignmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_switchxformsdesignmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.brace-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.brace-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.brace-pair.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.brace-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.bracket-pair.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.bracket-pair.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.bracket-pair.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.bracket-pair.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.cloud.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.cloud.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.cloud.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.cloud.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.diamond-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.diamond-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.diamond-bevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.diamond-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.flower.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.flower.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.flower.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.flower.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.forbidden.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.forbidden.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.forbidden.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.forbidden.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.heart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.heart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.heart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.heart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.left-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.left-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.left-brace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.left-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.left-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.left-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.left-bracket.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.left-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.lightning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.lightning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.lightning.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.lightning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.moon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.moon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.moon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.moon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.octagon-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.octagon-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.octagon-bevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.octagon-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.puzzle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.puzzle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.puzzle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.puzzle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.quad-bevel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.quad-bevel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.quad-bevel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.quad-bevel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.right-brace.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.right-brace.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.right-brace.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.right-brace.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.right-bracket.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.right-bracket.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.right-bracket.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.right-bracket.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.sun.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.sun.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.sun.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.sun.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_symbolshapes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tabdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tabdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tabdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tabdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tabledeselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tabledeselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tabledeselectall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tabledeselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tabledesign.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tabledesign.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tabledesign.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tabledesign.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tabledialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tabledialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tabledialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tabledialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,9 +1,9 @@ - + - /&amp;amp;amp;gt; - \ No newline at end of file + /&amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodefixprop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodefixprop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodefixprop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodefixprop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodefix.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodefix.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodefix.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodefix.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodevariable.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodevariable.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodevariable.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tablemodevariable.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tablenumberformatdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tablenumberformatdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tablenumberformatdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tablenumberformatdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tableselectall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tableselectall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_tableselectall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_tableselectall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_templatemanager.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_templatemanager.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_templatemanager.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_templatemanager.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_testmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_testmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_testmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_testmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_textbodyparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_textbodyparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_textbodyparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_textbodyparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_textdirectionlefttoright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_textdirectionlefttoright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_textdirectionlefttoright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_textdirectionlefttoright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_textdirectiontoptobottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_textdirectiontoptobottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_textdirectiontoptobottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_textdirectiontoptobottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_text_marquee.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_text_marquee.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_text_marquee.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_text_marquee.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_text.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_text.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_text.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_text.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_texttocolumns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_texttocolumns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_texttocolumns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_texttocolumns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_thesaurus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_thesaurus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_thesaurus.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_thesaurus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_timefield.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_timefield.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_timefield.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_timefield.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_titlepagedialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_titlepagedialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_titlepagedialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_titlepagedialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_titleparastyle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_titleparastyle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_titleparastyle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_titleparastyle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggleanchortype.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggleanchortype.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggleanchortype.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggleanchortype.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggleaxistitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggleaxistitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggleaxistitle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggleaxistitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglebreakpoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglebreakpoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglebreakpoint.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglebreakpoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -4,5 +4,6 @@ - /&amp;amp;gt; - \ No newline at end of file + + /&amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglegridhorizontal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglegridhorizontal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglegridhorizontal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglegridhorizontal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglegridvertical.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglegridvertical.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglegridvertical.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglegridvertical.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglelegend.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglelegend.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglelegend.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglelegend.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglemergecells.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglemergecells.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglemergecells.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglemergecells.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggleobjectbeziermode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggleobjectbeziermode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggleobjectbeziermode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggleobjectbeziermode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggleobjectrotatemode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggleobjectrotatemode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggleobjectrotatemode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggleobjectrotatemode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglesheetgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglesheetgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_togglesheetgrid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_togglesheetgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggletabbarvisibility.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggletabbarvisibility.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggletabbarvisibility.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggletabbarvisibility.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggletitle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggletitle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toggletitle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toggletitle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toolbarmode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toolbarmode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toolbarmode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toolbarmode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toolprotectiondocument.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toolprotectiondocument.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_toolprotectiondocument.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_toolprotectiondocument.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_trackchangesbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_trackchangesbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_trackchangesbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_trackchanges.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_trackchanges.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_trackchanges.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_trackchanges.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_transformdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_transformdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_transformdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_transformdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_underlinedouble.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_underlinedouble.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_underlinedouble.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_underlinedouble.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_underline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_underline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_underline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_underline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_undo.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_undo.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_undo.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_undo.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ungroup.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ungroup.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_ungroup.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_ungroup.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_unhainframes.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_unhainframes.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_unhainframes.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_unhainframes.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_unsetcellsreadonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_unsetcellsreadonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_unsetcellsreadonly.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_unsetcellsreadonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_updatecurindex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_updatecurindex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_updatecurindex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_updatecurindex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_upsearch.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_upsearch.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_upsearch.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_upsearch.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_urlbutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_urlbutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_urlbutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_urlbutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_validation.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_validation.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_validation.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_validation.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_versiondialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_versiondialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_versiondialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_versiondialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_verticalcaption.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_verticalcaption.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_verticalcaption.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_verticalcaption.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_verticaltextfittosizetool.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_verticaltextfittosizetool.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_verticaltextfittosizetool.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_verticaltextfittosizetool.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&amp;gt; \ No newline at end of file + +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_verticaltext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_verticaltext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_verticaltext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_verticaltext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_vfixedline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_vfixedline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_vfixedline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_vfixedline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_viewdatasourcebrowser.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_viewdatasourcebrowser.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_viewdatasourcebrowser.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_viewdatasourcebrowser.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_viewformasgrid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_viewformasgrid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_viewformasgrid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_viewformasgrid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_viewrowcolumnheaders.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_viewrowcolumnheaders.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_viewrowcolumnheaders.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_viewrowcolumnheaders.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;gt; \ No newline at end of file +/&amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_viewvaluehighlighting.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_viewvaluehighlighting.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_viewvaluehighlighting.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_viewvaluehighlighting.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_vruler.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_vruler.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_vruler.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_vruler.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_warningcellstyles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_warningcellstyles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_warningcellstyles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_warningcellstyles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_watermark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_watermark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_watermark.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_watermark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_window3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_window3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_window3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_window3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wordcountdialog.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wordcountdialog.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wordcountdialog.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wordcountdialog.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapcontour.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapcontour.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapcontour.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapcontour.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapideal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapideal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapideal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapideal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapoff.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapoff.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapoff.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapoff.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wraptext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wraptext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wraptext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wraptext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapthrough.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapthrough.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_wrapthrough.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_wrapthrough.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_xlinecolor.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_xlinecolor.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_xlinecolor.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_xlinecolor.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoom100percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoom100percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoom100percent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoom100percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoom200percent.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoom200percent.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoom200percent.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoom200percent.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomin.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomin.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomin.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomin.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoommode.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoommode.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoommode.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoommode.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomnext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomnext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomnext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomnext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomobjects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomobjects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomobjects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomobjects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomoptimal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomoptimal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomoptimal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomoptimal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomout.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomout.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomout.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomout.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoompage.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoompage.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoompage.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoompage.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoompagewidth.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoompagewidth.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoompagewidth.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoompagewidth.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoompanning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoompanning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoompanning.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoompanning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + /&gt; diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomprevious.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomprevious.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoomprevious.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoomprevious.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sc_zoom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sc_zoom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sl/lc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sl/lc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sl/lc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sl/lc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sl/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sl/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sl/lc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sl/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sl/sc_bold.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sl/sc_bold.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sl/sc_bold.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sl/sc_bold.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sl/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sl/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/sl/sc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/sl/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/tr/lc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/tr/lc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/tr/lc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/tr/lc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/tr/sc_italic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/tr/sc_italic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/cmd/tr/sc_italic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/cmd/tr/sc_italic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/forms_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/forms_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/forms_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/forms_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -11,4 +11,4 @@ /&amp;amp;amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/jo02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/jo02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/jo02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/jo02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/lc039.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/lc039.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/lc039.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/lc039.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/lc040.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/lc040.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/lc040.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/lc040.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/linked_text_table.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/linked_text_table.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/linked_text_table.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/linked_text_table.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/pkey.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/pkey.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/pkey.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/pkey.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/reports_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/reports_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/reports_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/reports_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/sc039.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/sc039.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/sc039.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/sc039.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/sc040.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/sc040.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/dbaccess/res/sc040.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/dbaccess/res/sc040.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/desktop/res/shared_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/desktop/res/shared_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/desktop/res/shared_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/desktop/res/shared_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/addresspilot.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/addresspilot.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/addresspilot.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/addresspilot.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/scanner/handle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/scanner/handle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/scanner/handle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/scanner/handle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/scanner/minus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/scanner/minus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/scanner/minus.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/scanner/minus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/scanner/plus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/scanner/plus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/scanner/plus.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/scanner/plus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/update/ui/onlineupdate_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/update/ui/onlineupdate_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/update/ui/onlineupdate_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/update/ui/onlineupdate_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/update/ui/onlineupdate_26.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/update/ui/onlineupdate_26.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/extensions/res/update/ui/onlineupdate_26.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/extensions/res/update/ui/onlineupdate_26.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/formula/res/refinp1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/formula/res/refinp1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/formula/res/refinp1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/formula/res/refinp1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/formula/res/refinp2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/formula/res/refinp2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/formula/res/refinp2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/formula/res/refinp2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/fpicker/res/fp015.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/fpicker/res/fp015.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/fpicker/res/fp015.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/fpicker/res/fp015.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/framework/res/recent-documents.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/framework/res/recent-documents.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/framework/res/recent-documents.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/framework/res/recent-documents.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10454.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10454.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10454.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10454.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10928.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10928.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10928.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10928.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10929.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10929.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10929.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx10929.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12452.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12452.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12452.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12452.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12453.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12453.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12453.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12453.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12466.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12466.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12466.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12466.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12468.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12468.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12468.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12468.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12603.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12603.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12603.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/reportdesign/res/sx12603.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/basbrk.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/basbrk.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/basbrk.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/basbrk.svg 2023-03-24 16:53:38.000000000 +0000 @@ -6,4 +6,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/base128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/base128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/base128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/base128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/base_thumbnail_256.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/base_thumbnail_256.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/base_thumbnail_256.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/base_thumbnail_256.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,987 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/baswatr.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/baswatr.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/baswatr.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/baswatr.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/calc128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/calc128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/calc128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/calc128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/colorsliderleft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/colorsliderleft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/colorsliderleft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/colorsliderleft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/colorsliderright.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/colorsliderright.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/colorsliderright.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/colorsliderright.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/component_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/component_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/component_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/component_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/da06.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/da06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/dialogfolder_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/dialogfolder_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/dialogfolder_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/dialogfolder_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/dialogfoldernot_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/dialogfoldernot_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/dialogfoldernot_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/dialogfoldernot_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/draw128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/draw128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/draw128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/draw128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/fp010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/fp010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/fp010.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/fp010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -11,5 +11,5 @@ - /&amp;amp;amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + /&amp;amp;amp;amp;amp;amp;amp;amp;amp;gt; + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/fp015.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/fp015.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/fp015.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/fp015.svg 2023-03-24 16:53:38.000000000 +0000 @@ -12,4 +12,4 @@ /&amp;amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/fwthcirc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/fwthcirc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/fwthcirc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/fwthcirc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/grafikde.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/grafikde.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/grafikde.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/grafikde.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/harddisk_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/harddisk_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/harddisk_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/harddisk_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/helpimg/info.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/helpimg/info.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/helpimg/info.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/helpimg/info.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/helpimg/note.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/helpimg/note.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/helpimg/note.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/helpimg/note.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/helpimg/tip.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/helpimg/tip.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/helpimg/tip.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/helpimg/tip.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,174 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/helpimg/warning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/helpimg/warning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/helpimg/warning.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/helpimg/warning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/hldocntp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/hldocntp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/hldocntp.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/hldocntp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/hldoctp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/hldoctp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/hldoctp.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/hldoctp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30822.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30822.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30822.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30822.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30823.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30823.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30823.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30823.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30827.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30827.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30827.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30827.svg 2023-03-24 16:53:38.000000000 +0000 @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30838.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30838.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30838.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30838.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30839.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30839.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30839.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30839.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30840.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30840.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/im30840.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/im30840.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/impress128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/impress128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/impress128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/impress128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/javacomponent_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/javacomponent_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/javacomponent_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/javacomponent_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/javalibrary_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/javalibrary_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/javalibrary_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/javalibrary_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lc06303.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lc06303.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lc06303.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lc06303.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lftrgt.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lftrgt.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lftrgt.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lftrgt.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lock.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lock.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lock.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lock.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03123.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03123.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03123.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03123.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03125.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03125.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03125.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03125.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03126.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03126.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03126.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03126.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03127.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03127.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03127.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03127.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03129.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03129.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03129.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03129.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03130.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03130.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03130.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03130.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03131.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03131.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03131.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03131.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03132.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03132.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03132.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03132.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03135.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03135.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03135.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03135.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03161.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03161.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03161.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03161.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03162.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03162.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03162.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03162.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03163.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03163.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03163.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03163.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03166.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03166.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03166.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03166.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03243.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03243.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03243.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03243.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03244.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03244.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/lx03244.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/lx03244.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/main128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/main128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/main128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/main128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/mainapp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/mainapp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/mainapp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/mainapp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/mainapp_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/mainapp_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/mainapp_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/mainapp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/mainapp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/mainapp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/mainapp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/mainapp_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/mainapp_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/mainapp_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/mainapp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/mainapp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/mainapp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/mainapp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/math128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/math128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/math128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/math128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/minus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/minus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/minus.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/minus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/notebookbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/notebookbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/notebookbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/notebookbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/note.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/note.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/note.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/note.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odb_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odb_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odb_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odb_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odb_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odb_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odb_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odb_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odb_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odb_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odb_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odb_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odb_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odb_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odb_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odb_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odf_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odf_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odf_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odf_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odf_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odf_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odf_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odf_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odf_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odf_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odf_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odg_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odg_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odg_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odg_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odg_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odg_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odg_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odg_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odg_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odg_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odg_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odm_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odm_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odm_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odm_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odm_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odm_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odm_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odm_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odm_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odm_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odm_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odm_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odm_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odm_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odm_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odm_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odp_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odp_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odp_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odp_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odp_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odp_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odp_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odp_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ods_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ods_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ods_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ods_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ods_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ods_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ods_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ods_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ods_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ods_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ods_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ods_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ods_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ods_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ods_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ods_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ods_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ods_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ods_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ods_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odt_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odt_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odt_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odt_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,2 @@ - \ No newline at end of file + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odt_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odt_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odt_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odt_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odt_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odt_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odt_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odt_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odt_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odt_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odt_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odt_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odt_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odt_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/odt_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/odt_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otf_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otf_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otf_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otf_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otf_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otf_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otf_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otf_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otf_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otf_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otf_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otf_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otf_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otf_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otf_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otf_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otf_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otf_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otf_96_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otf_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otg_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otg_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otg_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otg_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otg_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otg_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otg_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otg_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otg_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otg_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otg_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otg_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otg_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otg_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otg_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otg_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otg_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otg_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otg_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otg_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otp_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otp_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otp_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otp_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,4 @@ - \ No newline at end of file + + + +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otp_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otp_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otp_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otp_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otp_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otp_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otp_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otp_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otp_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otp_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otp_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otp_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otp_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otp_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/otp_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/otp_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ots_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ots_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ots_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ots_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ots_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ots_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ots_24_8.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ots_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ots_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ots_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ots_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ots_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ots_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ots_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ots_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ots_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ots_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ots_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ots_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ots_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ott_16_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ott_16_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ott_16_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ott_16_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ott_24_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ott_24_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ott_24_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ott_24_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ott_32_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ott_32_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ott_32_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ott_32_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ott_48_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ott_48_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ott_48_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ott_48_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ott_96_8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ott_96_8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/ott_96_8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/ott_96_8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/plus.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/plus.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/plus.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/plus.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/recentdoc_remove.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/recentdoc_remove.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/recentdoc_remove.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/recentdoc_remove.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/savemodified_extralarge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/savemodified_extralarge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/savemodified_extralarge.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/savemodified_extralarge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/savemodified_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/savemodified_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/savemodified_large.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/savemodified_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/savemodified_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/savemodified_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/savemodified_small.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/savemodified_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sc06303.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sc06303.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sc06303.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sc06303.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/script.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/script.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/script.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/script.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/soliline.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/soliline.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/soliline.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/soliline.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03123.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03123.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03123.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03123.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03125.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03125.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03125.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03125.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03126.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03126.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03126.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03126.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03127.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03127.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03127.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03127.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03129.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03129.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03129.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03129.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03130.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03130.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03130.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03130.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03131.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03131.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03131.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03131.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03132.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03132.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03132.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03132.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03135.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03135.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03135.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03135.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03161.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03161.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03161.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03161.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03162.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03162.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03162.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03162.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03163.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03163.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03163.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03163.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03166.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03166.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03166.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03166.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03187.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03187.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03187.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03187.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03201.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03201.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03201.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03201.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -9,4 +9,4 @@ /&amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03243.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03243.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03243.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03243.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03244.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03244.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx03244.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx03244.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx16670.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx16670.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx16670.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx16670.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx18022.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx18022.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx18022.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx18022.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx18027.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx18027.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/sx18027.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/sx18027.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/target.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/target.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/target.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/target.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/tb01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/tb01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/tb01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/tb01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/tb02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/tb02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/tb02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/tb02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/tb03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/tb03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/tb03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/tb03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/tb04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/tb04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/tb04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/tb04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/tb05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/tb05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/tb05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/tb05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/templatestar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/templatestar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/templatestar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/templatestar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/topdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/topdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/topdown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/topdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/versionwarning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/versionwarning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/versionwarning.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/versionwarning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/writer128.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/writer128.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/writer128.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/writer128.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/xml_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/xml_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/res/xml_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/res/xml_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-empty.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-empty.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-empty.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-empty.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-half.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-half.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-half.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-half.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-one-quarter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-one-quarter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-one-quarter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-one-quarter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-three-quarters.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-three-quarters.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-three-quarters.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-bars-three-quarters.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-gray.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-gray.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-gray.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-gray.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-green.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-green.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-green.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-green.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - -/&gt; \ No newline at end of file + +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-red.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-red.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-red.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-red.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-yellow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-yellow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-yellow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles1-yellow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-dark-red.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-dark-red.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-dark-red.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-dark-red.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-light-gray.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-light-gray.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-light-gray.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-light-gray.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-light-red.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-light-red.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-light-red.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-circles2-light-red.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1,2 @@ - + /&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-same.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-same.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-same.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-same.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-slightly-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-slightly-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-slightly-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-slightly-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-slightly-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-slightly-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-slightly-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-slightly-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-colorarrows-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-green.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-green.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-green.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-green.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-red.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-red.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-red.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-red.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-yellow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-yellow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-yellow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-flags-yellow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-same.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-same.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-same.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-same.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-slightly-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-slightly-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-slightly-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-slightly-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-slightly-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-slightly-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-slightly-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-slightly-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-grayarrows-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-negative-red-smilie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-negative-red-smilie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-negative-red-smilie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-negative-red-smilie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + /&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-negative-yellow-smilie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-negative-yellow-smilie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-negative-yellow-smilie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-negative-yellow-smilie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-neutral-yellow-smilie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-neutral-yellow-smilie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-neutral-yellow-smilie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-neutral-yellow-smilie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-empty.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-empty.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-empty.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-empty.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-full.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-full.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-full.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-full.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-half.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-half.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-half.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-half.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-one-quarter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-one-quarter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-one-quarter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-one-quarter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-three-quarters.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-three-quarters.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-three-quarters.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-pies-three-quarters.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-positive-green-smilie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-positive-green-smilie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-positive-green-smilie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-positive-green-smilie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-positive-yellow-smilie.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-positive-yellow-smilie.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-positive-yellow-smilie.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-positive-yellow-smilie.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-shapes-circle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-shapes-circle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-shapes-circle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-shapes-circle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-shapes-triangle.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-shapes-triangle.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-shapes-triangle.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-shapes-triangle.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-empty.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-empty.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-empty.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-empty.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-half.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-half.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-half.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-half.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-one-quarter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-one-quarter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-one-quarter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-one-quarter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-three-quarters.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-three-quarters.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-three-quarters.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-squares-three-quarters.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-empty.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-empty.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-empty.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-empty.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-full.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-full.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-full.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-full.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-half.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-half.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-half.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-stars-half.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-check.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-check.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-check.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-check.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-cross.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-cross.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-cross.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-cross.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-exclamation-mark.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-exclamation-mark.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-exclamation-mark.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-symbols1-exclamation-mark.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-green.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-green.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-green.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-green.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-red.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-red.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-red.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-red.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-yellow.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-yellow.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-yellow.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-trafficlights-yellow.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-triangles-same.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-triangles-same.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-triangles-same.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-triangles-same.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-triangles-up.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-triangles-up.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/icon-set-triangles-up.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/icon-set-triangles-up.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/lc26049.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/lc26049.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/lc26049.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/lc26049.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/lftrgt.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/lftrgt.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/lftrgt.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/lftrgt.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou010.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou011.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou011.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou011.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou011.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou012.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou012.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou012.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou012.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou06.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou07.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou08.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/ou09.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/ou09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/paste_formats_only.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/paste_formats_only.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/paste_formats_only.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/paste_formats_only.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/paste_transpose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/paste_transpose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/paste_transpose.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/paste_transpose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/paste_values_formats.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/paste_values_formats.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/paste_values_formats.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/paste_values_formats.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/paste_values_only.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/paste_values_only.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/paste_values_only.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/paste_values_only.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/popup_select_current.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/popup_select_current.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/popup_select_current.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/popup_select_current.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/popup_unselect_current.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/popup_unselect_current.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/popup_unselect_current.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/popup_unselect_current.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sc26049.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sc26049.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sc26049.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sc26049.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sf01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sf01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sf01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sf01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sf02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sf02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sf02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sf02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_All_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_All_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_All_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_All_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_Double_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_Double_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_Double_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_Double_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Empty_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Empty_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Empty_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Empty_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_FourBorders_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_FourBorders_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_FourBorders_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_FourBorders_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Left_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Left_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Left_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Left_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_LeftAndRight_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_LeftAndRight_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_LeftAndRight_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_LeftAndRight_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Right_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Right_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Right_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Right_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_RightDiagonal_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_RightDiagonal_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_RightDiagonal_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_RightDiagonal_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Top_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Top_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Top_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_Top_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopAndBottom_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopAndBottom_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopAndBottom_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopAndBottom_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/fill_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/fill_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/fill_color.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/fill_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/Line_color.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/Line_color.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/sidebar/Line_color.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/sidebar/Line_color.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/topdown.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/topdown.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/topdown.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/topdown.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/xml_attribute.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/xml_attribute.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/xml_attribute.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/xml_attribute.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/xml_element_repeat.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/xml_element_repeat.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/xml_element_repeat.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/xml_element_repeat.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/xml_element.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/xml_element.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sc/res/xml_element.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sc/res/xml_element.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-box.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-box.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-box.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-box.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-checkerboard.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-checkerboard.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-checkerboard.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-checkerboard.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-comb.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-comb.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-comb.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-comb.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cube-turning.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cube-turning.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cube-turning.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cube-turning.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cut.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cut.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cut.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-cut.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-diagonal-squares.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-diagonal-squares.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-diagonal-squares.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-diagonal-squares.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-dissolve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-dissolve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-dissolve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-dissolve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-fade.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-fade.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-fade.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-fade.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-fall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-fall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-fall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-fall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-finedissolve.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-finedissolve.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-finedissolve.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-finedissolve.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-glitter.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-glitter.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-glitter.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-glitter.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-honeycomb.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-honeycomb.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-honeycomb.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-honeycomb.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-iris.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-iris.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-iris.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-iris.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-newsflash.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-newsflash.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-newsflash.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-newsflash.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-none.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-none.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-none.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-none.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-push.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-push.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-push.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-push.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-random-bars.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-random-bars.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-random-bars.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-random-bars.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-random.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-random.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-random.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-random.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-revolving-circles.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-revolving-circles.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-revolving-circles.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-revolving-circles.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-ripple.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-ripple.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-ripple.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-ripple.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-rochade.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-rochade.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-rochade.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-rochade.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-shape.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-shape.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-shape.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-shape.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-split.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-split.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-split.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-split.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-static.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-static.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-static.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-static.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-tile-flip.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-tile-flip.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-tile-flip.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-tile-flip.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turn-around.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turn-around.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turn-around.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turn-around.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turn-down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turn-down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turn-down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turn-down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turning-helix.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turning-helix.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turning-helix.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-turning-helix.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-uncover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-uncover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-uncover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-uncover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-venetian-blinds-3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-venetian-blinds-3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-venetian-blinds-3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-venetian-blinds-3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-venetian-blinds.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-venetian-blinds.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-venetian-blinds.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-venetian-blinds.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-vortex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-vortex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-vortex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-vortex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wedge.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wedge.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wedge.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wedge.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wheel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wheel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wheel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wheel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wipe.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wipe.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wipe.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/cmd/transition-wipe.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/chart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/chart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/chart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/chart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/click_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/click_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/click_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/click_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/del1bmp.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/del1bmp.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/del1bmp.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/del1bmp.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/delall.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/delall.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/delall.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/delall.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/docclose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/docclose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/docclose.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/docclose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/docopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/docopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/docopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/docopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/doctext.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/doctext.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/doctext.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/doctext.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/effect_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/effect_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/effect_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/effect_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/effectfade_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/effectfade_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/effectfade_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/effectfade_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/effectole_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/effectole_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/effectole_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/effectole_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/effectpath_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/effectpath_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/effectpath_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/effectpath_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/effectshape_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/effectshape_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/effectshape_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/effectshape_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/fade_effect_indicator.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/fade_effect_indicator.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/fade_effect_indicator.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/fade_effect_indicator.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh06.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilh09.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilh09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foiln01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foiln01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foiln01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foiln01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilnone.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilnone.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/foilnone.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/foilnone.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/get1obj.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/get1obj.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/get1obj.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/get1obj.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/getallob.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/getallob.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/getallob.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/getallob.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/hlplhorz.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/hlplhorz.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/hlplhorz.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/hlplhorz.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/hlplvert.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/hlplvert.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/hlplvert.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/hlplvert.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/hlppoint.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/hlppoint.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/hlppoint.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/hlppoint.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/image.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/image.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/image.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/image.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_empty.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_empty.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_empty.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_empty.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head02a.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head02a.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head02a.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head02a.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head02b.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head02b.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head02b.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head02b.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head03a.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head03a.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head03a.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head03a.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head03b.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head03b.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head03b.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head03b.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head03c.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head03c.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head03c.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head03c.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_head06.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_head06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_textonly.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_textonly.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_textonly.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_textonly.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_vertical01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_vertical01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_vertical01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_vertical01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_vertical02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_vertical02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/layout_vertical02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/layout_vertical02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/minimize_presi_80.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/minimize_presi_80.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/minimize_presi_80.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/minimize_presi_80.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/nv08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/nv08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/nv08.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/nv08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -8,4 +8,4 @@ /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/objects.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/objects.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/objects.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/objects.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/object.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/object.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/object.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/object.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/orgchart.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/orgchart.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/orgchart.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/orgchart.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/pageexcl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/pageexcl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/pageexcl.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/pageexcl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/pageobjs.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/pageobjs.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/pageobjs.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/pageobjs.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/pagobjex.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/pagobjex.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/pagobjex.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/pagobjex.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_large_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_large_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_large_hover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_large_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_large.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_small_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_small_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_small_hover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_small_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_small.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_chart_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_large_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_large_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_large_hover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_large_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_large.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_small_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_small_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_small_hover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_small_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_small.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_image_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_large_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_large_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_large_hover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_large_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_large.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_small_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_small_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_small_hover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_small_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_small.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_movie_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_large_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_large_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_large_hover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_large_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_large.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_small_hover.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_small_hover.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_small_hover.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_small_hover.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_small.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/placeholder_table_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/pointericon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/pointericon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/pointericon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/pointericon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottomLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottomLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottomLeft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottomLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottomRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottomRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottomRight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottomRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottom.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottom.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottom.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderBottom.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderLeft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderRight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTopLeft.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTopLeft.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTopLeft.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTopLeft.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTopRight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTopRight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTopRight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTopRight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTop.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTop.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTop.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-BorderTop.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextSelected.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonEffectNextSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonExitPresenterMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonExitPresenterMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonExitPresenterMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonExitPresenterMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonExitPresenterNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonExitPresenterNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonExitPresenterNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonExitPresenterNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameCenterMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameCenterMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameCenterMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameCenterMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameCenterNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameCenterNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameCenterNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameCenterNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameLeftMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameLeftMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameLeftMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameLeftMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameLeftNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameLeftNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameLeftNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameLeftNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameRightMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameRightMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameRightMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameRightMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameRightNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameRightNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameRightNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonFrameRightNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonHelpMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonHelpMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonHelpMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonHelpMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonHelpNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonHelpNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonHelpNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonHelpNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusMousOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusMousOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusMousOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusMousOver.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusSelected.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonMinusSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesSelected.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonNotesSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPauseTimerMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPauseTimerMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPauseTimerMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPauseTimerMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPauseTimerNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPauseTimerNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPauseTimerNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPauseTimerNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusMousOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusMousOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusMousOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusMousOver.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusSelected.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonPlusSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonRestartTimerMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonRestartTimerMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonRestartTimerMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonRestartTimerMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonRestartTimerNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonRestartTimerNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonRestartTimerNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonRestartTimerNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonResumeTimerMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonResumeTimerMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonResumeTimerMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonResumeTimerMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonResumeTimerNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonResumeTimerNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonResumeTimerNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonResumeTimerNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousSelected.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlidePreviousSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterSelected.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterSelected.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterSelected.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSlideSorterSelected.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSwitchMonitorMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSwitchMonitorNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSwitchMonitorNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSwitchMonitorNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ButtonSwitchMonitorNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowDownNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarArrowUpNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarPagerMiddleMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarPagerMiddleNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbBottomNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbMiddleNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopDisabled.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopDisabled.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopDisabled.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopDisabled.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopMouseOver.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopNormal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopNormal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopNormal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/presenterscreen-ScrollbarThumbTopNormal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/sf01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/sf01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/sf01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/sf01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,6 +1,6 @@ - + /&amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/sf02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/sf02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/sf02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/sf02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/slide_sorter_hide_slide_overlay.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/slide_sorter_hide_slide_overlay.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/slide_sorter_hide_slide_overlay.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/slide_sorter_hide_slide_overlay.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/table.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/table.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sd/res/table.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sd/res/table.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_calc_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_draw_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_impress_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_math_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_math_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_writer_doc-p.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/actiontemplates017.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/actiontemplates017.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/actiontemplates017.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/actiontemplates017.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/actionview029.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/actionview029.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/actionview029.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/actionview029.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/chevron.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/chevron.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/chevron.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/chevron.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/grip.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/grip.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/grip.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/grip.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/hlpbookclosed.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/hlpbookclosed.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/hlpbookclosed.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/hlpbookclosed.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/hlpbookopen.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/hlpbookopen.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/hlpbookopen.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/hlpbookopen.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/indexoff_big.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/indexoff_big.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/indexoff_big.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/indexoff_big.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/indexoff_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/indexoff_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/indexoff_small.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/indexoff_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/indexon_big.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/indexon_big.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/indexon_big.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/indexon_big.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/indexon_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/indexon_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/indexon_small.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/indexon_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/menu.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/menu.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/menu.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/menu.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/symphony/morebutton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/symphony/morebutton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/symphony/morebutton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/symphony/morebutton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/symphony/open_more.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/symphony/open_more.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sfx2/res/symphony/open_more.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sfx2/res/symphony/open_more.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed07.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/ed08.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/ed08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/info_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/info_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/info_large.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/info_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/info_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/info_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/info_small.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/info_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/list_add.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/list_add.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/list_add.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/list_add.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/triangle_down.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/triangle_down.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/triangle_down.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/triangle_down.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/triangle_right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/triangle_right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/triangle_right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/triangle_right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/up_large.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/up_large.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/up_large.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/up_large.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/up_small.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/up_small.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svtools/res/up_small.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svtools/res/up_small.svg 2023-03-24 16:53:38.000000000 +0000 @@ -2,4 +2,4 @@ -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/adding-selection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/adding-selection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/adding-selection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ +<<<<<<< HEAD (c8a033 Resolves: tdf#153924 handle non-numeric and error values in ) +======= + +>>>>>>> CHANGE (e77805 tdf#153465 Simplify Sukapura's light variant to make easier ) diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/block-selection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/block-selection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/block-selection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ +<<<<<<< HEAD (c8a033 Resolves: tdf#153924 handle non-numeric and error values in ) +======= + +>>>>>>> CHANGE (e77805 tdf#153465 Simplify Sukapura's light variant to make easier ) diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_all_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_all_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_all_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_all_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_diag_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_diag_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_diag_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_diag_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_l_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_l_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_l_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_l_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_lr_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_lr_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_lr_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_lr_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_none_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_none_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_none_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_none_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_tb_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_tb_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/border_cell_tb_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/border_cell_tb_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/cd02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/cd02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/cd02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/cd02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/cropmarkers.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/cropmarkers.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/cropmarkers.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/cropmarkers.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/dimlit_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/dimlit_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/dimlit_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/dimlit_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directioneast_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directioneast_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directioneast_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directioneast_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionnorth_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionnorth_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionnorth_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionnorth_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionnortheast_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionnortheast_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionnortheast_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionnortheast_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionnorthwest_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionnorthwest_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionnorthwest_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionnorthwest_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionsouth_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionsouth_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionsouth_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionsouth_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionsoutheast_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionsoutheast_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionsoutheast_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionsoutheast_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionsouthwest_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionsouthwest_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionsouthwest_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionsouthwest_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionstraight_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionstraight_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionstraight_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionstraight_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionwest_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionwest_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/directionwest_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/directionwest_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/doc_modified_feedback.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/doc_modified_feedback.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/doc_modified_feedback.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extending-selection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extending-selection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extending-selection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ +<<<<<<< HEAD (c8a033 Resolves: tdf#153924 handle non-numeric and error values in ) +======= + +>>>>>>> CHANGE (e77805 tdf#153465 Simplify Sukapura's light variant to make easier ) diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusion05inch_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusion05inch_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusion05inch_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusion05inch_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusion0inch_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusion0inch_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusion0inch_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusion0inch_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusion1inch_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusion1inch_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusion1inch_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusion1inch_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusion2inch_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusion2inch_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusion2inch_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusion2inch_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusion4inch_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusion4inch_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusion4inch_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusion4inch_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusioninfinity_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusioninfinity_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/extrusioninfinity_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/extrusioninfinity_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr010.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr011.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr011.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr011.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr011.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr012.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr012.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr012.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr012.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr013.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr013.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr013.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr013.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr014.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr014.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr014.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr014.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr015.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr015.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr015.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr015.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr06.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr07.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr08.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fr09.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fr09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw010.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw011.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw011.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw011.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw011.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw012.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw012.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw012.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw012.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw013.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw013.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw013.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw013.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw014.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw014.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw014.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw014.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw015.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw015.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw015.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw015.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw016.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw016.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw016.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw016.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw017.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw017.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw017.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw017.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw018.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw018.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw018.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw018.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw019.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw019.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw019.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw019.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw020.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw020.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw020.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw020.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw021.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw021.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw021.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw021.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fw06.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fw06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbhcirc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbhcirc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbhcirc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbhcirc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbotarc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbotarc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbotarc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbotarc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn3.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwbuttn4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwlftarc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwlftarc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwlftarc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwlftarc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwlhcirc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwlhcirc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwlhcirc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwlhcirc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwrgtarc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwrgtarc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwrgtarc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwrgtarc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwrhcirc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwrhcirc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwrhcirc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwrhcirc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwtoparc.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwtoparc.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/fwtoparc.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/fwtoparc.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galdefl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galdefl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galdefl.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galdefl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galdefs.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galdefs.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galdefs.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galdefs.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galdetail.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galdetail.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galdetail.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galdetail.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galicon.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galicon.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galicon.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galicon.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galmedia.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galmedia.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galmedia.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galmedia.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galnorl.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galnorl.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galnorl.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galnorl.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galnors.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galnors.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galnors.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galnors.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galrdol.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galrdol.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galrdol.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galrdol.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galrdos.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galrdos.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/galrdos.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/galrdos.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -10,4 +10,4 @@ /&amp;amp;amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/id016.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/id016.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/id016.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/id016.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/invert3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/invert3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/invert3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/invert3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/legtyp4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/legtyp4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/legtyp4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/legtyp4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lght2sid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lght2sid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lght2sid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lght2sid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottom_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottom_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottom_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottom_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottomleft_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottomleft_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottomleft_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottomleft_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottomright_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottomright_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottomright_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfrombottomright_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromfront_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromfront_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromfront_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromfront_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromleft_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromleft_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromleft_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromleft_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromright_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromright_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromright_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromright_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromtop_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromtop_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromtop_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromtop_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromtopleft_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromtopleft_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromtopleft_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromtopleft_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromtopright_22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromtopright_22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lightfromtopright_22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lightfromtopright_22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lighton.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lighton.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lighton.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lighton.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/light.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/light.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/light.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/light.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&gt; \ No newline at end of file +/&gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/listview.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/listview.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/listview.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/listview.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lo01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lo01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lo01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lo01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lo02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lo02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lo02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lo02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lo03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lo03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/lo03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/lo03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/markers.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/markers.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/markers.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/markers.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/material.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/material.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/material.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/material.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/matte_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/matte_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/matte_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/matte_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/metal_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/metal_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/metal_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/metal_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/normallit_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/normallit_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/normallit_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/normallit_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pageshadow35x35.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pageshadow35x35.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pageshadow35x35.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pageshadow35x35.svg 2023-03-24 16:53:38.000000000 +0000 @@ -2,4 +2,4 @@ /> - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/parallel.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/parallel.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/parallel.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/parallel.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/plastic_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/plastic_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/plastic_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/plastic_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr010.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr011.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr011.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr011.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr011.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr012.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr012.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr012.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr012.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr013.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr013.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr013.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr013.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr014.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr014.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr014.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr014.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr015.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr015.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr015.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr015.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr016.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr016.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr016.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr016.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr017.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr017.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr017.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr017.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr018.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr018.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr018.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr018.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr019.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr019.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr019.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr019.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr020.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr020.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr020.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr020.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr021.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr021.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr021.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr021.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr06.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr08.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/pr09.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/pr09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/rectbtns.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/rectbtns.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/rectbtns.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/rectbtns.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/replac3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/replac3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/replac3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/replac3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/selection_10x22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/selection_10x22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/selection_10x22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/selection_10x22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/sh01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/sh01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/sh01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/sh01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/sh02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/sh02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/sh02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/sh02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/sh03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/sh03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/sh03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/sh03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/sh04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/sh04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/sh04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/sh04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/sh05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/sh05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/sh05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/sh05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow3d.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow3d.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow3d.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow3d.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow_bottom_left_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow_bottom_left_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow_bottom_left_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow_bottom_left_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow_bottom_right_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow_bottom_right_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow_bottom_right_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow_bottom_right_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow_none_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow_none_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow_none_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow_none_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow_top_left_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow_top_left_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow_top_left_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow_top_left_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow_top_right_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow_top_right_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/shadow_top_right_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/shadow_top_right_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/slidezoombutton_10.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/slidezoombutton_10.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/slidezoombutton_10.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/slidezoombutton_10.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/slidezoomin_10.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/slidezoomin_10.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/slidezoomin_10.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/slidezoomin_10.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/slidezoomout_10.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/slidezoomout_10.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/slidezoomout_10.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/slidezoomout_10.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/standard-selection.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/standard-selection.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/standard-selection.svg 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,4 @@ +<<<<<<< HEAD (c8a033 Resolves: tdf#153924 handle non-numeric and error values in ) +======= + +>>>>>>> CHANGE (e77805 tdf#153465 Simplify Sukapura's light variant to make easier ) diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/axial.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/axial.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/axial.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/axial.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/ellipsoid.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/ellipsoid.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/ellipsoid.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/ellipsoid.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent3.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/Indent4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/last_custom_common_grey.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/last_custom_common_grey.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/last_custom_common_grey.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/last_custom_common_grey.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/last_custom_common.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/last_custom_common.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/last_custom_common.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/last_custom_common.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line10.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line10.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line10.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line10.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line3.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line5.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line7.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line7.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line7.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line7.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line9.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line9.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/line9.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/line9.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/linear.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/linear.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/linear.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/linear.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/Quadratic.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/Quadratic.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/Quadratic.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/Quadratic.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/radial.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/radial.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/radial.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/radial.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/rotate_left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/rotate_left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/rotate_left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/rotate_left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/rotate_right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/rotate_right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/rotate_right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/rotate_right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line10.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line10.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line10.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line10.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line3.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line5.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line7.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line7.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line7.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line7.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line9.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line9.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line9.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/selected-line9.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_loose_s.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_loose_s.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_loose_s.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_loose_s.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_loose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_loose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_loose.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_loose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_normal_s.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_normal_s.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_normal_s.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_normal_s.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_normal.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_normal.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_normal.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_normal.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_tight_s.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_tight_s.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_tight_s.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_tight_s.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_tight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_tight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_tight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_tight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_loose_s.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_loose_s.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_loose_s.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_loose_s.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_loose.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_loose.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_loose.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_loose.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_tight_s.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_tight_s.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_tight_s.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_tight_s.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_tight.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_tight.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_tight.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/spacing_very_tight.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + -/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/Square.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/Square.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/Square.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/Square.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width3.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width5.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width7.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width7.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width7.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width7.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/symphony/width8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/symphony/width8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/wireframe_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/wireframe_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/wireframe_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/wireframe_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/zetlhor2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/zetlhor2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/zetlhor2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/zetlhor2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/zetlver2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/zetlver2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/zetlver2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/zetlver2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/zoom_page_statusbar.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/zoom_page_statusbar.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/svx/res/zoom_page_statusbar.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/svx/res/zoom_page_statusbar.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/all_left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/all_left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/all_left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/all_left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/all_right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/all_right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/all_right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/all_right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/doublepage_10x22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/doublepage_10x22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/doublepage_10x22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/doublepage_10x22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/doublepage_a_10x22.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/doublepage_a_10x22.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/doublepage_a_10x22.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/emptypage_10x14.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/emptypage_10x14.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/emptypage_10x14.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/emptypage_10x14.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/emptypage_a_10x14.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/emptypage_a_10x14.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/emptypage_a_10x14.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhc_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhc_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhc_l.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhc_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhc_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhc_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhc_u.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhc_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhl_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhl_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhl_l.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhl_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhl_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhl_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhl_u.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhl_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhr_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhr_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhr_l.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhr_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhr_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhr_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envhr_u.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envhr_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvc_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvc_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvc_l.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvc_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvc_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvc_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvc_u.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvc_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvl_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvl_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvl_l.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvl_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvl_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvl_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvl_u.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvl_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvr_l.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvr_l.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvr_l.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvr_l.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvr_u.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvr_u.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/envvr_u.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/envvr_u.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/nc20000.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/nc20000.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/nc20000.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/nc20000.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/one_left.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/one_left.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/one_left.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/one_left.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/one_right.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/one_right.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/one_right.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/one_right.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/re01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/re01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/re01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/re01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/re02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/re02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/re02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/re02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/re03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/re03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/re03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/re03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1 @@ - - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/re04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/re04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/re04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/re04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,2 +1 @@ - -/&amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/redline_fmtcollset.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/redline_fmtcollset.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/redline_fmtcollset.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/redline_fmtcollset.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/redline_formatted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/redline_formatted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/redline_formatted.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/redline_formatted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/redline_inserted.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/redline_inserted.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/redline_inserted.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/redline_inserted.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/redline_tablechg.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/redline_tablechg.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/redline_tablechg.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/redline_tablechg.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sc20234.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sc20234.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sc20234.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sc20234.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,3 +1,3 @@ - + -/&amp;gt; \ No newline at end of file +/&amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sc20236.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sc20236.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sc20236.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sc20236.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sc20245.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sc20245.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sc20245.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sc20245.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,8 +1,8 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sc20246.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sc20246.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sc20246.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sc20246.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sc20248.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sc20248.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sc20248.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sc20248.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -6,4 +6,4 @@ /&amp;amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sf01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sf01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sf01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sf01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,7 +1,7 @@ - + /&amp;amp;amp;gt; - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sf03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sf03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sf03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sf03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sf05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sf05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sf05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sf05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column1_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column1_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column1_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column1_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column2_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column2_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column2_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column2_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column3_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column3_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column3_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column3_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columncopy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columncopy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columncopy_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columncopy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_1_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_1_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_1_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_1_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_2_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_2_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_2_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_2_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_3_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_3_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_3_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_3_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_copy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_copy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_copy_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_copy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columnleft_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columnleft_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columnleft_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columnleft_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_left_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_left_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_left_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_left_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_right_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_right_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_right_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/column_L_right_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columnright_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columnright_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columnright_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/columnright_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatcopy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatcopy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatcopy_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatcopy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_copy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_copy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_copy_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_copy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_wide_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_wide_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_wide_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/format_L_wide_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatmirror_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatmirror_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatmirror_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatmirror_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatnarrow_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatnarrow_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatnarrow_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatnarrow_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatnormal_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatnormal_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatnormal_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatnormal_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatwide_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatwide_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatwide_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/formatwide_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/Landscapecopy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/portraitcopy_24x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/portraitcopy_24x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/portraitcopy_24x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sidebar/pageproppanel/portraitcopy_24x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sr20012.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sr20012.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sr20012.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sr20012.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sr20018.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sr20018.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sr20018.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sr20018.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ - + -/&amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sr20019.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sr20019.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/sr20019.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/sr20019.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1,4 +1,4 @@ -/&amp;amp;amp;amp;amp;gt; \ No newline at end of file +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/twopages_10x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/twopages_10x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/twopages_10x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/twopages_10x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/twopages_a_10x24.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/twopages_a_10x24.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/twopages_a_10x24.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr010.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr010.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr010.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr010.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr011.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr011.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr011.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr011.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr01.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr01.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr01.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr01.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr02.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr02.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr02.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr02.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr03.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr03.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr03.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr03.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr04.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr04.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr04.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr04.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr05.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr05.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr05.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr05.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr06.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr06.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr06.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr06.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr07.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr07.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr07.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr07.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr08.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr08.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr08.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr08.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr09.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr09.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/sw/res/wr09.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/sw/res/wr09.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check3.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check5.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check7.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check7.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check7.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check7.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check8.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check8.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check8.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check8.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check9.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check9.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/check9.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/check9.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/collate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/collate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/collate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/collate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/errorbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/errorbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/errorbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/errorbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/fatcross.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/fatcross.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/fatcross.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/fatcross.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/infobox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/infobox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/infobox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/infobox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/MergeEmptyHidden.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/MergeEmptyHidden.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/MergeEmptyHidden.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/MergeEmptyHidden.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/MergeFirstCell.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/MergeFirstCell.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/MergeFirstCell.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/MergeFirstCell.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/MergeKeepHidden.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/MergeKeepHidden.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/MergeKeepHidden.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/MergeKeepHidden.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/ncollate.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/ncollate.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/ncollate.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/ncollate.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/querybox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/querybox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/querybox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/querybox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio1.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio1.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio1.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio1.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio2.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio2.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio2.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio2.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio3.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio3.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio3.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio3.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio4.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio4.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio4.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio4.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio5.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio5.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio5.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio5.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio6.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio6.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/radio6.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/radio6.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/successbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/successbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/successbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/successbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/warningbox.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/warningbox.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/vcl/res/warningbox.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/vcl/res/warningbox.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/formarrangefree_42.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/formarrangefree_42.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/formarrangefree_42.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/formarrangefree_42.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/formarrangelistside_42.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/formarrangelistside_42.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/formarrangelistside_42.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/formarrangelistside_42.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/formarrangelisttop_42.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/formarrangelisttop_42.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/formarrangelisttop_42.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/formarrangelisttop_42.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/formarrangetable_42.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/formarrangetable_42.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/formarrangetable_42.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/formarrangetable_42.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/landscape_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/landscape_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/landscape_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/landscape_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/portrait_32.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/portrait_32.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/wizards/res/portrait_32.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/wizards/res/portrait_32.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/xmlsecurity/res/certificate_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/xmlsecurity/res/certificate_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/xmlsecurity/res/certificate_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/xmlsecurity/res/certificate_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/xmlsecurity/res/certificate_40x56.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/xmlsecurity/res/certificate_40x56.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/xmlsecurity/res/certificate_40x56.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/xmlsecurity/res/certificate_40x56.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,624 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/xmlsecurity/res/notcertificate_16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/xmlsecurity/res/notcertificate_16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/xmlsecurity/res/notcertificate_16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/xmlsecurity/res/notcertificate_16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/xmlsecurity/res/notcertificate_40x56.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/xmlsecurity/res/notcertificate_40x56.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/xmlsecurity/res/notcertificate_40x56.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/xmlsecurity/res/notcertificate_40x56.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1,658 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/xmlsecurity/res/signet_11x16.svg libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/xmlsecurity/res/signet_11x16.svg --- libreoffice-7.5.1~rc2/icon-themes/sukapura_svg/xmlsecurity/res/signet_11x16.svg 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/icon-themes/sukapura_svg/xmlsecurity/res/signet_11x16.svg 2023-03-24 16:53:38.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/include/basic/sbmod.hxx libreoffice-7.5.2~rc2/include/basic/sbmod.hxx --- libreoffice-7.5.1~rc2/include/basic/sbmod.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/basic/sbmod.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -66,7 +66,8 @@ std::unique_ptr pImage; // the Image SbiBreakpoints* pBreaks; // Breakpoints std::unique_ptr pClassData; - bool mbVBACompat; + bool mbVBASupport; // Option VBASupport + bool mbCompat; // Option Compatible sal_Int32 mnType; SbxObjectRef pDocObject; // an impl object ( used by Document Modules ) bool bIsProxyModule; @@ -95,7 +96,7 @@ virtual ~SbModule() override; public: SBX_DECL_PERSIST_NODATA(SBXID_BASICMOD,2); - SbModule( const OUString&, bool bCompat = false ); + SbModule( const OUString&, bool bVBASupport = false ); SAL_DLLPRIVATE virtual void SetParent( SbxObject* ) override; SAL_DLLPRIVATE virtual void Clear() override; @@ -120,8 +121,9 @@ SAL_DLLPRIVATE bool ExceedsLegacyModuleSize(); SAL_DLLPRIVATE void fixUpMethodStart( bool bCvtToLegacy, SbiImage* pImg = nullptr ) const; SAL_DLLPRIVATE bool HasExeCode(); - bool IsVBACompat() const { return mbVBACompat;} - SAL_DLLPRIVATE void SetVBACompat( bool bCompat ); + bool IsVBASupport() const { return mbVBASupport; } + SAL_DLLPRIVATE void SetVBASupport( bool bSupport ); + bool IsCompatible() const { return mbCompat; } sal_Int32 GetModuleType() const { return mnType; } void SetModuleType( sal_Int32 nType ) { mnType = nType; } bool isProxyModule() const { return bIsProxyModule; } diff -Nru libreoffice-7.5.1~rc2/include/basic/sbxobj.hxx libreoffice-7.5.2~rc2/include/basic/sbxobj.hxx --- libreoffice-7.5.1~rc2/include/basic/sbxobj.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/basic/sbxobj.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -78,6 +78,9 @@ SbxArray* GetObjects() { return pObjs.get(); } // Debugging void Dump( SvStream&, bool bDumpAll ); + +private: + bool IsModuleCompatible() const; // Module's Option Compatible }; #endif // INCLUDED_BASIC_SBXOBJ_HXX diff -Nru libreoffice-7.5.1~rc2/include/formula/tokenarray.hxx libreoffice-7.5.2~rc2/include/formula/tokenarray.hxx --- libreoffice-7.5.1~rc2/include/formula/tokenarray.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/formula/tokenarray.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -430,6 +430,11 @@ example OOXML. */ bool IsRecalcModeMustAfterImport() const { return (nMode & ScRecalcMode::EMask) <= ScRecalcMode::ONLOAD_ONCE; } + void ClearRecalcModeMustAfterImport() + { + if (IsRecalcModeMustAfterImport() && !IsRecalcModeAlways()) + SetExclusiveRecalcModeNormal(); + } /** Get OpCode of the most outer function */ inline OpCode GetOuterFuncOpCode() const; diff -Nru libreoffice-7.5.1~rc2/include/oox/drawingml/shape.hxx libreoffice-7.5.2~rc2/include/oox/drawingml/shape.hxx --- libreoffice-7.5.1~rc2/include/oox/drawingml/shape.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/oox/drawingml/shape.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -137,6 +137,7 @@ CustomShapePropertiesPtr& getCustomShapeProperties(){ return mpCustomShapePropertiesPtr; } OUString& getConnectorName() { return msConnectorName; } + std::vector& getConnectorAdjustments() { return maConnectorAdjustmentList; }; ConnectorShapePropertiesList& getConnectorShapeProperties() { return maConnectorShapePropertiesList; } void setConnectorShape(bool bConnector) { mbConnector = bConnector; } bool isConnectorShape() const { return mbConnector; } @@ -330,6 +331,8 @@ css::awt::Size maChSize; // only used for group shapes css::awt::Point maChPosition; // only used for group shapes + std::vector maConnectorAdjustmentList; // only used for connector shapes + TextBodyPtr mpTextBody; LinePropertiesPtr mpLinePropertiesPtr; LinePropertiesPtr mpShapeRefLinePropPtr; diff -Nru libreoffice-7.5.1~rc2/include/svx/AccessibilityCheckDialog.hxx libreoffice-7.5.2~rc2/include/svx/AccessibilityCheckDialog.hxx --- libreoffice-7.5.1~rc2/include/svx/AccessibilityCheckDialog.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/svx/AccessibilityCheckDialog.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -45,6 +45,7 @@ std::vector> m_aAccessibilityCheckEntries; // Controls + std::unique_ptr m_xScrolledWindow; std::unique_ptr m_xAccessibilityCheckBox; std::unique_ptr m_xRescanBtn; diff -Nru libreoffice-7.5.1~rc2/include/svx/fillctrl.hxx libreoffice-7.5.2~rc2/include/svx/fillctrl.hxx --- libreoffice-7.5.1~rc2/include/svx/fillctrl.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/svx/fillctrl.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -95,6 +95,7 @@ void SetOptimalSize(); virtual void DataChanged(const DataChangedEvent& rDCEvt) override; + virtual void GetFocus() override; static void ReleaseFocus_Impl(); diff -Nru libreoffice-7.5.1~rc2/include/svx/svdmodel.hxx libreoffice-7.5.2~rc2/include/svx/svdmodel.hxx --- libreoffice-7.5.1~rc2/include/svx/svdmodel.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/svx/svdmodel.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -579,6 +579,10 @@ void SetLegacySingleLineFontwork(bool bEnabled); bool IsLegacySingleLineFontwork() const; + // tdf#149756 compatibility flag + void SetConnectorUseSnapRect(bool bEnabled); + bool IsConnectorUseSnapRect() const; + void ReformatAllTextObjects(); std::unique_ptr createOutliner( OutlinerMode nOutlinerMode ); diff -Nru libreoffice-7.5.1~rc2/include/unotest/macros_test.hxx libreoffice-7.5.2~rc2/include/unotest/macros_test.hxx --- libreoffice-7.5.1~rc2/include/unotest/macros_test.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/unotest/macros_test.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -20,6 +20,7 @@ #include #include +#include #include struct TestMacroInfo @@ -86,7 +87,7 @@ const css::uno::Sequence& rExtra_args = css::uno::Sequence()); - static void + static css::uno::Any dispatchCommand(const css::uno::Reference& xComponent, const OUString& rCommand, const css::uno::Sequence& rPropertyValues); diff -Nru libreoffice-7.5.1~rc2/include/vcl/ctrl.hxx libreoffice-7.5.2~rc2/include/vcl/ctrl.hxx --- libreoffice-7.5.1~rc2/include/vcl/ctrl.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/vcl/ctrl.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -151,6 +151,7 @@ virtual void ApplySettings(vcl::RenderContext& rRenderContext) override; + virtual bool FocusWindowBelongsToControl(const vcl::Window* pFocusWin) const; public: SAL_DLLPRIVATE void ImplClearLayoutData() const; /** draws a frame around the give rectangle, onto the given device diff -Nru libreoffice-7.5.1~rc2/include/vcl/outdev.hxx libreoffice-7.5.2~rc2/include/vcl/outdev.hxx --- libreoffice-7.5.1~rc2/include/vcl/outdev.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/vcl/outdev.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -758,7 +758,7 @@ SAL_DLLPRIVATE void ImplDrawPolyPolygonWithB2DPolyPolygon(const basegfx::B2DPolyPolygon& rB2DPolyPoly); ///@} - SAL_DLLPRIVATE void ImplDrawWaveLineBezier(tools::Long nStartX, tools::Long nStartY, tools::Long nEndX, tools::Long nEndY, tools::Long nWaveHeight, double fOrientation, tools::Long nLineWidth); + SAL_DLLPRIVATE void ImplDrawWaveLineBezier(tools::Long nStartX, tools::Long nStartY, tools::Long nEndX, tools::Long nEndY, tools::Long nWaveHeight, Degree10 nOrientation, tools::Long nLineWidth); /** @name Curved shape functions diff -Nru libreoffice-7.5.1~rc2/include/vcl/toolkit/calendar.hxx libreoffice-7.5.2~rc2/include/vcl/toolkit/calendar.hxx --- libreoffice-7.5.1~rc2/include/vcl/toolkit/calendar.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/vcl/toolkit/calendar.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -93,6 +93,7 @@ private: virtual void StateChanged( StateChangedType nStateChange ) override; + virtual bool FocusWindowBelongsToControl(const vcl::Window* pFocusWin) const override; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.5.1~rc2/include/vcl/toolkit/field.hxx libreoffice-7.5.2~rc2/include/vcl/toolkit/field.hxx --- libreoffice-7.5.1~rc2/include/vcl/toolkit/field.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/vcl/toolkit/field.hxx 2023-03-24 16:53:38.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.5.1~rc2/include/vcl/wizardmachine.hxx libreoffice-7.5.2~rc2/include/vcl/wizardmachine.hxx --- libreoffice-7.5.1~rc2/include/vcl/wizardmachine.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/include/vcl/wizardmachine.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -302,6 +302,9 @@ */ void getStateHistory(std::vector& out_rHistory); + virtual OString getPageIdentForState(WizardTypes::WizardState nState) const; + virtual WizardTypes::WizardState getStateFromPageIdent(const OString& rIdent) const; + public: class AccessGuard { diff -Nru libreoffice-7.5.1~rc2/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx libreoffice-7.5.2~rc2/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx --- libreoffice-7.5.1~rc2/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -41,6 +41,7 @@ #include #include #include +#include using namespace osl; using namespace com::sun::star; @@ -73,6 +74,20 @@ Sequence aProperties{ comphelper::makePropertyValue("LineColor", aColor) }; return aProperties; } + +OString encodeTextForLanguageTool(const OUString& text) +{ + // Let's be a bit conservative. I don't find a good description what needs encoding (and in + // which way) at https://languagetool.org/http-api/; the "Try it out!" function shows that + // different cases are handled differently by the demo; some percent-encode the UTF-8 + // representation, like %D0%90 (for cyrillic А); some turn into entities like ! (for + // exclamation mark !); some other to things like \u0027 (for apostrophe '). + static constexpr auto myCharClass + = rtl::createUriCharClass("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"); + return OUStringToOString( + rtl::Uri::encode(text, myCharClass.data(), rtl_UriEncodeStrict, RTL_TEXTENCODING_UTF8), + RTL_TEXTENCODING_ASCII_US); +} } LanguageToolGrammarChecker::LanguageToolGrammarChecker() @@ -215,18 +230,17 @@ xRes.nBehindEndOfSentencePosition = std::min(xRes.nStartOfNextSentencePosition, aText.getLength()); - auto cachedResult = mCachedResults.find(aText); - if (cachedResult != mCachedResults.end()) + OString langTag(LanguageTag::convertToBcp47(aLocale, false).toUtf8()); + OString postData = "text=" + encodeTextForLanguageTool(aText) + "&language=" + langTag; + + if (auto cachedResult = mCachedResults.find(postData); cachedResult != mCachedResults.end()) { xRes.aErrors = cachedResult->second; return xRes; } tools::Long http_code = 0; - OUString langTag(aLocale.Language + "-" + aLocale.Country); - OString postData(OUStringToOString(Concat2View("text=" + aText + "&language=" + langTag), - RTL_TEXTENCODING_UTF8)); - const std::string response_body + std::string response_body = makeHttpRequest(checkerURL, HTTP_METHOD::HTTP_POST, postData, http_code); if (http_code != 200) @@ -241,8 +255,7 @@ parseProofreadingJSONResponse(xRes, response_body); // cache the result - mCachedResults.insert( - std::pair>(aText, xRes.aErrors)); + mCachedResults.insert(std::make_pair(postData, xRes.aErrors)); return xRes; } diff -Nru libreoffice-7.5.1~rc2/lingucomponent/source/spellcheck/languagetool/languagetoolimp.hxx libreoffice-7.5.2~rc2/lingucomponent/source/spellcheck/languagetool/languagetoolimp.hxx --- libreoffice-7.5.1~rc2/lingucomponent/source/spellcheck/languagetool/languagetoolimp.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/lingucomponent/source/spellcheck/languagetool/languagetoolimp.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -47,7 +47,7 @@ css::lang::XServiceInfo, css::lang::XServiceDisplayName> { css::uno::Sequence m_aSuppLocales; - o3tl::lru_map> + o3tl::lru_map> mCachedResults; LanguageToolGrammarChecker(const LanguageToolGrammarChecker&) = delete; LanguageToolGrammarChecker& operator=(const LanguageToolGrammarChecker&) = delete; diff -Nru libreoffice-7.5.1~rc2/linguistic/source/gciterator.cxx libreoffice-7.5.2~rc2/linguistic/source/gciterator.cxx --- libreoffice-7.5.1~rc2/linguistic/source/gciterator.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/linguistic/source/gciterator.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -488,8 +488,30 @@ } +std::pair> +GrammarCheckingIterator::getServiceForLocale(const lang::Locale& rLocale) const +{ + if (!rLocale.Language.isEmpty()) + { + const OUString sBcp47 = LanguageTag::convertToBcp47(rLocale, false); + GCImplNames_t::const_iterator aLangIt(m_aGCImplNamesByLang.find(sBcp47)); + if (aLangIt != m_aGCImplNamesByLang.end()) + return { aLangIt->second, {} }; + + for (const auto& sFallbackBcp47 : LanguageTag(rLocale).getFallbackStrings(false)) + { + aLangIt = m_aGCImplNamesByLang.find(sFallbackBcp47); + if (aLangIt != m_aGCImplNamesByLang.end()) + return { aLangIt->second, sFallbackBcp47 }; + } + } + + return {}; +} + + uno::Reference< linguistic2::XProofreader > GrammarCheckingIterator::GetGrammarChecker( - const lang::Locale &rLocale ) + lang::Locale &rLocale ) { uno::Reference< linguistic2::XProofreader > xRes; @@ -503,11 +525,11 @@ m_bGCServicesChecked = true; } - const LanguageType nLang = LanguageTag::convertToLanguageType( rLocale, false); - GCImplNames_t::const_iterator aLangIt( m_aGCImplNamesByLang.find( nLang ) ); - if (aLangIt != m_aGCImplNamesByLang.end()) // matching configured language found? + if (const auto& [aSvcImplName, oFallbackBcp47] = getServiceForLocale(rLocale); + !aSvcImplName.isEmpty()) // matching configured language found? { - OUString aSvcImplName( aLangIt->second ); + if (oFallbackBcp47) + rLocale = LanguageTag::convertToLocale(*oFallbackBcp47, false); GCReferences_t::const_iterator aImplNameIt( m_aGCReferencesByService.find( aSvcImplName ) ); if (aImplNameIt != m_aGCReferencesByService.end()) // matching impl name found? { @@ -1086,8 +1108,7 @@ { // only the first entry is used, there should be only one grammar checker per language const OUString aImplName( aImplNames[0] ); - const LanguageType nLang = LanguageTag::convertToLanguageType( rElementName ); - aTmpGCImplNamesByLang[ nLang ] = aImplName; + aTmpGCImplNamesByLang[rElementName] = aImplName; } } else @@ -1135,17 +1156,17 @@ { ::osl::Guard< ::osl::Mutex > aGuard( MyMutex() ); - LanguageType nLanguage = LinguLocaleToLanguage( rLocale ); + OUString sBcp47 = LanguageTag::convertToBcp47(rLocale, false); OUString aImplName; if (rSvcImplNames.hasElements()) aImplName = rSvcImplNames[0]; // there is only one grammar checker per language - if (!LinguIsUnspecified(nLanguage) && nLanguage != LANGUAGE_DONTKNOW) + if (!LinguIsUnspecified(sBcp47) && !sBcp47.isEmpty()) { if (!aImplName.isEmpty()) - m_aGCImplNamesByLang[ nLanguage ] = aImplName; + m_aGCImplNamesByLang[sBcp47] = aImplName; else - m_aGCImplNamesByLang.erase( nLanguage ); + m_aGCImplNamesByLang.erase(sBcp47); } } @@ -1155,11 +1176,7 @@ { ::osl::Guard< ::osl::Mutex > aGuard( MyMutex() ); - OUString aImplName; // there is only one grammar checker per language - LanguageType nLang = LinguLocaleToLanguage( rLocale ); - GCImplNames_t::const_iterator aIt( m_aGCImplNamesByLang.find( nLang ) ); - if (aIt != m_aGCImplNamesByLang.end()) - aImplName = aIt->second; + const OUString aImplName = getServiceForLocale(rLocale).first; // there is only one grammar checker per language if (!aImplName.isEmpty()) return { aImplName }; diff -Nru libreoffice-7.5.1~rc2/linguistic/source/gciterator.hxx libreoffice-7.5.2~rc2/linguistic/source/gciterator.hxx --- libreoffice-7.5.1~rc2/linguistic/source/gciterator.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/linguistic/source/gciterator.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -40,6 +40,8 @@ #include #include +#include +#include #include #include "defs.hxx" @@ -97,8 +99,8 @@ DocMap_t m_aDocIdMap; - // language -> implname mapping - typedef std::map< LanguageType, OUString > GCImplNames_t; + // BCP-47 language tag -> implname mapping + typedef std::map< OUString, OUString > GCImplNames_t; GCImplNames_t m_aGCImplNamesByLang; // implname -> UNO reference mapping @@ -136,13 +138,19 @@ sal_Int32 GetSuggestedEndOfSentence( const OUString &rText, sal_Int32 nSentenceStartPos, const css::lang::Locale &rLocale ); void GetConfiguredGCSvcs_Impl(); - css::uno::Reference< css::linguistic2::XProofreader > GetGrammarChecker( const css::lang::Locale & rLocale ); + css::uno::Reference< css::linguistic2::XProofreader > GetGrammarChecker( css::lang::Locale & rLocale ); css::uno::Reference< css::util::XChangesBatch > const & GetUpdateAccess() const; GrammarCheckingIterator( const GrammarCheckingIterator & ) = delete; GrammarCheckingIterator & operator = ( const GrammarCheckingIterator & ) = delete; + // Gets the grammar checker service, using fallback locales if necessary, + // and the BCP-47 tag for the updated locale, if the fallback was used. + // Precondition: MyMutex() is locked. + std::pair> + getServiceForLocale(const css::lang::Locale& rLocale) const; + public: void DequeueAndCheck(); diff -Nru libreoffice-7.5.1~rc2/oox/source/drawingml/shape.cxx libreoffice-7.5.2~rc2/oox/source/drawingml/shape.cxx --- libreoffice-7.5.1~rc2/oox/source/drawingml/shape.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/oox/source/drawingml/shape.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1835,6 +1835,10 @@ RTL_TEXTENCODING_UTF8); msConnectorName = sConnectorShapePresetTypeName; + auto aAdjustmentList = mpCustomShapePropertiesPtr->getAdjustmentGuideList(); + for (size_t i = 0; i < aAdjustmentList.size(); i++) + maConnectorAdjustmentList.push_back(aAdjustmentList[i].maFormula); + sal_Int32 nType = mpCustomShapePropertiesPtr->getShapePresetType(); switch (nType) { diff -Nru libreoffice-7.5.1~rc2/oox/source/ppt/slidepersist.cxx libreoffice-7.5.2~rc2/oox/source/ppt/slidepersist.cxx --- libreoffice-7.5.1~rc2/oox/source/ppt/slidepersist.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/oox/source/ppt/slidepersist.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -386,7 +386,7 @@ { sal_Int32 nEdge = 0; awt::Point aStartPt, aEndPt; - tools::Rectangle aStartRect, aEndRect; + tools::Rectangle aS, aE; // Start, End rectangle uno::Reference xStartSp, xEndSp; uno::Reference xPropSet(rXConnector, uno::UNO_QUERY); xPropSet->getPropertyValue("EdgeStartPoint") >>= aStartPt; @@ -401,80 +401,218 @@ SdrObject* pStartObj = xStartSp.is() ? SdrObject::getSdrObjectFromXShape(xStartSp) : nullptr; SdrObject* pEndObj = xEndSp.is() ? SdrObject::getSdrObjectFromXShape(xEndSp) : nullptr; - sal_Int32 nStartSpLineW = 0; sal_Int32 nStartA = -1; sal_Int32 nEndA = -1; if (pStartObj) { - aStartRect = pStartObj->GetSnapRect(); - uno::Reference xPropxStartSp(xStartSp, uno::UNO_QUERY); - xPropxStartSp->getPropertyValue("LineWidth") >>= nStartSpLineW; - if (nStartSpLineW) - nStartSpLineW = nStartSpLineW / 2; + aS = pStartObj->GetSnapRect(); nStartA = lcl_GetAngle(xStartSp, aStartPt); } - sal_Int32 nEndSpLineW = 0; if (pEndObj) { - aEndRect = pEndObj->GetSnapRect(); - uno::Reference xPropxEndSp(xEndSp, uno::UNO_QUERY); - xPropxEndSp->getPropertyValue("LineWidth") >>= nEndSpLineW; - if (nEndSpLineW) - nEndSpLineW = nEndSpLineW / 2; + aE = pEndObj->GetSnapRect(); nEndA = lcl_GetAngle(xEndSp, aEndPt); } - const OUString sConnectorName = rShapePtr->getConnectorName(); - if (sConnectorName == "bentConnector2") + // bentConnector3, bentConnector4, bentConnector5 + if (!rShapePtr->getConnectorAdjustments().empty()) { - awt::Size aConnSize = rXConnector->getSize(); - if (xStartSp.is() || xEndSp.is()) + sal_Int32 nAdjustValue = 0; + for (size_t i = 0; i < rShapePtr->getConnectorAdjustments().size(); i++) { - if (nStartA >= 0) + bool bVertical = false; + if (xStartSp.is() || xEndSp.is()) + bVertical = xStartSp.is() ? ((nStartA == 90 || nStartA == 270) ? true : false) + : ((nEndA == 90 || nEndA == 270) ? true : false); + else + { + sal_Int32 nAng = rShapePtr->getRotation() / 60000; + bVertical = (nAng == 90 || nAng == 270) ? true : false; + } + + if (i % 2 == 1) + bVertical = !bVertical; + + nAdjustValue = rShapePtr->getConnectorAdjustments()[i].toInt32(); + if (bVertical) + { + sal_Int32 nY = aStartPt.Y + ((nAdjustValue * (aEndPt.Y - aStartPt.Y)) / 100000); + if (xStartSp.is() && xEndSp.is()) + { + if (aS.Top() <= aE.Top()) + { + if (nStartA == 270 && i != 2) + nEdge = nY - aS.Top(); + else + { + if (aS.Bottom() < aE.Top() && nEndA != 90) + { + nEdge = nY - (aS.Bottom() + ((aE.Top() - aS.Bottom()) / 2)); + } + else + nEdge = nY - aE.Bottom(); + } + } + else + { + if (nStartA == 90 && i != 2) + nEdge = nY - aS.Bottom(); + else + { + if (aE.Bottom() < aS.Top() && nEndA != 270) + nEdge = nY - (aS.Top() + ((aE.Bottom() - aS.Top()) / 2)); + else + nEdge = nY - aE.Top(); + } + } + } + else if ((xStartSp.is() && !xEndSp.is()) || (!xStartSp.is() && xEndSp.is())) + { + if (aStartPt.Y < aEndPt.Y) + { + if (xStartSp.is()) + nEdge = (nStartA == 90) + ? nY - (aEndPt.Y - ((aEndPt.Y - aS.Bottom()) / 2)) + : nY - aS.Top(); + else + nEdge = (nEndA == 90) + ? nY - aE.Bottom() + : nY - (aStartPt.Y + ((aE.Top() - aStartPt.Y) / 2)); + } + else + { + if (xStartSp.is()) + nEdge = (nStartA == 90) ? nY - aS.Bottom() + : nY - (aEndPt.Y + ((aS.Top() - aEndPt.Y) / 2)); + else + nEdge = (nEndA == 90) + ? nY - (aStartPt.Y - ((aStartPt.Y - aE.Bottom()) / 2)) + : nY - aE.Top(); + } + } + else + { + nEdge = (aStartPt.Y < aEndPt.Y) + ? nY - (aStartPt.Y + (rXConnector->getSize().Height / 2)) + : nY - (aStartPt.Y - (rXConnector->getSize().Height / 2)); + } + } + else // Horizontal { - switch (nStartA) + sal_Int32 nX = aStartPt.X + ((nAdjustValue * (aEndPt.X - aStartPt.X)) / 100000); + if (xStartSp.is() && xEndSp.is()) { - case 0: nEdge = aEndPt.X - aStartRect.Right(); break; - case 180: nEdge = aEndPt.X - aStartRect.Left(); break; - case 90: nEdge = aEndPt.Y - aStartRect.Bottom(); break; - case 270: nEdge = aEndPt.Y - aStartRect.Top(); break; - } - nEdge += nStartSpLineW * (nStartA >= 180 ? +1 : -1); - } else { - switch (nEndA) - { - case 0: nEdge = aStartPt.X - aEndRect.Right(); break; - case 180: nEdge = aStartPt.X - aEndRect.Left(); break; - case 90: nEdge = aStartPt.Y - aEndRect.Bottom(); break; - case 270: nEdge = aStartPt.Y - aEndRect.Top(); break; + if (aS.Left() <= aE.Left()) + { + if (nStartA == 180 && i != 2) + nEdge = nX - aS.Left(); + else + { + if (aS.Right() < aE.Left() && nEndA != 0) + nEdge = nX - (aS.Right() + ((aE.Left() - aS.Right()) / 2)); + else + nEdge = nX - aE.Right(); + } + } + else + { + if (nStartA == 0 && i != 2) + nEdge = nX - aS.Right(); + else + { + if (aE.Right() < aS.Left() && nEndA != 180) + nEdge = nX - (aS.Left() + ((aE.Right() - aS.Left()) / 2)); + else + nEdge = nX - aE.Left(); + } + } + } + else if ((xStartSp.is() && !xEndSp.is()) || (!xStartSp.is() && xEndSp.is())) + { + if (aStartPt.X < aEndPt.X) + { + if (xStartSp.is()) + nEdge = (nStartA == 0) + ? nX - (aS.Right() + ((aEndPt.X - aS.Right()) / 2)) + : nX - aS.Left(); + else + nEdge = (nEndA == 0) + ? nX - aE.Right() + : nX - (aStartPt.X + ((aE.Left() - aStartPt.X) / 2)); + } + else + { + if (xStartSp.is()) + nEdge = (nStartA == 0) ? nX - aS.Right() + : nX - (aEndPt.X + ((aS.Left() - aEndPt.X) / 2)); + else + nEdge = (nEndA == 0) + ? nX - (aE.Right() + ((aStartPt.X - aE.Right()) / 2)) + : nX - aE.Left(); + } + } + else + { + nEdge = (aStartPt.X < aEndPt.X) + ? nX - (aStartPt.X + (rXConnector->getSize().Width / 2)) + : nX - (aStartPt.X - (rXConnector->getSize().Width / 2)); } - nEdge += nEndSpLineW * (nEndA >= 180 ? +1 : -1); } + xPropSet->setPropertyValue("EdgeLine" + OUString::number(i + 1) + "Delta", Any(nEdge)); } - else + } + else + { + const OUString sConnectorName = rShapePtr->getConnectorName(); + if (sConnectorName == "bentConnector2") { - bool bFlipH = rShapePtr->getFlipH(); - bool bFlipV = rShapePtr->getFlipV(); - sal_Int32 nConnectorAngle = rShapePtr->getRotation() / 60000; - if (aConnSize.Height < aConnSize.Width) + awt::Size aConnSize = rXConnector->getSize(); + if (xStartSp.is() || xEndSp.is()) { - if ((nConnectorAngle == 90 && bFlipH && bFlipV) || (nConnectorAngle == 180) - || (nConnectorAngle == 270 && bFlipH)) - nEdge -= aConnSize.Width; - else - nEdge += aConnSize.Width; + if (nStartA >= 0) + { + switch (nStartA) + { + case 0: nEdge = aEndPt.X - aS.Right(); break; + case 180: nEdge = aEndPt.X - aS.Left(); break; + case 90: nEdge = aEndPt.Y - aS.Bottom(); break; + case 270: nEdge = aEndPt.Y - aS.Top(); break; + } + } else { + switch (nEndA) + { + case 0: nEdge = aStartPt.X - aE.Right(); break; + case 180: nEdge = aStartPt.X - aE.Left(); break; + case 90: nEdge = aStartPt.Y - aE.Bottom(); break; + case 270: nEdge = aStartPt.Y - aE.Top(); break; + } + } } else { - if ((nConnectorAngle == 180 && bFlipV) || (nConnectorAngle == 270 && bFlipV) - || (nConnectorAngle == 90 && bFlipH && bFlipV) - || (nConnectorAngle == 0 && !bFlipV)) - nEdge -= aConnSize.Height; + bool bFlipH = rShapePtr->getFlipH(); + bool bFlipV = rShapePtr->getFlipV(); + sal_Int32 nConnectorAngle = rShapePtr->getRotation() / 60000; + if (aConnSize.Height < aConnSize.Width) + { + if ((nConnectorAngle == 90 && bFlipH && bFlipV) || (nConnectorAngle == 180) + || (nConnectorAngle == 270 && bFlipH)) + nEdge -= aConnSize.Width; + else + nEdge += aConnSize.Width; + } else - nEdge += aConnSize.Height; + { + if ((nConnectorAngle == 180 && bFlipV) || (nConnectorAngle == 270 && bFlipV) + || (nConnectorAngle == 90 && bFlipH && bFlipV) + || (nConnectorAngle == 0 && !bFlipV)) + nEdge -= aConnSize.Height; + else + nEdge += aConnSize.Height; + } } + xPropSet->setPropertyValue("EdgeLine1Delta", Any(nEdge / 2)); } - xPropSet->setPropertyValue("EdgeLine1Delta", Any(nEdge / 2)); } } diff -Nru libreoffice-7.5.1~rc2/oox/source/shape/WpsContext.cxx libreoffice-7.5.2~rc2/oox/source/shape/WpsContext.cxx --- libreoffice-7.5.1~rc2/oox/source/shape/WpsContext.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/oox/source/shape/WpsContext.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -169,62 +169,56 @@ // Apply character color of the shape to the shape's textbox. uno::Reference xText(mxShape, uno::UNO_QUERY); - uno::Reference xTextCursor = xText->createTextCursor(); - xTextCursor->gotoStart(false); - xTextCursor->gotoEnd(true); - uno::Reference xTextBoxPropertySet(xTextCursor, - uno::UNO_QUERY); uno::Any xCharColor = xPropertySet->getPropertyValue("CharColor"); Color aColor = COL_AUTO; if ((xCharColor >>= aColor) && aColor != COL_AUTO) { - const uno::Reference xPropertyState(xTextCursor, - uno::UNO_QUERY); - const beans::PropertyState ePropertyState - = xPropertyState->getPropertyState("CharColor"); - if (ePropertyState == beans::PropertyState_DEFAULT_VALUE) - { - xTextBoxPropertySet->setPropertyValue("CharColor", xCharColor); - } - else + // tdf#135923 Apply character color of the shape to the textrun + // when the character color of the textrun is default. + // tdf#153791 But only if the run has no background color (shd element in OOXML) + if (uno::Reference paraEnumAccess{ + xText, uno::UNO_QUERY }) { - // tdf#135923 Apply character color of the shape to the textrun - // when the character color of the textrun is default. - uno::Reference paraEnumAccess( - xText, uno::UNO_QUERY); - if (paraEnumAccess.is()) - { - uno::Reference paraEnum( - paraEnumAccess->createEnumeration()); + uno::Reference paraEnum( + paraEnumAccess->createEnumeration()); - while (paraEnum->hasMoreElements()) - { - uno::Reference xParagraph(paraEnum->nextElement(), - uno::UNO_QUERY); - uno::Reference runEnumAccess( - xParagraph, uno::UNO_QUERY); - if (!runEnumAccess.is()) + while (paraEnum->hasMoreElements()) + { + uno::Reference xParagraph(paraEnum->nextElement(), + uno::UNO_QUERY); + uno::Reference runEnumAccess( + xParagraph, uno::UNO_QUERY); + if (!runEnumAccess.is()) + continue; + if (uno::Reference xParaPropSet{ xParagraph, + uno::UNO_QUERY }) + if ((xParaPropSet->getPropertyValue("ParaBackColor") >>= aColor) + && aColor != COL_AUTO) continue; - uno::Reference runEnum - = runEnumAccess->createEnumeration(); + uno::Reference runEnum + = runEnumAccess->createEnumeration(); - while (runEnum->hasMoreElements()) + while (runEnum->hasMoreElements()) + { + uno::Reference xRun(runEnum->nextElement(), + uno::UNO_QUERY); + const uno::Reference xRunState( + xRun, uno::UNO_QUERY); + if (!xRunState + || xRunState->getPropertyState("CharColor") + == beans::PropertyState_DEFAULT_VALUE) { - uno::Reference xRun(runEnum->nextElement(), - uno::UNO_QUERY); - const uno::Reference xRunState( - xRun, uno::UNO_QUERY); - if (xRunState->getPropertyState("CharColor") - == beans::PropertyState_DEFAULT_VALUE) - { - uno::Reference xRunPropSet( - xRun, uno::UNO_QUERY); - Color aRunColor = COL_AUTO; - xRunPropSet->getPropertyValue("CharColor") >>= aRunColor; - if (aRunColor == COL_AUTO) - xRunPropSet->setPropertyValue("CharColor", xCharColor); - } + uno::Reference xRunPropSet(xRun, + uno::UNO_QUERY); + if (!xRunPropSet) + continue; + if ((xRunPropSet->getPropertyValue("CharBackColor") >>= aColor) + && aColor != COL_AUTO) + continue; + if (!(xRunPropSet->getPropertyValue("CharColor") >>= aColor) + || aColor == COL_AUTO) + xRunPropSet->setPropertyValue("CharColor", xCharColor); } } } diff -Nru libreoffice-7.5.1~rc2/readlicense_oo/license/CREDITS.fodt libreoffice-7.5.2~rc2/readlicense_oo/license/CREDITS.fodt --- libreoffice-7.5.1~rc2/readlicense_oo/license/CREDITS.fodt 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/readlicense_oo/license/CREDITS.fodt 2023-03-24 16:53:38.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.1.2$Linux_X86_64 LibreOffice_project/fcbaee479e84c6cd81291587d2ee68cba099e1292012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 549 + 2140 501 - 32307 - 27122 + 32413 + 28233 true true @@ -16,9 +16,9 @@ 3649 3434 501 - 549 - 32807 - 27668 + 2140 + 32912 + 30371 0 0 false @@ -27,6 +27,7 @@ false false false + false @@ -82,7 +83,7 @@ false - 11743652 + 11967653 true false false @@ -94,6 +95,7 @@ false false false + true true true true @@ -350,24 +352,21 @@ - + - + - - - - + - + - + @@ -388,7 +387,7 @@ - + @@ -431,23 +430,26 @@ - + - + - + - + - + + + + @@ -606,34 +608,34 @@ - + - + - + - + - + - + - + - + - + - + @@ -1135,20 +1137,19 @@ Credits - 1840 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2023-02-22 20:20:47. + 1860 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2023-03-24 15:28:25. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 - - + Ruediger TimmCommits: 82464Joined: 2000-10-10 - Caolán McNamaraCommits: 34224Joined: 2000-10-10 + Caolán McNamaraCommits: 34308Joined: 2000-10-10 Kurt ZenkerCommits: 31752Joined: 2000-09-25 @@ -1165,10 +1166,10 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Stephan BergmannCommits: 20414Joined: 2000-10-04 + Stephan BergmannCommits: 20458Joined: 2000-10-04 - *Noel GrandinCommits: 17285Joined: 2011-12-12 + *Noel GrandinCommits: 17463Joined: 2011-12-12 @@ -1176,13 +1177,13 @@ Ivo HinkelmannCommits: 9480Joined: 2002-09-09 - Miklos VajnaCommits: 9380Joined: 2010-07-29 + Miklos VajnaCommits: 9444Joined: 2010-07-29 - Tor LillqvistCommits: 9147Joined: 2010-03-23 + Tor LillqvistCommits: 9157Joined: 2010-03-23 - Michael StahlCommits: 8130Joined: 2008-06-16 + Michael StahlCommits: 8171Joined: 2008-06-16 @@ -1190,7 +1191,7 @@ Kohei YoshidaCommits: 5571Joined: 2009-06-19 - Eike RathkeCommits: 5251Joined: 2000-10-11 + Eike RathkeCommits: 5271Joined: 2000-10-11 *Markus MohrhardCommits: 5203Joined: 2011-03-17 @@ -1204,10 +1205,10 @@ David TardonCommits: 3648Joined: 2009-11-12 - *Julien NabetCommits: 3583Joined: 2010-11-04 + *Julien NabetCommits: 3588Joined: 2010-11-04 - *Andrea GelminiCommits: 3390Joined: 2014-10-30 + *Andrea GelminiCommits: 3438Joined: 2014-10-30 Luboš LuňákCommits: 3201Joined: 2010-09-21 @@ -1215,7 +1216,7 @@ - *Tomaž VajngerlCommits: 3178Joined: 2012-06-02 + *Tomaž VajngerlCommits: 3192Joined: 2012-06-02 Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 @@ -1229,24 +1230,24 @@ - Mathias BauerCommits: 2580Joined: 2000-09-20 + *Mike KaganskiCommits: 2618Joined: 2015-04-26 - *Mike KaganskiCommits: 2568Joined: 2015-04-26 + Mathias BauerCommits: 2580Joined: 2000-09-20 Oliver SpechtCommits: 2549Joined: 2000-09-21 - Michael MeeksCommits: 2483Joined: 2004-08-05 + Michael MeeksCommits: 2486Joined: 2004-08-05 - Bjoern MichaelsenCommits: 2469Joined: 2009-10-14 + Bjoern MichaelsenCommits: 2477Joined: 2009-10-14 - *Xisco FauliCommits: 2386Joined: 2011-02-06 + *Xisco FauliCommits: 2456Joined: 2011-02-06 *Norbert ThiebaudCommits: 2176Joined: 2010-09-29 @@ -1260,13 +1261,13 @@ Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - *Andras TimarCommits: 1985Joined: 2010-10-02 + *Andras TimarCommits: 1987Joined: 2010-10-02 Christian LippkaCommits: 1805Joined: 2000-09-25 - *Olivier HallotCommits: 1719Joined: 2010-10-25 + *Olivier HallotCommits: 1738Joined: 2010-10-25 @@ -1316,18 +1317,18 @@ Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 - *Samuel MehrbrodtCommits: 1147Joined: 2011-06-08 + *Samuel MehrbrodtCommits: 1159Joined: 2011-06-08 - *Szymon KłosCommits: 1107Joined: 2014-03-22 + *Szymon KłosCommits: 1133Joined: 2014-03-22 - *Gabor KelemenCommits: 1093Joined: 2013-06-18 + Christian LohmaierCommits: 1099Joined: 2008-06-01 - Christian LohmaierCommits: 1088Joined: 2008-06-01 + *Gabor KelemenCommits: 1093Joined: 2013-06-18 *Lionel Elie MamaneCommits: 1051Joined: 2011-01-15 @@ -1369,10 +1370,10 @@ - *Maxim MonastirskyCommits: 817Joined: 2013-10-27 + *Maxim MonastirskyCommits: 826Joined: 2013-10-27 - *László NémethCommits: 814Joined: 2010-09-29 + *László NémethCommits: 822Joined: 2010-09-29 Mikhail VoytenkoCommits: 793Joined: 2001-01-16 @@ -1392,15 +1393,15 @@ *Andrzej HuntCommits: 743Joined: 2012-03-27 - Andre FischerCommits: 730Joined: 2001-02-06 + *Michael WeghornCommits: 738Joined: 2014-09-10 - Release EngineeringCommits: 728Joined: 2008-10-02 + Andre FischerCommits: 730Joined: 2001-02-06 - *Michael WeghornCommits: 716Joined: 2014-09-10 + Release EngineeringCommits: 728Joined: 2008-10-02 *Zdeněk CrhonekCommits: 714Joined: 2016-05-19 @@ -1420,15 +1421,15 @@ Kai SommerfeldCommits: 651Joined: 2000-10-10 - Ingrid HalamaCommits: 639Joined: 2001-01-19 + *Rizal MuttaqinCommits: 644Joined: 2018-05-21 - *Justin LuthCommits: 624Joined: 2014-09-30 + Ingrid HalamaCommits: 639Joined: 2001-01-19 - *Rizal MuttaqinCommits: 619Joined: 2018-05-21 + *Justin LuthCommits: 624Joined: 2014-09-30 *Rafael DominguezCommits: 606Joined: 2011-02-13 @@ -1445,14 +1446,17 @@ *Yousuf PhilipsCommits: 569Joined: 2014-09-21 - *Adolfo Jayme BarrientosCommits: 558Joined: 2013-06-21 + *Adolfo Jayme BarrientosCommits: 563Joined: 2013-06-21 - Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 + *Seth ChaiklinCommits: 553Joined: 2019-11-13 + Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 + + *Khaled HosnyCommits: 542Joined: 2011-01-28 @@ -1461,9 +1465,6 @@ *Jim RaykowskiCommits: 508Joined: 2017-04-16 - - *Seth ChaiklinCommits: 500Joined: 2019-11-13 - @@ -1476,12 +1477,12 @@ Andreas BregasCommits: 470Joined: 2000-09-25 - *Heiko TietzeCommits: 407Joined: 2016-10-06 + *Justin LuthCommits: 434Joined: 2018-04-21 - *Justin LuthCommits: 397Joined: 2018-04-21 + *Heiko TietzeCommits: 424Joined: 2016-10-06 *Ashod NakashianCommits: 393Joined: 2015-01-07 @@ -1515,7 +1516,7 @@ Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 - *Jean-Pierre LedureCommits: 342Joined: 2013-10-12 + *Jean-Pierre LedureCommits: 345Joined: 2013-10-12 Patrick LubyCommits: 335Joined: 2000-09-21 @@ -1526,10 +1527,10 @@ *David OstrovskyCommits: 334Joined: 2012-04-01 - *Marco CecchettiCommits: 324Joined: 2011-04-14 + *Marco CecchettiCommits: 327Joined: 2011-04-14 - *Arnaud VERSINICommits: 318Joined: 2010-10-05 + *Arnaud VERSINICommits: 321Joined: 2010-10-05 Radek DoulikCommits: 305Joined: 2010-05-03 @@ -1537,21 +1538,21 @@ - *Mark HungCommits: 303Joined: 2014-11-04 + *Mark HungCommits: 305Joined: 2014-11-04 - *Henry CastroCommits: 303Joined: 2015-01-09 + *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 @@ -1560,7 +1561,7 @@ *Pierre-André JacquodCommits: 276Joined: 2010-11-13 - *Rafael LimaCommits: 271Joined: 2020-11-13 + *Rafael LimaCommits: 275Joined: 2020-11-13 @@ -1582,24 +1583,24 @@ *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 - *Regina HenschelCommits: 223Joined: 2010-11-04 + *Regina HenschelCommits: 227Joined: 2010-11-04 *Winfried DonkersCommits: 215Joined: 2011-11-11 - *Tamas BunthCommits: 203Joined: 2016-03-08 + *Andreas HeinischCommits: 212Joined: 2019-05-13 - Ingo SchmidtCommits: 202Joined: 2004-02-05 + *Tamas BunthCommits: 203Joined: 2016-03-08 - *Arkadiy IllarionovCommits: 201Joined: 2017-01-15 + Ingo SchmidtCommits: 202Joined: 2004-02-05 - *Andreas HeinischCommits: 201Joined: 2019-05-13 + *Arkadiy IllarionovCommits: 201Joined: 2017-01-15 *Dennis FrancisCommits: 200Joined: 2018-11-15 @@ -1621,16 +1622,16 @@ - *François TigeotCommits: 176Joined: 2011-01-31 + *Khaled HosnyCommits: 180Joined: 2022-06-06 - *Khaled HosnyCommits: 175Joined: 2022-06-06 + *François TigeotCommits: 176Joined: 2011-01-31 *Philipp RiemerCommits: 171Joined: 2012-05-25 - *Tünde TóthCommits: 166Joined: 2019-03-14 + *Tünde TóthCommits: 168Joined: 2019-03-14 @@ -1644,7 +1645,7 @@ *Gülşah KöseCommits: 160Joined: 2015-03-14 - *Ilmari LauhakangasCommits: 155Joined: 2017-04-15 + *Ilmari LauhakangasCommits: 159Joined: 2017-04-15 @@ -1694,16 +1695,19 @@ *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 + *Sophia SchröderCommits: 128Joined: 2018-04-07 + + Helge Delfs [hde]Commits: 126Joined: 2009-07-28 *Ariel Constenla-HaileCommits: 126Joined: 2012-01-16 + + *haochenCommits: 126Joined: 2013-10-10 - - Takashi OnoCommits: 122Joined: 2009-12-10 @@ -1713,11 +1717,11 @@ *Douglas MenckenCommits: 119Joined: 2013-12-11 + + *Alain RomedenneCommits: 117Joined: 2019-02-25 - - Kalman Szalai - KAMICommits: 116Joined: 2010-09-14 @@ -1727,19 +1731,16 @@ *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 - - *Dennis FrancisCommits: 112Joined: 2015-04-15 - - *Sophia SchroederCommits: 112Joined: 2018-04-07 + *Dennis FrancisCommits: 112Joined: 2015-04-15 - *Akshay DeepCommits: 110Joined: 2016-01-23 + *HosseinCommits: 111Joined: 2021-06-29 - *HosseinCommits: 110Joined: 2021-06-29 + *Akshay DeepCommits: 110Joined: 2016-01-23 *Aron BudeaCommits: 105Joined: 2014-12-22 @@ -1750,10 +1751,10 @@ *Louis-Francis Ratté-BoulianneCommits: 102Joined: 2014-10-29 - *Rishabh KumarCommits: 100Joined: 2015-02-13 + *Tibor NagyCommits: 101Joined: 2020-04-01 - *Tibor NagyCommits: 100Joined: 2020-04-01 + *Rishabh KumarCommits: 100Joined: 2015-02-13 *Thomas KlausnerCommits: 99Joined: 2010-10-01 @@ -1775,62 +1776,65 @@ + *Juergen FunkCommits: 91Joined: 2014-09-17 + + *Varun DhallCommits: 91Joined: 2015-03-07 *Krisztian PinterCommits: 90Joined: 2013-02-18 + *Justin LuthCommits: 90Joined: 2020-02-03 + + + + *Philipp HoferCommits: 90Joined: 2020-11-06 *Albert ThuswaldnerCommits: 89Joined: 2011-01-26 - - *Tim RetoutCommits: 88Joined: 2012-02-14 *Daniel BankstonCommits: 88Joined: 2012-04-03 + + - *Korrawit PruegsanusakCommits: 87Joined: 2011-05-28 + *Alain RomedenneCommits: 88Joined: 2021-02-17 - *Juergen FunkCommits: 87Joined: 2014-09-17 + *Korrawit PruegsanusakCommits: 87Joined: 2011-05-28 - - *Adam CoCommits: 86Joined: 2013-04-28 - Mihaela KedikovaCommits: 85Joined: 2009-10-30 + *Pranam LashkariCommits: 86Joined: 2020-04-03 + + - *Alain RomedenneCommits: 85Joined: 2021-02-17 + Mihaela KedikovaCommits: 85Joined: 2009-10-30 *Javier FernandezCommits: 84Joined: 2013-03-06 - - *Roman KuznetsovCommits: 84Joined: 2018-10-23 Tobias KrauseCommits: 83Joined: 2007-10-02 + + *Minh NgoCommits: 83Joined: 2013-05-02 - *Justin LuthCommits: 83Joined: 2020-02-03 - - - - *Ricardo MontaniaCommits: 82Joined: 2012-08-18 @@ -1839,16 +1843,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 @@ -1904,13 +1905,13 @@ *Pierre-Eric Pelloux-PrayerCommits: 61Joined: 2012-06-20 - Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 + *Bogdan BCommits: 61Joined: 2022-11-01 - *Jaskaran SinghCommits: 60Joined: 2016-02-18 + Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 - *Bogdan BCommits: 60Joined: 2022-11-01 + *Jaskaran SinghCommits: 60Joined: 2016-02-18 @@ -1991,30 +1992,41 @@ *Ptyl DragonCommits: 50Joined: 2013-05-09 - *Samuel ThibaultCommits: 49Joined: 2018-02-15 + *Sarper AkdemirCommits: 50Joined: 2021-04-25 - *Marcel MetzCommits: 48Joined: 2011-12-05 + *Armin Le Grand (allotropia)Commits: 50Joined: 2022-06-27 + *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: 47Joined: 2019-08-12 + *Luke DellerCommits: 46Joined: 2012-11-26 + + *hongyu zhongCommits: 46Joined: 2013-11-04 @@ -2024,11 +2036,11 @@ *Mihai VargaCommits: 46Joined: 2014-02-27 - - mb93783Commits: 45Joined: 2009-07-15 + + *Eilidh McAdamCommits: 45Joined: 2011-03-10 @@ -2038,11 +2050,11 @@ *Susobhan GhoshCommits: 45Joined: 2016-01-03 - - *Szabolcs TothCommits: 45Joined: 2019-08-07 + + Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 @@ -2050,53 +2062,45 @@ *Daniel RobertsonCommits: 44Joined: 2015-06-27 - *Kohei YoshidaCommits: 44Joined: 2019-08-12 - - - - *Luc CastermansCommits: 43Joined: 2011-11-13 *Philippe JungCommits: 43Joined: 2015-05-01 + + *Daniel Arato (NISZ)Commits: 43Joined: 2020-08-24 *Peter JentschCommits: 42Joined: 2011-01-07 - - *Mark WielaardCommits: 42Joined: 2013-05-13 - *Marco A.G.PintoCommits: 42Joined: 2018-07-16 + *Damjan JovanovicCommits: 42Joined: 2015-08-26 + + - *Sarper AkdemirCommits: 42Joined: 2021-04-25 + *Marco A.G.PintoCommits: 42Joined: 2018-07-16 *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 - *Armin Le Grand (allotropia)Commits: 41Joined: 2022-06-27 - - - - *Francisco SaitoCommits: 40Joined: 2011-03-21 @@ -2105,11 +2109,11 @@ *Thorsten BehrensCommits: 40Joined: 2020-12-19 + + *Kayo HamidCommits: 39Joined: 2010-10-09 - - *Marc-André LaverdièreCommits: 39Joined: 2011-06-21 @@ -2119,9 +2123,6 @@ *Valentin KettnerCommits: 38Joined: 2014-03-17 - - *Damjan JovanovicCommits: 38Joined: 2015-08-26 - @@ -2195,6 +2196,9 @@ + *Taichi HaradaguchiCommits: 35Joined: 2022-09-06 + + *Andreas MantkeCommits: 34Joined: 2010-09-29 @@ -2203,11 +2207,11 @@ *Rodolfo Ribeiro GomesCommits: 34Joined: 2012-12-19 + + *Steve YinCommits: 34Joined: 2013-11-14 - - *Cor NouwsCommits: 33Joined: 2011-11-19 @@ -2217,11 +2221,11 @@ *Dennis RoczekCommits: 33Joined: 2015-06-09 + + *Aleksei NikiforovCommits: 33Joined: 2018-10-31 - - *GokulCommits: 32Joined: 2012-07-10 @@ -2231,11 +2235,11 @@ *Arnold DumasCommits: 32Joined: 2016-02-14 + + *Dmitriy ShilinCommits: 32Joined: 2018-11-30 - - *Shubham GoyalCommits: 32Joined: 2019-02-26 @@ -2245,11 +2249,11 @@ *Martin SrebotnjakCommits: 31Joined: 2010-12-19 + + *Sushil ShindeCommits: 31Joined: 2013-10-21 - - *fengzengCommits: 31Joined: 2013-11-04 @@ -2259,11 +2263,11 @@ *Patrick JaapCommits: 31Joined: 2017-08-01 + + *DaeHyun SungCommits: 31Joined: 2018-05-19 - - *Kenneth VenkenCommits: 30Joined: 2010-10-15 @@ -2273,11 +2277,11 @@ *Christoph HerzogCommits: 30Joined: 2011-01-07 + + *Manal AlhassounCommits: 30Joined: 2012-09-10 - - *Bryan QuigleyCommits: 30Joined: 2012-12-12 @@ -2287,11 +2291,11 @@ *muleiCommits: 30Joined: 2013-11-01 + + *keremCommits: 30Joined: 2015-10-12 - - *Jakub TrzebiatowskiCommits: 30Joined: 2016-03-07 @@ -2301,13 +2305,10 @@ *Regényi BalázsCommits: 30Joined: 2020-04-02 - - *homeboy445Commits: 30Joined: 2020-12-09 - - *Taichi HaradaguchiCommits: 30Joined: 2022-09-06 + *homeboy445Commits: 30Joined: 2020-12-09 *Harri PitkänenCommits: 29Joined: 2010-10-04 @@ -2492,16 +2493,19 @@ *zhenyu yuanCommits: 22Joined: 2013-11-06 + *Colomban WendlingCommits: 22Joined: 2017-03-15 + + *Saurav ChiraniaCommits: 22Joined: 2018-01-14 *Rohit DeshmukhCommits: 21Joined: 2013-09-30 + + *scitoCommits: 21Joined: 2015-04-13 - - *Vitaliy AndersonCommits: 21Joined: 2016-12-09 @@ -2509,16 +2513,24 @@ *Bernhard WidlCommits: 21Joined: 2017-03-27 + *Balazs VargaCommits: 21Joined: 2022-06-29 + + + + + *Noel GrandinCommits: 21Joined: 2022-10-10 + + Eric BachardCommits: 20Joined: 2005-10-19 *Andy HolderCommits: 20Joined: 2010-12-06 - - *Brad SowdenCommits: 20Joined: 2011-12-27 + + *Petr VorelCommits: 20Joined: 2012-02-17 @@ -2528,11 +2540,11 @@ *Andrew DentCommits: 20Joined: 2014-02-26 - - - *Balazs VargaCommits: 20Joined: 2022-06-29 + *Paris OplopoiosCommits: 20Joined: 2022-10-17 + + *Patrick LubyCommits: 20Joined: 2022-12-03 @@ -2542,11 +2554,11 @@ *Lennard WasserthalCommits: 19Joined: 2012-08-11 - - *Peilin XiaoCommits: 19Joined: 2013-12-09 + + *Sven WehnerCommits: 19Joined: 2014-01-11 @@ -2556,11 +2568,11 @@ *Aleksas PantechovskisCommits: 19Joined: 2016-03-03 - - *krishna keshavCommits: 19Joined: 2016-05-05 + + *Onur YilmazCommits: 19Joined: 2019-12-18 @@ -2570,11 +2582,11 @@ Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 - - *Joost WezenbeekCommits: 18Joined: 2010-10-24 + + *Abdulelah AlarifiCommits: 18Joined: 2012-12-12 @@ -2584,11 +2596,11 @@ *Richard PALOCommits: 18Joined: 2014-11-09 - - *Federico BassiniCommits: 18Joined: 2016-10-06 + + *Mert TümerCommits: 18Joined: 2018-01-08 @@ -2596,6 +2608,9 @@ *Zdibák ZoltánCommits: 18Joined: 2018-10-13 + *Heiko TietzeCommits: 18Joined: 2019-09-08 + + *Ming HuaCommits: 18Joined: 2020-11-02 @@ -2705,16 +2720,13 @@ *nd101Commits: 16Joined: 2019-07-03 - *Heiko TietzeCommits: 16Joined: 2019-09-08 - - Octavio AlvarezCommits: 15Joined: 2010-09-13 - - *Luke SymesCommits: 15Joined: 2010-10-01 + + *Povilas KanapickasCommits: 15Joined: 2010-10-18 @@ -2724,11 +2736,11 @@ *Yifan JCommits: 15Joined: 2010-12-16 - - *Cosimo CecchiCommits: 15Joined: 2011-11-02 + + *Alexander BergmannCommits: 15Joined: 2012-01-13 @@ -2738,11 +2750,11 @@ *Nikhil WalvekarCommits: 15Joined: 2013-11-01 - - *Heena GuptaCommits: 15Joined: 2014-06-17 + + *Andreas BrandnerCommits: 15Joined: 2017-09-04 @@ -2752,51 +2764,43 @@ *Samuel ThibaultCommits: 15Joined: 2018-09-05 - - *Ross JohnsonCommits: 15Joined: 2021-09-13 - - *Paris OplopoiosCommits: 15Joined: 2022-10-17 - + + *LeMoyne CastleCommits: 14Joined: 2010-10-25 *Tim HardeckCommits: 14Joined: 2011-11-03 - - *Björgvin RagnarssonCommits: 14Joined: 2012-02-13 *Zhe WangCommits: 14Joined: 2012-06-20 + + *Sun YingCommits: 14Joined: 2012-08-16 *Alex HenrieCommits: 14Joined: 2014-03-05 - - *Juan PiccaCommits: 14Joined: 2014-07-23 *Zsolt BölönyCommits: 14Joined: 2015-01-10 + + *Gökhan GurbetoğluCommits: 14Joined: 2016-06-06 - *Colomban WendlingCommits: 14Joined: 2017-03-15 - - - - *Nickson ThandaCommits: 14Joined: 2018-03-25 @@ -2805,11 +2809,11 @@ *Jean-Baptiste FaureCommits: 13Joined: 2011-02-20 + + *Muhammad HaggagCommits: 13Joined: 2012-02-01 - - *gerhard oettlCommits: 13Joined: 2012-08-27 @@ -2819,12 +2823,12 @@ *Mathias HasselmannCommits: 13Joined: 2013-01-14 - - *Manfred BlumeCommits: 13Joined: 2017-03-27 - + *Manfred BlumeCommits: 13Joined: 2017-03-27 + + *sabri unalCommits: 13Joined: 2018-11-20 @@ -2833,13 +2837,10 @@ *VaibhavMalik4187Commits: 13Joined: 2021-12-10 - - *Alain RomedenneCommits: 13Joined: 2022-01-06 - - *Noel GrandinCommits: 13Joined: 2022-10-10 + *Alain RomedenneCommits: 13Joined: 2022-01-06 *Jani MonosesCommits: 12Joined: 2010-10-30 @@ -3066,16 +3067,19 @@ *Balazs SanthaCommits: 10Joined: 2021-02-26 + *GaldamCommits: 10Joined: 2022-09-07 + + *Mattias JohnssonCommits: 9Joined: 2010-10-18 *Surendran MahendranCommits: 9Joined: 2010-11-05 + + *Steven ButlerCommits: 9Joined: 2011-01-07 - - *Robinson TryonCommits: 9Joined: 2012-06-21 @@ -3085,11 +3089,11 @@ *Michael DunphyCommits: 9Joined: 2013-04-18 + + *Dinesh PatilCommits: 9Joined: 2014-03-12 - - *Matthew PottageCommits: 9Joined: 2014-07-26 @@ -3099,11 +3103,11 @@ *Ryan McCoskrieCommits: 9Joined: 2014-09-14 + + *Jun NogataCommits: 9Joined: 2015-01-07 - - *Aybuke OzdemirCommits: 9Joined: 2015-10-07 @@ -3113,11 +3117,11 @@ *pv2kCommits: 9Joined: 2016-11-28 + + *Adam KovacsCommits: 9Joined: 2018-08-16 - - *Scott ClarkeCommits: 9Joined: 2019-06-07 @@ -3127,98 +3131,106 @@ *Jussi PakkanenCommits: 9Joined: 2020-02-22 + + + + *Gabor KelemenCommits: 9Joined: 2023-02-14 + Fong LinCommits: 8Joined: 2010-09-14 - - Jody GoldbergCommits: 8Joined: 2010-09-15 *Michael CallahanCommits: 8Joined: 2010-12-06 + + *Robert DargaudCommits: 8Joined: 2011-04-12 *Jenei GáborCommits: 8Joined: 2011-07-29 - - *Terrence EngerCommits: 8Joined: 2011-10-27 *Daisuke NishinoCommits: 8Joined: 2011-11-06 + + *Tomcsik BenceCommits: 8Joined: 2012-01-14 *Jonathan AdamsCommits: 8Joined: 2012-03-16 - - *Norah A. AbanumayCommits: 8Joined: 2012-07-30 *Jean-Tiare Le BigotCommits: 8Joined: 2012-08-08 + + *Timothy PearsonCommits: 8Joined: 2012-08-18 *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 - - *karthCommits: 8Joined: 2013-01-07 *Ádám Csaba KirályCommits: 8Joined: 2013-02-28 + + *Brian FraserCommits: 8Joined: 2013-09-03 *RajashriCommits: 8Joined: 2013-12-06 - - *Keith CurtisCommits: 8Joined: 2013-12-20 *SouravCommits: 8Joined: 2014-03-15 + + *Thomas ViehmannCommits: 8Joined: 2014-08-15 *Nathan YeeCommits: 8Joined: 2015-01-01 - - *Ursache VladimirCommits: 8Joined: 2015-02-10 *Sean DavisCommits: 8Joined: 2015-06-01 + + *HeiherCommits: 8Joined: 2015-07-07 *IanCommits: 8Joined: 2015-08-06 - - + + *Rico TzschichholzCommits: 8Joined: 2016-02-09 + *Matus UzakCommits: 8Joined: 2016-02-22 + + *Christian BarthCommits: 8Joined: 2017-06-25 @@ -3228,11 +3240,11 @@ *Alain RomedenneCommits: 8Joined: 2018-11-29 - - *Rasmus JonssonCommits: 8Joined: 2019-03-20 + + *Artur NeumannCommits: 8Joined: 2019-06-11 @@ -3242,15 +3254,18 @@ *diwanshu885Commits: 8Joined: 2020-10-30 - - *Gökhan ÖzeloğluCommits: 8Joined: 2020-11-21 + + *Balaharipreetha MuthuCommits: 8Joined: 2020-12-04 + *Stéphane GuillouCommits: 8Joined: 2021-01-22 + + *4k5h1tCommits: 8Joined: 2021-08-26 @@ -3259,103 +3274,106 @@ + *Laurent BallandCommits: 8Joined: 2022-06-19 + + *Chenxiong QiCommits: 8Joined: 2022-08-27 *Christian LohmaierCommits: 8Joined: 2022-12-13 + *Baole FangCommits: 8Joined: 2023-03-12 + + + + *Thies PierdolaCommits: 7Joined: 2011-01-28 *Sergey DavidoffCommits: 7Joined: 2011-04-11 - - *Samuel CantrellCommits: 7Joined: 2011-06-11 *Alex McMurchy1917Commits: 7Joined: 2011-08-14 + + *Christoph LutzCommits: 7Joined: 2011-09-06 *Keith McRaeCommits: 7Joined: 2012-01-18 - - *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 *Brennan VincentCommits: 7Joined: 2012-04-02 + + *Wang LeiCommits: 7Joined: 2012-06-14 *Issa AlkurtassCommits: 7Joined: 2012-09-04 - - *Christopher CopitsCommits: 7Joined: 2012-09-19 *Mathias MichelCommits: 7Joined: 2012-11-19 + + *Eric SeynaeveCommits: 7Joined: 2013-02-04 *SJacobiCommits: 7Joined: 2013-03-05 - - *Roi IllouzCommits: 7Joined: 2013-10-20 *Stefan RingCommits: 7Joined: 2014-01-09 + + *Trent MacAlpineCommits: 7Joined: 2014-03-06 *David DelmaCommits: 7Joined: 2014-05-13 - - *Giuseppe BilottaCommits: 7Joined: 2014-09-09 *V Stuart FooteCommits: 7Joined: 2014-12-04 + + *RaalCommits: 7Joined: 2014-12-31 *brinzingCommits: 7Joined: 2015-08-22 - - *Feyza YavuzCommits: 7Joined: 2015-10-04 *iremCommits: 7Joined: 2015-10-11 - - *Rico TzschichholzCommits: 7Joined: 2016-02-09 - + + *apurvapriyadarshiCommits: 7Joined: 2016-05-27 - - *slackaCommits: 7Joined: 2016-07-30 @@ -3365,11 +3383,11 @@ *Tiago SantosCommits: 7Joined: 2016-08-12 + + *HieronymousCommits: 7Joined: 2016-10-13 - - *Ulrich GemkowCommits: 7Joined: 2016-10-27 @@ -3379,11 +3397,11 @@ *Furkan Ahmet KaraCommits: 7Joined: 2017-10-21 + + *Vincas DargisCommits: 7Joined: 2018-01-21 - - *Guilhem MoulinCommits: 7Joined: 2018-02-05 @@ -3393,11 +3411,11 @@ *BugraCommits: 7Joined: 2020-01-30 + + *Chris MayoCommits: 7Joined: 2020-05-08 - - *Pedro Pinto SilvaCommits: 7Joined: 2020-06-16 @@ -3405,9 +3423,6 @@ *Gökay ŞatırCommits: 7Joined: 2020-08-08 - *Stéphane GuillouCommits: 7Joined: 2021-01-22 - - *Matt KCommits: 7Joined: 2021-02-26 @@ -3422,12 +3437,12 @@ *Dhiraj HoldenCommits: 7Joined: 2021-11-30 - *Laurent BallandCommits: 7Joined: 2022-06-19 + *Liu HaoCommits: 7Joined: 2022-08-14 - *Liu HaoCommits: 7Joined: 2022-08-14 + *Patrick LubyCommits: 7Joined: 2023-02-28 *Phil BordelonCommits: 6Joined: 2010-09-30 @@ -3567,7 +3582,10 @@ - *Gabor KelemenCommits: 6Joined: 2023-02-14 + *Attila SzűcsCommits: 6Joined: 2022-11-29 + + + *Vojtěch DoležalCommits: 6Joined: 2023-02-13 *Gil ForcadaCommits: 5Joined: 2010-09-28 @@ -3575,11 +3593,11 @@ *David HobleyCommits: 5Joined: 2010-10-04 + + *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 - - *Antoine ProulxCommits: 5Joined: 2011-01-30 @@ -3589,11 +3607,11 @@ *Jeffrey ChangCommits: 5Joined: 2011-06-01 + + *ericb2Commits: 5Joined: 2011-10-30 - - *Michael T. WhiteleyCommits: 5Joined: 2011-11-25 @@ -3603,11 +3621,11 @@ *Wei Ming KhooCommits: 5Joined: 2012-02-17 + + *Lionel DricotCommits: 5Joined: 2012-06-04 - - *Pavel KysilkaCommits: 5Joined: 2012-06-25 @@ -3617,11 +3635,11 @@ *Pavel JaníkCommits: 5Joined: 2012-11-29 + + *Werner KoernerCommits: 5Joined: 2012-12-11 - - *Matthias HofmannCommits: 5Joined: 2013-03-08 @@ -3631,11 +3649,11 @@ *pje335_NLCommits: 5Joined: 2013-05-10 + + *Ciorba EdmondCommits: 5Joined: 2013-06-11 - - *Pader RezsoCommits: 5Joined: 2013-07-01 @@ -3645,11 +3663,11 @@ *Timothy MarkleCommits: 5Joined: 2014-01-31 + + *Jan KantertCommits: 5Joined: 2014-06-12 - - *Pasi LallinahoCommits: 5Joined: 2015-06-02 @@ -3659,11 +3677,11 @@ *Yossi ZahnCommits: 5Joined: 2016-11-25 + + *Edmund WongCommits: 5Joined: 2016-12-08 - - *Huzaifa IftikharCommits: 5Joined: 2016-12-19 @@ -3673,11 +3691,11 @@ *Lukas RöllinCommits: 5Joined: 2017-02-06 + + *Paul MenzelCommits: 5Joined: 2017-05-17 - - *Corentin NoëlCommits: 5Joined: 2019-09-20 @@ -3687,11 +3705,11 @@ *Eda Nur VarCommits: 5Joined: 2020-01-25 + + *Yukio SiraichiCommits: 5Joined: 2020-03-09 - - *Oleg ShchelykalnovCommits: 5Joined: 2020-03-28 @@ -3701,11 +3719,11 @@ *Tomofumi YagiCommits: 5Joined: 2020-09-12 + + *Umut Emre BayramogluCommits: 5Joined: 2020-11-21 - - *Georgy LitvinovCommits: 5Joined: 2020-12-16 @@ -3715,44 +3733,41 @@ *Baran AytasCommits: 5Joined: 2021-08-22 + + + + *Juan C SanzCommits: 5Joined: 2021-09-03 + *Ismael LucenoCommits: 5Joined: 2021-09-29 - - *flywireCommits: 5Joined: 2021-11-12 *rash419Commits: 5Joined: 2022-01-24 + + *Pragat PandyaCommits: 5Joined: 2022-02-01 *zhutyraCommits: 5Joined: 2022-02-01 - - *Deep17Commits: 5Joined: 2022-02-20 *Siddhant ChaudharyCommits: 5Joined: 2022-03-11 - - *Skyler GreyCommits: 5Joined: 2022-07-27 - - - *galjitCommits: 5Joined: 2022-09-07 - - *Leonid RyzhovCommits: 5Joined: 2022-11-17 + *Skyler GreyCommits: 5Joined: 2022-07-27 - *Attila SzűcsCommits: 5Joined: 2022-11-29 + *Leonid RyzhovCommits: 5Joined: 2022-11-17 *Florian BircherCommits: 4Joined: 2010-10-16 @@ -4021,15 +4036,18 @@ *YildirayCommits: 4Joined: 2021-08-08 - *Juan C. SanzCommits: 4Joined: 2021-09-03 + *ehsanCommits: 4Joined: 2022-07-01 - *ehsanCommits: 4Joined: 2022-07-01 + *PoonamShokeenCommits: 4Joined: 2022-07-21 - *PoonamShokeenCommits: 4Joined: 2022-07-21 + *Stéphane GuillouCommits: 4Joined: 2023-01-03 + + + *ektagoel12Commits: 4Joined: 2023-01-19 *buldiCommits: 4Joined: 2023-02-09 @@ -4037,11 +4055,11 @@ Keith StribleyCommits: 3Joined: 2010-06-29 + + *Jacopo NespoloCommits: 3Joined: 2010-10-01 - - *Alan DuCommits: 3Joined: 2010-10-12 @@ -4051,11 +4069,11 @@ *Xuacu SaturioCommits: 3Joined: 2010-12-19 + + *Pascal UllrichCommits: 3Joined: 2010-12-28 - - *Jonathan AquilinaCommits: 3Joined: 2011-01-18 @@ -4065,11 +4083,11 @@ *Jan DarmochwalCommits: 3Joined: 2011-01-27 + + *Chris Carpenter(mordocai)Commits: 3Joined: 2011-02-02 - - *Tantai TanakanokCommits: 3Joined: 2011-02-09 @@ -4079,11 +4097,11 @@ *Guto MaiaCommits: 3Joined: 2011-03-18 + + *Anthony DurityCommits: 3Joined: 2011-04-18 - - *Dimitri DucCommits: 3Joined: 2011-04-19 @@ -4093,11 +4111,11 @@ *Florian Allmann-RahnCommits: 3Joined: 2011-08-22 + + *Dmitry AshkadovCommits: 3Joined: 2011-08-29 - - *Michael BauerCommits: 3Joined: 2011-11-23 @@ -4107,11 +4125,11 @@ *Stefan HeinemannCommits: 3Joined: 2012-02-16 + + *Cameron PaulCommits: 3Joined: 2012-02-27 - - *Tom ThorogoodCommits: 3Joined: 2012-02-28 @@ -4121,11 +4139,11 @@ *Benjamin DrungCommits: 3Joined: 2012-06-08 + + *Mathieu VonlanthenCommits: 3Joined: 2012-07-19 - - *Bertrand LorentzCommits: 3Joined: 2012-08-03 @@ -4135,11 +4153,11 @@ *Istvan TuriCommits: 3Joined: 2012-08-16 + + *Jeremy BrownCommits: 3Joined: 2012-09-19 - - *Peter BaumgartenCommits: 3Joined: 2012-11-24 @@ -4149,11 +4167,11 @@ *Marina PlakalovicCommits: 3Joined: 2012-12-14 + + *Dávid VastagCommits: 3Joined: 2013-02-04 - - *Stefan SchickCommits: 3Joined: 2013-02-18 @@ -4163,11 +4181,11 @@ *Golnaz IrannejadCommits: 3Joined: 2013-04-02 + + *vjinochCommits: 3Joined: 2013-04-09 - - *Jason HulmeCommits: 3Joined: 2013-06-05 @@ -4177,11 +4195,11 @@ *Gabriele BulfonCommits: 3Joined: 2013-07-05 + + *Haidong LianCommits: 3Joined: 2013-07-24 - - *Tobias MuellerCommits: 3Joined: 2014-02-10 @@ -4191,11 +4209,11 @@ *Brij Mohan Lal SrivastavaCommits: 3Joined: 2014-11-12 + + *Renato FerreiraCommits: 3Joined: 2014-11-15 - - *Popa Adrian MariusCommits: 3Joined: 2015-03-23 @@ -4205,11 +4223,11 @@ *Linus BehrensCommits: 3Joined: 2015-04-23 + + *Marek DoleželCommits: 3Joined: 2015-07-06 - - *Simon LongCommits: 3Joined: 2015-07-08 @@ -4219,11 +4237,11 @@ *n.r.pearsonCommits: 3Joined: 2015-09-09 + + *Sergey FukanchikCommits: 3Joined: 2015-09-17 - - *AlexFCommits: 3Joined: 2015-11-12 @@ -4233,11 +4251,11 @@ *Mayank GuptaCommits: 3Joined: 2016-03-11 + + *Johannes BergCommits: 3Joined: 2016-08-03 - - *drazilCommits: 3Joined: 2016-08-27 @@ -4247,11 +4265,11 @@ *liongoldCommits: 3Joined: 2016-11-21 + + *John Paul Adrian GlaubitzCommits: 3Joined: 2016-11-27 - - *bansan85Commits: 3Joined: 2016-12-21 @@ -4261,11 +4279,11 @@ *Ivan SafonovCommits: 3Joined: 2017-07-13 + + *Gabriel ChiquiniCommits: 3Joined: 2017-10-01 - - *Bán RóbertCommits: 3Joined: 2017-10-25 @@ -4275,12 +4293,12 @@ *Gergely TarsolyCommits: 3Joined: 2017-11-28 - - *Ahmed GHANMICommits: 3Joined: 2017-11-30 - + *Ahmed GHANMICommits: 3Joined: 2017-11-30 + + *Abhishek ShrivastavaCommits: 3Joined: 2018-01-17 @@ -4289,105 +4307,116 @@ *Bartosz KosiorekCommits: 3Joined: 2018-02-07 + + *Shubham VermaCommits: 3Joined: 2018-02-17 - - + + *Franklin WengCommits: 3Joined: 2018-02-28 + *Laurent GodardCommits: 3Joined: 2018-04-24 *Ulkem KasapogluCommits: 3Joined: 2018-07-04 + + *Salih SariyarCommits: 3Joined: 2019-02-09 *Omer Fatih CelikCommits: 3Joined: 2019-02-10 - - *Meryem EzberCommits: 3Joined: 2019-02-10 *Andrés MaldonadoCommits: 3Joined: 2019-02-21 + + *EL-SHREIFCommits: 3Joined: 2019-02-24 *Stepas ToliautasCommits: 3Joined: 2019-12-16 - - *Michel ThomasCommits: 3Joined: 2020-02-01 *nienzuCommits: 3Joined: 2020-02-19 + + *Julian KalinowskiCommits: 3Joined: 2020-03-31 *Ian Barkley-YeungCommits: 3Joined: 2020-04-06 - - *Pierre MartyCommits: 3Joined: 2020-04-17 *Eivind SamsethCommits: 3Joined: 2020-05-16 + + *yakovruCommits: 3Joined: 2020-06-17 *mariamfahmyCommits: 3Joined: 2020-10-16 - - *Leo WangCommits: 3Joined: 2020-10-18 *Gizem OzgunCommits: 3Joined: 2020-10-23 + + *Tarun SharmaCommits: 3Joined: 2021-01-14 *Batmunkh DorjgotovCommits: 3Joined: 2021-04-27 - - *Zeynep YavuzCommits: 3Joined: 2021-08-02 *Natalia GavrilovaCommits: 3Joined: 2021-09-24 + + *Verne-LaiCommits: 3Joined: 2021-10-01 *Arnaud VERSINICommits: 3Joined: 2021-12-19 - - *Renwa HiwaCommits: 3Joined: 2022-02-09 *Tushar JhamCommits: 3Joined: 2022-02-21 + + + + *YomnasalamaCommits: 3Joined: 2022-03-28 + *Isha_DesaiCommits: 3Joined: 2022-04-06 + *Shady MohamedCommits: 3Joined: 2022-04-11 + + *Andrea RosettiCommits: 3Joined: 2022-09-15 @@ -4396,506 +4425,509 @@ *Calvince OtienoCommits: 3Joined: 2022-10-14 - *Stéphane GuillouCommits: 3Joined: 2023-01-03 + *Sebastian Andrzej SiewiorCommits: 3Joined: 2023-01-24 - *ektagoel12Commits: 3Joined: 2023-01-19 + *RasenkaiCommits: 3Joined: 2023-01-27 - *Sebastian Andrzej SiewiorCommits: 3Joined: 2023-01-24 + *Adoche OnajiCommits: 3Joined: 2023-01-30 + *Vinit AgarwalCommits: 3Joined: 2023-03-06 + + + *Yousef_RabiaCommits: 3Joined: 2023-03-07 + + Loiseleur MichelCommits: 2Joined: 2010-09-14 *Justin MalcolmCommits: 2Joined: 2010-09-29 + + *Seo SanghyeonCommits: 2Joined: 2010-09-29 *Sean McNamaraCommits: 2Joined: 2010-09-29 - - *Robert SedakCommits: 2Joined: 2010-10-05 *Sean McMurrayCommits: 2Joined: 2010-10-20 + + *Nadav VinikCommits: 2Joined: 2010-10-21 *Marcin eXine MCommits: 2Joined: 2010-11-02 - - *Dwayne BaileyCommits: 2Joined: 2010-11-03 *Christoph NoackCommits: 2Joined: 2010-12-13 + + *Sophie GautierCommits: 2Joined: 2010-12-19 *Ed DeanCommits: 2Joined: 2011-01-14 - - *Jonathan CallenCommits: 2Joined: 2011-01-29 *Karsten GerloffCommits: 2Joined: 2011-02-06 + + *Jean Charles PapinCommits: 2Joined: 2011-02-11 *Tobias KranzCommits: 2Joined: 2011-02-17 - - *Matthias KloseCommits: 2Joined: 2011-03-01 *Michael NattererCommits: 2Joined: 2011-04-08 + + *Cyril RoelandtCommits: 2Joined: 2011-04-26 *Kelly AndersonCommits: 2Joined: 2011-05-31 - - *Michal SvecCommits: 2Joined: 2011-07-12 *Mohammad ElahiCommits: 2Joined: 2011-08-27 + + *Takashi NakamotoCommits: 2Joined: 2011-08-28 *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 - - *Jan HubickaCommits: 2Joined: 2011-09-12 *Arno TeigsethCommits: 2Joined: 2011-09-14 + + *Maxim IorshCommits: 2Joined: 2011-10-05 *Emanuele FiaCommits: 2Joined: 2011-11-02 - - *Yury TarasievichCommits: 2Joined: 2011-11-23 *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 + + *Milos SramekCommits: 2Joined: 2012-01-20 *Andreas SchierlCommits: 2Joined: 2012-01-30 - - *PKEuSCommits: 2Joined: 2012-02-05 *UrmasCommits: 2Joined: 2012-02-13 + + *Bartolomé Sánchez SaladoCommits: 2Joined: 2012-02-18 *Greggory HernandezCommits: 2Joined: 2012-02-22 - - *William GathoyeCommits: 2Joined: 2012-02-28 *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 + + *Mark WolfCommits: 2Joined: 2012-04-04 *Andrew HigginsonCommits: 2Joined: 2012-04-10 - - *Abeer SethiCommits: 2Joined: 2012-04-12 *Ferran VidalCommits: 2Joined: 2012-04-21 + + *Vicente VendrellCommits: 2Joined: 2012-04-23 *David SteeleCommits: 2Joined: 2012-04-24 - - *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 *Marc GarciaCommits: 2Joined: 2012-05-04 + + *Martyn RussellCommits: 2Joined: 2012-06-07 *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 - - *Ward van WanrooijCommits: 2Joined: 2012-06-25 *Yuri DarioCommits: 2Joined: 2012-07-18 + + *Horacio FernandesCommits: 2Joined: 2012-07-20 *Andras BartekCommits: 2Joined: 2012-08-06 - - *Daniel HerdeCommits: 2Joined: 2012-08-09 *Johann MessnerCommits: 2Joined: 2012-08-28 + + *Flex LiuCommits: 2Joined: 2012-09-04 *Sergey FarbotkaCommits: 2Joined: 2012-09-21 - - *Louis PossozCommits: 2Joined: 2012-10-26 *Christos StrubulisCommits: 2Joined: 2012-12-09 + + *Arne de BruijnCommits: 2Joined: 2012-12-11 *Milan CrhaCommits: 2Joined: 2013-02-07 - - *Adam MrózCommits: 2Joined: 2013-02-24 *Gregg KingCommits: 2Joined: 2013-02-26 + + *Benedikt MorbachCommits: 2Joined: 2013-03-10 *Moritz KuettCommits: 2Joined: 2013-03-23 - - *Akash ShetyeCommits: 2Joined: 2013-03-23 *Janit AnjariaCommits: 2Joined: 2013-04-19 + + *mmeof2Commits: 2Joined: 2013-05-03 *Donizete WaterkemperCommits: 2Joined: 2013-05-23 - - *Rolf HemmerlingCommits: 2Joined: 2013-06-15 *Jing XianCommits: 2Joined: 2013-06-26 + + *Chris HoppeCommits: 2Joined: 2013-06-27 *Ri GangHuCommits: 2Joined: 2013-07-28 - - *Neil MooreCommits: 2Joined: 2013-08-09 *Viktor VargaCommits: 2Joined: 2013-08-28 + + *Janos FaragoCommits: 2Joined: 2013-09-03 *Richard HughesCommits: 2Joined: 2013-10-01 - - *Mathieu ParentCommits: 2Joined: 2013-10-14 *Jagan LokanathaCommits: 2Joined: 2013-11-19 + + *Anderson RobertoCommits: 2Joined: 2014-01-15 *Martin LiškaCommits: 2Joined: 2014-03-26 - - *Bisal NayalCommits: 2Joined: 2014-05-07 *Hussian AlamriCommits: 2Joined: 2014-05-14 + + *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 *Clarence GuoCommits: 2Joined: 2014-05-26 - - *Hideki IkedaCommits: 2Joined: 2014-06-25 *Boris EgorovCommits: 2Joined: 2014-09-08 + + *YiiChang YenCommits: 2Joined: 2014-10-16 *Vinicius VendraminiCommits: 2Joined: 2014-10-22 - - *Naruhiko OgasawaraCommits: 2Joined: 2014-10-25 *Daniel StoneCommits: 2Joined: 2014-10-29 + + *Supreme AryalCommits: 2Joined: 2014-12-04 *Gary HoustonCommits: 2Joined: 2014-12-15 - - *Mark WilliamsCommits: 2Joined: 2014-12-17 *Clément LassieurCommits: 2Joined: 2014-12-21 + + *Rimas KudelisCommits: 2Joined: 2015-01-06 *dbeurleCommits: 2Joined: 2015-01-12 - - *Kishor BhatCommits: 2Joined: 2015-01-28 *gamebusterzCommits: 2Joined: 2015-02-19 + + *Piet van OostrumCommits: 2Joined: 2015-03-12 *Laszlo Kis-AdamCommits: 2Joined: 2015-03-12 - - *Markus WernigCommits: 2Joined: 2015-03-18 *Jingtao YanCommits: 2Joined: 2015-03-23 + + *Austin ChenCommits: 2Joined: 2015-03-25 *Valter MuraCommits: 2Joined: 2015-06-07 - - *Carlos LuqueCommits: 2Joined: 2015-07-16 *Lubosz SarneckiCommits: 2Joined: 2015-08-20 + + *alexey.chemichevCommits: 2Joined: 2015-11-18 *Sheikha AL-HinaiCommits: 2Joined: 2015-12-28 - - *Yogesh DesaiCommits: 2Joined: 2016-01-05 *Kenneth KoskiCommits: 2Joined: 2016-02-20 + + *ackepenekCommits: 2Joined: 2016-02-21 *Martin NathansenCommits: 2Joined: 2016-04-18 - - *Michal KubecekCommits: 2Joined: 2016-06-02 *Akash DeshpandeCommits: 2Joined: 2016-08-13 + + *Sophie SuCommits: 2Joined: 2016-08-27 *sllCommits: 2Joined: 2016-09-06 - - *Pierre LepageCommits: 2Joined: 2016-11-05 *Tibor MógerCommits: 2Joined: 2016-12-06 + + *G_ZoltanCommits: 2Joined: 2016-12-27 *George KorepanovCommits: 2Joined: 2017-01-06 - - *Jeremy BichaCommits: 2Joined: 2017-02-06 *JeevanCommits: 2Joined: 2017-03-04 + + *blendergeekCommits: 2Joined: 2017-04-08 *Alexey VlasovCommits: 2Joined: 2017-04-12 - - *fxwanCommits: 2Joined: 2017-05-15 *Yash SrivastavCommits: 2Joined: 2017-06-20 + + *Sabin FrandesCommits: 2Joined: 2017-09-15 *Your NameCommits: 2Joined: 2017-10-09 - - *G??bor KoruhelyCommits: 2Joined: 2017-10-25 *Furkan TokacCommits: 2Joined: 2017-10-25 + + *Timotej LazarCommits: 2Joined: 2017-11-22 *martinb214Commits: 2Joined: 2017-11-28 - - *Jon NermutCommits: 2Joined: 2018-01-13 *Denis ArnaudCommits: 2Joined: 2018-01-16 + + *brian houston morrowCommits: 2Joined: 2018-01-24 *Dmitri KharchevCommits: 2Joined: 2018-01-27 - - *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 @@ -4905,11 +4937,11 @@ *Simon QuigleyCommits: 2Joined: 2018-10-11 + + *Mark DoboCommits: 2Joined: 2018-10-20 - - *Izabela BakollariCommits: 2Joined: 2018-10-27 @@ -4919,11 +4951,11 @@ *Tóth AttilaCommits: 2Joined: 2018-12-30 + + *Patrik VasCommits: 2Joined: 2018-12-31 - - *Dawid GanCommits: 2Joined: 2019-01-09 @@ -4933,11 +4965,11 @@ *kaishu-sahuCommits: 2Joined: 2019-01-27 + + *Phil KrylovCommits: 2Joined: 2019-02-10 - - *Muzaffer Kadir YILMAZCommits: 2Joined: 2019-02-10 @@ -4947,11 +4979,11 @@ *Jaromir WysogladCommits: 2Joined: 2019-03-27 + + *Rtch90Commits: 2Joined: 2019-04-22 - - *DarkByt31Commits: 2Joined: 2019-04-22 @@ -4961,11 +4993,11 @@ *DaeHyun SungCommits: 2Joined: 2019-06-01 + + *John ZhangCommits: 2Joined: 2019-09-23 - - *Mayank SumanCommits: 2Joined: 2019-10-03 @@ -4975,11 +5007,11 @@ *Mattia RizzoloCommits: 2Joined: 2019-10-23 + + *Batuhan Görkem BenzerCommits: 2Joined: 2019-12-18 - - *Desmin AlpaslanCommits: 2Joined: 2019-12-18 @@ -4989,11 +5021,11 @@ *Bjoern KirchhoffCommits: 2Joined: 2020-01-15 + + *Burak BalaCommits: 2Joined: 2020-01-25 - - *Marina LatiniCommits: 2Joined: 2020-02-11 @@ -5003,11 +5035,11 @@ *jamesCommits: 2Joined: 2020-02-28 + + *Andrew Lee (李健秋)Commits: 2Joined: 2020-03-07 - - *Jean-Louis FuchsCommits: 2Joined: 2020-03-10 @@ -5017,11 +5049,11 @@ *FatihCommits: 2Joined: 2020-04-23 + + *Yunusemre ŞentürkCommits: 2Joined: 2020-05-14 - - *Ilkyu JuCommits: 2Joined: 2020-08-08 @@ -5031,11 +5063,11 @@ *Luke DixonCommits: 2Joined: 2020-08-30 + + *Sven LüppkenCommits: 2Joined: 2020-10-30 - - *Zeynep İnkayaCommits: 2Joined: 2020-11-21 @@ -5045,11 +5077,11 @@ *Bartu BayazıtCommits: 2Joined: 2020-11-21 + + *Mücahid AydinCommits: 2Joined: 2020-11-21 - - *ShyamPraveenSinghCommits: 2Joined: 2020-11-24 @@ -5059,11 +5091,11 @@ *siddheshpatil777Commits: 2Joined: 2020-12-19 + + *halfhiddencodeCommits: 2Joined: 2020-12-26 - - *princesinghtomarCommits: 2Joined: 2020-12-28 @@ -5073,11 +5105,11 @@ *ShobhitCommits: 2Joined: 2021-01-30 + + *Quan NguyenCommits: 2Joined: 2021-02-09 - - *Eyal RozenbergCommits: 2Joined: 2021-02-13 @@ -5087,11 +5119,11 @@ *MoazCommits: 2Joined: 2021-02-21 + + *Winston Min TjongCommits: 2Joined: 2021-03-02 - - *Gökay ŞatırCommits: 2Joined: 2021-03-14 @@ -5101,11 +5133,11 @@ *rounakCommits: 2Joined: 2021-03-31 + + *sarynasserCommits: 2Joined: 2021-04-10 - - *Mihail BalabanovCommits: 2Joined: 2021-04-11 @@ -5115,11 +5147,11 @@ *Sabyasachi BhoiCommits: 2Joined: 2021-07-22 + + *HuilinCommits: 2Joined: 2021-07-24 - - *oguzbalkayaCommits: 2Joined: 2021-08-03 @@ -5129,11 +5161,11 @@ *Karan AbrolCommits: 2Joined: 2021-08-11 + + *Emanuel SchorschCommits: 2Joined: 2021-10-04 - - *HarjotCommits: 2Joined: 2021-11-17 @@ -5143,25 +5175,25 @@ *Sinduja YCommits: 2Joined: 2022-02-07 - - *Kunal PawarCommits: 2Joined: 2022-02-10 - + *Kunal PawarCommits: 2Joined: 2022-02-10 + + *psidiumcodeCommits: 2Joined: 2022-02-15 *Gautham KrishnanCommits: 2Joined: 2022-03-01 - *YomnasalamaCommits: 2Joined: 2022-03-28 + *mostafa-elsharnobyCommits: 2Joined: 2022-03-28 + + *Rizal MuttaqinCommits: 2Joined: 2022-04-05 - - *Vincent ReherCommits: 2Joined: 2022-04-06 @@ -5171,11 +5203,11 @@ *LukasCommits: 2Joined: 2022-04-20 + + *AshSincCommits: 2Joined: 2022-05-19 - - *Kurt NordbackCommits: 2Joined: 2022-05-28 @@ -5185,11 +5217,11 @@ *Nathan Pratta TeodosioCommits: 2Joined: 2022-06-21 + + *Mahdi TizabiCommits: 2Joined: 2022-06-25 - - *wjh-laCommits: 2Joined: 2022-07-27 @@ -5199,11 +5231,11 @@ *Sam JamesCommits: 2Joined: 2022-09-02 + + *SatyaCommits: 2Joined: 2022-09-05 - - *Emmanuel PeterCommits: 2Joined: 2022-10-13 @@ -5213,11 +5245,11 @@ *insanetreeCommits: 2Joined: 2022-10-17 + + *Nalini Prasad DashCommits: 2Joined: 2022-10-23 - - *Emanuele GoldoniCommits: 2Joined: 2022-11-07 @@ -5227,26 +5259,54 @@ *DowwdyJCommits: 2Joined: 2023-01-17 + + + + *PLCommits: 2Joined: 2023-01-28 + + + *anfanite396Commits: 2Joined: 2023-02-01 + - *RasenkaiCommits: 2Joined: 2023-01-27 + *Uday SharmaCommits: 2Joined: 2023-02-11 + + + *niket1322gitCommits: 2Joined: 2023-02-22 - *PLCommits: 2Joined: 2023-01-28 + *NirnayKCommits: 2Joined: 2023-02-25 - *Vojtěch DoležalCommits: 2Joined: 2023-02-13 + *Abdallah ElhdadCommits: 2Joined: 2023-03-02 - *NeilBrownCommits: 1Joined: 2010-09-28 + *Supriyo PaulCommits: 2Joined: 2023-03-03 - *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 + *Jaume PujantellCommits: 2Joined: 2023-03-03 + + + + + *Arvind KCommits: 2Joined: 2023-03-04 + + + *adityasingh22Commits: 2Joined: 2023-03-08 + + + *Bayram ÇiçekCommits: 2Joined: 2023-03-09 + + + *NeilBrownCommits: 1Joined: 2010-09-28 + *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 + + *Nick SavageCommits: 1Joined: 2010-10-01 @@ -5255,11 +5315,11 @@ *Evertjan GarretsenCommits: 1Joined: 2010-10-04 + + *Denis LackovicCommits: 1Joined: 2010-10-05 - - *krishnan parthasarathiCommits: 1Joined: 2010-10-07 @@ -5269,11 +5329,11 @@ *Trevor MurphyCommits: 1Joined: 2010-10-20 + + *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 - - *Adrià Cereto MassaguéCommits: 1Joined: 2010-10-26 @@ -5283,11 +5343,11 @@ *Alexandre FournierCommits: 1Joined: 2010-11-06 + + *Christopher BackhouseCommits: 1Joined: 2010-12-06 - - *pavelCommits: 1Joined: 2010-12-10 @@ -5297,11 +5357,11 @@ *Freek de KruijfCommits: 1Joined: 2010-12-19 + + *Paolo PozzanCommits: 1Joined: 2010-12-19 - - *Dan CorneanuCommits: 1Joined: 2010-12-29 @@ -5311,11 +5371,11 @@ *AWASHIRO IkuyaCommits: 1Joined: 2011-01-04 + + *Andy HearnCommits: 1Joined: 2011-01-09 - - *Nikita OfitserovCommits: 1Joined: 2011-01-10 @@ -5325,11 +5385,11 @@ *pgajdosCommits: 1Joined: 2011-01-31 + + *Andreas SliwkaCommits: 1Joined: 2011-02-06 - - *Andrey TurkinCommits: 1Joined: 2011-02-09 @@ -5339,11 +5399,11 @@ *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 + + *Rafael CabralCommits: 1Joined: 2011-03-31 - - *Alberto RuizCommits: 1Joined: 2011-03-31 @@ -5353,11 +5413,11 @@ *Dona HertelCommits: 1Joined: 2011-04-14 + + *Maxime CôtéCommits: 1Joined: 2011-04-19 - - *Chris CheneyCommits: 1Joined: 2011-04-27 @@ -5367,11 +5427,11 @@ *Cassio NeriCommits: 1Joined: 2011-05-01 + + *Marcel HBCommits: 1Joined: 2011-05-03 - - *William LachanceCommits: 1Joined: 2011-06-08 @@ -5381,11 +5441,11 @@ *David PenzesCommits: 1Joined: 2011-06-14 + + *Dolives BenoitCommits: 1Joined: 2011-07-04 - - *Ta Duc TungCommits: 1Joined: 2011-08-08 @@ -5395,11 +5455,11 @@ *Andor ErtseyCommits: 1Joined: 2011-09-04 + + *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 - - *Bernhard M. WiedemannCommits: 1Joined: 2011-10-17 @@ -5409,11 +5469,11 @@ *Pádraig BradyCommits: 1Joined: 2011-10-21 + + *Andrew WestCommits: 1Joined: 2011-10-21 - - *Matt PrattCommits: 1Joined: 2011-11-02 @@ -5423,11 +5483,11 @@ *Modestas RimkusCommits: 1Joined: 2011-11-21 + + *Roman EiseleCommits: 1Joined: 2011-11-23 - - *Serg BormantCommits: 1Joined: 2011-11-28 @@ -5437,11 +5497,11 @@ *JesseCommits: 1Joined: 2011-12-14 + + *Vincent PovirkCommits: 1Joined: 2011-12-19 - - *Moritz BechlerCommits: 1Joined: 2011-12-19 @@ -5451,11 +5511,11 @@ *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 + + *Victor LeeCommits: 1Joined: 2011-12-24 - - *Joshua CogliatiCommits: 1Joined: 2012-01-06 @@ -5465,11 +5525,11 @@ *Rich WarehamCommits: 1Joined: 2012-01-12 + + *Da'angh KhagarothCommits: 1Joined: 2012-01-16 - - *Ankitkumar Rameshchandra PatelCommits: 1Joined: 2012-01-20 @@ -5479,11 +5539,11 @@ *dbarisakkurtCommits: 1Joined: 2012-02-02 + + *Daniel MihalyiCommits: 1Joined: 2012-02-06 - - *Carsten NiehausCommits: 1Joined: 2012-02-09 @@ -5493,11 +5553,11 @@ *Fernando GovernatoreCommits: 1Joined: 2012-02-25 + + *Juergen SteinhilberCommits: 1Joined: 2012-03-05 - - *Italo VignoliCommits: 1Joined: 2012-03-09 @@ -5507,11 +5567,11 @@ *Arfrever Frehtes Taifersar ArahesisCommits: 1Joined: 2012-04-02 + + *Aldo Román NureñaCommits: 1Joined: 2012-04-09 - - *Laureano G. LindeCommits: 1Joined: 2012-04-15 @@ -5521,11 +5581,11 @@ *Ross BurtonCommits: 1Joined: 2012-04-18 + + *Jaime NavarroCommits: 1Joined: 2012-04-20 - - *Florent GallaireCommits: 1Joined: 2012-04-21 @@ -5535,11 +5595,11 @@ *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 + + *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 - - *Xavi Escriche GalindoCommits: 1Joined: 2012-04-24 @@ -5549,11 +5609,11 @@ *Miguel FernándezCommits: 1Joined: 2012-04-26 + + *Javier CatalaCommits: 1Joined: 2012-04-26 - - *Jordi MallachCommits: 1Joined: 2012-05-03 @@ -5563,11 +5623,11 @@ *Daniel NaberCommits: 1Joined: 2012-05-09 + + *Ionut BiruCommits: 1Joined: 2012-05-14 - - *Alberto FerreiraCommits: 1Joined: 2012-06-08 @@ -5577,11 +5637,11 @@ *Peter TillemansCommits: 1Joined: 2012-06-26 + + *Phil HartCommits: 1Joined: 2012-06-29 - - *Kevin PengCommits: 1Joined: 2012-07-20 @@ -5591,11 +5651,11 @@ *Tim JanikCommits: 1Joined: 2012-08-10 + + *Joseph BrownCommits: 1Joined: 2012-08-14 - - *Kevin HausmannCommits: 1Joined: 2012-08-17 @@ -5605,11 +5665,11 @@ *DaveCommits: 1Joined: 2012-08-23 + + *Marco BiscaroCommits: 1Joined: 2012-08-27 - - *Nico WeyandCommits: 1Joined: 2012-09-02 @@ -5619,11 +5679,11 @@ *sagarCommits: 1Joined: 2012-09-15 + + *Andrew RistCommits: 1Joined: 2012-10-05 - - *Neven ĆosićCommits: 1Joined: 2012-10-08 @@ -5633,11 +5693,11 @@ *Philipp KaluzaCommits: 1Joined: 2012-10-21 + + *LesterCommits: 1Joined: 2012-10-23 - - *Mathieu DCommits: 1Joined: 2012-11-19 @@ -5647,11 +5707,11 @@ *Paula MannesCommits: 1Joined: 2012-11-30 + + *Olivier PlotonCommits: 1Joined: 2012-12-12 - - *pkoroau pkoroauCommits: 1Joined: 2012-12-20 @@ -5661,11 +5721,11 @@ *Tadele AssefaCommits: 1Joined: 2013-01-15 + + *Dennis E. HamiltonCommits: 1Joined: 2013-01-19 - - *OKANO TakayoshiCommits: 1Joined: 2013-01-29 @@ -5675,11 +5735,11 @@ *Christopher HotchkissCommits: 1Joined: 2013-02-15 + + *Andrew BranchCommits: 1Joined: 2013-02-20 - - *Martin BrownCommits: 1Joined: 2013-02-23 @@ -5689,11 +5749,11 @@ *Valek FilippovCommits: 1Joined: 2013-02-23 + + *Kenneth BeckCommits: 1Joined: 2013-03-02 - - *Jiri BlechaCommits: 1Joined: 2013-03-02 @@ -5703,11 +5763,11 @@ *Vojta KoukalCommits: 1Joined: 2013-03-03 + + *Ondřej SmržCommits: 1Joined: 2013-03-10 - - *Steven MeyerCommits: 1Joined: 2013-03-13 @@ -5717,11 +5777,11 @@ *Johannes WidmerCommits: 1Joined: 2013-03-23 + + *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 - - *Lucian ConstantinCommits: 1Joined: 2013-03-24 @@ -5731,11 +5791,11 @@ *Goran RakicCommits: 1Joined: 2013-03-30 + + *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 - - *Honza MinarikCommits: 1Joined: 2013-04-03 @@ -5745,11 +5805,11 @@ *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 + + *Jakub GolebiewskiCommits: 1Joined: 2013-04-09 - - *Pavel KacerCommits: 1Joined: 2013-04-11 @@ -5759,11 +5819,11 @@ *Alex IvanCommits: 1Joined: 2013-04-15 + + *Ota ChasákCommits: 1Joined: 2013-04-24 - - *Jan BobisudCommits: 1Joined: 2013-04-29 @@ -5773,11 +5833,11 @@ *ricardobottoCommits: 1Joined: 2013-05-18 + + *Jonathan SchultzCommits: 1Joined: 2013-05-22 - - *Neil Voss (fourier)Commits: 1Joined: 2013-05-24 @@ -5787,11 +5847,11 @@ *Eric S. RaymondCommits: 1Joined: 2013-06-07 + + *Jean-François Fortin TamCommits: 1Joined: 2013-06-10 - - *Benjamin OtteCommits: 1Joined: 2013-06-15 @@ -5801,11 +5861,11 @@ *sonakshi nathaniCommits: 1Joined: 2013-06-26 + + *Alaa.BukhariCommits: 1Joined: 2013-07-04 - - *Erik AuerswaldCommits: 1Joined: 2013-07-09 @@ -5815,11 +5875,11 @@ *Michael DuelliCommits: 1Joined: 2013-08-01 + + *Srijan ChoudharyCommits: 1Joined: 2013-08-10 - - *AdrienCommits: 1Joined: 2013-08-18 @@ -5829,11 +5889,11 @@ *James Michael DuPontCommits: 1Joined: 2013-08-30 + + *Raymond WellsCommits: 1Joined: 2013-09-02 - - *Danny BrownCommits: 1Joined: 2013-09-18 @@ -5843,11 +5903,11 @@ *matt_51Commits: 1Joined: 2013-11-05 + + *Rolf KoetterCommits: 1Joined: 2013-11-05 - - *yjw9012Commits: 1Joined: 2013-12-30 @@ -5857,11 +5917,11 @@ *Michal SiedlaczekCommits: 1Joined: 2014-01-25 + + *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 - - *christianjuCommits: 1Joined: 2014-02-10 @@ -5871,11 +5931,11 @@ *Tarun KumarCommits: 1Joined: 2014-03-07 + + *Jason GerlowskiCommits: 1Joined: 2014-03-07 - - *roopak12345Commits: 1Joined: 2014-03-09 @@ -5885,11 +5945,11 @@ *gdm.manmeetCommits: 1Joined: 2014-03-18 + + *Milan ZelenkaCommits: 1Joined: 2014-03-26 - - *Hannah LyhneCommits: 1Joined: 2014-04-01 @@ -5899,11 +5959,11 @@ *Ryo ONODERACommits: 1Joined: 2014-04-07 + + *Michal HorakCommits: 1Joined: 2014-04-21 - - *Alex GulyásCommits: 1Joined: 2014-04-27 @@ -5913,11 +5973,11 @@ *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 + + *Shreyansh GandhiCommits: 1Joined: 2014-06-10 - - *Damien ChambeCommits: 1Joined: 2014-06-15 @@ -5927,11 +5987,11 @@ *Dushyant BhalgamiCommits: 1Joined: 2014-07-04 + + *Fahad Al-SaidiCommits: 1Joined: 2014-07-16 - - *Martin OwensCommits: 1Joined: 2014-07-27 @@ -5941,11 +6001,11 @@ *xjclCommits: 1Joined: 2014-08-04 + + *Audrey TangCommits: 1Joined: 2014-08-05 - - *Hiroto KagotaniCommits: 1Joined: 2014-08-19 @@ -5955,11 +6015,11 @@ *PhyzerCommits: 1Joined: 2014-09-13 + + *Babu VincentCommits: 1Joined: 2014-09-19 - - *Seyeong KimCommits: 1Joined: 2014-10-06 @@ -5969,12 +6029,12 @@ *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 - - *Ruggero CyrilleCommits: 1Joined: 2014-10-18 - + *Ruggero CyrilleCommits: 1Joined: 2014-10-18 + + *Victor PortellaCommits: 1Joined: 2014-11-05 @@ -5983,11 +6043,11 @@ *Foo Lai ChooCommits: 1Joined: 2014-11-26 + + *galbarnissanCommits: 1Joined: 2014-12-03 - - *Mattias PõldaruCommits: 1Joined: 2014-12-06 @@ -5997,11 +6057,11 @@ *Maarten HoesCommits: 1Joined: 2014-12-20 + + *Pieter AdriaensenCommits: 1Joined: 2014-12-21 - - *Andreas K. Huettel (dilfridge)Commits: 1Joined: 2015-01-04 @@ -6011,11 +6071,11 @@ *Edmund LaugassonCommits: 1Joined: 2015-01-07 + + *Michael KovarikCommits: 1Joined: 2015-01-07 - - *ZirkCommits: 1Joined: 2015-01-07 @@ -6025,11 +6085,11 @@ *Swachhand LokhandeCommits: 1Joined: 2015-03-07 + + *Michael HornCommits: 1Joined: 2015-03-21 - - *Karthick Prasad GunasekaranCommits: 1Joined: 2015-03-22 @@ -6039,11 +6099,11 @@ *Dobra GaborCommits: 1Joined: 2015-04-02 + + *Jorge Cunha MendesCommits: 1Joined: 2015-04-03 - - *Sujith SudhakaranCommits: 1Joined: 2015-04-07 @@ -6053,11 +6113,11 @@ *ritztroCommits: 1Joined: 2015-04-11 + + *massinissaHamidiCommits: 1Joined: 2015-05-07 - - *Yurii KolesnykovCommits: 1Joined: 2015-05-10 @@ -6067,11 +6127,11 @@ *umairshahidCommits: 1Joined: 2015-05-29 + + *Antoine CœurCommits: 1Joined: 2015-06-11 - - *Jihui ChoiCommits: 1Joined: 2015-06-22 @@ -6081,11 +6141,11 @@ *Florian EffenbergerCommits: 1Joined: 2015-08-04 + + *Fernando PiraniCommits: 1Joined: 2015-08-04 - - *Nathan WellsCommits: 1Joined: 2015-09-03 @@ -6095,11 +6155,11 @@ *Slávek BankoCommits: 1Joined: 2015-10-10 + + *Timothée IsnardCommits: 1Joined: 2015-10-11 - - *marstayCommits: 1Joined: 2015-10-18 @@ -6109,11 +6169,11 @@ *Mihovil StanićCommits: 1Joined: 2015-11-11 + + *Keigo KawamuraCommits: 1Joined: 2015-11-16 - - *Steve HartCommits: 1Joined: 2015-11-17 @@ -6123,11 +6183,11 @@ *Willian BriottoCommits: 1Joined: 2015-11-21 + + *Nicola PovoleriCommits: 1Joined: 2015-11-28 - - *Paolo BernardiCommits: 1Joined: 2015-11-30 @@ -6137,11 +6197,11 @@ *William BonnetCommits: 1Joined: 2015-12-05 + + *Johannes HaufCommits: 1Joined: 2015-12-31 - - *Debarshi RayCommits: 1Joined: 2016-01-08 @@ -6151,11 +6211,11 @@ *Nusaiba Al-KindiCommits: 1Joined: 2016-01-21 + + *Gabriele PonzoCommits: 1Joined: 2016-01-29 - - *Marc BessièresCommits: 1Joined: 2016-01-29 @@ -6165,11 +6225,11 @@ *Hank LeiningerCommits: 1Joined: 2016-02-27 + + *Apachev IvanCommits: 1Joined: 2016-03-08 - - *HaidongWuCommits: 1Joined: 2016-03-09 @@ -6179,11 +6239,11 @@ *Dag WieersCommits: 1Joined: 2016-03-13 + + *Alexandru MoscuCommits: 1Joined: 2016-03-18 - - *Gleb MishchenkoCommits: 1Joined: 2016-03-22 @@ -6193,11 +6253,11 @@ *sunwebCommits: 1Joined: 2016-04-08 + + *Seraphime KirkovskiCommits: 1Joined: 2016-04-29 - - *Nurhak ALTINCommits: 1Joined: 2016-05-01 @@ -6207,11 +6267,11 @@ *PrashantCommits: 1Joined: 2016-05-17 + + *Sam TygierCommits: 1Joined: 2016-05-22 - - *Helena SvobodovaCommits: 1Joined: 2016-05-25 @@ -6221,11 +6281,11 @@ *anwilli5Commits: 1Joined: 2016-06-06 + + *emahaldar/emCommits: 1Joined: 2016-06-13 - - *Mike SaundersCommits: 1Joined: 2016-06-20 @@ -6235,11 +6295,11 @@ *Julian MehneCommits: 1Joined: 2016-08-04 + + *James ClarkeCommits: 1Joined: 2016-08-05 - - *Yan PashkovskyCommits: 1Joined: 2016-08-12 @@ -6249,11 +6309,11 @@ *Zenaan HarknessCommits: 1Joined: 2016-08-22 + + *Andrea MussapCommits: 1Joined: 2016-10-02 - - *Ilya PonamarevCommits: 1Joined: 2016-10-05 @@ -6263,11 +6323,11 @@ *Mirco RondiniCommits: 1Joined: 2016-10-10 + + *Chandanathil P. GeevanCommits: 1Joined: 2016-10-24 - - *Шиповський РоманCommits: 1Joined: 2016-10-28 @@ -6277,11 +6337,11 @@ *Owen GenatCommits: 1Joined: 2016-11-20 + + *Christina AccioneCommits: 1Joined: 2016-11-22 - - *n5xgdhCommits: 1Joined: 2016-12-04 @@ -6291,11 +6351,11 @@ *thvalloisCommits: 1Joined: 2017-01-03 + + *Saurav SachidanandCommits: 1Joined: 2017-01-17 - - *Aleix PolCommits: 1Joined: 2017-01-19 @@ -6305,11 +6365,11 @@ *Mike GorseCommits: 1Joined: 2017-03-11 + + *Atef haresCommits: 1Joined: 2017-03-12 - - *ComputingDwarfCommits: 1Joined: 2017-03-12 @@ -6319,11 +6379,11 @@ *udaycoderCommits: 1Joined: 2017-03-14 + + *Dennis NielenCommits: 1Joined: 2017-03-21 - - *Andreas SägerCommits: 1Joined: 2017-03-26 @@ -6333,11 +6393,11 @@ *Werner TietzCommits: 1Joined: 2017-04-11 + + *nikkiCommits: 1Joined: 2017-04-12 - - *Catherine VanceCommits: 1Joined: 2017-04-17 @@ -6347,11 +6407,11 @@ *frederic vromanCommits: 1Joined: 2017-05-12 + + *KappanneoCommits: 1Joined: 2017-05-29 - - *Arianna MascioliniCommits: 1Joined: 2017-05-29 @@ -6361,11 +6421,11 @@ *dcvbCommits: 1Joined: 2017-07-06 + + *Sean StanglCommits: 1Joined: 2017-07-09 - - *Luke DellerCommits: 1Joined: 2017-07-12 @@ -6375,11 +6435,11 @@ *serdarot5Commits: 1Joined: 2017-08-05 + + *Sanjaykumar Girishkumar PatelCommits: 1Joined: 2017-08-19 - - *Dinh LeCommits: 1Joined: 2017-09-05 @@ -6389,11 +6449,11 @@ *Stoyan DimitrovCommits: 1Joined: 2017-10-01 + + *nigeldiasCommits: 1Joined: 2017-10-02 - - *Matti LehtonenCommits: 1Joined: 2017-10-07 @@ -6403,11 +6463,11 @@ *Kristóf UmannCommits: 1Joined: 2017-10-25 + + *qzhengCommits: 1Joined: 2017-11-14 - - *Suhail AlkowaileetCommits: 1Joined: 2017-12-25 @@ -6417,11 +6477,11 @@ *Gabriele PonzoCommits: 1Joined: 2018-02-06 + + *Rostislav KondratenkoCommits: 1Joined: 2018-02-21 - - *ReshmaCommits: 1Joined: 2018-03-09 @@ -6431,11 +6491,11 @@ *Álex PuchadesCommits: 1Joined: 2018-03-14 + + *kowtherCommits: 1Joined: 2018-04-06 - - *Nithin Kumar PadavuCommits: 1Joined: 2018-04-07 @@ -6445,11 +6505,11 @@ *Heiko TietzeCommits: 1Joined: 2018-04-16 + + *DiadloCommits: 1Joined: 2018-05-23 - - *Fred KruseCommits: 1Joined: 2018-05-28 @@ -6459,11 +6519,11 @@ *Louis SautierCommits: 1Joined: 2018-06-10 + + *Ali AhmadiCommits: 1Joined: 2018-06-26 - - *SalimHabchiCommits: 1Joined: 2018-07-11 @@ -6473,11 +6533,11 @@ *U-Vladimir\VadimCommits: 1Joined: 2018-08-05 + + *Don LewisCommits: 1Joined: 2018-08-22 - - *Bijan TabatabaiCommits: 1Joined: 2018-08-26 @@ -6487,11 +6547,11 @@ *AlicVBCommits: 1Joined: 2018-10-17 + + *Alain RomedenneCommits: 1Joined: 2018-11-22 - - *Howard JohnsonCommits: 1Joined: 2018-11-25 @@ -6501,11 +6561,11 @@ *Çağrı DolazCommits: 1Joined: 2018-12-30 + + *Doğa Deniz ArıcıCommits: 1Joined: 2018-12-30 - - *Andreas SturmlechnerCommits: 1Joined: 2019-01-08 @@ -6515,11 +6575,11 @@ *Ajay MahatoCommits: 1Joined: 2019-01-21 + + *Jim JagielskiCommits: 1Joined: 2019-01-23 - - *Yusuf SonmezCommits: 1Joined: 2019-02-10 @@ -6529,11 +6589,11 @@ *Sainal ShahCommits: 1Joined: 2019-03-10 + + *Wenzhe PeiCommits: 1Joined: 2019-03-11 - - *VaibhavCommits: 1Joined: 2019-03-17 @@ -6543,11 +6603,11 @@ *Greg VeldmanCommits: 1Joined: 2019-03-24 + + *Gagandeep SinghCommits: 1Joined: 2019-04-01 - - *Jason BurnsCommits: 1Joined: 2019-04-08 @@ -6557,11 +6617,11 @@ *Milutin SmiljanicCommits: 1Joined: 2019-04-19 + + *Andrew HyattCommits: 1Joined: 2019-05-02 - - *Cor NouwsCommits: 1Joined: 2019-05-23 @@ -6571,11 +6631,11 @@ *Jay BinghamCommits: 1Joined: 2019-06-03 + + *Jim MacArthurCommits: 1Joined: 2019-06-11 - - *Jim MacArthurCommits: 1Joined: 2019-07-07 @@ -6585,11 +6645,11 @@ *Vipul GuptaCommits: 1Joined: 2019-08-09 + + *Kovács László ZoltánCommits: 1Joined: 2019-08-13 - - *AWASHIRO IkuyaCommits: 1Joined: 2019-08-17 @@ -6599,11 +6659,11 @@ *Nicolas FellaCommits: 1Joined: 2019-09-01 + + *Dennis SchriddeCommits: 1Joined: 2019-10-04 - - *Peter LevineCommits: 1Joined: 2019-10-18 @@ -6613,11 +6673,11 @@ *Martin MilataCommits: 1Joined: 2019-12-04 + + *shashikdmCommits: 1Joined: 2019-12-08 - - *Selim ŞekerCommits: 1Joined: 2019-12-18 @@ -6627,11 +6687,11 @@ *ertoCommits: 1Joined: 2019-12-20 + + *Andrés MaldonadoCommits: 1Joined: 2019-12-26 - - *cagatayCommits: 1Joined: 2019-12-28 @@ -6641,11 +6701,11 @@ *Louis MeyratCommits: 1Joined: 2020-01-12 + + *Cumali ToprakCommits: 1Joined: 2020-01-27 - - *Serkan ÖzkayaCommits: 1Joined: 2020-01-28 @@ -6655,11 +6715,11 @@ *praneshulleriCommits: 1Joined: 2020-02-11 + + *Kris van der MerweCommits: 1Joined: 2020-02-16 - - *Adam MajerCommits: 1Joined: 2020-02-19 @@ -6669,11 +6729,11 @@ *Matteo CasalinCommits: 1Joined: 2020-03-04 + + *TJ HoltCommits: 1Joined: 2020-03-12 - - *So YanaiharaCommits: 1Joined: 2020-03-21 @@ -6683,11 +6743,11 @@ *Wyatt TurnerCommits: 1Joined: 2020-03-26 + + *mikiCommits: 1Joined: 2020-04-09 - - *Alexander VolkovCommits: 1Joined: 2020-04-09 @@ -6697,11 +6757,11 @@ *Pavel KlevakinCommits: 1Joined: 2020-04-17 + + *Markus KellerCommits: 1Joined: 2020-05-01 - - *Martin WhitakerCommits: 1Joined: 2020-05-08 @@ -6711,11 +6771,11 @@ *Igor PoboikoCommits: 1Joined: 2020-05-22 + + *Muhammet KaraCommits: 1Joined: 2020-05-24 - - *Ilia SheshukovCommits: 1Joined: 2020-06-04 @@ -6725,11 +6785,11 @@ *Yakov ReztsovCommits: 1Joined: 2020-06-15 + + *Pranam LashkariCommits: 1Joined: 2020-06-20 - - *Shiro KawaiCommits: 1Joined: 2020-06-26 @@ -6739,11 +6799,11 @@ *Octavio AlvarezCommits: 1Joined: 2020-07-16 + + *tgds03Commits: 1Joined: 2020-08-16 - - *ramtk6726Commits: 1Joined: 2020-08-16 @@ -6753,11 +6813,11 @@ *HochwasserCommits: 1Joined: 2020-09-17 + + *Felix WiegandCommits: 1Joined: 2020-09-25 - - *Travis StewartCommits: 1Joined: 2020-10-01 @@ -6767,11 +6827,11 @@ *NikhilCommits: 1Joined: 2020-10-04 + + *DanielCommits: 1Joined: 2020-10-10 - - *Platon PronkoCommits: 1Joined: 2020-10-19 @@ -6781,11 +6841,11 @@ *Betül İnceCommits: 1Joined: 2020-10-22 + + *Ismael OleaCommits: 1Joined: 2020-10-28 - - *Jeff LawCommits: 1Joined: 2020-11-03 @@ -6795,11 +6855,11 @@ *ArdaCommits: 1Joined: 2020-11-21 + + *lastirembenderCommits: 1Joined: 2020-11-21 - - *Henrik KarlssonCommits: 1Joined: 2020-11-26 @@ -6809,11 +6869,11 @@ *Edward LynchCommits: 1Joined: 2020-11-29 + + *cu-16bcs1798Commits: 1Joined: 2020-12-02 - - *gar SoulCommits: 1Joined: 2020-12-08 @@ -6823,11 +6883,11 @@ *Quentin PAGÈSCommits: 1Joined: 2021-01-06 + + *Isah BllacaCommits: 1Joined: 2021-01-08 - - *anirudhSCommits: 1Joined: 2021-01-10 @@ -6837,11 +6897,11 @@ *Linus HeckemannCommits: 1Joined: 2021-02-07 + + *vipbuoyCommits: 1Joined: 2021-02-14 - - *Quentin DELAGECommits: 1Joined: 2021-02-18 @@ -6851,12 +6911,12 @@ *heet-2312Commits: 1Joined: 2021-03-01 - - *JohnCommits: 1Joined: 2021-03-04 - + *JohnCommits: 1Joined: 2021-03-04 + + *ViswaasLPCommits: 1Joined: 2021-03-12 @@ -6865,11 +6925,11 @@ *arpit1912Commits: 1Joined: 2021-03-19 + + *pekka-devCommits: 1Joined: 2021-03-21 - - *Mehmet Sait GülmezCommits: 1Joined: 2021-03-22 @@ -6879,11 +6939,11 @@ *Aritz ErkiagaCommits: 1Joined: 2021-03-25 + + *anirudh4583Commits: 1Joined: 2021-03-26 - - *David BlatterCommits: 1Joined: 2021-03-31 @@ -6893,11 +6953,11 @@ *Oleksii MakhotinCommits: 1Joined: 2021-04-06 + + *Vatsal32Commits: 1Joined: 2021-04-07 - - *Carmen Bianca BakkerCommits: 1Joined: 2021-04-11 @@ -6907,11 +6967,11 @@ *Joshua WilliamsCommits: 1Joined: 2021-05-22 + + *MarcoFalkeCommits: 1Joined: 2021-06-03 - - *Uwe AuerCommits: 1Joined: 2021-07-12 @@ -6921,11 +6981,11 @@ *Aleś BułojčykCommits: 1Joined: 2021-09-27 + + *Rishav ChattopadhyaCommits: 1Joined: 2021-10-23 - - *mwarnerCommits: 1Joined: 2021-11-25 @@ -6935,11 +6995,11 @@ *Urja RannikkoCommits: 1Joined: 2021-12-05 + + *Krzysztof HałasaCommits: 1Joined: 2021-12-29 - - *altCommits: 1Joined: 2022-01-04 @@ -6949,11 +7009,11 @@ *yaldaCommits: 1Joined: 2022-01-25 + + *javierde22Commits: 1Joined: 2022-01-30 - - *jwtiyar narimanCommits: 1Joined: 2022-02-14 @@ -6963,29 +7023,23 @@ *Łukasz LeszkoCommits: 1Joined: 2022-03-17 - - *Lemures LemniscatiCommits: 1Joined: 2022-03-17 - - *Sarrah BastawalaCommits: 1Joined: 2022-03-21 + *Lemures LemniscatiCommits: 1Joined: 2022-03-17 - *mostafa-elsharnobyCommits: 1Joined: 2022-03-28 + *Sarrah BastawalaCommits: 1Joined: 2022-03-21 *Behrad KhorramCommits: 1Joined: 2022-04-03 - *Shady MohamedCommits: 1Joined: 2022-04-11 + *Zain IftikharCommits: 1Joined: 2022-04-16 - *Zain IftikharCommits: 1Joined: 2022-04-16 - - *hasban12138Commits: 1Joined: 2022-04-28 @@ -6994,11 +7048,11 @@ *Dietrich SchultenCommits: 1Joined: 2022-06-11 - - *Diane LeighCommits: 1Joined: 2022-06-18 + + *Mahdyar M. M. SadeghiCommits: 1Joined: 2022-06-22 @@ -7008,11 +7062,11 @@ *ParsaCommits: 1Joined: 2022-06-25 - - *Amir HCommits: 1Joined: 2022-06-25 + + *m.hashemianCommits: 1Joined: 2022-06-29 @@ -7022,11 +7076,11 @@ *Mohsen RahimiCommits: 1Joined: 2022-07-10 - - *Ali_AbdollahianCommits: 1Joined: 2022-07-10 + + *Arman RezaeiCommits: 1Joined: 2022-07-11 @@ -7036,11 +7090,11 @@ *Thierry EmeryCommits: 1Joined: 2022-08-08 - - *Niko FinkCommits: 1Joined: 2022-08-09 + + *Skyler GreyCommits: 1Joined: 2022-08-19 @@ -7050,11 +7104,11 @@ *Aleksa SavicCommits: 1Joined: 2022-09-02 - - *Ling YangCommits: 1Joined: 2022-09-07 + + *Aron FischerCommits: 1Joined: 2022-09-23 @@ -7064,11 +7118,11 @@ *Martin SchumannCommits: 1Joined: 2022-10-10 - - *Hemant Kumar SinghCommits: 1Joined: 2022-10-18 + + *Henner DrewesCommits: 1Joined: 2022-10-21 @@ -7078,11 +7132,11 @@ *Amarjargal GundjalamCommits: 1Joined: 2022-10-31 - - *zonnebloempjeCommits: 1Joined: 2022-11-03 + + *SiddharthCommits: 1Joined: 2022-11-09 @@ -7092,11 +7146,11 @@ *Theppitak KaroonboonyananCommits: 1Joined: 2022-11-25 - - *Đoàn Trần Công DanhCommits: 1Joined: 2022-11-27 + + *ahsmhaCommits: 1Joined: 2022-12-26 @@ -7106,29 +7160,46 @@ *Douglas GuptillCommits: 1Joined: 2023-01-01 + + *ShulhanCommits: 1Joined: 2023-01-12 + - *ShulhanCommits: 1Joined: 2023-01-12 + *Devansh JainCommits: 1Joined: 2023-02-04 - *Adoche OnajiCommits: 1Joined: 2023-01-30 + *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 + *Czeber László ÁdámCommits: 1Joined: 2023-02-27 - *deepanshuraj099Commits: 1Joined: 2023-02-12 + *Grigory A. MozhaevCommits: 1Joined: 2023-02-27 - + + *MoazAlaaCommits: 1Joined: 2023-03-05 + + + *Angelle LegerCommits: 1Joined: 2023-03-10 + + + + + *DrGigioSanCommits: 1Joined: 2023-03-14 + + + *Jani SaranpääCommits: 1Joined: 2023-03-22 + + @@ -7242,11 +7313,13 @@ *Kevin SuoCommits: 1Joined: 2022-09-30 - + + *Henry CastroCommits: 1Joined: 2023-02-20 + + - Developers not committing code since 2010-09-28 @@ -7772,7 +7845,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 - 2808 individuals contributed: + 2811 individuals contributed: @@ -7780,16 +7853,16 @@ - Hrbrgr (55894) + Hrbrgr (57146) - Beluga (35348) + Beluga (39743) - Marric (27264) + Marric (29413) - Raal (20433) + Raal (20646) @@ -7797,18 +7870,18 @@ SteenRønnow (19458) - HanV (18931) + HanV (19065) - Manuelf (16829) + Manuelf (17214) - Akurery (13570) + Akurery (13761) - Bantoniof (11258) + Bantoniof (11265) Pierre-yves samyn (10099) @@ -7817,35 +7890,35 @@ K-j (9376) - Penny (8374) + Jayme Barrientos, Adolfo (8450) - Jayme Barrientos, Adolfo (8372) + Penny (8374) - Roczek, Dennis (8285) + Roczek, Dennis (8286) - Filmsi (8068) + Filmsi (8123) - Stevefanning (7504) + Stevefanning (7636) - Gautier, Sophie (5438) + Kelemeng (6523) - Goncharuk, Lera (5436) + Gautier, Sophie (5446) - Nogata Jun (5238) + Goncharuk, Lera (5436) - Kelemeng (5001) + Nogata Jun (5238) @@ -7853,10 +7926,10 @@ (4614) - Uroveits (4561) + Uroveits (4562) - Yaron (4266) + Yaron (4312) Martin187 (4220) @@ -7864,7 +7937,7 @@ - Kompilainenn (4170) + Kompilainenn (4173) Tagezibot (3924) @@ -7878,16 +7951,16 @@ - Balland-Poirier, Laurent (3513) + Balland-Poirier, Laurent (3514) Kevin, Suo (锁琨珑) (3375) - Rizmut (3232) + Jeanweber (3285) - Jeanweber (3203) + Rizmut (3232) @@ -7895,7 +7968,7 @@ Hibagonsan (3073) - Noorikhah, Hossein (3021) + Noorikhah, Hossein (3026) Prcek (2885) @@ -7904,12 +7977,13 @@ LibreOfficiant (2539) + - PlateauWolf (2393) + Hallot, Olivier (2402) - Hallot, Olivier (2390) + PlateauWolf (2393) Ronnie rg8888 (2352) @@ -7923,18 +7997,18 @@ Diegoperesmarques (2039) - X1sc0 (1836) + X1sc0 (1845) Effenberger, Florian (1755) - Lyzbet (1720) + Enoki (1734) - Enoki (1697) + Lyzbet (1722) LobaLuna (1696) @@ -7948,7 +8022,7 @@ - Horáček, Stanislav (1453) + Horáček, Stanislav (1461) Kolarkater (1418) @@ -8010,7 +8084,7 @@ Novak, Nino (976) - Meeks, Michael (958) + Meeks, Michael (959) Tom (926) @@ -8021,18 +8095,18 @@ LLAP016 (875) - Tietze, Heiko (854) + Tietze, Heiko (856) - Sanz Cabrero, Juan Carlos (827) + Henschel, Regina (836) - H-k (804) + Sanz Cabrero, Juan Carlos (830) - Henschel, Regina (787) + H-k (804) Drew (748) @@ -8044,38 +8118,37 @@ Teo91 (733) - Jmpierre (729) - RobertG (724) + RobertG (725) - Mike.saunders (716) + Mike.saunders (718) - AAAA (695) + Kees538 (697) - Iversen, Jan (693) + AAAA (695) - Kees538 (692) + Iversen, Jan (693) - Rathke, Eike (672) + Rathke, Eike (674) - Floris v (660) + Floris v (661) - Vajna, Miklos (657) + Vajna, Miklos (660) Lachend (647) @@ -8095,7 +8168,7 @@ Raulpacheco (596) - Sam m (564) + Sam m (566) Lohmaier, Christian (562) @@ -8140,7 +8213,7 @@ Jana.urbanova (478) - Stahl, Michael (476) + Stahl, Michael (478) @@ -8168,7 +8241,7 @@ Rmfaile (436) - Kaganski, Mike (428) + Kaganski, Mike (432) @@ -8207,15 +8280,15 @@ Alexander Wilms (392) - Tardon, David (388) + Schiavinatto (390) - Petr-valach (386) + Tardon, David (388) - Schiavinatto (386) + Petr-valach (386) Foral (384) @@ -8294,7 +8367,7 @@ Khanson679 (305) - Kitaygrad (303) + Kitaygrad (305) @@ -8313,10 +8386,10 @@ - Emanuel A. Marcatinco B. (290) + Cheche (291) - Cheche (289) + Emanuel A. Marcatinco B. (290) Bergmann, Stephan (281) @@ -8400,10 +8473,10 @@ Bosdonnat, Cédric (231) - Bedipp (226) + Jeanmi2403 (230) - Jeanmi2403 (225) + Bedipp (226) Kerwyn (221) @@ -8434,11 +8507,14 @@ Khirano (215) - YALÇINSOY, Ayhan (209) + Babinecm (212) + YALÇINSOY, Ayhan (209) + + ZuzuN (208) @@ -8447,11 +8523,11 @@ Daveb (207) + + Nemeth (206) - - Latini, Marina (205) @@ -8461,11 +8537,11 @@ Steinzeit (200) + + Wheatbix (198) - - Erhardt (193) @@ -8475,29 +8551,37 @@ DmitryBowie (188) + + Franklin (188) - - + + Chtfn (187) + Tarnhold (187) Mazerunner (185) + + Méixome, Antón (179) Alkurtass, Issa (178) - - Sw0000j (176) + Ady (175) + + + + Raw text (175) @@ -8506,11 +8590,11 @@ Fridrich (172) - - Luizheli (172) + + N.yadi (171) @@ -8520,11 +8604,11 @@ Pitkänen, Harri (169) - - Óvári (169) + + Jiang, Yifan (168) @@ -8532,13 +8616,13 @@ Det (165) - Ponzo, Gabriele (164) + Ponzo, Gabriele (165) - - Matuaki (163) + + Rosp (163) @@ -8548,81 +8632,81 @@ See (160) - - - - Chtfn (159) - Snelders, Rob (159) + + Hagar Delest (159) Xystina (154) - - Uminakabkbk (153) Pietro (150) + + Slacka (150) Herzog, Christoph (149) - - Chris-hoh (147) Valtermura (147) + + Back69 (146) Mamane, Lionel Elie (146) - - Goodlinuxuser (145) Kirk (145) + + Mipmap (144) Teseu (144) - - Michelr (141) Lorenzo (140) + + Tjhietala (140) Gurbetoğlu, Gökhan (139) - - + + Kukekko (139) + Zolnai, Tamás (139) + + De Cuyper, Joren (138) @@ -8632,11 +8716,11 @@ Weissenbacher, Philipp (138) - - Rutilus (138) + + Abe, Takeshi (138) @@ -8646,11 +8730,11 @@ P.guimberteau (137) - - Pepeleduin (137) + + Guilhem (135) @@ -8660,11 +8744,11 @@ Shunesburg69 (135) - - Filhocf (132) + + Llunak (132) @@ -8674,11 +8758,11 @@ Demetriusb (131) - - Richteruwe (131) + + Michel, Mathias (129) @@ -8688,54 +8772,54 @@ Ki Drupadi (127) - - Nik (127) + + Baffclan (126) - Kukekko (126) - - Nabet, Julien (126) - - RGB.ES (124) JARF (123) + + Krackedpress (123) Psluk (123) - - Trapezus (122) JohnSmith (120) + + Liebel, Jennifer (119) Phorious (118) - - Lqju96 (117) + Stephan.ficht (117) + + + + Jstnlth (115) @@ -8744,303 +8828,295 @@ Ysabeau (115) - - Markers (114) - - Stephan.ficht (114) - + + Massimo.zaffaina (113) PulkitKrishna00 (113) - - Vohe (113) Marcus Gama (112) + + + + Bachka (111) + Dougvigliazzi (111) Medieval (111) - - - - Bachka (110) - 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) + + Barbora (93) Geraldg (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) + + 80686 (79) KeithCu (79) - - Kjh000121 (79) Laveni (79) + + Xosé (79) CharlieRamirezAnimationStudiosMX (78) - - Jwtiyar (78) Marcio Oliveira (78) + + Northwoods35 (78) Ocleyr2lalune (78) - - + + Uwealtmann (78) + Socetk (77) + + Tommy.WU (77) - Uwealtmann (76) + Quikee (76) Albino (75) - - K.K.Ashisuto (75) - - Quikee (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) - Ady (66) - - - - Karbasion, Bersam (65) @@ -9049,11 +9125,11 @@ Kabe (65) + + StanG (65) - - Glogowski, Jan-Marek (64) @@ -9063,11 +9139,11 @@ Ptrsk (64) + + Hanapospisilova (63) - - Kudelis, Rimas (63) @@ -9077,11 +9153,11 @@ Popa, Adrian Marius (62) + + Thibault, Samuel (62) - - Denco (61) @@ -9091,11 +9167,11 @@ Jimin (61) + + Arnaudlecam (60) - - Jlgrenar (60) @@ -9105,11 +9181,11 @@ OctopusET (60) + + Piotrekr1 (60) - - Tynnoel (59) @@ -9119,11 +9195,11 @@ Camillem (58) + + Neel, Daniel (58) - - Loflex (58) @@ -9133,11 +9209,11 @@ Jihui choi (57) + + Bubli (56) - - Davefilms (56) @@ -9147,11 +9223,11 @@ Ramones (56) + + Ramtk6726 (56) - - Hunt, Andrzej (55) @@ -9161,11 +9237,11 @@ Grandin, Noel (55) + + Jrahemipour (55) - - Cornell, Clayton (54) @@ -9175,11 +9251,11 @@ Mahfiaz (54) + + Heben2 (53) - - Sunny2038 (53) @@ -9189,11 +9265,11 @@ Petrizzo (52) + + ArnoldSchiller (51) - - Helmar (51) @@ -9203,11 +9279,11 @@ Quoifleur (51) + + Agd (50) - - Halparker (50) @@ -9217,11 +9293,11 @@ Ronaldo (50) + + SeoYeonJin (50) - - Mpescador (49) @@ -9231,11 +9307,11 @@ Vardomescro (49) + + Afaccioli74 (48) - - Lviktoria (48) @@ -9245,11 +9321,11 @@ Dagobert 78 (47) + + Tomoyuki, Kubota (47) - - Jhannine20 (47) @@ -9259,11 +9335,11 @@ Buj Gelonch, Robert Antoni (47) + + Amtliz (46) - - FloF (46) @@ -9273,11 +9349,11 @@ Sveinki (46) + + Bfo (45) - - Hosny, Khaled (45) @@ -9287,11 +9363,11 @@ Jung, Philippe (45) + + Robwestein (45) - - Bhorst (44) @@ -9301,11 +9377,11 @@ Aaronxu (43) + + Cottage14 (43) - - Gareth (43) @@ -9315,11 +9391,11 @@ Wilper, Simon (43) + + Enger, Terrence (43) - - Donkers, Winfried (43) @@ -9329,11 +9405,11 @@ Fkara (42) + + KAMI (42) - - SangwooPark (42) @@ -9343,11 +9419,11 @@ Another sam (41) + + Arjunaraoc (41) - - Joey (41) @@ -9357,25 +9433,25 @@ Pedlino (41) + + Fábio Coelho (40) - - Kraucer (40) - Valdirbarbosa (39) + Budea, Áron (39) - Budea, Áron (38) + Valdirbarbosa (39) + + Enervation (38) - - Partick.auclair (38) @@ -9383,254 +9459,262 @@ Pje335 (38) + Stephaneg (38) + + + + Alex Thurgood (37) Cjenkins (37) - - Eliskavotipkova (37) Ivanslf (37) + + Aragunde Pérez, Jacobo (37) Kano (37) - - Kinshuksunil (37) Castle, John LeMoyne (37) + + Pavel1513 (37) RaducuG (37) - - Sistemo2021 (37) Sherlock, Chris (37) + + Caco13 (36) Danishka (36) - - Patheticcockroach (36) Sci citation (36) + + Thep (36) Yan Pashkovsky (36) - - Andreas ka (35) Arnaud versini (35) + + Jingtao, Yan (35) Liongold (35) - - Nora (35) Pingping111 (35) + + Stalker08 (35) Subramanian, Muthu (35) - - Alg (34) Skagh1750 (34) + + Bormant (33) Davidlamhauge (33) - - Kłos, Szymon (33) FelipeAle (33) + + Corrius, Jesús (33) Lmartinezh (33) - - Marrod (33) Mateus.m.luna (33) + + Pereriksson (33) Ptoye (33) - - Rafi (33) Shirahara (33) + + Alexanderwerner (32) Clio (32) - - Daud (32) Lenochod (32) + + Marinello, Marco (32) Dryomov, Artur (32) - - Monocat (32) Vulcain (32) + + Xuacu (32) Chloeeekim (31) - - H (31) IvanM (31) + + Kant, Pranav (31) Usayan (31) - - Am97 (30) Justman10000 (30) + + Maose (30) Njsg (30) - - SEVEN (30) Speck (30) + + Tclovis (30) Thardeck (30) - - Acbaird (29) Cida.Coltro (29) + + Darbe (29) EdvaldoSCruz (29) - - Haaninjo (29) Ledure, Jean-Pierre (29) + + + + Kougen250T (29) + RodolfoRG (29) Серж (29) - - Ace-dent (28) + + Riemer, Philipp (28) @@ -9640,11 +9724,11 @@ المسيكين (28) - - Khaledhosny2 (27) + + Marcofilippozzi (27) @@ -9654,11 +9738,11 @@ Micm (27) - - PeppinoLib (27) + + Sarojdhakal (27) @@ -9668,11 +9752,11 @@ Alayaran (26) - - Eresus (26) + + Ezeperez26 (26) @@ -9682,11 +9766,11 @@ Librek (26) - - Libreofficer (26) + + Linuxman (26) @@ -9696,11 +9780,11 @@ Myunghoonju (26) - - Hawkins, Nigel (26) + + Pirat Michi (26) @@ -9710,11 +9794,11 @@ Aidsoid (25) - - Ailion (25) + + Roßmanith, Christina (25) @@ -9724,11 +9808,11 @@ Sullivan, Gatlin (25) - - Lboccia (25) + + Linux 9x (25) @@ -9738,11 +9822,11 @@ Noelson (25) - - Onur.bingo (25) + + Freund, Matthias (25) @@ -9752,11 +9836,11 @@ Winniemiel05 (25) - - Magee, Timothy (24) + + Elpapki (24) @@ -9766,11 +9850,11 @@ Gérard24 (24) - - Ksoviero (24) + + Nik vr (24) @@ -9780,11 +9864,11 @@ Elsass68490 (23) - - Hamurcu (23) + + Jeppebundsgaard (23) @@ -9794,11 +9878,11 @@ Olorin (23) - - Skip-on (23) + + TaeWong (23) @@ -9808,11 +9892,11 @@ Thumperward (23) - - Tommy27 (23) + + Toxitom (23) @@ -9822,11 +9906,11 @@ Webmink (23) - - Youngman, Anthony W. (23) + + Aphaia (22) @@ -9836,15 +9920,18 @@ Bjoern (22) - - HenryGR (22) + + JChimene (22) + Keymap19 (22) + + RegisPerdreau (22) @@ -9859,16 +9946,13 @@ Johannes (21) - Keymap19 (21) - - Liusiqi43 (21) - - Logisch dede (21) + + Necdetyucel (21) @@ -9878,11 +9962,11 @@ Shiko (21) - - WalterPape (21) + + Wayra (21) @@ -9892,11 +9976,11 @@ Dennisfrancis (20) - - Grasip (20) + + Grzesiek a (20) @@ -9906,11 +9990,11 @@ Icobgr (20) - - LLyaudet (20) + + Mattsturgeon (20) @@ -9920,11 +10004,11 @@ PRosmaninho (20) - - Vdragon (20) + + Vmalep (20) @@ -9934,11 +10018,11 @@ Yorick (20) - - Zapata (20) + + A-zakh (19) @@ -9948,11 +10032,11 @@ Clarice Vigliazzi (19) - - Guateconexion (19) + + Houbsi (19) @@ -9962,11 +10046,11 @@ Jem (19) - - Funk, Juergen (19) + + Juergenfenn (19) @@ -9976,11 +10060,11 @@ Lothar.becker (19) - - PeeWee (19) + + Ionita, Teodor-Mircea (19) @@ -9990,11 +10074,11 @@ Foolfitz (18) - - Hidayet (18) + + Jstaerk (18) @@ -10004,11 +10088,11 @@ Nestifea61 (18) - - Power, Noel (18) + + Richard (18) @@ -10018,11 +10102,11 @@ Sooth (18) - - UriHerrera (18) + + Vuhung (18) @@ -10032,11 +10116,11 @@ 林漢昌 (18) - - Akerbeltz (17) + + Chd (17) @@ -10046,11 +10130,11 @@ Dlmoretz (17) - - Ertsey, Andor (17) + + Guilherme.vanz (17) @@ -10060,11 +10144,11 @@ MichaMuc (17) - - Tõnnov, Mihkel (17) + + Rubembarreto (17) @@ -10074,11 +10158,11 @@ Taken (17) - - Uli.l (17) + + Zu, Ximeng (17) @@ -10088,11 +10172,11 @@ Беломир (17) - - Airon90 (16) + + Alexpikptz (16) @@ -10102,11 +10186,11 @@ Janus (16) - - Kingu (16) + + Pinto, Marco A.G. (16) @@ -10116,11 +10200,11 @@ Oweng (16) - - P.Guimberteau (16) + + PauGNU (16) @@ -10130,11 +10214,11 @@ Smarquespt (16) - - Smrabelo (16) + + Syntaxerrormmm (16) @@ -10144,11 +10228,11 @@ APerson (15) - - Akki95 (15) + + Andy98 (15) @@ -10158,11 +10242,11 @@ Gilward Kukel (15) - - Irmhild (15) + + Khlood Elsayed (15) @@ -10172,11 +10256,11 @@ Luctur (15) - - Miko (15) + + Naudy (15) @@ -10186,11 +10270,11 @@ Patriciasc (15) - - Rafaelff (15) + + Raniaamina (15) @@ -10200,11 +10284,11 @@ Royerjy (15) - - Thorogood, Tom (15) + + Ulf hamburg (15) @@ -10214,11 +10298,11 @@ 暗影遺言 (15) - - Adsoncristian (14) + + AliIsingor (14) @@ -10226,11 +10310,17 @@ Darkcircle (14) - Elrath (14) + Doležal, Vojtěch (14) + + + DrRobotto (14) + Elrath (14) + + Fina (14) @@ -10239,13 +10329,10 @@ Guuml (14) - - Halencarjunior (14) - - Kougen250T (14) + Halencarjunior (14) Lfernandocarvalho (14) @@ -10315,9 +10402,6 @@ - DrRobotto (13) - - Gallaecio (13) @@ -10326,11 +10410,11 @@ Kadekilo (13) - - Leomota (13) + + Ljelly (13) @@ -10340,11 +10424,11 @@ Mabbb (13) - - Mikeyy (13) + + Mortense (13) @@ -10354,11 +10438,11 @@ Pete Boyd (13) - - S.Gecko (13) + + Samtuke (13) @@ -10368,11 +10452,11 @@ Simplicity Instinct (13) - - ThierryM (13) + + Tnishiki (13) @@ -10382,11 +10466,11 @@ Vivaelcelta (13) - - Vkkodali (13) + + A8 (12) @@ -10396,11 +10480,11 @@ And471 (12) - - AustinW (12) + + Bhaskar (12) @@ -10410,11 +10494,11 @@ Cepiloth (12) - - Chris2020 (12) + + Cralin (12) @@ -10424,11 +10508,11 @@ Al-Otaibi, Faisal M. (12) - - Halan (12) + + Immanuelg (12) @@ -10438,11 +10522,11 @@ Krabina (12) - - Šebetić, Krunoslav (12) + + Godard, Laurent (12) @@ -10452,11 +10536,11 @@ Nandar (12) - - Pcapeluto (12) + + Gupta, Rachit (12) @@ -10466,11 +10550,11 @@ Raruenrom, Samphan (12) - - Möller, Sören — spelled Soeren Moeller in some patches (12) + + Staticsafe (12) @@ -10480,11 +10564,11 @@ Veerh01 (12) - - 翼之靈歌 (12) + + Bryanquigley (11) @@ -10494,11 +10578,11 @@ ChristopheS (11) - - Dajare (11) + + Ebraminio (11) @@ -10508,11 +10592,11 @@ Gokul, S (11) - - Johnny M (11) + + Kallecarl (11) @@ -10522,11 +10606,11 @@ Leatherbottle (11) - - Luiz Henrique Natalino (11) + + MNeto (11) @@ -10536,11 +10620,11 @@ Marco c (11) - - Marcuskgosi (11) + + NON (11) @@ -10550,11 +10634,11 @@ Nuernbergerj (11) - - Rogeniobelem (11) + + Salmaan (11) @@ -10564,11 +10648,11 @@ Gomez, Andres (11) - - Vrlivre (11) + + Zero0w (11) @@ -10578,11 +10662,11 @@ Algotruneman (10) - - Castagno, Giuseppe (10) + + Blargh (10) @@ -10592,11 +10676,11 @@ Diginin (10) - - Eagles051387 (10) + + Eduardogula (10) @@ -10606,11 +10690,11 @@ El7r (10) - - J.baer (10) + + Jdittrich (10) @@ -10620,11 +10704,11 @@ Kadertarlan (10) - - Kirill NN (10) + + Linuxuser330250 (10) @@ -10634,11 +10718,11 @@ Mesutcfc (10) - - Chung, Elton (10) + + Mikalai (10) @@ -10648,11 +10732,11 @@ Mpumrlova (10) - - Nateyee (10) + + Offtkp (10) @@ -10662,11 +10746,11 @@ Otto (10) - - Paour (10) + + Revol (10) @@ -10676,11 +10760,11 @@ Tatat (10) - - Tomg (10) + + Ttocsmij (10) @@ -10690,11 +10774,11 @@ User8192 (10) - - Wlenon (10) + + Al-Abdulrazzaq, Abdulmajeed (9) @@ -10704,11 +10788,11 @@ Aicra (9) - - Brandner, Andreas (9) + + AtkinsSJ (9) @@ -10718,1663 +10802,1663 @@ Cnuss (9) - - Compressor nickel (9) + + Crazyskeggy (9) - Doležal, Vojtěch (9) - - Dupreyb (9) - - Fatdf (9) Gibi (9) + + GisbertFriege (9) Goranrakic (9) - - Jim-BobHarris (9) Jonatoni (9) + + Jopsen (9) Jowyta (9) - - Kscanne (9) Lapetec (9) + + Lexeii (9) Mapper (9) - - Marco (9) Meo (9) + + MertTumer (9) Msaffron (9) - - Ohnemax (9) Onting (9) + + Oprea.luci (9) PaoloVecchi (9) - - Milvaques, Pasqual (9) Foley, Peter (9) + + Pixpray (9) Dricot, Lionel (9) - - Rantaro (9) Rogawa (9) + + Rpr (9) Rptr (9) - - Spacebat (9) Spyros (9) + + Therabi (9) Urdulizer (9) - - Tamás, Bunth (9) Zhangxiaofei (9) + + ميدو (9) Alexxed (8) - - Andrea Gelmini (8) AndreasL (8) + + Ausserirdischegesund (8) Cocofan (8) - - Cusiri (8) Cwendling (8) + + Dashohoxha (8) DrDub (8) - - Ed Eyles (8) Elacheche (8) + + Horst (8) Israel Chaves (8) - - JR (8) Jiero (8) + + Jrsiqueira (8) Jslozier (8) - - Hoffimann Mendes, Júlio (8) Dywan, Christian (8) + + Kednar (8) Rietveld, Kristian (8) - - Lee (8) Leigh, Jack (8) + + Leo.h.hildebrandt (8) Luisgulo (8) - - Manj k (8) Mrmox2 (8) + + NightMonkey (8) NirajanPant (8) - - Osnola (8) Paulo.tavares (8) + + Peterpall (8) Ricardolau (8) - - Thejack (8) Tibbylickle (8) + + Troumad (8) Vbkaisetsu (8) - - VlhOwn (8) Yakusha (8) + + Yellow.h (8) Yostane (8) - - Kabatsayev, Ruslan (7) Ahiijny (7) + + Andrea.soragna (7) Bastik (7) - - Belkacem77 (7) Berrykevin (7) + + Bjherbison (7) Bookman900 (7) - - Borim7 (7) Capiscuas (7) + + Chin Zee Yuen (7) Ciaran (7) - - Dado (7) Drose (7) + + Esbardu (7) Bateman, George (7) - - GuKK-Devel (7) Hunter, Kevin (7) + + Ingotian (7) Levith (7) - - Lonelyhiker (7) M1cky (7) + + Mariosv (7) Marton (7) - - Mbayer (7) MephistoBooks (7) + + Francis, Matthew (7) Nathanjh13 (7) - - Ndduong (7) Nemo bis (7) + + Christener, Nicolas (7) Olivier DDB (7) - - Opensas (7) PeaceByJesus (7) + + Polte (7) RMCampos (7) - - Ravi (7) Raykowj (7) + + Rodo (7) Scottclarke (7) - - Shady (7) Shantanuo (7) + + Shaunrobot (7) Simosx (7) - - Tonnysmile (7) Toxicbits (7) + + Wabuo (7) Webfork (7) - - Woordje (7) صفا الفليج (7) + + Alexandrorodrigez (6) Alpha (6) - - Armin Dänzer (6) Asian flower (6) + + Higginson, Andrew (6) Barend (6) - - Bobe (6) Bruno (6) + + Cagatayyigit (6) CassieLX (6) - - Cccfr (6) 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) - - BillRVA (5) Bitigchi (5) + + BloodIce (5) Cray85 (5) - - Dejourdain (5) DickStomp (5) + + 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) Jooste (4) + + Joriki (4) Le Bigot, Jean-Tiare (4) - - Kemalayhan (4) Lethargilistic (4) + + Loren.rogers (4) M.m.mozffart (4) - - Haggag, Muhammad (4) MPascual (4) + + Rumianowski, Maciej (4) Marinela (4) - - Mikedoherty ca (4) Mondeep18 (4) + + Morgan greywolf (4) Mortgage01 (4) - - NGHLibreOffice (4) O.villani (4) + + Offidocs (4) Orson69 (4) - - Oscar90210 (4) Paolopoz (4) + + Paranemertes (4) PatrickJ (4) - - Pegasus (4) Pgassmann (4) + + Philj (4) Phillip.davis (4) - - van Oostrum, Pieter (4) Pjacquod (4) + + Prolog.guy (4) Psao (4) - - Qubit-test (4) Randolphgamo (4) + + Rebahozkoc (4) Reyn100 (4) - - Ricgal (4) RjR (4) + + Rodhos (4) Sasha (4) - - Sealview (4) Selimseker (4) + + Stevenmw (4) Surat (4) - - Tct (4) Tempelorg (4) + + Thetic (4) Tk (4) - - Tlequire (4) Txwikinger (4) + + Ufas (4) UlKu (4) - - Urhixidur (4) Uzadmin (4) + + V., Artem (4) Wcolen (4) - - Wikiuser (4) Williamjmorenor (4) + + Wpeixoto (4) Денис (4) - - AbhilashSingh (3) Adept (3) + + Aexyn (3) AhmadHaris (3) - - Jain, Atishay (3) Alex.simoes (3) + + Alexsfagundes (3) Almorca (3) - - Andrey Usov (3) Antanasb (3) + + Ariete (3) Arkanosis (3) - - Armin (3) Armin W. (3) + + Arthur Zennig (3) Aurelien (3) - - Baena (3) Bellerophon2 (3) + + Benjwgarner (3) Bernardi, Paolo (3) - - Bindassanant (3) Bodhi-Baum (3) + + Bootingman (3) Bos (3) - - Prajapati, Gautam (3) Brub (3) + + Burdakov (3) CIB.Mathias (3) - - Canberkturan (3) Castro (3) + + Charu (3) ChrisConCas (3) - - Claudiosegovia (3) Cmorgan (3) + + Colokalle (3) D0ugparker (3) - - DaSch (3) DanShearer (3) + + Beurle, Darcy (3) Bankston, Daniel (3) - - Dilip (3) Donbrookman (3) + + Dubyk (3) EdgeE (3) - - Eeha0120 (3) Eisa01 (3) + + Elproferoman (3) Schorsch, Emanuel (3) - - ErSey (3) Eric.ficheux (3) + + Ericatamiris (3) Estebanmonge (3) - - Farukuzun (3) Ferlodev (3) + + + + Fofr11 (3) + Fraang (3) Franzjakob (3) - - Frob tea (3) + + Fulldecent (3) @@ -12384,11 +12468,11 @@ Gmasei (3) - - Gokcen (3) + + Gouchi (3) @@ -12398,11 +12482,11 @@ Hansgerd.schneider (3) - - Nag,Harshita (3) + + Herrmarder (3) @@ -12412,11 +12496,11 @@ IanL (3) - - Imanuelr10 (3) + + Imcon (3) @@ -12426,11 +12510,11 @@ IvanMM (3) - - JDM (3) + + Jammon (3) @@ -12440,11 +12524,11 @@ Jennifer.park (3) - - Jessemoreirao (3) + + Murugan, Jesso Clarence (3) @@ -12454,11 +12538,11 @@ Jo Cab (3) - - Joe312213 (3) + + Johannes Rohr (3) @@ -12468,11 +12552,11 @@ Juanpabl (3) - - Julianm (3) + + K Karthikeyan (3) @@ -12482,11 +12566,11 @@ Kbiondi (3) - - KeilaAlonso (3) + + Kevinob (3) @@ -12496,11 +12580,11 @@ Khunshan (3) - - KingAwiin (3) + + Kkrothapalli (3) @@ -12510,11 +12594,11 @@ Lennoazevedo (3) - - LewisCowles (3) + + Libcub (3) @@ -12524,11 +12608,11 @@ LucaCappelletti (3) - - Hryniuk, Łukasz (3) + + Lupp (3) @@ -12538,11 +12622,11 @@ Machey (3) - - Bessières, Marc (3) + + Margott (3) @@ -12552,11 +12636,11 @@ Matteocam (3) - - Mattias (3) + + Maxwell (3) @@ -12566,11 +12650,11 @@ Melike (3) - - Meryemezber (3) + + Mhoes (3) @@ -12580,11 +12664,11 @@ Michaelwheatland (3) - - Mike98 (3) + + Neookano (3) @@ -12594,11 +12678,11 @@ NicksonT (3) - - Nicolas.abel (3) + + Niconil (3) @@ -12608,11 +12692,11 @@ Nloira (3) - - Noel Power (3) + + OOarthurOo (3) @@ -12622,11 +12706,11 @@ Ojeremyj (3) - - Oliverguenther (3) + + Oprea luci (3) @@ -12636,11 +12720,11 @@ Pr410 (3) - - Prakash72 (3) + + Rajatvijay (3) @@ -12650,11 +12734,11 @@ Rauloliverpaes (3) - - Bevilacqua, Jean-Sébastien (3) + + RebeccaHodgson (3) @@ -12664,11 +12748,11 @@ Robert.E.A.Harvey (3) - - Rosemary (3) + + S8321414 (3) @@ -12678,11 +12762,11 @@ Sangeeta (3) - - Saper (3) + + Satabin (3) @@ -12692,11 +12776,11 @@ Schroed(ing)er (3) - - Sebby (3) + + Sergey Aka (3) @@ -12706,11 +12790,11 @@ Skinnerbird (3) - - Smile4ever (3) + + Soliac (3) @@ -12720,15 +12804,18 @@ Sotrud nik (3) - - Soued031 (3) + + StefanRing (3) + StefanU (3) + + SteveKelem (3) @@ -14266,16 +14353,19 @@ Pkst (2) + Plubius (2) + + PolishHungarianSharp (2) Posterboy (2) + + PragueBergman (2) - - Pulsifer (2) @@ -14285,11 +14375,11 @@ Rahul050 (2) + + Rbecke (2) - - ReeseShepherd (2) @@ -14299,11 +14389,11 @@ RenniePrescott (2) + + RetaStern5 (2) - - RhodaMackey3 (2) @@ -14313,11 +14403,11 @@ Ritlay (2) + + Rmarquardt (2) - - Roadrunner (2) @@ -14327,11 +14417,11 @@ RosaliaFair4 (2) + + RosannaPaul7 (2) - - RosariaLampungm (2) @@ -14341,11 +14431,11 @@ RoyShelton7 (2) + + Ryan (2) - - SDann22 (2) @@ -14355,11 +14445,11 @@ Sahasranaman M S (2) + + Sam888 (2) - - SamBenavides5 (2) @@ -14369,11 +14459,11 @@ SavinaShaffer (2) + + Bosio, Santiago (2) - - Seanyoung (2) @@ -14383,11 +14473,11 @@ Sebutler (2) + + Sergwish (2) - - Sfeuser (2) @@ -14397,11 +14487,11 @@ Shaforostoff (2) + + Shankar (2) - - Shaun.schutte (2) @@ -14411,11 +14501,11 @@ SidneyArredondo (2) + + Sidorelauku (2) - - Silwol (2) @@ -14425,11 +14515,11 @@ SlavicNapier8 (2) + + Kasztenny, Adam (2) - - Soothsilver (2) @@ -14439,11 +14529,11 @@ Sshelagh (2) + + Sshi (2) - - Ssorgatem (2) @@ -14453,11 +14543,11 @@ Stappers (2) + + Weiberg, Stefan (2) - - Stephan66 (2) @@ -14467,11 +14557,11 @@ Stuarta0 (2) + + Sturm (2) - - Sungkhum (2) @@ -14481,11 +14571,11 @@ SusanSwain3 (2) + + Sven.fischer.de (2) - - Swazmo (2) @@ -14495,11 +14585,11 @@ Synanceia (Pierre) (2) + + Tauon (2) - - Techal (2) @@ -14509,11 +14599,11 @@ TeresaMacias3 (2) + + Teresavillegas1 (2) - - TheaGallardo8 (2) @@ -14523,11 +14613,11 @@ TheophilusHess (2) + + Thomase (2) - - Thomeck (2) @@ -14537,11 +14627,11 @@ Tim1075 (2) + + Timeshifter (2) - - Timj (2) @@ -14551,11 +14641,11 @@ Tolunaydundar (2) + + TomaMora8 (2) - - Tomkeb (2) @@ -14565,11 +14655,11 @@ TressieCulver (2) + + Tsimonq2 (2) - - TuMadre (2) @@ -14579,11 +14669,11 @@ Tux40000 (2) + + Unhammer (2) - - Unknown 32 (2) @@ -14593,11 +14683,11 @@ ValessioBrito (2) + + VanHogan7 (2) - - Dhall, Varun (2) @@ -14607,11 +14697,11 @@ VerneDodd5 (2) + + VeronaXiong3 (2) - - VeronicaGrimes (2) @@ -14621,11 +14711,11 @@ Viper550 (2) + + VirginArredondo (2) - - VladimirBassett (2) @@ -14635,11 +14725,11 @@ VladislavA (2) + + Volker (2) - - VolodymyraGagnon (2) @@ -14649,11 +14739,11 @@ WaclawaSavage (2) + + WalentynaPatrick (2) - - WallaceSolano (2) @@ -14663,11 +14753,11 @@ WashingtonOakley (2) + + Watermelons (2) - - WeronikaKeene (2) @@ -14677,11 +14767,11 @@ WikiImporter (2) + + WilhelminaEaton (2) - - WincentyMorrison (2) @@ -14691,11 +14781,11 @@ Wkn (2) + + Wulei (2) - - Xdelatour (2) @@ -14705,11 +14795,11 @@ Yalda (2) + + Yaw (2) - - ZiriaKo (2) @@ -14719,11 +14809,11 @@ 流星依旧 (2) + + 29jm (1) - - A H (1) @@ -14733,11 +14823,11 @@ AJW (1) + + AaronPeterson (1) - - Abdulaziz A Alayed (1) @@ -14747,11 +14837,11 @@ Acagastya (1) + + Kepenek, Ahmet Can (1) - - AdalberDesailll (1) @@ -14761,11 +14851,11 @@ Aevora (1) + + Agradecido (1) - - Ainurshakirov (1) @@ -14775,11 +14865,11 @@ Sudheer Kumar, Akshit (1) + + Alagris (1) - - Alavec (1) @@ -14789,11 +14879,11 @@ Aleks (1) + + Aleksio Kverka (1) - - Henrie, Alex (1) @@ -14803,11 +14893,11 @@ Alex38-68 (1) + + Alex80 (1) - - AlexF (1) @@ -14817,11 +14907,11 @@ AlexPS (1) + + Alexandrevicenzi (1) - - Alexandri (1) @@ -14831,11 +14921,11 @@ Alexis 0071 (1) + + Alexis Wilke (1) - - Alexnivan (1) @@ -14845,11 +14935,11 @@ Aleyna.sare (1) + + Ali (1) - - AlphonsDen (1) @@ -14859,11 +14949,11 @@ Alverne (1) + + Amacater (1) - - Andarilhobotto (1) @@ -14873,11 +14963,11 @@ AndreasEk (1) + + AndreasK (1) - - AndreasNeudecker (1) @@ -14887,11 +14977,11 @@ Andriazdk2177 (1) + + AniVar (1) - - Anjilajoli (1) @@ -14901,11 +14991,11 @@ AntoineVe (1) + + Antonello Lobianco (1) - - AntoniePonder (1) @@ -14915,11 +15005,11 @@ Apfelsaft (1) + + Priyadarshi, Apurva (1) - - Arekm (1) @@ -14929,11 +15019,11 @@ ArielleWx (1) + + Arkonide (1) - - Armandos (1) @@ -14943,11 +15033,11 @@ Arnoldu (1) + + Teigseth, Arno (1) - - Artintal (1) @@ -14957,11 +15047,11 @@ Arulm (1) + + Asiersar (1) - - Asselbornmauro (1) @@ -14971,11 +15061,11 @@ Aszucs (1) + + Atpnguyen (1) - - Tang, Audrey (1) @@ -14985,11 +15075,11 @@ Averell7 (1) + + Ayoooub (1) - - B3t (1) @@ -14999,11 +15089,11 @@ Bailly02 (1) + + Bami (1) - - Bandera (1) @@ -15013,11 +15103,11 @@ Vincent, Babu (1) + + Bayramcicek (1) - - Bburak (1) @@ -15027,11 +15117,11 @@ Khorram, Behrad (1) + + BernardHannafor (1) - - Bestdating (1) @@ -15041,11 +15131,11 @@ Beznogov (1) + + Bezzy (1) - - Bgloberman (1) @@ -15055,11 +15145,11 @@ Bhumikasethi (1) + + BillyBurke (1) - - Biofool (1) @@ -15069,11 +15159,11 @@ Bjossir (1) + + Bkg2018 (1) - - BlakeGartrell (1) @@ -15083,11 +15173,11 @@ BlancheClopton (1) + + Blandyna (1) - - Boboo (1) @@ -15097,11 +15187,11 @@ Borowcm (1) + + Bortis (1) - - Sowden, Brad (1) @@ -15111,11 +15201,11 @@ BridgettC (1) + + Brinzing, Oliver (1) - - BroderiHolyman (1) @@ -15125,11 +15215,11 @@ BryceMoorhouse (1) + + Budo (1) - - Burcin (1) @@ -15139,11 +15229,11 @@ Burger.ga (1) + + Bvarga91 (1) - - Bwi (1) @@ -15153,11 +15243,11 @@ BáthoryPéter (1) + + CalebSommer (1) - - CalebWgypcu (1) @@ -15167,11 +15257,11 @@ Capira (1) + + CarloASilva (1) - - Carlos (1) @@ -15181,11 +15271,11 @@ Castarco (1) + + Cathy (1) - - CedricQ73ktehvp (1) @@ -15195,11 +15285,11 @@ ChantalWalker (1) + + CharlesJenkins (1) - - Chatjoe (1) @@ -15209,11 +15299,11 @@ Beauzée-Luyssen, Hugo (1) + + ChrPr (1) - - Chrism (1) @@ -15223,11 +15313,11 @@ Chrlutz (1) + + Ciampix (1) - - CiaraLockie (1) @@ -15237,11 +15327,11 @@ Classieur (1) + + Claudio Pannacci (1) - - Cleitongalvao (1) @@ -15251,11 +15341,11 @@ CletaValentino (1) + + Cnzhx (1) - - Company (1) @@ -15265,11 +15355,11 @@ Corsolibreoffice (1) + + Cosmopolitan (1) - - Cpatrick08 (1) @@ -15279,11 +15369,11 @@ Cpmipn (1) + + Craigsbookclub (1) - - Csanyipal (1) @@ -15293,11 +15383,11 @@ Css17 (1) + + Ctfranz (1) - - Cycpe950609 (1) @@ -15307,11 +15397,11 @@ Danichocolate (1) + + Dar18proore (1) - - Darianospb (1) @@ -15321,11 +15411,11 @@ DarylBoot (1) + + Dave (1) - - DavidDyck (1) @@ -15335,11 +15425,11 @@ Davidredick (1) + + DawnOgles (1) - - Dbojan (1) @@ -15349,11 +15439,11 @@ DeShark (1) + + DeannaQuaife (1) - - Ray, Debarshi (1) @@ -15363,11 +15453,11 @@ Decs75 (1) + + Dennisroczek's Test Account (1) - - Deragon (1) @@ -15377,11 +15467,11 @@ Kis-Ádám, László (1) + + Herde, Daniel (1) - - Dhiren (1) @@ -15391,11 +15481,11 @@ Dirgita (1) + + Kettner, Valentin (1) - - Diver (1) @@ -15405,11 +15495,11 @@ Do Nhu Vy (1) + + DocuFree (1) - - Dominiko (1) @@ -15419,11 +15509,11 @@ Donadel (1) + + DoreenDuell (1) - - Douglasm (1) @@ -15433,11 +15523,11 @@ Drlandi (1) + + Drtimwright (1) - - Dschulten (1) @@ -15447,11 +15537,11 @@ Dxider (1) + + Eardeleanu (1) - - EarnestLamaro (1) @@ -15461,11 +15551,11 @@ EdgardoRios (1) + + Edsonlead (1) - - Edz (1) @@ -15475,11 +15565,11 @@ Efegurkan (1) + + Brill, Christoph (1) - - Ehenryb (1) @@ -15489,11 +15579,11 @@ ElahiMohammad (1) + + Elliot1415 (1) - - ElmaWalcott (1) @@ -15503,11 +15593,11 @@ Emad (1) + + Emanuele.gissi (1) - - Emyr (1) @@ -15517,11 +15607,11 @@ Ennael (1) + + Erasmo (1) - - Erdemdemirkapi (1) @@ -15531,11 +15621,11 @@ ErickRijoJr (1) + + Ernsttremel (1) - - Roux, Elie (1) @@ -15545,11 +15635,11 @@ Esben aaberg (1) + + EstelaAWTxiu (1) - - Etinos (1) @@ -15559,11 +15649,11 @@ Eulerian (1) + + Evfool (1) - - FMA (1) @@ -15573,11 +15663,11 @@ Falatooni (1) + + Falcao (1) - - Farhaf (1) @@ -15587,11 +15677,11 @@ Farlfr (1) + + FarzanehSarafraz (1) - - Faseeh1218 (1) @@ -15601,11 +15691,11 @@ Fenchi (1) + + FerminAndrade (1) - - Feyza (1) @@ -15615,11 +15705,11 @@ Flaviodegodoi (1) + + Flirtwomens (1) - - Foadv (1) @@ -15629,11 +15719,11 @@ Fourdollars (1) + + Francesco (1) - - Fred.th (1) @@ -15643,11 +15733,11 @@ Funnym0nk3y (1) + + Manas Joshi (1) - - Gabix (1) @@ -15657,11 +15747,11 @@ Gabrielcossette (1) + + Gabrielezorzi (1) - - Ganton (1) @@ -15671,11 +15761,11 @@ Gcoelho (1) + + GeeZ (1) - - Gekacheka (1) @@ -15685,11 +15775,11 @@ Gerard (1) + + van Valkenhoef, Gert (1) - - Houston, Gary (1) @@ -15699,11 +15789,11 @@ Gicmo (1) + + Gmeijssen (1) - - Goldensgui (1) @@ -15713,11 +15803,11 @@ Grahl (1) + + GrantCelley (1) - - Grass-tree (1) @@ -15727,11 +15817,11 @@ Gregkel (1) + + GroverYQVvwokac (1) - - Gstein (1) @@ -15741,11 +15831,11 @@ Guillaume (1) + + Gxyd (1) - - H Wettlaufer (1) @@ -15755,11 +15845,11 @@ HKagerer (1) + + HLGZorawdi (1) - - Haggai (1) @@ -15769,11 +15859,11 @@ Hamati (1) + + Hamkins (1) - - Hapeck (1) @@ -15783,11 +15873,11 @@ Hbr (1) + + Rui Wang (1) - - Hermeli2856 (1) @@ -15797,11 +15887,11 @@ Heygo (1) + + Heyheyitshay (1) - - Hfischer (1) @@ -15811,11 +15901,11 @@ HiltonFtel (1) + + Hitomi t (1) - - Hkdocholid (1) @@ -15825,11 +15915,11 @@ Hoaivan27299 (1) + + K, Akshit (1) - - Honza.havlicek (1) @@ -15839,11 +15929,11 @@ HoracioRydge (1) + + Hornmichaels (1) - - Hosiryuhosi (1) @@ -15853,11 +15943,11 @@ HumbertGno (1) + + Hwoehrle (1) - - Ialbors (1) @@ -15867,11 +15957,11 @@ Iandol (1) + + Ianjo (1) - - Iantheprogrammer (1) @@ -15881,11 +15971,11 @@ IceBlur (1) + + Ida (1) - - Gilham, Ian (1) @@ -15895,11 +15985,11 @@ Imypsychconsult (1) + + Insanetree (1) - - Iosonja (1) @@ -15909,11 +15999,11 @@ Irene (1) + + IrrevdJohn (1) - - IrvinFunkw (1) @@ -15923,11 +16013,11 @@ IvanP (1) + + JDługosz (1) - - JJ2020 (1) @@ -15937,11 +16027,11 @@ Jab (1) + + Jailletc36 (1) - - JaimeS (1) @@ -15951,11 +16041,11 @@ JanEnEm (1) + + Janani (1) - - Jani (1) @@ -15965,11 +16055,11 @@ Janvlug (1) + + Jayppc (1) - - Jazzon (1) @@ -15979,11 +16069,11 @@ Chaffraix, Julien (1) + + Jean.fr (1) - - JeanAmessdvaei (1) @@ -15993,11 +16083,11 @@ JefferyMackenna (1) + + Jentron256 (1) - - Jeongkyu (1) @@ -16007,11 +16097,11 @@ Bicha, Jeremy (1) + + JerryShi (1) - - JessicaParker (1) @@ -16021,11 +16111,11 @@ JestineNww (1) + + Lazar, Timotej (1) - - Jflory7 (1) @@ -16035,11 +16125,11 @@ Jinocvla (1) + + JiroMatsuzawa (1) - - Jj151515 (1) @@ -16049,11 +16139,11 @@ Joachim (1) + + Joanluc (1) - - Joaofernando (1) @@ -16063,11 +16153,11 @@ JohnTheHuman (1) + + Johnplay2 (1) - - JomarSilva (1) @@ -16077,11 +16167,11 @@ JonelleFritz (1) + + Wu, Haidong (1) - - JordanS (1) @@ -16091,11 +16181,11 @@ Jorgemendes (1) + + JoseGatica (1) - - Joselaurian (1) @@ -16105,11 +16195,11 @@ José Eduardo (1) + + Jp.santi (1) - - Jpl (1) @@ -16119,11 +16209,11 @@ JudeMcCafferty (1) + + Juergen (1) - - JuliannSnider (1) @@ -16133,11 +16223,11 @@ Jwcampbell (1) + + Dubrulle, Kevin (1) - - Kader (1) @@ -16147,11 +16237,11 @@ KatjaG (1) + + Bhat, Kishor (1) - - Keith Long (1) @@ -16161,11 +16251,11 @@ Kenneth.venken (1) + + Kenton3255 (1) - - Kiyotaka Nishibori (1) @@ -16175,11 +16265,11 @@ Kkremitzki (1) + + Knobo (1) - - Koeleman (1) @@ -16189,11 +16279,11 @@ Kosmous (1) + + KourtneNester (1) - - Kr1shna (1) @@ -16203,11 +16293,11 @@ Kumar, Thangavel (1) + + Kying (1) - - LKPSharylptwsdo (1) @@ -16217,11 +16307,11 @@ LOFF (1) + + LaPingvino (1) - - Laskov (1) @@ -16231,11 +16321,11 @@ LaverneNavarret (1) + + LavinaVandermar (1) - - Learner (1) @@ -16245,11 +16335,11 @@ Likoski (1) + + LillieNlowccx (1) - - Lineinthesand (1) @@ -16259,11 +16349,11 @@ Litishia (1) + + Liturgist (1) - - Llalllal1 (1) @@ -16273,11 +16363,11 @@ Lobillo (1) + + Lonaowna (1) - - Lopp Rs (1) @@ -16287,11 +16377,11 @@ Lplatypus (1) + + Luca (1) - - Lucas Filho (1) @@ -16301,11 +16391,11 @@ Luiz Cláudio (1) + + Luiz Rezende (1) - - Luke (1) @@ -16315,11 +16405,11 @@ M1ndfr3ak (1) + + ME-ON1 (1) - - MJW (1) @@ -16329,11 +16419,11 @@ Mabel7997eelu (1) + + Maemst (1) - - Magicienap (1) @@ -16343,11 +16433,11 @@ Mahdiekrani (1) + + Mahmudul (1) - - Maliuta (1) @@ -16357,11 +16447,11 @@ Rizzolo, Mattia (1) + + MarcK (1) - - MarcelProut (1) @@ -16371,11 +16461,11 @@ Biscaro, Marco (1) + + Marcosalex (1) - - Marcosps (1) @@ -16385,11 +16475,11 @@ MarianaConnell (1) + + Mariano Gaudix (1) - - MarkWielaaard (1) @@ -16399,11 +16489,11 @@ Markzog21 (1) + + MarthaWaterman (1) - - Martinvanzijl (1) @@ -16413,11 +16503,11 @@ Maryanndefo91 (1) + + Masaki tamakoshi (1) - - Masakim-icraft (1) @@ -16427,11 +16517,11 @@ Mastizada (1) + + Matsuura (1) - - MattTheGeek (1) @@ -16441,11 +16531,11 @@ Matěj (1) + + Mau (1) - - MauroTrevisan (1) @@ -16455,11 +16545,11 @@ Maxjf1 (1) + + Mazinho (1) - - Bechler, Moritz (1) @@ -16469,11 +16559,11 @@ Doležel, Marek (1) + + Megan44Dgxg (1) - - Melikeyurtoglu (1) @@ -16483,11 +16573,11 @@ MeskoBalazs (1) + + Mete0r (1) - - Mhaehnel (1) @@ -16497,11 +16587,11 @@ Mhenriday (1) + + Mibm123 (1) - - Michaelwood (1) @@ -16511,11 +16601,11 @@ Midomidi2013 (1) + + MiguelKastner (1) - - Miguelteixeira (1) @@ -16525,11 +16615,11 @@ Mike-y (1) + + MikeLittle (1) - - Mikolg (1) @@ -16539,11 +16629,11 @@ Milanbv (1) + + Miles (1) - - Minarja4 (1) @@ -16553,11 +16643,11 @@ Miurahr (1) + + Mixer (1) - - Mixstah (1) @@ -16567,11 +16657,11 @@ Mmeof (1) + + Moaz eldfrawy (1) - - Moberg (1) @@ -16581,11 +16671,11 @@ Mohsenzl (1) + + Monikayadav (1) - - Morenonatural (1) @@ -16595,11 +16685,11 @@ Mrund (1) + + Muhammadsufyanzainalabidin (1) - - Mw (1) @@ -16609,11 +16699,11 @@ MyraBlacklow (1) + + N3rd4i (1) - - NEOhidra (1) @@ -16623,11 +16713,11 @@ Nanotron (1) + + Nattu (1) - - Ncaio (1) @@ -16637,11 +16727,11 @@ NellieSMWX (1) + + Neteler (1) - - Nevanos (1) @@ -16651,11 +16741,11 @@ Nickko (1) + + Nilss (1) - - Nithin.padavu (1) @@ -16665,11 +16755,11 @@ Nnino2 (1) + + Norty (1) - - Notafish (1) @@ -16679,11 +16769,11 @@ Nouiurm (1) + + Norbert X (1) - - Nurohman (1) @@ -16693,11 +16783,11 @@ Oig (1) + + Oiouitt (1) - - Okusi (1) @@ -16707,11 +16797,11 @@ Omansmith (1) + + Omerta (1) - - Onurkucuk67 (1) @@ -16721,11 +16811,11 @@ Opestawon (1) + + Sezen, Hunter (1) - - Orrd (1) @@ -16735,11 +16825,11 @@ Otrembad (1) + + Oui (1) - - Ouyang.leyan (1) @@ -16749,11 +16839,11 @@ Esen, Özcan (1) + + Ozpoz (1) - - Öztürk, Emre (1) @@ -16763,11 +16853,11 @@ PBsoft (1) + + Pal, Pawan (1) - - Padenton (1) @@ -16777,11 +16867,11 @@ PamalaDorsch (1) + + Pankaj (1) - - Papesky (1) @@ -16791,11 +16881,11 @@ Pastim (1) + + Paulmenzel (1) - - Paulolima (1) @@ -16805,11 +16895,11 @@ Pelambrera (1) + + PelinKuran (1) - - PenelopHewlett (1) @@ -16819,11 +16909,11 @@ Vorel, Petr (1) + + Pharmankur (1) - - Phb.nbnet.nb.ca (1) @@ -16833,11 +16923,11 @@ PhilDur (1) + + Philhart (1) - - PhilipTimms (1) @@ -16847,11 +16937,11 @@ Philippe43 (1) + + Krylov, Phil (1) - - Phomes (1) @@ -16861,11 +16951,11 @@ Pi (1) + + Piero (1) - - PieterDeBruijn (1) @@ -16875,11 +16965,11 @@ Pilavi (1) + + Piratu (1) - - Piternoize (1) @@ -16889,11 +16979,11 @@ Pkavinda (1) + + Plastique (1) - - Plastovicka (1) @@ -16901,9 +16991,6 @@ Moscu, Alexandru (1) - Plubius (1) - - PopularOutcast (1) @@ -17248,19 +17335,16 @@ Srijanani (1) - StefanU (1) - - Stewart75H (1) Stonehubmn (1) - - StuartHalliday (1) + + Subhash (1) @@ -17270,11 +17354,11 @@ SusieVeasley (1) - - Svalo (1) + + SvenHornung (1) @@ -17284,11 +17368,11 @@ Sviola (1) - - Svtlichnijj (1) + + Sébastien C. (1) @@ -17298,11 +17382,11 @@ TAQSamueld (1) - - Talueses (1) + + Tanguy k (1) @@ -17312,11 +17396,11 @@ TaylorSlemp (1) - - Techsquirrel (1) + + TeganCreswick (1) @@ -17326,11 +17410,11 @@ Terber (1) - - Testsflirt (1) + + The Magpie (1) @@ -17340,11 +17424,11 @@ Thephilosoft (1) - - Thom (1) + + Thor574 (1) @@ -17354,11 +17438,11 @@ Tifroumi (1) - - Tigerbeard (1) + + Tilt (1) @@ -17368,11 +17452,11 @@ Tomasdd (1) - - TomofumiYagi (1) + + Viehmann, Thomas (1) @@ -17382,11 +17466,11 @@ Transcend (1) - - Trebledcliff (1) + + TrevorPfe (1) @@ -17396,11 +17480,11 @@ Ttv20 (1) - - Tuliouel (1) + + Tuping (1) @@ -17410,11 +17494,11 @@ Jain, Umang (1) - - Udit Sharma (1) + + Shahid, Umair (1) @@ -17424,11 +17508,11 @@ Unho (1) - - UrmasD (1) + + UrsulaHorrell (1) @@ -17438,11 +17522,11 @@ VIPSylar (1) - - VPUJamikajklq (1) + + Vandenoever (1) @@ -17452,11 +17536,11 @@ Vera Cavalcante (1) - - VernaSchulze (1) + + Vincentvikram (1) @@ -17466,11 +17550,11 @@ Virus009 (1) - - WOBFriedauk (1) + + Wadrian (1) @@ -17480,11 +17564,11 @@ Wastl (1) - - Waynemcl (1) + + Webistrator (1) @@ -17494,11 +17578,11 @@ Wes (1) - - Westantenna (1) + + Wezchlebaty (1) @@ -17508,11 +17592,11 @@ William Avery (1) - - Williewortel (1) + + Klausner, Thomas (1) @@ -17522,11 +17606,11 @@ Tjong, Winston Min (1) - - XSXKristin (1) + + Baudin, Lucas (1) @@ -17536,11 +17620,11 @@ Xsdcfghjk (1) - - Suhail Alkowaileet (1) + + XtinaS (1) @@ -17550,11 +17634,11 @@ Xuenhua (1) - - Yangyiji (1) + + YaroslavRutledge (1) @@ -17564,11 +17648,11 @@ Yeliztaneroglu (1) - - Desai, Yogesh (1) + + Yoshiharu Kawai (1) @@ -17578,11 +17662,11 @@ YvanM (1) - - Yy y ja jp (1) + + Bölöny, Zsolt (1) @@ -17592,11 +17676,11 @@ Zangune (1) - - Zibi (1) + + Zizzle (1) @@ -17606,6 +17690,9 @@ 鄒延 (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.5.1~rc2/readlicense_oo/license/license.xml libreoffice-7.5.2~rc2/readlicense_oo/license/license.xml --- libreoffice-7.5.1~rc2/readlicense_oo/license/license.xml 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/readlicense_oo/license/license.xml 2023-03-24 16:53:38.000000000 +0000 @@ -1525,78 +1525,7 @@

OpenSSL

The following software may be included in this product: OpenSSL. Use of any of this software is governed by the terms of the license below:

-

The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the OpenSSL License and the - original SSLeay license apply to the toolkit.

-

See below for the actual license texts. Actually both licenses are BSD-style Open Source licenses. In case - of any license issues related to OpenSSL please contact openssl-core@openssl.org.

-

OpenSSL License

-

Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.

-

Redistribution and use in source and binary forms, with or without modification, are permitted provided that - the following conditions are met:

-
    -
  1. Redistribution of source code must retain the above copyright notice, this list of conditions and the - following disclaimer.
  2. -
  3. Redistribution in binary form must reproduce the above copyright notice, this list of conditions and - the following disclaimer in the documentation and/or other materials provided with the distribution. 
  4. -
  5. All advertising materials mentioning features or use of this software must display the following - acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL - Toolkit. (http://www.openssl.org/)" 
  6. -
  7. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products - derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. 
  8. -
  9. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names - without prior written permission of the OpenSSL Project. 
  10. -
  11. Redistribution of any form whatsoever must retain the following acknowledgment: "This product includes - software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)" 
  12. -
-

THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

-

This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). This product - includes software written by Tim Hudson (tjh@cryptsoft.com).

-

Original SSLeay License

-

Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) All rights reserved.

-

This package is an SSL implementation written by Eric Young (eay@cryptsoft.com).
- The implementation was written so as to conform with Netscapes SSL.

-

This library is free for commercial and non-commercial use as long as the following conditions are aheared - to. The following conditions apply to all code found in this distribution, be it the RC4, RSA, lhash, DES, - etc., code; not just the SSL code. The SSL documentation included with this distribution is covered by the same - copyright terms except that the holder is Tim Hudson (tjh@cryptsoft.com).

-

Copyright remains Eric Young's, and as such any Copyright notices in the code are not to be removed. If this - package is used in a product, Eric Young should be given attribution as the author of the parts of the library - used. This can be in the form of a textual message at program startup or in documentation (online or textual) - provided with the package.

-

Redistribution and use in source and binary forms, with or without modification, are permitted provided that - the following conditions are met:

-
    -
  1. Redistribution of source code must retain the copyright notice, this list of conditions and the - following disclaimer.
  2. -
  3. Redistribution in binary form must reproduce the above copyright notice, this list of conditions and - the following disclaimer in the documentation and/or other materials provided with the distribution. 
  4. -
  5. All advertising materials mentioning features or use of this software must display the following - acknowledgment: "This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the routines from the library being used are not cryptographic - related :-). 
  6. -
  7. If you include any Windows specific code (or a derivative thereof) from the apps directory (application - code) you must include an acknowledgment: "This product includes software written by Tim Hudson - (tjh@cryptsoft.com)" 
  8. -
-

THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN - NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, - OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

-

The license and distribution terms for any publicly available version or derivative of this code cannot be - changed. i.e. this code cannot simply be copied and put under another distribution license [including the GNU - Public License.]

+

Jump to Apache License Version 2.0

PDFium

diff -Nru libreoffice-7.5.1~rc2/sc/inc/clipcontext.hxx libreoffice-7.5.2~rc2/sc/inc/clipcontext.hxx --- libreoffice-7.5.1~rc2/sc/inc/clipcontext.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/inc/clipcontext.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -12,6 +12,7 @@ #include "address.hxx" #include "cellvalue.hxx" #include "celltextattr.hxx" +#include "columnspanset.hxx" #include "Sparkline.hxx" #include @@ -45,6 +46,9 @@ class SC_DLLPUBLIC CopyFromClipContext final : public ClipContextBase { + /** Tracks modified formula group spans. */ + sc::ColumnSpanSet maListeningFormulaSpans; + SCCOL mnDestCol1; SCCOL mnDestCol2; SCROW mnDestRow1; @@ -102,6 +106,17 @@ InsertDeleteFlags getDeleteFlag() const; /** + * Record a range of formula cells that need to start listening after the + * copy-from-clip is complete. + */ + void setListeningFormulaSpans( SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ); + + /** + * Have the formula cells in the recorded ranges start listening. + */ + void startListeningFormulas(); + + /** * Set the column size of a "single cell" row, which is used when copying * a single row of cells in a clip doc and pasting it into multiple * rows by replicating it. diff -Nru libreoffice-7.5.1~rc2/sc/inc/column.hxx libreoffice-7.5.2~rc2/sc/inc/column.hxx --- libreoffice-7.5.1~rc2/sc/inc/column.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/inc/column.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -22,6 +22,7 @@ #include "global.hxx" #include "address.hxx" #include "cellvalue.hxx" +#include "columnspanset.hxx" #include "rangelst.hxx" #include "types.hxx" #include "mtvelements.hxx" @@ -48,8 +49,6 @@ class CopyToClipContext; class CopyToDocContext; class MixDocContext; -class ColumnSpanSet; -class SingleColumnSpanSet; struct RefUpdateContext; struct RefUpdateInsertTabContext; struct RefUpdateDeleteTabContext; @@ -837,9 +836,19 @@ void CopyCellTextAttrsToDocument(SCROW nRow1, SCROW nRow2, ScColumn& rDestCol) const; - void DeleteCells( - sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2, InsertDeleteFlags nDelFlag, - sc::SingleColumnSpanSet& rDeleted ); + struct DeleteCellsResult + { + /** cell ranges that have been deleted. */ + sc::SingleColumnSpanSet aDeletedRows; + /** formula cell range that has stopped listening. */ + std::vector> aFormulaRanges; + + DeleteCellsResult( const ScDocument& rDoc ); + DeleteCellsResult( const DeleteCellsResult& ) = delete; + }; + + std::unique_ptr DeleteCells( + sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2, InsertDeleteFlags nDelFlag ); /** * Get all non-grouped formula cells and formula cell groups in the whole diff -Nru libreoffice-7.5.1~rc2/sc/inc/columnspanset.hxx libreoffice-7.5.2~rc2/sc/inc/columnspanset.hxx --- libreoffice-7.5.1~rc2/sc/inc/columnspanset.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/inc/columnspanset.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -58,6 +58,7 @@ ColumnSpansType::const_iterator miPos; ColumnType(SCROW nStart, SCROW nEnd, bool bInit); + ColumnType(const ColumnType& rOther); }; typedef std::vector> TableType; diff -Nru libreoffice-7.5.1~rc2/sc/inc/document.hxx libreoffice-7.5.2~rc2/sc/inc/document.hxx --- libreoffice-7.5.1~rc2/sc/inc/document.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/inc/document.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -1224,7 +1224,7 @@ SC_DLLPUBLIC sal_uInt32 GetNumberFormat( SCCOL nCol, SCROW nRow, SCTAB nTab ) const; sal_uInt32 GetNumberFormat( const ScRange& rRange ) const; SC_DLLPUBLIC sal_uInt32 GetNumberFormat( const ScInterpreterContext& rContext, const ScAddress& ) const; - void SetNumberFormat( const ScAddress& rPos, sal_uInt32 nNumberFormat ); + SC_DLLPUBLIC void SetNumberFormat( const ScAddress& rPos, sal_uInt32 nNumberFormat ); void GetNumberFormatInfo( const ScInterpreterContext& rContext, SvNumFormatType& nType, sal_uInt32& nIndex, const ScAddress& rPos ) const; SC_DLLPUBLIC const ScFormulaCell* GetFormulaCell( const ScAddress& rPos ) const; @@ -1672,6 +1672,9 @@ SCCOL nCol2, SCROW nRow2, const ScMarkData& rMark, SCCOL nDx, SCROW& rClipStartRow, SCROW nClipEndRow); + void StartListeningFromClip( + sc::StartListeningContext& rStartCxt, sc::EndListeningContext& rEndCxt, + SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ); void StartListeningFromClip( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, const ScMarkData& rMark, InsertDeleteFlags nInsFlag ); diff -Nru libreoffice-7.5.1~rc2/sc/inc/formulacell.hxx libreoffice-7.5.2~rc2/sc/inc/formulacell.hxx --- libreoffice-7.5.1~rc2/sc/inc/formulacell.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/inc/formulacell.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -445,7 +445,8 @@ if (!IsDirtyOrInTableOpDirty()) return false; - return (rDocument.GetAutoCalc() || (cMatrixFlag != ScMatrixMode::NONE)); + return rDocument.GetAutoCalc() || (cMatrixFlag != ScMatrixMode::NONE) + || (pCode->IsRecalcModeMustAfterImport() && !pCode->IsRecalcModeAlways()); } void MaybeInterpret() diff -Nru libreoffice-7.5.1~rc2/sc/inc/stlpool.hxx libreoffice-7.5.2~rc2/sc/inc/stlpool.hxx --- libreoffice-7.5.1~rc2/sc/inc/stlpool.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/inc/stlpool.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -51,6 +51,8 @@ bool HasStandardStyles() const { return bHasStandardStyles; } ScStyleSheet* FindCaseIns( const OUString& rName, SfxStyleFamily eFam ); + // Finds Para style with given name case-insensitively, or STR_STYLENAME_STANDARD + ScStyleSheet* FindAutoStyle(const OUString& rName); virtual SfxStyleSheetBase& Make( const OUString&, SfxStyleFamily eFam, SfxStyleSearchBits nMask = SfxStyleSearchBits::All) override; diff -Nru libreoffice-7.5.1~rc2/sc/inc/validat.hxx libreoffice-7.5.2~rc2/sc/inc/validat.hxx --- libreoffice-7.5.1~rc2/sc/inc/validat.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/inc/validat.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -152,6 +152,10 @@ bool IsDataValid( ScRefCellValue& rCell, const ScAddress& rPos ) const; + /** Test, if formula is valid. */ + bool isFormulaResultsValidatable(const OUString& rTest, const ScAddress& rPos, SvNumberFormatter* pFormatter, + OUString& rStrResult, double& nVal, sal_uInt32& nFormat, bool& bIsVal) const; + // TRUE -> break bool DoError(weld::Window* pParent, const OUString& rInput, const ScAddress& rPos) const; void DoCalcError( ScFormulaCell* pCell ) const; diff -Nru libreoffice-7.5.1~rc2/sc/inc/ViewSettingsSequenceDefines.hxx libreoffice-7.5.2~rc2/sc/inc/ViewSettingsSequenceDefines.hxx --- libreoffice-7.5.1~rc2/sc/inc/ViewSettingsSequenceDefines.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/inc/ViewSettingsSequenceDefines.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -24,7 +24,7 @@ // this are the defines for the position of the settings in the // ViewSettingsSequence -#define SC_VIEWSETTINGS_COUNT 24 +#define SC_VIEWSETTINGS_COUNT 25 #define SC_VIEW_ID 0 #define SC_TABLE_VIEWSETTINGS 1 Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/sc/qa/extras/testdocuments/ForEachInSelection.ods and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/sc/qa/extras/testdocuments/ForEachInSelection.ods differ diff -Nru libreoffice-7.5.1~rc2/sc/qa/extras/vba-macro-test.cxx libreoffice-7.5.2~rc2/sc/qa/extras/vba-macro-test.cxx --- libreoffice-7.5.1~rc2/sc/qa/extras/vba-macro-test.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/qa/extras/vba-macro-test.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -22,6 +22,8 @@ #include #include +#include +#include #include #include #include @@ -66,6 +68,7 @@ void testTdf118247(); void testTdf126457(); void testForEachInSelection(); + void testNonAsciiMacroIRI(); CPPUNIT_TEST_SUITE(VBAMacroTest); CPPUNIT_TEST(testSimpleCopyAndPaste); @@ -90,6 +93,7 @@ CPPUNIT_TEST(testTdf118247); CPPUNIT_TEST(testTdf126457); CPPUNIT_TEST(testForEachInSelection); + CPPUNIT_TEST(testNonAsciiMacroIRI); CPPUNIT_TEST_SUITE_END(); }; @@ -856,6 +860,33 @@ CPPUNIT_ASSERT_EQUAL(OUString("oof"), rDoc.GetString(ScAddress(0, 0, 0))); CPPUNIT_ASSERT_EQUAL(OUString("rab"), rDoc.GetString(ScAddress(0, 1, 0))); + CPPUNIT_ASSERT_EQUAL(OUString("zab"), rDoc.GetString(ScAddress(0, 2, 0))); +} + +void VBAMacroTest::testNonAsciiMacroIRI() +{ + loadFromURL(u"ForEachInSelection.ods"); + SfxObjectShell* pFoundShell = SfxObjectShell::GetShellFromComponent(mxComponent); + + CPPUNIT_ASSERT_MESSAGE("Failed to access document shell", pFoundShell); + ScDocShell* pDocSh = static_cast(pFoundShell); + ScDocument& rDoc = pDocSh->GetDocument(); + + CPPUNIT_ASSERT_EQUAL(OUString("foo"), rDoc.GetString(ScAddress(0, 0, 0))); + CPPUNIT_ASSERT_EQUAL(OUString("bar"), rDoc.GetString(ScAddress(0, 1, 0))); + CPPUNIT_ASSERT_EQUAL(OUString("baz"), rDoc.GetString(ScAddress(0, 2, 0))); + + auto ret = dispatchCommand(mxComponent, u"macro://./Standard.Module1.NonAsciiName_αβγ", {}); + css::frame::DispatchResultEvent retEvent; + CPPUNIT_ASSERT(ret >>= retEvent); + // tdf#153752: without the fix, this would fail with + // equality assertion failed + // - Expected: 1 + // - Actual : 0 + CPPUNIT_ASSERT_EQUAL(css::frame::DispatchResultState::SUCCESS, retEvent.State); + + CPPUNIT_ASSERT_EQUAL(OUString("oof"), rDoc.GetString(ScAddress(0, 0, 0))); + CPPUNIT_ASSERT_EQUAL(OUString("rab"), rDoc.GetString(ScAddress(0, 1, 0))); CPPUNIT_ASSERT_EQUAL(OUString("zab"), rDoc.GetString(ScAddress(0, 2, 0))); } diff -Nru libreoffice-7.5.1~rc2/sc/qa/uitest/validity/tdf150098.py libreoffice-7.5.2~rc2/sc/qa/uitest/validity/tdf150098.py --- libreoffice-7.5.1~rc2/sc/qa/uitest/validity/tdf150098.py 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/qa/uitest/validity/tdf150098.py 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,47 @@ +# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +from uitest.framework import UITestCase +from uitest.uihelper.calc import enter_text_to_cell +from libreoffice.calc.document import get_cell_by_position +from uitest.uihelper.common import select_by_text, select_pos + +from libreoffice.uno.propertyvalue import mkPropertyValues + + +class EvaluateFormulaInputs(UITestCase): + + def test_inputs_with_formula(self): + with self.ui_test.create_doc_in_start_center("calc") as document: + xCalcDoc = self.xUITest.getTopFocusWindow() + gridwin = xCalcDoc.getChild("grid_window") + enter_text_to_cell(gridwin, "A1", "5") + enter_text_to_cell(gridwin, "A2", "7") + enter_text_to_cell(gridwin, "A3", "12") + + #Select the cells to be validated + gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A4"})) + #Apply Data > Validity ... > Whole Numbers + with self.ui_test.execute_dialog_through_command(".uno:Validation") as xDialog: + xTabs = xDialog.getChild("tabcontrol") + select_pos(xTabs, "0") + xallow = xDialog.getChild("allow") + xallowempty = xDialog.getChild("allowempty") + xdata = xDialog.getChild("data") + xmin = xDialog.getChild("min") + + select_by_text(xallow, "Whole Numbers") + xallowempty.executeAction("CLICK", tuple()) + select_by_text(xdata, "equal") + xmin.executeAction("TYPE", mkPropertyValues({"TEXT":"A3"})) + + enter_text_to_cell(gridwin, "A4", "=SUM(A1:A2)") + # without the fix in place, an error message would have appeared + self.assertEqual(get_cell_by_position(document, 0, 0, 3).getValue(), 12.0) + +# vim: set shiftwidth=4 softtabstop=4 expandtab: Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/sc/qa/unit/data/xlsx/tdf138601.xlsx and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/sc/qa/unit/data/xlsx/tdf138601.xlsx differ diff -Nru libreoffice-7.5.1~rc2/sc/qa/unit/subsequent_filters_test.cxx libreoffice-7.5.2~rc2/sc/qa/unit/subsequent_filters_test.cxx --- libreoffice-7.5.1~rc2/sc/qa/unit/subsequent_filters_test.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/qa/unit/subsequent_filters_test.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -78,6 +78,7 @@ ScFiltersTest(); //ods, xls, xlsx filter tests + void testTdf138601_CondFormatXLSX(); void testContentODS(); void testContentXLS(); void testContentXLSX(); @@ -209,6 +210,7 @@ void testForcepoint107(); CPPUNIT_TEST_SUITE(ScFiltersTest); + CPPUNIT_TEST(testTdf138601_CondFormatXLSX); CPPUNIT_TEST(testContentODS); CPPUNIT_TEST(testContentXLS); CPPUNIT_TEST(testContentXLSX); @@ -419,6 +421,30 @@ } } +void ScFiltersTest::testTdf138601_CondFormatXLSX() +{ + createScDoc("xlsx/tdf138601.xlsx"); + + ScDocument* pDoc = getScDoc(); + ScConditionalFormat* pFormat1 = pDoc->GetCondFormat(0, 0, 0); + const ScFormatEntry* pEntry1 = pFormat1->GetEntry(0); + const ScColorScaleFormat* pColorScale1 = static_cast(pEntry1); + const ScColorScaleEntry* pColorScaleEntry1 = pColorScale1->GetEntry(0); + CPPUNIT_ASSERT_EQUAL(Color(255, 255, 201), pColorScaleEntry1->GetColor()); + + ScConditionalFormat* pFormat2 = pDoc->GetCondFormat(1, 0, 0); + const ScFormatEntry* pEntry2 = pFormat2->GetEntry(0); + const ScColorScaleFormat* pColorScale2 = static_cast(pEntry2); + const ScColorScaleEntry* pColorScaleEntry2 = pColorScale2->GetEntry(0); + CPPUNIT_ASSERT_EQUAL(Color(255, 139, 139), pColorScaleEntry2->GetColor()); + + ScConditionalFormat* pFormat3 = pDoc->GetCondFormat(0, 1, 0); + const ScFormatEntry* pEntry3 = pFormat3->GetEntry(0); + const ScColorScaleFormat* pColorScale3 = static_cast(pEntry3); + const ScColorScaleEntry* pColorScaleEntry3 = pColorScale3->GetEntry(0); + CPPUNIT_ASSERT_EQUAL(Color(255, 255, 201), pColorScaleEntry3->GetColor()); +} + void ScFiltersTest::testContentODS() { createScDoc("ods/universal-content.ods"); Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/sc/qa/unit/uicalc/data/simpleTable.xlsx and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/sc/qa/unit/uicalc/data/simpleTable.xlsx differ diff -Nru libreoffice-7.5.1~rc2/sc/qa/unit/uicalc/uicalc.cxx libreoffice-7.5.2~rc2/sc/qa/unit/uicalc/uicalc.cxx --- libreoffice-7.5.1~rc2/sc/qa/unit/uicalc/uicalc.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/qa/unit/uicalc/uicalc.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -2082,6 +2082,21 @@ CPPUNIT_ASSERT_EQUAL(5.0, pDoc->GetValue(ScAddress(5, 71, 0))); } +CPPUNIT_TEST_FIXTURE(ScUiCalcTest, testTdf154061) +{ + createScDoc("simpleTable.xlsx"); + ScDocument* pDoc = getScDoc(); + CPPUNIT_ASSERT_EQUAL(OUString("Column2"), pDoc->GetString(ScAddress(1, 0, 0))); + + goToCell("B1"); + + // Without the fix in place, it would crash here due to an out of bounds array access + dispatchCommand(mxComponent, ".uno:InsertColumnsBefore", {}); + CPPUNIT_ASSERT_EQUAL(OUString("Column2"), pDoc->GetString(ScAddress(2, 0, 0))); + dispatchCommand(mxComponent, ".uno:Undo", {}); + CPPUNIT_ASSERT_EQUAL(OUString("Column2"), pDoc->GetString(ScAddress(1, 0, 0))); +} + CPPUNIT_TEST_FIXTURE(ScUiCalcTest, testTdf132431) { createScDoc("tdf132431.ods"); diff -Nru libreoffice-7.5.1~rc2/sc/sdi/scalc.sdi libreoffice-7.5.2~rc2/sc/sdi/scalc.sdi --- libreoffice-7.5.1~rc2/sc/sdi/scalc.sdi 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/sdi/scalc.sdi 2023-03-24 16:53:38.000000000 +0000 @@ -3612,8 +3612,8 @@ RecordAbsolute = FALSE, RecordPerSet; - AccelConfig = TRUE, - MenuConfig = TRUE, + AccelConfig = FALSE, + MenuConfig = FALSE, ToolBoxConfig = FALSE, GroupId = SfxGroupId::Format; ] diff -Nru libreoffice-7.5.1~rc2/sc/source/core/data/clipcontext.cxx libreoffice-7.5.2~rc2/sc/source/core/data/clipcontext.cxx --- libreoffice-7.5.1~rc2/sc/source/core/data/clipcontext.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/data/clipcontext.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -21,6 +21,7 @@ #include #include #include +#include namespace sc { @@ -113,6 +114,52 @@ return mnDeleteFlag; } +void CopyFromClipContext::setListeningFormulaSpans( + SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ) +{ + for (SCCOL nCol = nCol1; nCol <= nCol2; ++nCol) + maListeningFormulaSpans.set(mrDestDoc, nTab, nCol, nRow1, nRow2, true); +} + +namespace { + +class StartListeningAction : public sc::ColumnSpanSet::Action +{ + ScDocument& mrDestDoc; + sc::StartListeningContext& mrStartCxt; + sc::EndListeningContext& mrEndCxt; + +public: + StartListeningAction( ScDocument& rDestDoc, sc::StartListeningContext& rStartCxt, sc::EndListeningContext& rEndCxt ) : + mrDestDoc(rDestDoc), mrStartCxt(rStartCxt), mrEndCxt(rEndCxt) + { + } + + virtual void execute( const ScAddress& rPos, SCROW nLength, bool bVal ) override + { + if (!bVal) + return; + + SCROW nRow1 = rPos.Row(); + SCROW nRow2 = nRow1 + nLength - 1; + + mrDestDoc.StartListeningFromClip( + mrStartCxt, mrEndCxt, rPos.Tab(), rPos.Col(), nRow1, rPos.Col(), nRow2); + } +}; + +} + +void CopyFromClipContext::startListeningFormulas() +{ + auto pSet = std::make_shared(mrDestDoc); + sc::StartListeningContext aStartCxt(mrDestDoc, pSet); + sc::EndListeningContext aEndCxt(mrDestDoc, pSet, nullptr); + + StartListeningAction aAction(mrDestDoc, aStartCxt, aEndCxt); + maListeningFormulaSpans.executeAction(mrDestDoc, aAction); +} + void CopyFromClipContext::setSingleCellColumnSize( size_t nSize ) { maSingleCells.resize(nSize); diff -Nru libreoffice-7.5.1~rc2/sc/source/core/data/column3.cxx libreoffice-7.5.2~rc2/sc/source/core/data/column3.cxx --- libreoffice-7.5.1~rc2/sc/source/core/data/column3.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/data/column3.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -990,6 +990,33 @@ (nType == SvNumFormatType::DATETIME); } + /** + * Query the formula ranges that may have stopped listening, accounting for + * the formula groups. + */ + std::vector> getFormulaRanges() + { + std::vector> aRet; + + for (const ScFormulaCell* pFC : maFormulaCells) + { + SCROW nTopRow = pFC->aPos.Row(); + SCROW nBottomRow = pFC->aPos.Row(); + + auto xGroup = pFC->GetCellGroup(); + if (xGroup) + { + pFC = xGroup->mpTopCell; + nTopRow = pFC->aPos.Row(); + nBottomRow = nTopRow + xGroup->mnLength - 1; + } + + aRet.emplace_back(nTopRow, nBottomRow); + } + + return aRet; + } + void endFormulas() { mrDoc.EndListeningFormulaCells(maFormulaCells); @@ -1037,14 +1064,21 @@ } -void ScColumn::DeleteCells( - sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2, InsertDeleteFlags nDelFlag, - sc::SingleColumnSpanSet& rDeleted ) +ScColumn::DeleteCellsResult::DeleteCellsResult( const ScDocument& rDoc ) : + aDeletedRows( rDoc.GetSheetLimits() ) +{ +} + +std::unique_ptr ScColumn::DeleteCells( + sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2, InsertDeleteFlags nDelFlag ) { + std::unique_ptr xResult = std::make_unique(GetDoc()); + // Determine which cells to delete based on the deletion flags. DeleteAreaHandler aFunc(GetDoc(), nDelFlag, *this); sc::CellStoreType::iterator itPos = maCells.position(rBlockPos.miCellPos, nRow1).first; sc::ProcessBlock(itPos, maCells, aFunc, nRow1, nRow2); + xResult->aFormulaRanges = aFunc.getFormulaRanges(); aFunc.endFormulas(); // Have the formula cells stop listening. // Get the deletion spans. @@ -1056,7 +1090,9 @@ std::for_each(aSpans.rbegin(), aSpans.rend(), EmptyCells(rBlockPos, *this)); CellStorageModified(); - aFunc.getSpans().swap(rDeleted); + aFunc.getSpans().swap(xResult->aDeletedRows); + + return xResult; } void ScColumn::DeleteArea( @@ -1069,18 +1105,17 @@ nContMask |= InsertDeleteFlags::NOCAPTIONS; InsertDeleteFlags nContFlag = nDelFlag & nContMask; - sc::SingleColumnSpanSet aDeletedRows(GetDoc().GetSheetLimits()); - sc::ColumnBlockPosition aBlockPos; InitBlockPosition(aBlockPos); + std::unique_ptr xResult; if (!IsEmptyData() && nContFlag != InsertDeleteFlags::NONE) { - DeleteCells(aBlockPos, nStartRow, nEndRow, nDelFlag, aDeletedRows); + xResult = DeleteCells(aBlockPos, nStartRow, nEndRow, nDelFlag); if (pBroadcastSpans) { sc::SingleColumnSpanSet::SpansType aSpans; - aDeletedRows.getSpans(aSpans); + xResult->aDeletedRows.getSpans(aSpans); for (const auto& rSpan : aSpans) pBroadcastSpans->set(GetDoc(), nTab, nCol, rSpan.mnRow1, rSpan.mnRow2, true); } @@ -1109,12 +1144,12 @@ else if ((nDelFlag & InsertDeleteFlags::HARDATTR) == InsertDeleteFlags::HARDATTR) pAttrArray->DeleteHardAttr( nStartRow, nEndRow ); - if (bBroadcast) + if (xResult && bBroadcast) { // Broadcast on only cells that were deleted; no point broadcasting on // cells that were already empty before the deletion. std::vector aRows; - aDeletedRows.getRows(aRows); + xResult->aDeletedRows.getRows(aRows); BroadcastCells(aRows, SfxHintId::ScDataChanged); } } diff -Nru libreoffice-7.5.1~rc2/sc/source/core/data/column4.cxx libreoffice-7.5.2~rc2/sc/source/core/data/column4.cxx --- libreoffice-7.5.1~rc2/sc/source/core/data/column4.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/data/column4.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -111,9 +111,12 @@ if (nDelFlag & InsertDeleteFlags::CONTENTS) { - sc::SingleColumnSpanSet aDeletedRows(GetDoc().GetSheetLimits()); - DeleteCells(*pBlockPos, aRange.mnRow1, aRange.mnRow2, nDelFlag, aDeletedRows); - rBroadcastSpans.set(GetDoc(), nTab, nCol, aDeletedRows, true); + auto xResult = DeleteCells(*pBlockPos, aRange.mnRow1, aRange.mnRow2, nDelFlag); + rBroadcastSpans.set(GetDoc(), nTab, nCol, xResult->aDeletedRows, true); + + for (const auto& rRange : xResult->aFormulaRanges) + rCxt.setListeningFormulaSpans( + nTab, nCol, rRange.first, nCol, rRange.second); } if (nDelFlag & InsertDeleteFlags::NOTE) @@ -202,9 +205,12 @@ if (nDelFlag & InsertDeleteFlags::CONTENTS) { - sc::SingleColumnSpanSet aDeletedRows(GetDoc().GetSheetLimits()); - DeleteCells(*pBlockPos, nRow1, nRow2, nDelFlag, aDeletedRows); - rBroadcastSpans.set(GetDoc(), nTab, nCol, aDeletedRows, true); + auto xResult = DeleteCells(*pBlockPos, nRow1, nRow2, nDelFlag); + rBroadcastSpans.set(GetDoc(), nTab, nCol, xResult->aDeletedRows, true); + + for (const auto& rRange : xResult->aFormulaRanges) + rCxt.setListeningFormulaSpans( + nTab, nCol, rRange.first, nCol, rRange.second); } if (nDelFlag & InsertDeleteFlags::NOTE) diff -Nru libreoffice-7.5.1~rc2/sc/source/core/data/columnspanset.cxx libreoffice-7.5.2~rc2/sc/source/core/data/columnspanset.cxx --- libreoffice-7.5.1~rc2/sc/source/core/data/columnspanset.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/data/columnspanset.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -53,6 +53,9 @@ ColumnSpanSet::ColumnType::ColumnType(SCROW nStart, SCROW nEnd, bool bInit) : maSpans(nStart, nEnd+1, bInit), miPos(maSpans.begin()) {} +ColumnSpanSet::ColumnType::ColumnType(const ColumnType& rOther) : + maSpans(rOther.maSpans), miPos(maSpans.begin()) {} // NB: copying maSpans invalidates miPos - reset it + ColumnSpanSet::Action::~Action() {} void ColumnSpanSet::Action::startColumn(SCTAB /*nTab*/, SCCOL /*nCol*/) {} @@ -142,6 +145,7 @@ ColumnNonEmptyRangesScanner aScanner(rCol.maSpans, bVal); ParseBlock(rSrcCells.begin(), rSrcCells, aScanner, nRow1, nRow2); + rCol.miPos = rCol.maSpans.begin(); } } diff -Nru libreoffice-7.5.1~rc2/sc/source/core/data/document.cxx libreoffice-7.5.2~rc2/sc/source/core/data/document.cxx --- libreoffice-7.5.1~rc2/sc/source/core/data/document.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/data/document.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -2621,6 +2621,17 @@ mxPoolHelper->GetDocPool() == pClipDoc->mxPoolHelper->GetDocPool(); } +void ScDocument::StartListeningFromClip( + sc::StartListeningContext& rStartCxt, sc::EndListeningContext& rEndCxt, + SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ) +{ + ScTable* pTab = FetchTable(nTab); + if (!pTab) + return; + + pTab->StartListeningFormulaCells(rStartCxt, rEndCxt, nCol1, nRow1, nCol2, nRow2); +} + void ScDocument::StartListeningFromClip( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, const ScMarkData& rMark, InsertDeleteFlags nInsFlag ) @@ -2633,14 +2644,8 @@ sc::StartListeningContext aStartCxt(*this, pSet); sc::EndListeningContext aEndCxt(*this, pSet, nullptr); - SCTAB nMax = static_cast(maTabs.size()); - for (const auto& rTab : rMark) - { - if (rTab >= nMax) - break; - if (maTabs[rTab]) - maTabs[rTab]->StartListeningFormulaCells(aStartCxt, aEndCxt, nCol1, nRow1, nCol2, nRow2); - } + for (SCTAB nTab : rMark) + StartListeningFromClip(aStartCxt, aEndCxt, nTab, nCol1, nRow1, nCol2, nRow2); } void ScDocument::SetDirtyFromClip( @@ -2946,7 +2951,7 @@ SCROW nRow2 = rRange.aEnd.Row(); aCxt.setDestRange(nCol1, nRow1, nCol2, nRow2); - DeleteBeforeCopyFromClip(aCxt, rMark, aBroadcastSpans); + DeleteBeforeCopyFromClip(aCxt, rMark, aBroadcastSpans); // <- this removes existing formula listeners if (CopyOneCellFromClip(aCxt, nCol1, nRow1, nCol2, nRow2)) continue; @@ -3042,8 +3047,14 @@ bInsertingFromOtherDoc = false; + if (nInsFlag & InsertDeleteFlags::CONTENTS) + { + for (SCTAB nTab : rMark) + aCxt.setListeningFormulaSpans(nTab, nAllCol1, nAllRow1, nAllCol2, nAllRow2); + } + // Create Listener after everything has been inserted - StartListeningFromClip( nAllCol1, nAllRow1, nAllCol2, nAllRow2, rMark, nInsFlag ); + aCxt.startListeningFormulas(); { ScBulkBroadcast aBulkBroadcast( GetBASM(), SfxHintId::ScDataChanged); diff -Nru libreoffice-7.5.1~rc2/sc/source/core/data/formulacell.cxx libreoffice-7.5.2~rc2/sc/source/core/data/formulacell.cxx --- libreoffice-7.5.1~rc2/sc/source/core/data/formulacell.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/data/formulacell.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -2331,6 +2331,8 @@ OSL_ENSURE( pCode->GetCodeError() != FormulaError::NONE, "no RPN code and no errors ?!?!" ); ResetDirty(); } + + pCode->ClearRecalcModeMustAfterImport(); } void ScFormulaCell::HandleStuffAfterParallelCalculation(ScInterpreter* pInterpreter) @@ -2546,7 +2548,7 @@ // the FormulaTree, once in there it would be assumed that its // dependents already had been tracked and it would be skipped on a // subsequent notify. Postpone tracking until all listeners are set. - if (!rDocument.IsImportingXML()) + if (!rDocument.IsImportingXML() && !rDocument.IsInsertingFromOtherDoc()) rDocument.TrackFormulas(); } @@ -2647,10 +2649,6 @@ { if ( (nBits & ScRecalcMode::EMask) != ScRecalcMode::NORMAL ) SetDirtyVar(); - if ( nBits & ScRecalcMode::ONLOAD_ONCE ) - { // OnLoadOnce is used only to set Dirty after filter import. - nBits = (nBits & ~ScRecalcMode::EMask) | ScRecalcMode::NORMAL; - } pCode->AddRecalcMode( nBits ); } diff -Nru libreoffice-7.5.1~rc2/sc/source/core/data/stlpool.cxx libreoffice-7.5.2~rc2/sc/source/core/data/stlpool.cxx --- libreoffice-7.5.1~rc2/sc/source/core/data/stlpool.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/data/stlpool.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -408,14 +408,30 @@ CaseInsensitiveNamePredicate aPredicate(rName, eFam); std::vector aFoundPositions = GetIndexedStyleSheets().FindPositionsByPredicate(aPredicate); + ScStyleSheet* first = nullptr; // first case insensitive match found for (const auto& rPos : aFoundPositions) { SfxStyleSheetBase *pFound = GetStyleSheetByPositionInIndex(rPos); // we do not know what kind of sheets we have. if (pFound->isScStyleSheet()) - return static_cast(pFound); + { + if (pFound->GetName() == rName) // exact case sensitive match + return static_cast(pFound); + if (!first) + first = static_cast(pFound); + } } - return nullptr; + return first; +} + +ScStyleSheet* ScStyleSheetPool::FindAutoStyle(const OUString& rName) +{ + ScStyleSheet* pStyleSheet = FindCaseIns(rName, SfxStyleFamily::Para); + if (!pStyleSheet) + if (auto pFound = Find(ScResId(STR_STYLENAME_STANDARD), SfxStyleFamily::Para)) + if (pFound->isScStyleSheet()) // we do not know what kind of sheets we have + pStyleSheet = static_cast(pFound); + return pStyleSheet; } void ScStyleSheetPool::setAllParaStandard() diff -Nru libreoffice-7.5.1~rc2/sc/source/core/data/validat.cxx libreoffice-7.5.2~rc2/sc/source/core/data/validat.cxx --- libreoffice-7.5.1~rc2/sc/source/core/data/validat.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/data/validat.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -51,6 +51,7 @@ #include #include #include +#include #include #include @@ -435,15 +436,30 @@ if (rTest.isEmpty()) // check whether empty cells are allowed return IsIgnoreBlank(); - if (rTest[0] == '=') // formulas do not pass the validity test - return false; + SvNumberFormatter* pFormatter = nullptr; + sal_uInt32 nFormat = 0; + double nVal = 0.0; + OUString rStrResult = ""; + bool bIsVal = false; - SvNumberFormatter* pFormatter = GetDocument()->GetFormatTable(); + if (rTest[0] == '=') + { + if (!isFormulaResultsValidatable(rTest, rPos, pFormatter, rStrResult, nVal, nFormat, bIsVal)) + return false; - // get the value if any - sal_uInt32 nFormat = rPattern.GetNumberFormat( pFormatter ); - double nVal; - bool bIsVal = pFormatter->IsNumberFormat( rTest, nFormat, nVal ); + // check whether empty cells are allowed + if (rStrResult.isEmpty()) + return IsIgnoreBlank(); + } + else + { + pFormatter = GetDocument()->GetFormatTable(); + + // get the value if any + nFormat = rPattern.GetNumberFormat(pFormatter); + bIsVal = pFormatter->IsNumberFormat(rTest, nFormat, nVal); + rStrResult = rTest; + } ScRefCellValue aTmpCell; svl::SharedString aSS; @@ -453,7 +469,7 @@ } else { - aSS = mpDoc->GetSharedStringPool().intern(rTest); + aSS = mpDoc->GetSharedStringPool().intern(rStrResult); aTmpCell = ScRefCellValue(&aSS); } @@ -522,25 +538,40 @@ if (rTest.isEmpty()) // check whether empty cells are allowed return IsIgnoreBlank(); - if (rTest[0] == '=') // formulas do not pass the validity test - return false; + SvNumberFormatter* pFormatter = nullptr; + sal_uInt32 nFormat = 0; + double nVal = 0.0; + OUString rStrResult = ""; + bool bIsVal = false; - SvNumberFormatter* pFormatter = GetDocument()->GetFormatTable(); + if (rTest[0] == '=') + { + if (!isFormulaResultsValidatable(rTest, rPos, pFormatter, rStrResult, nVal, nFormat, bIsVal)) + return false; - // get the value if any - sal_uInt32 nFormat = rPattern.GetNumberFormat( pFormatter ); - double nVal; - bool bIsVal = pFormatter->IsNumberFormat( rTest, nFormat, nVal ); + // check whether empty cells are allowed + if (rStrResult.isEmpty()) + return IsIgnoreBlank(); + } + else + { + pFormatter = GetDocument()->GetFormatTable(); + + // get the value if any + nFormat = rPattern.GetNumberFormat(pFormatter); + bIsVal = pFormatter->IsNumberFormat(rTest, nFormat, nVal); + rStrResult = rTest; + } bool bRet; if (SC_VALID_TEXTLEN == eDataMode) { if (!bIsVal) - bRet = IsDataValidTextLen( rTest, rPos, nullptr); + bRet = IsDataValidTextLen( rStrResult, rPos, nullptr); else { ScValidationDataIsNumeric aDataNumeric( nVal, pFormatter, nFormat); - bRet = IsDataValidTextLen( rTest, rPos, &aDataNumeric); + bRet = IsDataValidTextLen( rStrResult, rPos, &aDataNumeric); } } else @@ -552,7 +583,7 @@ } else { - svl::SharedString aSS = mpDoc->GetSharedStringPool().intern(rTest); + svl::SharedString aSS = mpDoc->GetSharedStringPool().intern( rStrResult ); ScRefCellValue aTmpCell(&aSS); bRet = IsDataValid(aTmpCell, rPos); } @@ -635,6 +666,70 @@ return bOk; } +bool ScValidationData::isFormulaResultsValidatable(const OUString& rTest, const ScAddress& rPos, SvNumberFormatter* pFormatter, + OUString& rStrResult, double& nVal, sal_uInt32& nFormat, bool& bIsVal) const +{ + std::optional pFCell(std::in_place, *mpDoc, rPos, rTest, true); + pFCell->SetLimitString(true); + + bool bColRowName = pFCell->HasColRowName(); + if (bColRowName) + { + // ColRowName from RPN-Code? + if (pFCell->GetCode()->GetCodeLen() <= 1) + { // ==1: area + // ==0: would be an area if... + OUString aBraced = "(" + rTest + ")"; + pFCell.emplace(*mpDoc, rPos, aBraced, true); + pFCell->SetLimitString(true); + } + else + bColRowName = false; + } + + FormulaError nErrCode = pFCell->GetErrCode(); + if (nErrCode == FormulaError::NONE || pFCell->IsMatrix()) + { + pFormatter = mpDoc->GetFormatTable(); + const Color* pColor; + if (pFCell->IsMatrix()) + { + rStrResult = pFCell->GetString().getString(); + } + else if (pFCell->IsValue()) + { + nVal = pFCell->GetValue(); + nFormat = pFormatter->GetStandardFormat(nVal, 0, + pFCell->GetFormatType(), ScGlobal::eLnge); + pFormatter->GetOutputString(nVal, nFormat, rStrResult, &pColor); + bIsVal = true; + } + else + { + nFormat = pFormatter->GetStandardFormat( + pFCell->GetFormatType(), ScGlobal::eLnge); + pFormatter->GetOutputString(pFCell->GetString().getString(), nFormat, + rStrResult, &pColor); + // Indicate it's a string, so a number string doesn't look numeric. + // Escape embedded quotation marks first by doubling them, as + // usual. Actually the result can be copy-pasted from the result + // box as literal into a formula expression. + rStrResult = "\"" + rStrResult.replaceAll("\"", "\"\"") + "\""; + } + + ScRange aTestRange; + if (bColRowName || (aTestRange.Parse(rTest, *mpDoc) & ScRefFlags::VALID)) + rStrResult += " ..."; + // area + + return true; + } + else + { + return false; + } +} + namespace { /** Token array helper. Iterates over all string tokens. diff -Nru libreoffice-7.5.1~rc2/sc/source/core/tool/dbdata.cxx libreoffice-7.5.2~rc2/sc/source/core/tool/dbdata.cxx --- libreoffice-7.5.1~rc2/sc/source/core/tool/dbdata.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/tool/dbdata.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -116,6 +116,7 @@ bAutoFilter (rData.bAutoFilter), bModified (rData.bModified), maTableColumnNames (rData.maTableColumnNames), + maTableColumnAttributes(rData.maTableColumnAttributes), mbTableColumnNamesDirty(rData.mbTableColumnNamesDirty), nFilteredRowCount (rData.nFilteredRowCount) { @@ -150,6 +151,7 @@ bAutoFilter (rData.bAutoFilter), bModified (rData.bModified), maTableColumnNames (rData.maTableColumnNames), + maTableColumnAttributes(rData.maTableColumnAttributes), mbTableColumnNamesDirty (rData.mbTableColumnNamesDirty), nFilteredRowCount (rData.nFilteredRowCount) { @@ -199,6 +201,7 @@ else { maTableColumnNames = rData.maTableColumnNames; + maTableColumnAttributes = rData.maTableColumnAttributes; mbTableColumnNamesDirty = rData.mbTableColumnNamesDirty; } @@ -577,6 +580,7 @@ aRange.aEnd.Row()); // Do not use SetTableColumnNames() because that resets mbTableColumnNamesDirty. maTableColumnNames = aNames; + maTableColumnAttributes.resize(aNames.size()); mbTableColumnNamesDirty = bTableColumnNamesDirty; } @@ -620,6 +624,7 @@ MoveTo( theTab1, theCol1, theRow1, theCol2, theRow2 ); // Do not use SetTableColumnNames() because that resets mbTableColumnNamesDirty. maTableColumnNames = aNames; + maTableColumnAttributes.resize(aNames.size()); mbTableColumnNamesDirty = bTableColumnNamesDirty; } @@ -721,7 +726,6 @@ n += nDx; aNewNames.resize(n); aNewAttributes.resize(n); - maTableColumnAttributes.resize(n); // Copy head. for (size_t i = 0; i < nHead; ++i) { @@ -876,6 +880,7 @@ } aNewNames.swap( maTableColumnNames); + maTableColumnAttributes.resize(maTableColumnNames.size()); mbTableColumnNamesDirty = false; } diff -Nru libreoffice-7.5.1~rc2/sc/source/core/tool/interpr1.cxx libreoffice-7.5.2~rc2/sc/source/core/tool/interpr1.cxx --- libreoffice-7.5.1~rc2/sc/source/core/tool/interpr1.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/tool/interpr1.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -6491,25 +6491,29 @@ if (nRefArrayMainPos < vRefArrayConditions.size()) vConditions = vRefArrayConditions[nRefArrayMainPos]; - std::vector::const_iterator itRes = vConditions.begin(); - for (SCCOL nCol = 0; nCol < nDimensionCols; ++nCol) + SAL_WARN_IF(nDimensionCols && nDimensionRows && vConditions.empty(), "sc", "ScInterpreter::IterateParametersIfs vConditions is empty"); + if (!vConditions.empty()) { - for (SCROW nRow = 0; nRow < nDimensionRows; ++nRow, ++itRes) + std::vector::const_iterator itRes = vConditions.begin(); + for (SCCOL nCol = 0; nCol < nDimensionCols; ++nCol) { - if (*itRes == nQueryCount) + for (SCROW nRow = 0; nRow < nDimensionRows; ++nRow, ++itRes) { - aAdr.SetCol( nCol + nMainCol1); - aAdr.SetRow( nRow + nMainRow1); - ScRefCellValue aCell(mrDoc, aAdr); - if (aCell.hasNumeric()) + if (*itRes == nQueryCount) { - fVal = GetCellValue(aAdr, aCell); - ++aRes.mfCount; - aRes.mfSum += fVal; - if ( aRes.mfMin > fVal ) - aRes.mfMin = fVal; - if ( aRes.mfMax < fVal ) - aRes.mfMax = fVal; + aAdr.SetCol( nCol + nMainCol1); + aAdr.SetRow( nRow + nMainRow1); + ScRefCellValue aCell(mrDoc, aAdr); + if (aCell.hasNumeric()) + { + fVal = GetCellValue(aAdr, aCell); + ++aRes.mfCount; + aRes.mfSum += fVal; + if ( aRes.mfMin > fVal ) + aRes.mfMin = fVal; + if ( aRes.mfMax < fVal ) + aRes.mfMax = fVal; + } } } } diff -Nru libreoffice-7.5.1~rc2/sc/source/core/tool/interpr2.cxx libreoffice-7.5.2~rc2/sc/source/core/tool/interpr2.cxx --- libreoffice-7.5.1~rc2/sc/source/core/tool/interpr2.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/tool/interpr2.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -41,6 +41,7 @@ #include #include #include +#include #include #include @@ -2592,48 +2593,62 @@ void ScInterpreter::ScStyle() { sal_uInt8 nParamCount = GetByte(); - if (nParamCount >= 1 && nParamCount <= 3) - { - OUString aStyle2; // Template after timer - if (nParamCount >= 3) - aStyle2 = GetString().getString(); - tools::Long nTimeOut = 0; // timeout - if (nParamCount >= 2) - nTimeOut = static_cast(GetDouble()*1000.0); - OUString aStyle1 = GetString().getString(); // Template for immediate + if (!MustHaveParamCount(nParamCount, 1, 3)) + return; - if (nTimeOut < 0) - nTimeOut = 0; + OUString aStyle2; // Style after timer + if (nParamCount >= 3) + aStyle2 = GetString().getString(); + tools::Long nTimeOut = 0; // timeout + if (nParamCount >= 2) + nTimeOut = static_cast(GetDouble()*1000.0); + OUString aStyle1 = GetString().getString(); // Style for immediate - // Execute request to apply template - if ( !mrDoc.IsClipOrUndo() ) + if (nTimeOut < 0) + nTimeOut = 0; + + // Execute request to apply style + if ( !mrDoc.IsClipOrUndo() ) + { + SfxObjectShell* pShell = mrDoc.GetDocumentShell(); + if (pShell) { - SfxObjectShell* pShell = mrDoc.GetDocumentShell(); - if (pShell) + // Normalize style names right here, making sure that character case is correct, + // and that we only apply anything when there's something to apply + auto pPool = mrDoc.GetStyleSheetPool(); + if (!aStyle1.isEmpty()) { - // notify object shell directly! - bool bNotify = true; - if (aStyle2.isEmpty()) - { - const ScStyleSheet* pStyle = mrDoc.GetStyle(aPos.Col(), aPos.Row(), aPos.Tab()); - - if (pStyle && pStyle->GetName() == aStyle1) - bNotify = false; - } + if (auto pNewStyle = pPool->FindAutoStyle(aStyle1)) + aStyle1 = pNewStyle->GetName(); + else + aStyle1.clear(); + } + if (!aStyle2.isEmpty()) + { + if (auto pNewStyle = pPool->FindAutoStyle(aStyle2)) + aStyle2 = pNewStyle->GetName(); + else + aStyle2.clear(); + } + // notify object shell directly! + if (!aStyle1.isEmpty() || !aStyle2.isEmpty()) + { + const ScStyleSheet* pStyle = mrDoc.GetStyle(aPos.Col(), aPos.Row(), aPos.Tab()); + const bool bNotify = !pStyle + || (!aStyle1.isEmpty() && pStyle->GetName() != aStyle1) + || (!aStyle2.isEmpty() && pStyle->GetName() != aStyle2); if (bNotify) { ScRange aRange(aPos); - ScAutoStyleHint aHint( aRange, aStyle1, nTimeOut, aStyle2 ); - pShell->Broadcast( aHint ); + ScAutoStyleHint aHint(aRange, aStyle1, nTimeOut, aStyle2); + pShell->Broadcast(aHint); } } } - - PushDouble(0.0); } - else - PushIllegalParameter(); + + PushDouble(0.0); } static ScDdeLink* lcl_GetDdeLink( const sfx2::LinkManager* pLinkMgr, diff -Nru libreoffice-7.5.1~rc2/sc/source/core/tool/interpr3.cxx libreoffice-7.5.2~rc2/sc/source/core/tool/interpr3.cxx --- libreoffice-7.5.1~rc2/sc/source/core/tool/interpr3.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/tool/interpr3.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -3470,7 +3470,7 @@ GetNumberSequenceArray( 1, aArray, false ); if ( aArray.empty() || nGlobalError != FormulaError::NONE ) { - SetError( FormulaError::NoValue ); + PushNoValue(); return; } if ( bInclusive ) @@ -3493,7 +3493,7 @@ GetNumberSequenceArray( 1, aArray, false ); if ( aArray.empty() || nGlobalError != FormulaError::NONE ) { - SetError( FormulaError::NoValue ); + PushNoValue(); return; } if ( bInclusive ) @@ -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.5.1~rc2/sc/source/core/tool/interpr4.cxx libreoffice-7.5.2~rc2/sc/source/core/tool/interpr4.cxx --- libreoffice-7.5.1~rc2/sc/source/core/tool/interpr4.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/core/tool/interpr4.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -3259,7 +3259,7 @@ bool bVolatileMacro = false; SbModule* pModule = pMethod->GetModule(); - bool bUseVBAObjects = pModule->IsVBACompat(); + bool bUseVBAObjects = pModule->IsVBASupport(); SbxObject* pObject = pModule->GetParent(); OSL_ENSURE(dynamic_cast(pObject) != nullptr, "No Basic found!"); OUString aMacroStr = pObject->GetName() + "." + pModule->GetName() + "." + pMethod->GetName(); diff -Nru libreoffice-7.5.1~rc2/sc/source/filter/excel/xiescher.cxx libreoffice-7.5.2~rc2/sc/source/filter/excel/xiescher.cxx --- libreoffice-7.5.1~rc2/sc/source/filter/excel/xiescher.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/filter/excel/xiescher.cxx 2023-03-24 16:53:38.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.5.1~rc2/sc/source/filter/oox/condformatbuffer.cxx libreoffice-7.5.2~rc2/sc/source/filter/oox/condformatbuffer.cxx --- libreoffice-7.5.1~rc2/sc/source/filter/oox/condformatbuffer.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/filter/oox/condformatbuffer.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1163,6 +1163,27 @@ ++nExtCFIndex; } + // tdf#138601 sort conditional formatting rules by their priority + if (maCondFormats.size() > 1) + { + size_t minIndex; + for (size_t i = 0; i < maCondFormats.size() - 1; ++i) + { + minIndex = i; + for (size_t j = i + 1; j < maCondFormats.size(); ++j) + { + const CondFormat::CondFormatRuleMap& rNextRules = maCondFormats[j]->maRules; + const CondFormat::CondFormatRuleMap& rMinRules = maCondFormats[minIndex]->maRules; + if (rNextRules.empty() || rMinRules.empty()) + continue; + if (rNextRules.begin()->first < rMinRules.begin()->first) + minIndex = j; + } + if (i != minIndex) + std::swap(maCondFormats[i], maCondFormats[minIndex]); + } + } + for( const auto& rxCondFormat : maCondFormats ) { if ( rxCondFormat) diff -Nru libreoffice-7.5.1~rc2/sc/source/filter/oox/formulabuffer.cxx libreoffice-7.5.2~rc2/sc/source/filter/oox/formulabuffer.cxx --- libreoffice-7.5.1~rc2/sc/source/filter/oox/formulabuffer.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/filter/oox/formulabuffer.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -22,6 +22,7 @@ #include #include #include +#include #include using namespace ::com::sun::star::uno; @@ -154,20 +155,41 @@ pCell = new ScFormulaCell(rDoc.getDoc(), aPos, *pArray); rDoc.setFormulaCell(aPos, pCell); - if (rDoc.getDoc().GetNumberFormat(aPos.Col(), aPos.Row(), aPos.Tab()) % SV_COUNTRY_LANGUAGE_OFFSET == 0) + const bool bNeedNumberFormat = ((rDoc.getDoc().GetNumberFormat( + aPos.Col(), aPos.Row(), aPos.Tab()) % SV_COUNTRY_LANGUAGE_OFFSET) == 0); + if (bNeedNumberFormat) pCell->SetNeedNumberFormat(true); if (rDesc.maCellValue.isEmpty()) { // No cached cell value. Mark it for re-calculation. pCell->SetDirty(); + // Recalc even if AutoCalc is disabled. Must be after + // SetDirty() as it also calls SetDirtyVar(). + pCell->AddRecalcMode( ScRecalcMode::ONLOAD_ONCE); continue; } - // Set cached formula results. For now, we only use numeric and string-formula - // results. Find out how to utilize cached results of other types. + // Set cached formula results. For now, we only use boolean, + // numeric and string-formula results. Find out how to utilize + // cached results of other types. switch (rDesc.mnValueType) { + case XML_b: + // boolean value. + if (bNeedNumberFormat) + { + rDoc.getDoc().SetNumberFormat( aPos, + rDoc.getDoc().GetFormatTable()->GetStandardFormat( SvNumFormatType::LOGICAL)); + } + if (rDesc.maCellValue == "1" || rDesc.maCellValue == "0") + pCell->SetResultDouble(rDesc.maCellValue == "1" ? 1.0 : 0.0); + else + { + // Recalc even if AutoCalc is disabled. + pCell->AddRecalcMode( ScRecalcMode::ONLOAD_ONCE); + } + break; case XML_n: // numeric value. pCell->SetResultDouble(rDesc.maCellValue.toDouble()); @@ -193,6 +215,9 @@ default: // Mark it for re-calculation. pCell->SetDirty(); + // Recalc even if AutoCalc is disabled. Must be after + // SetDirty() as it also calls SetDirtyVar(). + pCell->AddRecalcMode( ScRecalcMode::ONLOAD_ONCE); } } } diff -Nru libreoffice-7.5.1~rc2/sc/source/ui/app/inputwin.cxx libreoffice-7.5.2~rc2/sc/source/ui/app/inputwin.cxx --- libreoffice-7.5.1~rc2/sc/source/ui/app/inputwin.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/ui/app/inputwin.cxx 2023-03-24 16:53:38.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 @@ -474,31 +478,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()); - } + // 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(); } @@ -721,7 +730,7 @@ bool ScInputWindow::IsPointerAtResizePos() { - return GetOutputSizePixel().Height() - GetPointerPosPixel().Y() <= 4; + return GetOutputSizePixel().Height() - GetPointerPosPixel().Y() <= RESIZE_HOTSPOT_HEIGHT; } void ScInputWindow::MouseMove( const MouseEvent& rMEvt ) @@ -870,6 +879,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); } void ScInputBarGroup::SetBackgrounds() @@ -934,7 +948,6 @@ { mxTextWndGroup->SetScrollPolicy(); InterimItemWindow::Resize(); - TriggerToolboxLayout(); } void ScInputBarGroup::StopEditEngine(bool bAll) @@ -1331,7 +1344,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.5.1~rc2/sc/source/ui/docshell/autostyl.cxx libreoffice-7.5.2~rc2/sc/source/ui/docshell/autostyl.cxx --- libreoffice-7.5.1~rc2/sc/source/ui/docshell/autostyl.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/ui/docshell/autostyl.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -83,7 +83,8 @@ IMPL_LINK_NOARG(ScAutoStyleList, InitHdl, Timer *, void) { - for (const auto& rInitial : aInitials) + std::vector aLocalInitials(std::move(aInitials)); + for (const auto& rInitial : aLocalInitials) { // apply first style immediately pDocSh->DoAutoStyle(rInitial.aRange, rInitial.aStyle1); @@ -92,8 +93,6 @@ if (rInitial.nTimeout) AddEntry(rInitial.nTimeout, rInitial.aRange, rInitial.aStyle2 ); } - - aInitials.clear(); } void ScAutoStyleList::AddEntry( sal_uLong nTimeout, const ScRange& rRange, const OUString& rStyle ) diff -Nru libreoffice-7.5.1~rc2/sc/source/ui/docshell/docsh4.cxx libreoffice-7.5.2~rc2/sc/source/ui/docshell/docsh4.cxx --- libreoffice-7.5.1~rc2/sc/source/ui/docshell/docsh4.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/ui/docshell/docsh4.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1561,11 +1561,7 @@ void ScDocShell::DoAutoStyle( const ScRange& rRange, const OUString& rStyle ) { ScStyleSheetPool* pStylePool = m_pDocument->GetStyleSheetPool(); - ScStyleSheet* pStyleSheet = - pStylePool->FindCaseIns( rStyle, SfxStyleFamily::Para ); - if (!pStyleSheet) - pStyleSheet = static_cast( - pStylePool->Find( ScResId(STR_STYLENAME_STANDARD), SfxStyleFamily::Para )); + ScStyleSheet* pStyleSheet = pStylePool->FindAutoStyle(rStyle); if (!pStyleSheet) return; diff -Nru libreoffice-7.5.1~rc2/sc/source/ui/drawfunc/futext3.cxx libreoffice-7.5.2~rc2/sc/source/ui/drawfunc/futext3.cxx --- libreoffice-7.5.1~rc2/sc/source/ui/drawfunc/futext3.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/ui/drawfunc/futext3.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -92,6 +92,11 @@ if( pNote ) rDoc.LockStreamValid(true); // only the affected sheet is invalidated below + /* Unset the outliner undo manager before the call to SdrEndTextEdit. + SdrObjEditView::SdrEndTextEdit destroys it, but then ScDrawView::SdrEndTextEdit + initiates some UI update which might try to access the now invalid pointer. */ + rViewShell.SetDrawTextUndo( nullptr ); + /* SdrObjEditView::SdrEndTextEdit() may try to delete the entire drawing object, if it does not contain text and has invisible border and fill. This must not happen for note caption objects. They will be removed @@ -102,9 +107,6 @@ case. */ /*SdrEndTextEditKind eResult =*/ pView->SdrEndTextEdit( pNote != nullptr ); - // or ScEndTextEdit (with drawview.hxx) - rViewShell.SetDrawTextUndo( nullptr ); - vcl::Cursor* pCur = pWindow->GetCursor(); if( pCur && pCur->IsVisible() ) pCur->Hide(); diff -Nru libreoffice-7.5.1~rc2/sc/source/ui/inc/inputwin.hxx libreoffice-7.5.2~rc2/sc/source/ui/inc/inputwin.hxx --- libreoffice-7.5.1~rc2/sc/source/ui/inc/inputwin.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/ui/inc/inputwin.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -262,11 +262,11 @@ void IncrementVerticalSize(); void DecrementVerticalSize(); void NumLinesChanged(); - virtual tools::Long GetNumLines() const override { return mxTextWndGroup->GetNumLines(); } + 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; } @@ -348,7 +348,8 @@ VclPtr mxTextWindow; ScInputHandler* pInputHdl; ScTabViewShell* mpViewShell; - tools::Long mnMaxY; + tools::Long mnMaxY; + tools::Long mnStandardItemHeight; bool bIsOkCancelMode; bool bInResize; }; diff -Nru libreoffice-7.5.1~rc2/sc/source/ui/view/output2.cxx libreoffice-7.5.2~rc2/sc/source/ui/view/output2.cxx --- libreoffice-7.5.1~rc2/sc/source/ui/view/output2.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/ui/view/output2.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1484,9 +1484,15 @@ mpDev->GetMapMode().GetMapUnit() == mpRefDevice->GetMapMode().GetMapUnit(), "LayoutStrings: different MapUnits ?!?!" ); + sc::IdleSwitch aIdleSwitch(*mpDoc, false); + + // Try to limit interpreting to only visible cells. Calling e.g. IsValue() + // on a formula cell that needs interpreting would call Interpret() + // for the entire formula group, which could be large. + mpDoc->InterpretCellsIfNeeded( ScRange( nX1, nY1, nTab, nX2, nY2, nTab )); + vcl::PDFExtOutDevData* pPDFData = dynamic_cast< vcl::PDFExtOutDevData* >(mpDev->GetExtOutDevData() ); - sc::IdleSwitch aIdleSwitch(*mpDoc, false); ScDrawStringsVars aVars( this, bPixelToLogic ); bool bProgress = false; @@ -1514,11 +1520,6 @@ const SfxItemSet* pOldCondSet = nullptr; SvtScriptType nOldScript = SvtScriptType::NONE; - // Try to limit interpreting to only visible cells. Calling e.g. IsValue() - // on a formula cell that needs interpreting would call Interpret() - // for the entire formula group, which could be large. - mpDoc->InterpretCellsIfNeeded( ScRange( nX1, nY1, nTab, nX2, nY2, nTab )); - // alternative pattern instances in case we need to modify the pattern // before processing the cell value. std::vector > aAltPatterns; diff -Nru libreoffice-7.5.1~rc2/sc/source/ui/view/tabview.cxx libreoffice-7.5.2~rc2/sc/source/ui/view/tabview.cxx --- libreoffice-7.5.1~rc2/sc/source/ui/view/tabview.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/ui/view/tabview.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1182,16 +1182,28 @@ tools::Long nScrollPos = GetScrollBarPos( *pScroll ) + nScrollMin; nDelta = nScrollPos - nViewPos; - if ( nScrollPos > nPrevDragPos ) - { - if (nDelta<0) nDelta=0; - } - else if ( nScrollPos < nPrevDragPos ) + + // tdf#152406 Disable anti-jitter code for scroll wheel events + // After moving thousands of columns to the right via + // horizontal scroll wheel or trackpad swipe events, most + // vertical scroll wheel or trackpad swipe events will trigger + // the anti-jitter code because nScrollPos and nPrevDragPos + // will be equal and nDelta will be overriden and set to zero. + // So, only use the anti-jitter code for mouse drag events. + if ( eType == ScrollType::Drag ) { - if (nDelta>0) nDelta=0; + if ( nScrollPos > nPrevDragPos ) + { + if (nDelta<0) nDelta=0; + } + else if ( nScrollPos < nPrevDragPos ) + { + if (nDelta>0) nDelta=0; + } + else + nDelta = 0; } - else - nDelta = 0; + nPrevDragPos = nScrollPos; } break; diff -Nru libreoffice-7.5.1~rc2/sc/source/ui/view/tabvwshb.cxx libreoffice-7.5.2~rc2/sc/source/ui/view/tabvwshb.cxx --- libreoffice-7.5.1~rc2/sc/source/ui/view/tabvwshb.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/ui/view/tabvwshb.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -712,6 +712,9 @@ void ScTabViewShell::ExecuteUndo(SfxRequest& rReq) { SfxShell* pSh = GetViewData().GetDispatcher().GetShell(0); + if (!pSh) + return; + ScUndoManager* pUndoManager = static_cast(pSh->GetUndoManager()); const SfxItemSet* pReqArgs = rReq.GetArgs(); @@ -812,6 +815,9 @@ void ScTabViewShell::GetUndoState(SfxItemSet &rSet) { SfxShell* pSh = GetViewData().GetDispatcher().GetShell(0); + if (!pSh) + return; + SfxUndoManager* pUndoManager = pSh->GetUndoManager(); ScUndoManager* pScUndoManager = dynamic_cast(pUndoManager); diff -Nru libreoffice-7.5.1~rc2/sc/source/ui/xmlsource/xmlsourcedlg.cxx libreoffice-7.5.2~rc2/sc/source/ui/xmlsource/xmlsourcedlg.cxx --- libreoffice-7.5.1~rc2/sc/source/ui/xmlsource/xmlsourcedlg.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sc/source/ui/xmlsource/xmlsourcedlg.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -448,31 +448,33 @@ ScOrcusImportXMLParam::RangeLink& rRangeLink, std::vector& rNamespaces, const weld::TreeView& rTree, const weld::TreeIter& rEntry) { + OUString aPath = getXPath(rTree, rEntry, rNamespaces); + const ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(rTree, rEntry); + + if (pUserData) + { + if (pUserData->meType == ScOrcusXMLTreeParam::ElementRepeat) + // nested repeat element automatically becomes a row-group node. + rRangeLink.maRowGroups.push_back( + OUStringToOString(aPath, RTL_TEXTENCODING_UTF8)); + + if (pUserData->mbLeafNode && !aPath.isEmpty()) + // XPath should never be empty anyway, but it won't hurt to check... + rRangeLink.maFieldPaths.push_back(OUStringToOString(aPath, RTL_TEXTENCODING_UTF8)); + } + std::unique_ptr xChild(rTree.make_iterator(&rEntry)); + if (!rTree.iter_children(*xChild)) // No more children. We're done. return; do { - OUString aPath = getXPath(rTree, *xChild, rNamespaces); - const ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(rTree, *xChild); - - if (pUserData) - { - if (pUserData->meType == ScOrcusXMLTreeParam::ElementRepeat) - // nested repeat element automatically becomes a row-group node. - rRangeLink.maRowGroups.push_back( - OUStringToOString(aPath, RTL_TEXTENCODING_UTF8)); - - if (pUserData->mbLeafNode && !aPath.isEmpty()) - // XPath should never be empty anyway, but it won't hurt to check... - rRangeLink.maFieldPaths.push_back(OUStringToOString(aPath, RTL_TEXTENCODING_UTF8)); - } - // Walk recursively. getFieldLinks(rRangeLink, rNamespaces, rTree, *xChild); - } while (rTree.iter_next_sibling(*xChild)); + } + while (rTree.iter_next_sibling(*xChild)); } void removeDuplicates(std::vector& rArray) Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/sd/qa/unit/data/pptx/standardConnectors.pptx and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/sd/qa/unit/data/pptx/standardConnectors.pptx differ diff -Nru libreoffice-7.5.1~rc2/sd/qa/unit/export-tests.cxx libreoffice-7.5.2~rc2/sd/qa/unit/export-tests.cxx --- libreoffice-7.5.1~rc2/sd/qa/unit/export-tests.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sd/qa/unit/export-tests.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -102,6 +102,7 @@ void testTdf112126(); void testCellProperties(); void testUserTableStyles(); + void testTdf153179(); CPPUNIT_TEST_SUITE(SdExportTest); @@ -154,6 +155,7 @@ CPPUNIT_TEST(testTdf112126); CPPUNIT_TEST(testCellProperties); CPPUNIT_TEST(testUserTableStyles); + CPPUNIT_TEST(testTdf153179); CPPUNIT_TEST_SUITE_END(); virtual void registerNamespaces(xmlXPathContextPtr& pXmlXPathCtx) override @@ -1847,6 +1849,15 @@ CPPUNIT_ASSERT(xTableStyle->isUserDefined()); } +void SdExportTest::testTdf153179() +{ + createSdImpressDoc("pptx/ole-emf_min.pptx"); + saveAndReload("impress8"); + + // Check number of shapes after export. + CPPUNIT_ASSERT_EQUAL(sal_Int32(1), getPage(0)->getCount()); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdExportTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-7.5.1~rc2/sd/qa/unit/import-tests.cxx libreoffice-7.5.2~rc2/sd/qa/unit/import-tests.cxx --- libreoffice-7.5.1~rc2/sd/qa/unit/import-tests.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sd/qa/unit/import-tests.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -84,6 +84,7 @@ void testDocumentLayout(); void testTdf152434(); + void testStandardConnectors(); void testConnectors(); void testTdf153036_resizedConnectorL(); void testTdf150719(); @@ -161,6 +162,7 @@ CPPUNIT_TEST(testDocumentLayout); CPPUNIT_TEST(testTdf152434); + CPPUNIT_TEST(testStandardConnectors); CPPUNIT_TEST(testConnectors); CPPUNIT_TEST(testTdf153036_resizedConnectorL); CPPUNIT_TEST(testTdf150719); @@ -355,12 +357,40 @@ CPPUNIT_ASSERT_EQUAL(size_t(1), pPage->GetObjCount()); } +void SdImportTest::testStandardConnectors() +{ + createSdImpressDoc("pptx/standardConnectors.pptx"); + + sal_Int32 aEdgeValue[] = { -1352, -2457, 3977, -2900, -1261, 4611, -1431, -2643, 3830, 3438 }; + + sal_Int32 nCount = 0; + sal_Int32 nEdgeLine = 0; + for (size_t i = 0; i < 10; i++) + { + uno::Reference xConnector(getShapeFromPage(i, 0)); + bool bConnector = xConnector->getPropertySetInfo()->hasPropertyByName("EdgeKind"); + if (bConnector) + { + nEdgeLine = xConnector->getPropertyValue("EdgeLine1Delta").get(); + CPPUNIT_ASSERT_EQUAL(aEdgeValue[nCount], nEdgeLine); + nCount++; + + nEdgeLine = xConnector->getPropertyValue("EdgeLine2Delta").get(); + if (nEdgeLine != 0) + { + CPPUNIT_ASSERT_EQUAL(aEdgeValue[nCount], nEdgeLine); + nCount++; + } + } + } +} + void SdImportTest::testConnectors() { createSdImpressDoc("pptx/connectors.pptx"); - sal_Int32 aEdgeValue[] = { -1123, -1123, -1547, 1432, 1356, -1357, 1604, -1540, - 599, 1288, -1629, -1052, -513, 1569, -1283, 333 }; + sal_Int32 aEdgeValue[] = { -1167, -1167, -1591, 1476, 1356, -1357, 1604, -1540, + 607, 1296, -1638, -1060, -522, 1578, -1291, 333 }; sal_Int32 nCount = 0; for (size_t i = 0; i < 18; i++) diff -Nru libreoffice-7.5.1~rc2/sd/source/ui/docshell/docshel4.cxx libreoffice-7.5.2~rc2/sd/source/ui/docshell/docshel4.cxx --- libreoffice-7.5.1~rc2/sd/source/ui/docshell/docshel4.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sd/source/ui/docshell/docshel4.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -402,6 +402,14 @@ mpDoc->SetSummationOfParagraphs(); } + if (aFilterName == "Impress MS PowerPoint 2007 XML") + { + // This is a "MS Compact" mode for connectors. + // The Libreoffice uses bounding rectangle of connected shapes but + // MSO uses snap rectangle when calculate the edge track. + mpDoc->SetConnectorUseSnapRect(true); + } + if (aFilterName == "Impress MS PowerPoint 2007 XML" || aFilterName == "Impress MS PowerPoint 2007 XML AutoPlay" || aFilterName == "Impress MS PowerPoint 2007 XML VBA" || diff -Nru libreoffice-7.5.1~rc2/sfx2/sdi/sfx.sdi libreoffice-7.5.2~rc2/sfx2/sdi/sfx.sdi --- libreoffice-7.5.1~rc2/sfx2/sdi/sfx.sdi 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sfx2/sdi/sfx.sdi 2023-03-24 16:53:38.000000000 +0000 @@ -5342,7 +5342,7 @@ [ AutoUpdate = FALSE, FastCall = FALSE, - ReadOnlyDoc = FALSE, + ReadOnlyDoc = TRUE, Toggle = FALSE, Container = FALSE, RecordAbsolute = FALSE, diff -Nru libreoffice-7.5.1~rc2/sfx2/source/control/ctrlitem.cxx libreoffice-7.5.2~rc2/sfx2/source/control/ctrlitem.cxx --- libreoffice-7.5.1~rc2/sfx2/source/control/ctrlitem.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sfx2/source/control/ctrlitem.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -325,15 +325,17 @@ const SfxSlotServer *pServer = pCache->GetSlotServer( *pDispat ); if ( pServer ) { - SfxShell *pSh = pDispat->GetShell( pServer->GetShellLevel() ); - SfxItemPool &rPool = pSh->GetPool(); - sal_uInt16 nWhich = rPool.GetWhich( nId ); + if (SfxShell *pSh = pDispat->GetShell( pServer->GetShellLevel() )) + { + SfxItemPool &rPool = pSh->GetPool(); + sal_uInt16 nWhich = rPool.GetWhich( nId ); - // invalidate slot and its message|slot server as 'global' information - // about the validated message|slot server is not made available - pCache->Invalidate( true ); + // invalidate slot and its message|slot server as 'global' information + // about the validated message|slot server is not made available + pCache->Invalidate( true ); - return rPool.GetMetric( nWhich ); + return rPool.GetMetric( nWhich ); + } } } diff -Nru libreoffice-7.5.1~rc2/sfx2/source/control/dispatch.cxx libreoffice-7.5.2~rc2/sfx2/source/control/dispatch.cxx --- libreoffice-7.5.1~rc2/sfx2/source/control/dispatch.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sfx2/source/control/dispatch.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -774,11 +774,13 @@ for ( sal_uInt16 i = 0; i < nTotCount; ++i ) { - SfxShell *pObjShell = GetShell(i); - SfxInterface *pIFace = pObjShell->GetInterface(); - const SfxSlot *pSlot = pIFace->GetSlot( rCommand ); - if ( pSlot ) - return pSlot; + if (SfxShell *pObjShell = GetShell(i)) + { + SfxInterface *pIFace = pObjShell->GetInterface(); + const SfxSlot *pSlot = pIFace->GetSlot( rCommand ); + if ( pSlot ) + return pSlot; + } } return nullptr; @@ -1152,6 +1154,9 @@ for ( sal_uInt16 nShell = nTotCount; nShell > 0; --nShell ) { SfxShell *pShell = GetShell( nShell-1 ); + if (!pShell) + continue; + SfxInterface *pIFace = pShell->GetInterface(); // don't consider shells if "Hidden" or "Quiet" @@ -1567,6 +1572,9 @@ for ( sal_uInt16 i = nFirstShell; i < nTotCount; ++i ) { SfxShell *pObjShell = GetShell(i); + if (!pObjShell) + continue; + SfxInterface *pIFace = pObjShell->GetInterface(); const SfxSlot *pSlot = pIFace->GetSlot(nSlot); @@ -1646,7 +1654,8 @@ // Determine the object and call the Message of this object SfxShell *pSh = GetShell(rSvr.GetShellLevel()); - DBG_ASSERT(pSh, "ObjectShell not found"); + if (!pSh) + return false; SfxStateFunc pFunc; diff -Nru libreoffice-7.5.1~rc2/sfx2/source/control/unoctitm.cxx libreoffice-7.5.2~rc2/sfx2/source/control/unoctitm.cxx --- libreoffice-7.5.1~rc2/sfx2/source/control/unoctitm.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sfx2/source/control/unoctitm.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -860,9 +860,7 @@ // TODO/LATER: what about the FormShell? Does it use any metric data?! Perhaps it should use the Pool of the document! if ( pSlotServ && pDispatcher ) { - SfxShell* pShell = pDispatcher->GetShell( pSlotServ->GetShellLevel() ); - DBG_ASSERT( pShell, "Can't get core metric without shell!" ); - if ( pShell ) + if (SfxShell* pShell = pDispatcher->GetShell( pSlotServ->GetShellLevel() )) eMapUnit = GetCoreMetric( pShell->GetPool(), nSID ); } diff -Nru libreoffice-7.5.1~rc2/sfx2/source/doc/iframe.cxx libreoffice-7.5.2~rc2/sfx2/source/doc/iframe.cxx --- libreoffice-7.5.1~rc2/sfx2/source/doc/iframe.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sfx2/source/doc/iframe.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -46,6 +46,7 @@ #include #include #include +#include using namespace ::com::sun::star; @@ -173,6 +174,9 @@ return false; } + if (!SfxEvents_Impl::isScriptURLAllowed(aTargetURL.Complete)) + return false; + DBG_ASSERT( !mxFrame.is(), "Frame already existing!" ); VclPtr pParent = VCLUnoHelper::GetWindow( xFrame->getContainerWindow() ); VclPtr pWin = VclPtr::Create( pParent, maFrmDescr.IsFrameBorderOn() ); diff -Nru libreoffice-7.5.1~rc2/sfx2/source/inc/eventsupplier.hxx libreoffice-7.5.2~rc2/sfx2/source/inc/eventsupplier.hxx --- libreoffice-7.5.1~rc2/sfx2/source/inc/eventsupplier.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sfx2/source/inc/eventsupplier.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -81,7 +81,6 @@ SfxObjectShell* i_document ); static void Execute( css::uno::Sequence < css::beans::PropertyValue > const & aEventData, const css::document::DocumentEvent& aTrigger, SfxObjectShell* pDoc ); -private: /// Check if script URL whitelist exists, and if so, if current script url is part of it static bool isScriptURLAllowed(const OUString& aScriptURL); }; diff -Nru libreoffice-7.5.1~rc2/sfx2/source/view/viewfrm.cxx libreoffice-7.5.2~rc2/sfx2/source/view/viewfrm.cxx --- libreoffice-7.5.1~rc2/sfx2/source/view/viewfrm.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sfx2/source/view/viewfrm.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -954,6 +954,9 @@ { // Is there an Undo-Manager on the top Shell? SfxShell *pSh = GetDispatcher()->GetShell(0); + if (!pSh) + return; + SfxUndoManager* pShUndoMgr = pSh->GetUndoManager(); bool bOK = false; if ( pShUndoMgr ) diff -Nru libreoffice-7.5.1~rc2/sfx2/uiconfig/ui/password.ui libreoffice-7.5.2~rc2/sfx2/uiconfig/ui/password.ui --- libreoffice-7.5.1~rc2/sfx2/uiconfig/ui/password.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sfx2/uiconfig/ui/password.ui 2023-03-24 16:53:38.000000000 +0000 @@ -318,6 +318,9 @@ False 6 0 + + + static diff -Nru libreoffice-7.5.1~rc2/solenv/flatpak-manifest.in libreoffice-7.5.2~rc2/solenv/flatpak-manifest.in --- libreoffice-7.5.1~rc2/solenv/flatpak-manifest.in 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/solenv/flatpak-manifest.in 2023-03-24 16:53:38.000000000 +0000 @@ -27,8 +27,8 @@ "sources": [ { "type": "archive", - "url": "https://download.gnome.org/sources/gvfs/1.38/gvfs-1.38.1.tar.xz", - "sha256": "ed136a842c996d25c835da405c4775c77106b46470e75bdc242bdd59ec0d61a0" + "url": "https://gitlab.gnome.org/GNOME/gvfs/-/archive/2a3a35adc4e1b7a3195033b072917abbb97a9f4e/gvfs-2a3a35adc4e1b7a3195033b072917abbb97a9f4e.tar.gz", + "sha256": "1e1bbe249be35b7b864a2dad707188e69b3cef1cd66a24df6e83b24a4c329c44" } ] }, @@ -614,6 +614,13 @@ "dest-filename": "@LIBATOMIC_OPS_TARBALL@" }, { + "url": "https://dev-www.libreoffice.org/src/@SKIA_TARBALL@", + "sha256": "@SKIA_SHA256SUM@", + "type": "file", + "dest": "external/tarballs", + "dest-filename": "@SKIA_TARBALL@" + }, + { "url": "https://dev-www.libreoffice.org/src/@DRAGONBOX_TARBALL@", "sha256": "@DRAGONBOX_SHA256SUM@", "type": "file", diff -Nru libreoffice-7.5.1~rc2/sources.ver libreoffice-7.5.2~rc2/sources.ver --- libreoffice-7.5.1~rc2/sources.ver 2023-02-22 19:55:33.000000000 +0000 +++ libreoffice-7.5.2~rc2/sources.ver 2023-03-24 16:55:53.000000000 +0000 @@ -1 +1 @@ -lo_sources_ver=7.5.1.2 +lo_sources_ver=7.5.2.2 diff -Nru libreoffice-7.5.1~rc2/svtools/source/config/miscopt.cxx libreoffice-7.5.2~rc2/svtools/source/config/miscopt.cxx --- libreoffice-7.5.1~rc2/svtools/source/config/miscopt.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svtools/source/config/miscopt.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -47,6 +47,8 @@ #define PROPERTYHANDLE_SYMBOLSET 0 constexpr OUStringLiteral PROPERTYNAME_ICONTHEME = u"SymbolStyle"; #define PROPERTYHANDLE_SYMBOLSTYLE 1 +constexpr OUStringLiteral PROPERTYNAME_SIDEBARICONSIZE = u"SidebarIconSize"; +constexpr OUStringLiteral PROPERTYNAME_NOTEBOOKBARICONSIZE = u"NotebookbarIconSize"; static std::mutex & GetInitMutex() { @@ -359,6 +361,11 @@ { PROPERTYNAME_SYMBOLSET, PROPERTYNAME_ICONTHEME, + // SidebarIconSize and NotebookbarIconSize so + // notifications for their changes are also broadcast + // from SvtMiscOptions + PROPERTYNAME_SIDEBARICONSIZE, + PROPERTYNAME_NOTEBOOKBARICONSIZE }; } diff -Nru libreoffice-7.5.1~rc2/svtools/source/control/ctrltool.cxx libreoffice-7.5.2~rc2/svtools/source/control/ctrltool.cxx --- libreoffice-7.5.1~rc2/svtools/source/control/ctrltool.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svtools/source/control/ctrltool.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -452,8 +452,6 @@ aStyleName = maNormal; else if (aCompareStyleName == "regular") aStyleName = maNormal; - else if (aCompareStyleName == "medium") - aStyleName = maNormal; else if (aCompareStyleName == "light") aStyleName = maLight; else if (aCompareStyleName == "lightitalic") @@ -483,9 +481,6 @@ aStyleName = SvtResId(STR_SVT_STYLE_EXTRALIGHT); else if (aCompareStyleName == "extralightitalic") aStyleName = SvtResId(STR_SVT_STYLE_EXTRALIGHT_ITALIC); - /* Medium is synonym with Normal */ - else if (aCompareStyleName == "mediumitalic") - aStyleName = maNormalItalic; else if (aCompareStyleName == "oblique") aStyleName = SvtResId(STR_SVT_STYLE_OBLIQUE); else if (aCompareStyleName == "semibold") diff -Nru libreoffice-7.5.1~rc2/svtools/source/control/tabbar.cxx libreoffice-7.5.2~rc2/svtools/source/control/tabbar.cxx --- libreoffice-7.5.1~rc2/svtools/source/control/tabbar.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svtools/source/control/tabbar.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -881,6 +881,18 @@ IMPL_LINK( TabBar, ImplClickHdl, weld::Button&, rBtn, void ) { + if (&rBtn != mpImpl->mxButtonBox->m_xFirstButton.get() && &rBtn != mpImpl->mxButtonBox->m_xLastButton.get()) + { + if ((GetPointerState().mnState & (MOUSE_LEFT | MOUSE_MIDDLE | MOUSE_RIGHT)) == 0) + { + // like tdf#149482 if we didn't see a mouse up, but find that the mouse is no + // longer pressed at this point, then bail + mpImpl->mxButtonBox->m_xPrevRepeater->Stop(); + mpImpl->mxButtonBox->m_xNextRepeater->Stop(); + return; + } + } + EndEditMode(); sal_uInt16 nNewPos = mnFirstPos; @@ -919,6 +931,14 @@ IMPL_LINK_NOARG(TabBar, ImplAddClickHandler, weld::Button&, void) { + if ((GetPointerState().mnState & (MOUSE_LEFT | MOUSE_MIDDLE | MOUSE_RIGHT)) == 0) + { + // tdf#149482 if we didn't see a mouse up, but find that the mouse is no + // longer pressed at this point, then bail + mpImpl->mxButtonBox->m_xAddRepeater->Stop(); + return; + } + EndEditMode(); AddTabClick(); } diff -Nru libreoffice-7.5.1~rc2/svtools/source/control/valueset.cxx libreoffice-7.5.2~rc2/svtools/source/control/valueset.cxx --- libreoffice-7.5.1~rc2/svtools/source/control/valueset.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svtools/source/control/valueset.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -255,16 +255,8 @@ void ValueSet::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle&) { - if (GetStyle() & WB_FLATVALUESET) - { - const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); - rRenderContext.SetLineColor(); - rRenderContext.SetFillColor(rStyleSettings.GetFaceColor()); - tools::Long nOffY = maVirDev->GetOutputSizePixel().Height(); - Size aWinSize(GetOutputSizePixel()); - rRenderContext.DrawRect(tools::Rectangle(Point(0, nOffY ), Point( aWinSize.Width(), aWinSize.Height()))); - } - + rRenderContext.SetBackground(Application::GetSettings().GetStyleSettings().GetFaceColor()); + rRenderContext.Erase(); ImplDraw(rRenderContext); } @@ -1515,22 +1507,20 @@ tools::Long nTxtWidth = rRenderContext.GetTextWidth(rText); tools::Long nTxtOffset = mnTextOffset; + rRenderContext.Push(vcl::PushFlags::TEXTCOLOR); + // delete rectangle and show text - if (GetStyle() & WB_FLATVALUESET) - { - const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); - rRenderContext.SetLineColor(); - rRenderContext.SetFillColor(rStyleSettings.GetFaceColor()); - rRenderContext.DrawRect(tools::Rectangle(Point(0, nTxtOffset), Point(aWinSize.Width(), aWinSize.Height()))); - rRenderContext.SetTextColor(rStyleSettings.GetButtonTextColor()); - } - else - { + const bool bFlat(GetStyle() & WB_FLATVALUESET); + if (!bFlat) nTxtOffset += NAME_LINE_HEIGHT+NAME_LINE_OFF_Y; - rRenderContext.SetBackground(Application::GetSettings().GetStyleSettings().GetFaceColor()); - rRenderContext.Erase(tools::Rectangle(Point(0, nTxtOffset), Point(aWinSize.Width(), aWinSize.Height()))); - } + + rRenderContext.SetTextColor(Application::GetSettings().GetStyleSettings().GetButtonTextColor()); + // tdf#153787 highlighted entry text is drawn in the same Paint as the selected text, so can + // overwrite already rendered text + rRenderContext.Erase(tools::Rectangle(Point(0, nTxtOffset), Point(aWinSize.Width(), aWinSize.Height()))); rRenderContext.DrawText(Point((aWinSize.Width() - nTxtWidth) / 2, nTxtOffset + (NAME_OFFSET / 2)), rText); + + rRenderContext.Pop(); } void ValueSet::StyleUpdated() diff -Nru libreoffice-7.5.1~rc2/svtools/source/uno/wizard/wizardpagecontroller.cxx libreoffice-7.5.2~rc2/svtools/source/uno/wizard/wizardpagecontroller.cxx --- libreoffice-7.5.1~rc2/svtools/source/uno/wizard/wizardpagecontroller.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svtools/source/uno/wizard/wizardpagecontroller.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -50,10 +50,28 @@ try { // Plug a toplevel SalFrame into the native page which can host our awt widgetry - m_xWizardPage.set(m_xController->createPage(pParent->CreateChildFrame(), i_nPageId), UNO_SET_THROW); + css::uno::Reference xChildFrame = pParent->CreateChildFrame(); + com::sun::star::awt::Rectangle r0 = xChildFrame->getPosSize(); + m_xWizardPage.set(m_xController->createPage(xChildFrame, i_nPageId), UNO_SET_THROW); - Reference< XWindow > xPageWindow(m_xWizardPage->getWindow(), UNO_SET_THROW); - xPageWindow->setVisible( true ); + css::uno::Reference xPageWindow(m_xWizardPage->getWindow(), UNO_SET_THROW); + + // If size of page is changed by createPage, then the requested size of the container + // should also be set to this size, to avoid annoying resizings. + com::sun::star::awt::Rectangle r1 = xChildFrame->getPosSize(); + + if (r0.Width != r1.Width || r0.Height != r1.Height) + pParent->set_size_request(r1.Width, r1.Height); + else + { + // tdf#132110 If the parent size wasn't overridden, then use + // the size of the child if that was set + com::sun::star::awt::Rectangle aChildRect = xPageWindow->getPosSize(); + if (aChildRect.Width && aChildRect.Height) + pParent->set_size_request(aChildRect.Width, aChildRect.Height); + } + + xPageWindow->setVisible(true); } catch( const Exception& ) { diff -Nru libreoffice-7.5.1~rc2/svtools/source/uno/wizard/wizardshell.cxx libreoffice-7.5.2~rc2/svtools/source/uno/wizard/wizardshell.cxx --- libreoffice-7.5.1~rc2/svtools/source/uno/wizard/wizardshell.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svtools/source/uno/wizard/wizardshell.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -83,6 +83,16 @@ return WizardShell_Base::run(); } + OString WizardShell::getPageIdentForState(WizardState nState) const + { + return OString::number(impl_stateToPageId(nState)); + } + + WizardState WizardShell::getStateFromPageIdent(const OString& rIdent) const + { + return impl_pageIdToState(rIdent.toInt32()); + } + sal_Int16 WizardShell::convertCommitReasonToTravelType( const CommitPageReason i_eReason ) { switch ( i_eReason ) diff -Nru libreoffice-7.5.1~rc2/svtools/source/uno/wizard/wizardshell.hxx libreoffice-7.5.2~rc2/svtools/source/uno/wizard/wizardshell.hxx --- libreoffice-7.5.1~rc2/svtools/source/uno/wizard/wizardshell.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svtools/source/uno/wizard/wizardshell.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -106,6 +106,9 @@ PWizardPageController impl_getController(BuilderPage* i_pPage) const; + virtual OString getPageIdentForState(WizardState nState) const override; + virtual WizardState getStateFromPageIdent(const OString& rIdent) const override; + // prevent outside access to some base class members using WizardShell_Base::skip; using WizardShell_Base::skipUntil; diff -Nru libreoffice-7.5.1~rc2/svx/source/dialog/AccessibilityCheckDialog.cxx libreoffice-7.5.2~rc2/svx/source/dialog/AccessibilityCheckDialog.cxx --- libreoffice-7.5.1~rc2/svx/source/dialog/AccessibilityCheckDialog.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svx/source/dialog/AccessibilityCheckDialog.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -25,9 +25,10 @@ , m_pAccessibilityIssue(rAccessibilityIssue) { m_xLabel->set_label(m_pAccessibilityIssue->m_aIssueText); + // lock in the height as including the button so all rows are the same height + m_xContainer->set_size_request(-1, m_xContainer->get_preferred_size().Height()); m_xGotoButton->set_visible(m_pAccessibilityIssue->canGotoIssue()); m_xGotoButton->connect_clicked(LINK(this, AccessibilityCheckEntry, GotoButtonClicked)); - m_xContainer->show(); } IMPL_LINK_NOARG(AccessibilityCheckEntry, GotoButtonClicked, weld::Button&, void) @@ -42,6 +43,7 @@ "AccessibilityCheckDialog") , m_aIssueCollection(std::move(aIssueCollection)) , m_getIssueCollection(getIssueCollection) + , m_xScrolledWindow(m_xBuilder->weld_scrolled_window("scrolledwindow")) , m_xAccessibilityCheckBox(m_xBuilder->weld_box("accessibilityCheckBox")) , m_xRescanBtn(m_xBuilder->weld_button("rescan")) { @@ -62,6 +64,14 @@ m_xAccessibilityCheckBox->reorder_child(xEntry->get_widget(), i++); m_aAccessibilityCheckEntries.push_back(std::move(xEntry)); } + + if (!m_aAccessibilityCheckEntries.empty()) + { + auto nRowHeight + = m_aAccessibilityCheckEntries.back()->get_widget()->get_preferred_size().Height(); + // 6 is the spacing set in the .ui + m_xScrolledWindow->vadjustment_set_step_increment(nRowHeight + 6); + } } IMPL_LINK_NOARG(AccessibilityCheckDialog, RescanButtonClicked, weld::Button&, void) diff -Nru libreoffice-7.5.1~rc2/svx/source/dialog/fntctrl.cxx libreoffice-7.5.2~rc2/svx/source/dialog/fntctrl.cxx --- libreoffice-7.5.1~rc2/svx/source/dialog/fntctrl.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svx/source/dialog/fntctrl.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -252,7 +252,7 @@ auto aNextScript = aEditEngine.GetScriptType({ 0, i, 0, i }); if (aNextScript != aScript) maScriptChanges.emplace_back(aScript, i - 1); - else if (i == maScriptText.getLength()) + if (i == maScriptText.getLength()) maScriptChanges.emplace_back(aScript, i); aScript = aNextScript; } @@ -987,6 +987,7 @@ if( !bPreviewBackgroundToCharacter ) { + bool bBackColorFound = false; if( GetWhich( rSet, SID_ATTR_BRUSH, nWhich ) ) { const SvxBrushItem& rBrush = static_cast( rSet.Get( nWhich ) ); @@ -994,9 +995,14 @@ { const Color& rBrushColor = rBrush.GetColor(); if (rBrushColor != COL_TRANSPARENT) + { pImpl->mxBackColor = rBrush.GetColor(); + bBackColorFound = true; + } } } + if (!bBackColorFound) + pImpl->mxBackColor = svtools::ColorConfig().GetColorValue(svtools::DOCCOLOR).nColor; } // Font diff -Nru libreoffice-7.5.1~rc2/svx/source/styles/CommonStylePreviewRenderer.cxx libreoffice-7.5.2~rc2/svx/source/styles/CommonStylePreviewRenderer.cxx --- libreoffice-7.5.1~rc2/svx/source/styles/CommonStylePreviewRenderer.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svx/source/styles/CommonStylePreviewRenderer.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -420,7 +420,7 @@ auto aNextScript = aEditEngine.GetScriptType({ 0, i, 0, i }); if (aNextScript != aScript) maScriptChanges.emplace_back(aScript, i - 1); - else if (i == maScriptText.getLength()) + if (i == maScriptText.getLength()) maScriptChanges.emplace_back(aScript, i); aScript = aNextScript; } diff -Nru libreoffice-7.5.1~rc2/svx/source/svdraw/svdmodel.cxx libreoffice-7.5.2~rc2/svx/source/svdraw/svdmodel.cxx --- libreoffice-7.5.1~rc2/svx/source/svdraw/svdmodel.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svx/source/svdraw/svdmodel.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -84,6 +84,7 @@ SdrUndoFactory* mpUndoFactory; bool mbAnchoredTextOverflowLegacy; // tdf#99729 compatibility flag bool mbLegacySingleLineFontwork; // tdf#148000 compatibility flag + bool mbConnectorUseSnapRect; // tdf#149756 compatibility flag std::unique_ptr mpTheme; SdrModelImpl() @@ -91,6 +92,7 @@ , mpUndoFactory(nullptr) , mbAnchoredTextOverflowLegacy(false) , mbLegacySingleLineFontwork(false) + , mbConnectorUseSnapRect(false) {} }; @@ -1733,6 +1735,16 @@ return mpImpl->mbLegacySingleLineFontwork; } +void SdrModel::SetConnectorUseSnapRect(bool bEnabled) +{ + mpImpl->mbConnectorUseSnapRect = bEnabled; +} + +bool SdrModel::IsConnectorUseSnapRect() const +{ + return mpImpl->mbConnectorUseSnapRect; +} + void SdrModel::ReformatAllTextObjects() { ImpReformatAllTextObjects(); @@ -1776,6 +1788,14 @@ mpImpl->mbAnchoredTextOverflowLegacy = bBool; } } + else if (pValue->Name == "ConnectorUseSnapRect") + { + bool bBool = false; + if (pValue->Value >>= bBool) + { + mpImpl->mbConnectorUseSnapRect = bBool; + } + } else if (pValue->Name == "LegacySingleLineFontwork") { bool bBool = false; @@ -1815,6 +1835,7 @@ std::vector< std::pair< OUString, uno::Any > > aUserData; addPair(aUserData, "AnchoredTextOverflowLegacy", IsAnchoredTextOverflowLegacy()); addPair(aUserData, "LegacySingleLineFontwork", IsLegacySingleLineFontwork()); + addPair(aUserData, "ConnectorUseSnapRect", IsConnectorUseSnapRect()); const sal_Int32 nOldLength = rValues.getLength(); rValues.realloc(nOldLength + aUserData.size()); diff -Nru libreoffice-7.5.1~rc2/svx/source/svdraw/svdoedge.cxx libreoffice-7.5.2~rc2/svx/source/svdraw/svdoedge.cxx --- libreoffice-7.5.1~rc2/svx/source/svdraw/svdoedge.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svx/source/svdraw/svdoedge.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -753,7 +753,10 @@ } else { - aBoundRect1 = rCon1.pObj->GetCurrentBoundRect(); + if (getSdrModelFromSdrObject().IsConnectorUseSnapRect()) + aBoundRect1 = rCon1.pObj->GetSnapRect(); + else + aBoundRect1 = rCon1.pObj->GetCurrentBoundRect(); } aBoundRect1.Move(rCon1.aObjOfs.X(),rCon1.aObjOfs.Y()); @@ -780,7 +783,10 @@ } else { - aBoundRect2 = rCon2.pObj->GetCurrentBoundRect(); + if (getSdrModelFromSdrObject().IsConnectorUseSnapRect()) + aBoundRect2 = rCon2.pObj->GetSnapRect(); + else + aBoundRect2 = rCon2.pObj->GetCurrentBoundRect(); } aBoundRect2.Move(rCon2.aObjOfs.X(),rCon2.aObjOfs.Y()); diff -Nru libreoffice-7.5.1~rc2/svx/source/tbxctrls/fillctrl.cxx libreoffice-7.5.2~rc2/svx/source/tbxctrls/fillctrl.cxx --- libreoffice-7.5.1~rc2/svx/source/tbxctrls/fillctrl.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svx/source/tbxctrls/fillctrl.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1084,4 +1084,13 @@ InterimItemWindow::DataChanged(rDCEvt); } +void FillControl::GetFocus() +{ + // tdf#148047 if the dropdown is active then leave the focus + // there and don't grab back to a different widget + if (mxToolBoxColor->get_menu_item_active(".uno:FillColor")) + return; + InterimItemWindow::GetFocus(); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.5.1~rc2/svx/uiconfig/ui/accessibilitycheckdialog.ui libreoffice-7.5.2~rc2/svx/uiconfig/ui/accessibilitycheckdialog.ui --- libreoffice-7.5.1~rc2/svx/uiconfig/ui/accessibilitycheckdialog.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svx/uiconfig/ui/accessibilitycheckdialog.ui 2023-03-24 16:53:38.000000000 +0000 @@ -97,7 +97,7 @@ True vertical - + True True True @@ -114,6 +114,8 @@ True False vertical + 6 + True diff -Nru libreoffice-7.5.1~rc2/svx/uiconfig/ui/accessibilitycheckentry.ui libreoffice-7.5.2~rc2/svx/uiconfig/ui/accessibilitycheckentry.ui --- libreoffice-7.5.1~rc2/svx/uiconfig/ui/accessibilitycheckentry.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/svx/uiconfig/ui/accessibilitycheckentry.ui 2023-03-24 16:53:38.000000000 +0000 @@ -1,20 +1,22 @@ - + True - False - 3 + False + 3 + 3 + 6 True - False + False True True 0 - + static @@ -29,8 +31,8 @@ Go to Issue True - True - True + True + True False diff -Nru libreoffice-7.5.1~rc2/sw/inc/crsrsh.hxx libreoffice-7.5.2~rc2/sw/inc/crsrsh.hxx --- libreoffice-7.5.1~rc2/sw/inc/crsrsh.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/inc/crsrsh.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -332,8 +332,9 @@ void ExtendedSelectAll(bool bFootnotes = true); /// If ExtendedSelectAll() was called and selection didn't change since then. bool ExtendedSelectedAll(); - /// If document body starts with a table. - bool StartsWithTable(); + enum class StartsWith { None, Table, HiddenPara }; + /// If document body starts with a table or starts/ends with hidden paragraph. + StartsWith StartsWith_(); SwCursor* GetCursor( bool bMakeTableCursor = true ) const; // return only the current cursor diff -Nru libreoffice-7.5.1~rc2/sw/inc/redline.hxx libreoffice-7.5.2~rc2/sw/inc/redline.hxx --- libreoffice-7.5.1~rc2/sw/inc/redline.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/inc/redline.hxx 2023-03-24 16:53:38.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.5.1~rc2/sw/inc/ToxTextGenerator.hxx libreoffice-7.5.2~rc2/sw/inc/ToxTextGenerator.hxx --- libreoffice-7.5.1~rc2/sw/inc/ToxTextGenerator.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/inc/ToxTextGenerator.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -143,7 +143,7 @@ */ static OUString GetNumStringOfFirstNode(const SwTOXSortTabBase& rBase, bool bUsePrefix, - sal_uInt8 nLevel, SwRootFrame const* pLayout); + sal_uInt8 nLevel, SwRootFrame const* pLayout, bool bAddSpace = true); /** Handle a chapter token. */ diff -Nru libreoffice-7.5.1~rc2/sw/qa/core/text/text.cxx libreoffice-7.5.2~rc2/sw/qa/core/text/text.cxx --- libreoffice-7.5.1~rc2/sw/qa/core/text/text.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/core/text/text.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -681,6 +681,10 @@ CPPUNIT_TEST_FIXTURE(SwCoreTextTest, testContentControlPlaceholderPDF) { + std::shared_ptr pPDFium = vcl::pdf::PDFiumLibrary::get(); + if (!pPDFium) + return; + // Given a file with a content control, in placeholder mode: createSwDoc(); SwDoc* pDoc = getSwDoc(); diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/globalfilter/globalfilter.cxx libreoffice-7.5.2~rc2/sw/qa/extras/globalfilter/globalfilter.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/globalfilter/globalfilter.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/globalfilter/globalfilter.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1237,9 +1237,16 @@ // check DOCX filters saveAndReload("Office Open XML Text"); CPPUNIT_ASSERT_EQUAL(true, getProperty(getShape(1), "Decorative")); + { + // tdf#153925 not imported - check default and set it to test ODF filters + uno::Reference const xStyle(getStyles("FrameStyles")->getByName("Formula"), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(false, getProperty(xStyle, "Decorative")); + xStyle->setPropertyValue("Decorative", uno::Any(true)); + } // check ODF filters saveAndReload("writer8"); CPPUNIT_ASSERT_EQUAL(true, getProperty(getShape(1), "Decorative")); + CPPUNIT_ASSERT_EQUAL(true, getProperty(getStyles("FrameStyles")->getByName("Formula"), "Decorative")); // check PDF export utl::MediaDescriptor aMediaDescriptor; diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/htmlexport/data/TableWithIndent.fodt libreoffice-7.5.2~rc2/sw/qa/extras/htmlexport/data/TableWithIndent.fodt --- libreoffice-7.5.1~rc2/sw/qa/extras/htmlexport/data/TableWithIndent.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/htmlexport/data/TableWithIndent.fodt 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/htmlexport/htmlexport.cxx libreoffice-7.5.2~rc2/sw/qa/extras/htmlexport/htmlexport.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/htmlexport/htmlexport.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/htmlexport/htmlexport.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -2397,6 +2397,20 @@ getXPath(pHtmlDoc, "/html/body/p[5]/a", "href")); } +CPPUNIT_TEST_FIXTURE(HtmlExportTest, testTdf153923) +{ + createSwDoc("TableWithIndent.fodt"); + save("HTML (StarWriter)"); + + // Parse it as XML (strict!) + xmlDocUniquePtr pDoc = parseXml(maTempFile); + // Without the fix in place, this would fail + CPPUNIT_ASSERT(pDoc); + + // The 'dd' tag was not closed + assertXPath(pDoc, "/html/body//dd"); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/data/image_through_shape.docx and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/data/image_through_shape.docx differ diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/data/tdf147892.fodt libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/data/tdf147892.fodt --- libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/data/tdf147892.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/data/tdf147892.fodt 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,25 @@ + + + + + + + + + Bob + 2023-01-02T00:00:00 + + + + + Alice + 2023-01-01T00:00:00 + + + + + + + + + Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/data/tdf153255.docx and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/data/tdf153255.docx differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/data/tdf153526_commentInNumbering.docx and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/data/tdf153526_commentInNumbering.docx differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/data/tdf153891.docx and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/data/tdf153891.docx differ diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1959,8 +1959,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") @@ -1971,6 +1991,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"); @@ -1997,6 +2035,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.5.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1307,6 +1307,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.5.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -823,6 +823,18 @@ CPPUNIT_ASSERT_EQUAL(static_cast(200000), nSize1); } +DECLARE_OOXMLEXPORT_TEST(testTdf153874, "image_through_shape.docx") +{ + uno::Reference const xShape1(getShapeByName(u"Test1"), uno::UNO_QUERY); + uno::Reference const xShape2(getShapeByName(u"Rectangle 1"), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(text::TextContentAnchorType_AS_CHARACTER, xShape1->getPropertyValue("AnchorType").get()); + CPPUNIT_ASSERT_EQUAL(text::TextContentAnchorType_AT_CHARACTER, xShape2->getPropertyValue("AnchorType").get()); + CPPUNIT_ASSERT_LESS(xShape2->getPropertyValue("ZOrder").get(), xShape1->getPropertyValue("ZOrder").get()); + CPPUNIT_ASSERT(xShape1->getPropertyValue("Decorative").get()); + // not implemented on shape yet + //CPPUNIT_ASSERT(xShape2->getPropertyValue("Decorative").get()); +} + DECLARE_OOXMLEXPORT_TEST(testTextBoxZOrder, "testTextBoxZOrder.docx") { // Is load successful? diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport18.cxx libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport18.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport18.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport18.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -80,6 +80,13 @@ CPPUNIT_ASSERT_EQUAL(OUString("2."),parseDump("/root/page/body/tab/row[4]/cell/txt/SwParaPortion/SwLineLayout/child::*[@type='PortionType::Number']","expand")); } +DECLARE_OOXMLEXPORT_TEST(testTdf153526_commentInNumbering, "tdf153526_commentInNumbering.docx") +{ + // an exception was prematurely ending finishParagraph, losing numbering and CRs + // so before the patch, this was 6. + CPPUNIT_ASSERT_EQUAL(13, getParagraphs()); +} + CPPUNIT_TEST_FIXTURE(Test, testTdf149551_mongolianVert) { // Given a docx document with a shape with vert="mongolianVert". diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx 2023-03-24 16:53:38.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"); Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlimport/data/tdf153791-shd_overrides_fontRef.docx and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlimport/data/tdf153791-shd_overrides_fontRef.docx differ diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -947,6 +947,80 @@ // Should not crash/hang because of wrong placement of ending fldChar } +CPPUNIT_TEST_FIXTURE(Test, testTdf153791) +{ + createSwDoc("tdf153791-shd_overrides_fontRef.docx"); + + // the first shape (a paragraph with no background) + auto xTextBox(getShape(1)); + CPPUNIT_ASSERT_EQUAL(COL_LIGHTRED, getProperty(xTextBox, "CharColor")); + uno::Reference xRange(xTextBox, uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(OUString("Lorem ipsum"), xRange->getString()); + + uno::Reference xParaEnumAccess(xRange, uno::UNO_QUERY_THROW); + uno::Reference xParaEnum = xParaEnumAccess->createEnumeration(); + + uno::Reference xPara(xParaEnum->nextElement(), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(COL_AUTO, getProperty(xPara, "ParaBackColor")); + + uno::Reference xRunEnumAccess(xPara, uno::UNO_QUERY_THROW); + uno::Reference xRunEnum = xRunEnumAccess->createEnumeration(); + + uno::Reference xRun(xRunEnum->nextElement(), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(OUString("Lorem ipsum"), xRun->getString()); + CPPUNIT_ASSERT_EQUAL(COL_AUTO, getProperty(xRun, "CharBackColor")); + // In the absence of paragraph/character background, the whole paragraph is red. + CPPUNIT_ASSERT_EQUAL(COL_LIGHTRED, getProperty(xRun, "CharColor")); + + // the second shape: two paragraphs + xTextBox.set(getShape(2)); + CPPUNIT_ASSERT_EQUAL(COL_LIGHTRED, getProperty(xTextBox, "CharColor")); + xRange.set(xTextBox, uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(OUString("Lorem ipsum" SAL_NEWLINE_STRING "Lorem ipsum"), + xRange->getString()); + + xParaEnumAccess.set(xRange, uno::UNO_QUERY_THROW); + xParaEnum = xParaEnumAccess->createEnumeration(); + + // the first one has paragraph background + xPara.set(xParaEnum->nextElement(), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(Color(0xF0F0F0), getProperty(xPara, "ParaBackColor")); + + xRunEnumAccess.set(xPara, uno::UNO_QUERY_THROW); + xRunEnum = xRunEnumAccess->createEnumeration(); + + xRun.set(xRunEnum->nextElement(), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(OUString("Lorem ipsum"), xRun->getString()); + CPPUNIT_ASSERT_EQUAL(COL_AUTO, getProperty(xRun, "CharBackColor")); + // With paragraph background, the whole paragraph is auto. + // Without the fix, this would fail with: + // - Expected: rgba[ffffff00] + // - Actual : rgba[ff0000ff] + CPPUNIT_ASSERT_EQUAL(COL_AUTO, getProperty(xRun, "CharColor")); + + // the second paragraph has two runs, the last one with character background + xPara.set(xParaEnum->nextElement(), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(COL_AUTO, getProperty(xPara, "ParaBackColor")); + + xRunEnumAccess.set(xPara, uno::UNO_QUERY_THROW); + xRunEnum = xRunEnumAccess->createEnumeration(); + + xRun.set(xRunEnum->nextElement(), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(OUString("Lorem "), xRun->getString()); + CPPUNIT_ASSERT_EQUAL(COL_AUTO, getProperty(xRun, "CharBackColor")); + // In the absence of paragraph/character background, the run is red + CPPUNIT_ASSERT_EQUAL(COL_LIGHTRED, getProperty(xRun, "CharColor")); + + xRun.set(xRunEnum->nextElement(), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(OUString("ipsum"), xRun->getString()); + CPPUNIT_ASSERT_EQUAL(Color(0xF0F0F0), getProperty(xRun, "CharBackColor")); + // With character background, the run is auto. + // Without the fix, this would fail with: + // - Expected: rgba[ffffff00] + // - Actual : rgba[ff0000ff] + CPPUNIT_ASSERT_EQUAL(COL_AUTO, getProperty(xRun, "CharColor")); +} + // tests should only be added to ooxmlIMPORT *if* they fail round-tripping in ooxmlEXPORT CPPUNIT_PLUGIN_IMPLEMENT(); Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/sw/qa/extras/rtfexport/data/tdf153681.odt and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/sw/qa/extras/rtfexport/data/tdf153681.odt differ diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/rtfexport/rtfexport5.cxx libreoffice-7.5.2~rc2/sw/qa/extras/rtfexport/rtfexport5.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/rtfexport/rtfexport5.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/rtfexport/rtfexport5.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1395,6 +1395,22 @@ CPPUNIT_ASSERT_MESSAGE("Extra elements in paragraph", !xRunEnum->hasMoreElements()); } +DECLARE_RTFEXPORT_TEST(testTdf153681, "tdf153681.odt") +{ + uno::Reference xTablesSupplier(mxComponent, uno::UNO_QUERY_THROW); + uno::Reference xTables(xTablesSupplier->getTextTables(), + uno::UNO_QUERY_THROW); + + // This is outside table + uno::Reference xTable(xTables->getByIndex(1), uno::UNO_QUERY_THROW); + // Without the accompanying fix in place, this test would have failed with: + // - Expected: 2 + // - Actual : 3 + // Generates extra cell + CPPUNIT_ASSERT_EQUAL(sal_Int32(2), xTable->getRows()->getCount()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(2), xTable->getColumns()->getCount()); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/uiwriter/data/tdf114973.fodt libreoffice-7.5.2~rc2/sw/qa/extras/uiwriter/data/tdf114973.fodt --- libreoffice-7.5.1~rc2/sw/qa/extras/uiwriter/data/tdf114973.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/uiwriter/data/tdf114973.fodt 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Header + + + Footer + + + + + + + + + + + + + hidden first paragraph + Press CTRL+A for dispatching .uno:SelectAll. You see that nothing will be selected. The cursor jumps to the header + hidden last paragraph + + + diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/uiwriter/data/tdf153819.fodt libreoffice-7.5.2~rc2/sw/qa/extras/uiwriter/data/tdf153819.fodt --- libreoffice-7.5.1~rc2/sw/qa/extras/uiwriter/data/tdf153819.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/uiwriter/data/tdf153819.fodt 2023-03-24 16:53:38.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.5.1~rc2/sw/qa/extras/uiwriter/uiwriter3.cxx libreoffice-7.5.2~rc2/sw/qa/extras/uiwriter/uiwriter3.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/uiwriter/uiwriter3.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/uiwriter/uiwriter3.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -193,6 +193,40 @@ CPPUNIT_ASSERT_EQUAL(1, getPages()); } +CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf114973) +{ + createSwDoc("tdf114973.fodt"); + + dispatchCommand(mxComponent, ".uno:SelectAll", {}); + Scheduler::ProcessEventsToIdle(); + + SwDoc* const pDoc = getSwDoc(); + SwWrtShell* const pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + // bug: cursor jumped into header + CPPUNIT_ASSERT(!pWrtShell->IsInHeaderFooter()); + + dispatchCommand(mxComponent, ".uno:Copy", {}); + Scheduler::ProcessEventsToIdle(); + + // check that hidden paragraphs at start and end are deleted + dispatchCommand(mxComponent, ".uno:Delete", {}); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(int(1), getParagraphs()); + CPPUNIT_ASSERT_EQUAL(OUString(), getParagraph(1)->getString()); + + // check that hidden paragraphs at start and end are copied + dispatchCommand(mxComponent, ".uno:Paste", {}); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(int(3), getParagraphs()); + CPPUNIT_ASSERT_EQUAL(OUString("hidden first paragraph"), getParagraph(1)->getString()); + CPPUNIT_ASSERT_EQUAL(OUString("Press CTRL+A for dispatching .uno:SelectAll. You see that " + "nothing will be selected. The cursor jumps to the header"), + getParagraph(2)->getString()); + CPPUNIT_ASSERT_EQUAL(OUString("hidden last paragraph"), getParagraph(3)->getString()); +} + CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf145321) { createSwDoc("tdf145321.odt"); diff -Nru libreoffice-7.5.1~rc2/sw/qa/extras/uiwriter/uiwriter8.cxx libreoffice-7.5.2~rc2/sw/qa/extras/uiwriter/uiwriter8.cxx --- libreoffice-7.5.1~rc2/sw/qa/extras/uiwriter/uiwriter8.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/extras/uiwriter/uiwriter8.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -318,6 +318,29 @@ assertXPath(pXmlDoc, "/root/page[1]/body/tab/row", 2); } +CPPUNIT_TEST_FIXTURE(SwUiWriterTest8, testTdf153819) +{ + // copy a table before a deleted table in Hide Changes mode + createSwDoc("tdf153819.fodt"); + SwDoc* pDoc = getSwDoc(); + 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(SwUiWriterTest8, testTdf148345) { // load a 2-row table, set Hide Changes mode and delete the first row with change tracking diff -Nru libreoffice-7.5.1~rc2/sw/qa/uitest/writer_tests7/tdf132714.py libreoffice-7.5.2~rc2/sw/qa/uitest/writer_tests7/tdf132714.py --- libreoffice-7.5.1~rc2/sw/qa/uitest/writer_tests7/tdf132714.py 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/qa/uitest/writer_tests7/tdf132714.py 2023-03-24 16:53:38.000000000 +0000 @@ -8,6 +8,9 @@ # from uitest.framework import UITestCase from uitest.uihelper.common import get_url_for_data_file +from libreoffice.uno.propertyvalue import mkPropertyValues +from com.sun.star.awt import MouseButton +from com.sun.star.awt import MouseEvent class tdf132714(UITestCase): def test_tdf132714(self): @@ -20,4 +23,75 @@ # Without the fix in place, at this point crash occurs. self.xUITest.executeCommand(".uno:DeleteRows") + def test_delete_table(self): + with self.ui_test.load_file(get_url_for_data_file("tdf132714.odt")) as document: + + # delete second row (first data row) in the associated text table of the chart + self.xUITest.executeCommand(".uno:GoDown") + self.xUITest.executeCommand(".uno:GoDown") + # Without the fix in place, at this point crash occurs. + self.xUITest.executeCommand(".uno:DeleteTable") + + # select embedded chart + self.assertEqual(1, document.EmbeddedObjects.Count) + document.CurrentController.select(document.getEmbeddedObjects().getByIndex(0)) + self.assertEqual("SwXTextEmbeddedObject", document.CurrentSelection.getImplementationName()) + + xChartMainTop = self.xUITest.getTopFocusWindow() + xWriterEdit = xChartMainTop.getChild("writer_edit") + # edit object by pressing Enter + xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"RETURN"})) + + # create mouse event in the chart area + xFrame = document.getCurrentController().getFrame() + self.assertIsNotNone(xFrame) + xWindow = xFrame.getContainerWindow() + self.assertIsNotNone(xWindow) + + xMouseEvent = MouseEvent() + xMouseEvent.Modifiers = 0 + xMouseEvent.Buttons = MouseButton.LEFT + xMouseEvent.X = 1000 + xMouseEvent.Y = 400 + xMouseEvent.ClickCount = 1 + xMouseEvent.PopupTrigger = False + xMouseEvent.Source = xWindow + + # send mouse event + xToolkitRobot = xWindow.getToolkit() + self.assertIsNotNone(xToolkitRobot) + + # Click in the chart area + + # Without the fix in place, this test would have crashed here + xToolkitRobot.mouseMove(xMouseEvent) + + def test_data_ranges(self): + with self.ui_test.load_file(get_url_for_data_file("tdf132714.odt")) as document: + + # delete second row (first data row) in the associated text table of the chart + self.xUITest.executeCommand(".uno:GoDown") + self.xUITest.executeCommand(".uno:GoDown") + # Without the fix in place, at this point crash occurs. + self.xUITest.executeCommand(".uno:DeleteTable") + + # select embedded chart + self.assertEqual(1, document.EmbeddedObjects.Count) + document.CurrentController.select(document.getEmbeddedObjects().getByIndex(0)) + self.assertEqual("SwXTextEmbeddedObject", document.CurrentSelection.getImplementationName()) + + xChartMainTop = self.xUITest.getTopFocusWindow() + xWriterEdit = xChartMainTop.getChild("writer_edit") + # edit object by pressing Enter + xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"RETURN"})) + + # open DataRanges dialog window + xChartMain = xChartMainTop.getChild("chart_window") + xSeriesObj = xChartMain.getChild("CID/Page=") + + # Without the fix in place, this test would have crashed here + with self.ui_test.execute_dialog_through_action(xSeriesObj, "COMMAND", mkPropertyValues({"COMMAND": "DataRanges"})) as xDialog: + pass + + # vim: set shiftwidth=4 softtabstop=4 expandtab: diff -Nru libreoffice-7.5.1~rc2/sw/source/core/crsr/callnk.cxx libreoffice-7.5.2~rc2/sw/source/core/crsr/callnk.cxx --- libreoffice-7.5.1~rc2/sw/source/core/crsr/callnk.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/crsr/callnk.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -90,7 +90,7 @@ const SwTableLine* pLine = pRow->GetTabLine( ); - if (pShell && (pShell->IsTableMode() || (pShell->StartsWithTable() && pShell->ExtendedSelectedAll()))) + if (pShell && (pShell->IsTableMode() || (pShell->StartsWith_() != SwCursorShell::StartsWith::None && pShell->ExtendedSelectedAll()))) { // If we have a table selection, then avoid the notification: it's not necessary (the text // cursor needs no updating) and the notification may kill the selection overlay, leading to diff -Nru libreoffice-7.5.1~rc2/sw/source/core/crsr/crsrsh.cxx libreoffice-7.5.2~rc2/sw/source/core/crsr/crsrsh.cxx --- libreoffice-7.5.1~rc2/sw/source/core/crsr/crsrsh.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/crsr/crsrsh.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -242,7 +242,7 @@ void SwCursorShell::EndAction( const bool bIdleEnd ) { - comphelper::FlagRestorationGuard g(mbSelectAll, StartsWithTable() && ExtendedSelectedAll()); + comphelper::FlagRestorationGuard g(mbSelectAll, StartsWith_() != StartsWith::None && ExtendedSelectedAll()); bool bVis = m_bSVCursorVis; // Idle-formatting? @@ -623,12 +623,26 @@ return aStart == *pShellCursor->Start() && aEnd == *pShellCursor->End(); } -bool SwCursorShell::StartsWithTable() +typename SwCursorShell::StartsWith SwCursorShell::StartsWith_() { SwNodes& rNodes = GetDoc()->GetNodes(); SwNodeIndex nNode(rNodes.GetEndOfExtras()); SwContentNode* pContentNode = rNodes.GoNext(&nNode); - return pContentNode->FindTableNode(); + if (pContentNode->FindTableNode()) + { + return StartsWith::Table; + } + if (pContentNode->GetTextNode()->IsHidden()) + { + return StartsWith::HiddenPara; + } + nNode = rNodes.GetEndOfContent(); + pContentNode = SwNodes::GoPrevious(&nNode); + if (pContentNode->GetTextNode()->IsHidden()) + { + return StartsWith::HiddenPara; + } + return StartsWith::None; } bool SwCursorShell::MovePage( SwWhichPage fnWhichPage, SwPosPage fnPosPage ) @@ -1410,7 +1424,7 @@ void SwCursorShell::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle &rRect) { - comphelper::FlagRestorationGuard g(mbSelectAll, StartsWithTable() && ExtendedSelectedAll()); + comphelper::FlagRestorationGuard g(mbSelectAll, StartsWith_() != StartsWith::None && ExtendedSelectedAll()); CurrShell aCurr( this ); // always switch off all cursors when painting @@ -1495,7 +1509,7 @@ SwShellCursor* pShellCursor = getShellCursor( true ); Size aOldSz( GetDocSize() ); - if( isInHiddenTextFrame(pShellCursor) ) + if (isInHiddenTextFrame(pShellCursor) && !ExtendedSelectedAll()) { SwCursorMoveState aTmpState( CursorMoveState::NONE ); aTmpState.m_bSetInReadOnly = IsReadOnlyAvailable(); @@ -2455,7 +2469,7 @@ void SwCursorShell::ShellGetFocus() { - comphelper::FlagRestorationGuard g(mbSelectAll, StartsWithTable() && ExtendedSelectedAll()); + comphelper::FlagRestorationGuard g(mbSelectAll, StartsWith_() != StartsWith::None && ExtendedSelectedAll()); m_bHasFocus = true; if( !m_bBasicHideCursor && VisArea().Width() ) diff -Nru libreoffice-7.5.1~rc2/sw/source/core/doc/DocumentRedlineManager.cxx libreoffice-7.5.2~rc2/sw/source/core/doc/DocumentRedlineManager.cxx --- libreoffice-7.5.1~rc2/sw/source/core/doc/DocumentRedlineManager.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/doc/DocumentRedlineManager.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1738,7 +1738,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! @@ -1772,18 +1775,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.5.1~rc2/sw/source/core/docnode/ndtbl.cxx libreoffice-7.5.2~rc2/sw/source/core/docnode/ndtbl.cxx --- libreoffice-7.5.1~rc2/sw/source/core/docnode/ndtbl.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/docnode/ndtbl.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -2354,8 +2354,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.5.1~rc2/sw/source/core/edit/eddel.cxx libreoffice-7.5.2~rc2/sw/source/core/edit/eddel.cxx --- libreoffice-7.5.1~rc2/sw/source/core/edit/eddel.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/edit/eddel.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -33,7 +33,7 @@ void SwEditShell::DeleteSel(SwPaM& rPam, bool const isArtificialSelection, bool *const pUndo) { - bool bSelectAll = StartsWithTable() && ExtendedSelectedAll(); + bool bSelectAll = StartsWith_() != SwCursorShell::StartsWith::None && ExtendedSelectedAll(); // only for selections if (!rPam.HasMark() || (*rPam.GetPoint() == *rPam.GetMark() diff -Nru libreoffice-7.5.1~rc2/sw/source/core/edit/edglss.cxx libreoffice-7.5.2~rc2/sw/source/core/edit/edglss.cxx --- libreoffice-7.5.1~rc2/sw/source/core/edit/edglss.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/edit/edglss.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -197,7 +197,7 @@ bool bColSel = GetCursor_()->IsColumnSelection(); if( bColSel && rInsDoc.IsClipBoard() ) rInsDoc.SetColumnSelection( true ); - bool bSelectAll = StartsWithTable() && ExtendedSelectedAll(); + bool bSelectAll = StartsWith_() != SwCursorShell::StartsWith::None && ExtendedSelectedAll(); { for(SwPaM& rPaM : GetCursor()->GetRingContainer()) { diff -Nru libreoffice-7.5.1~rc2/sw/source/core/fields/docufld.cxx libreoffice-7.5.2~rc2/sw/source/core/fields/docufld.cxx --- libreoffice-7.5.1~rc2/sw/source/core/fields/docufld.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/fields/docufld.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -2224,7 +2224,7 @@ { IDocumentRedlineAccess const& rIDRA(m_rDoc.getIDocumentRedlineAccess()); std::vector vFields; - GatherFields(vFields); + m_rDoc.getIDocumentFieldsAccess().GetSysFieldType(SwFieldIds::RefPageSet)->GatherFields(vFields); for(auto pFormatField: vFields) { // update only the GetRef fields diff -Nru libreoffice-7.5.1~rc2/sw/source/core/frmedt/fetab.cxx libreoffice-7.5.2~rc2/sw/source/core/frmedt/fetab.cxx --- libreoffice-7.5.1~rc2/sw/source/core/frmedt/fetab.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/frmedt/fetab.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -189,7 +189,7 @@ // search boxes via the layout SwSelBoxes aBoxes; - bool bSelectAll = StartsWithTable() && ExtendedSelectedAll(); + bool bSelectAll = StartsWith_() == StartsWith::Table && ExtendedSelectedAll(); if (bSelectAll) { // Set the end of the selection to the last paragraph of the last cell of the table. diff -Nru libreoffice-7.5.1~rc2/sw/source/core/layout/flowfrm.cxx libreoffice-7.5.2~rc2/sw/source/core/layout/flowfrm.cxx --- libreoffice-7.5.1~rc2/sw/source/core/layout/flowfrm.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/layout/flowfrm.cxx 2023-03-24 16:53:38.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.5.1~rc2/sw/source/core/text/frmcrsr.cxx libreoffice-7.5.2~rc2/sw/source/core/text/frmcrsr.cxx --- libreoffice-7.5.1~rc2/sw/source/core/text/frmcrsr.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/text/frmcrsr.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -180,7 +180,7 @@ { OSL_ENSURE( ! IsVertical() || ! IsSwapped(),"SwTextFrame::GetCharRect with swapped frame" ); - if( IsLocked() || IsHiddenNow() ) + if (IsLocked()) return false; // Find the right frame first. We need to keep in mind that: diff -Nru libreoffice-7.5.1~rc2/sw/source/core/text/porlay.cxx libreoffice-7.5.2~rc2/sw/source/core/text/porlay.cxx --- libreoffice-7.5.1~rc2/sw/source/core/text/porlay.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/text/porlay.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1272,7 +1272,7 @@ { const Range& rRange = aHiddenMulti.GetRange( i ); const sal_Int32 nStart = rRange.Min(); - const sal_Int32 nEnd = rRange.Max() + 1; + const sal_Int32 nEnd = rRange.Max() + (rText.isEmpty() ? 0 : 1); m_HiddenChg.push_back( TextFrameIndex(nStart) ); m_HiddenChg.push_back( TextFrameIndex(nEnd) ); diff -Nru libreoffice-7.5.1~rc2/sw/source/core/text/txtfld.cxx libreoffice-7.5.2~rc2/sw/source/core/text/txtfld.cxx --- libreoffice-7.5.1~rc2/sw/source/core/text/txtfld.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/text/txtfld.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -435,7 +435,16 @@ // TODO remove this fallback for RTF bool isDOC = pIDSA->get(DocumentSettingId::ADD_FLY_OFFSETS); bool isDOCX = pIDSA->get(DocumentSettingId::ADD_VERTICAL_FLY_OFFSETS); - if (!isDOC && !isDOCX && !pSet) + // tdf#146168 this hack should now only apply to RTF. Any other format (i.e. ODT) should only + // follow this fallback hack if it was created from RTF after its current implementation in 7.2. + // This can be approximated by 128197's new 6.4.7 compat for RTF MsWordCompMinLineHeightByFly + // Anything older than this which has APPLY_PARAGRAPH_MARK_FORMAT_TO_NUMBERING + // did not experience this hack, so it shouldn't apply to ODTs created from older RTFs either. + // In short: we don't want this hack to apply unless absolutely necessary for RTF. + const bool isOnlyRTF + = !isDOC && !isDOCX && pIDSA->get(DocumentSettingId::MS_WORD_COMP_MIN_LINE_HEIGHT_BY_FLY); + + if (isOnlyRTF && !pSet) { TextFrameIndex const nTextLen(rInf.GetTextFrame()->GetText().getLength()); SwTextNode const* pNode(nullptr); diff -Nru libreoffice-7.5.1~rc2/sw/source/core/text/txtfrm.cxx libreoffice-7.5.2~rc2/sw/source/core/text/txtfrm.cxx --- libreoffice-7.5.1~rc2/sw/source/core/text/txtfrm.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/text/txtfrm.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1432,6 +1432,27 @@ ( bHiddenCharsHidePara && !pVsh->GetViewOptions()->IsShowHiddenChar() ) ) { + // in order to put the cursor in the body text, one paragraph must + // be visible - check this for the 1st body paragraph + if (IsInDocBody() && FindPrevCnt() == nullptr) + { + bool isAllHidden(true); + for (SwContentFrame const* pNext = FindNextCnt(true); + pNext != nullptr; pNext = pNext->FindNextCnt(true)) + { + if (!pNext->IsTextFrame() + || !static_cast(pNext)->IsHiddenNow()) + { + isAllHidden = false; + break; + } + } + if (isAllHidden) + { + SAL_INFO("sw.core", "unhiding one body paragraph"); + return false; + } + } return true; } } diff -Nru libreoffice-7.5.1~rc2/sw/source/core/tox/ToxTextGenerator.cxx libreoffice-7.5.2~rc2/sw/source/core/tox/ToxTextGenerator.cxx --- libreoffice-7.5.1~rc2/sw/source/core/tox/ToxTextGenerator.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/tox/ToxTextGenerator.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -61,6 +61,9 @@ return false; } +// Similar to rtl::isAsciiWhiteSpace, but applicable to ToC entry number +bool isWhiteSpace(sal_Unicode ch) { return ch == ' ' || ch == '\t'; } + } // end anonymous namespace namespace sw { @@ -68,7 +71,7 @@ OUString ToxTextGenerator::GetNumStringOfFirstNode(const SwTOXSortTabBase& rBase, bool bUsePrefix, sal_uInt8 nLevel, - SwRootFrame const*const pLayout) + SwRootFrame const*const pLayout, bool bAddSpace) { if (sortTabHasNoToxSourcesOrFirstToxSourceHasNoNode(rBase)) { return OUString(); @@ -97,7 +100,7 @@ sRet = pNd->GetNumString(bUsePrefix, nLevel, pLayout); } - if (!sRet.isEmpty()) { + if (bAddSpace && !sRet.isEmpty() && !isWhiteSpace(sRet[sRet.getLength() - 1])) { sRet += " ";// Makes sure spacing is done only when there is outline numbering } @@ -190,17 +193,22 @@ // #i21237# SwFormTokens aPattern = mToxForm.GetPattern(nLvl); // remove text from node - for(const auto& aToken : aPattern) // #i21237# + for (size_t i = 0; i < aPattern.size(); ++i) // #i21237# { + const auto& aToken = aPattern[i]; sal_Int32 nStartCharStyle = rText.getLength(); OUString aCharStyleName = aToken.sCharStyleName; switch( aToken.eTokenType ) { case TOKEN_ENTRY_NO: // for TOC numbering + // Only add space when there is outline numbering, and also when the next token + // is the entry text: it can also be e.g. a tab, or the entry number can be used + // in page number area like "2-15" for chapter 2, page 15. rText += GetNumStringOfFirstNode(rBase, aToken.nChapterFormat == CF_NUMBER, - static_cast(aToken.nOutlineLevel - 1), pLayout); + static_cast(aToken.nOutlineLevel - 1), pLayout, + i < aPattern.size() - 1 && aPattern[i + 1].eTokenType == TOKEN_ENTRY_TEXT); break; case TOKEN_ENTRY_TEXT: { diff -Nru libreoffice-7.5.1~rc2/sw/source/core/unocore/unochart.cxx libreoffice-7.5.2~rc2/sw/source/core/unocore/unochart.cxx --- libreoffice-7.5.1~rc2/sw/source/core/unocore/unochart.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/unocore/unochart.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -2057,14 +2058,22 @@ uno::Sequence< uno::Any > SAL_CALL SwChartDataSequence::getData() { SolarMutexGuard aGuard; - auto vCells(GetCells()); - uno::Sequence< uno::Any > vAnyData(vCells.size()); - std::transform(vCells.begin(), - vCells.end(), - vAnyData.getArray(), - [] (decltype(vCells)::value_type& xCell) - { return static_cast(xCell.get())->GetAny(); }); - return vAnyData; + try + { + auto vCells(GetCells()); + uno::Sequence< uno::Any > vAnyData(vCells.size()); + std::transform(vCells.begin(), + vCells.end(), + vAnyData.getArray(), + [] (decltype(vCells)::value_type& xCell) + { return static_cast(xCell.get())->GetAny(); }); + return vAnyData; + } + catch (const lang::DisposedException&) + { + TOOLS_WARN_EXCEPTION( "sw", "unexpected exception caught" ); + } + return uno::Sequence< uno::Any >{}; } uno::Sequence< double > SAL_CALL SwChartDataSequence::getNumericalData() diff -Nru libreoffice-7.5.1~rc2/sw/source/core/unocore/unomap1.cxx libreoffice-7.5.2~rc2/sw/source/core/unocore/unomap1.cxx --- libreoffice-7.5.1~rc2/sw/source/core/unocore/unomap1.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/core/unocore/unomap1.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -407,6 +407,7 @@ { UNO_NAME_ALLOW_OVERLAP, RES_WRAP_INFLUENCE_ON_OBJPOS, cppu::UnoType::get(), PROPERTY_NONE, MID_ALLOW_OVERLAP}, { UNO_NAME_WRITING_MODE, RES_FRAMEDIR, cppu::UnoType::get(), PROPERTY_NONE, 0 }, { UNO_NAME_HIDDEN, FN_UNO_HIDDEN, cppu::UnoType::get(), PROPERTY_NONE, 0}, + { u"Decorative", RES_DECORATIVE, cppu::UnoType::get(), PROPERTY_NONE, 0 }, { UNO_NAME_TEXT_VERT_ADJUST, RES_TEXT_VERT_ADJUST, cppu::UnoType::get(), PROPERTY_NONE ,0}, // added FillProperties for SW, same as FILL_PROPERTIES in svx diff -Nru libreoffice-7.5.1~rc2/sw/source/filter/html/htmltabw.cxx libreoffice-7.5.2~rc2/sw/source/filter/html/htmltabw.cxx --- libreoffice-7.5.1~rc2/sw/source/filter/html/htmltabw.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/filter/html/htmltabw.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1057,6 +1057,7 @@ if( rHTMLWrt.m_bLFPossible ) rHTMLWrt.OutNewLine(); HTMLOutFuncs::Out_AsciiTag( rWrt.Strm(), Concat2View(rHTMLWrt.GetNamespace() + OOO_STRING_SVTOOLS_HTML_dd) ); + rHTMLWrt.IncIndentLevel(); } // eFlyHoriOri and eTabHoriOri now only contain the values of @@ -1183,6 +1184,15 @@ // move Pam behind the table rHTMLWrt.m_pCurrentPam->GetPoint()->Assign( *rNode.EndOfSectionNode() ); + if (nNewDefListLvl) + { + rHTMLWrt.DecIndentLevel(); + if (rHTMLWrt.m_bLFPossible) + rHTMLWrt.OutNewLine(); + // close the dd element + HTMLOutFuncs::Out_AsciiTag(rWrt.Strm(), Concat2View(rHTMLWrt.GetNamespace() + OOO_STRING_SVTOOLS_HTML_dd), false); + } + if( bPreserveForm ) { rHTMLWrt.m_bPreserveForm = false; diff -Nru libreoffice-7.5.1~rc2/sw/source/filter/html/swhtml.cxx libreoffice-7.5.2~rc2/sw/source/filter/html/swhtml.cxx --- libreoffice-7.5.1~rc2/sw/source/filter/html/swhtml.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/filter/html/swhtml.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -2952,18 +2952,6 @@ pAttr = pPrev; continue; - case RES_LR_SPACE: - if( aAttrPam.GetPoint()->GetNodeIndex() == - aAttrPam.GetMark()->GetNodeIndex()) - { - // 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 @@ -2977,6 +2965,18 @@ m_xDoc->getIDocumentContentOperations().InsertItemSet(aAttrPam, aNewSet, SetAttrMode::DONTREPLACE); break; } + + case RES_LR_SPACE: + if( aAttrPam.GetPoint()->GetNodeIndex() == + aAttrPam.GetMark()->GetNodeIndex()) + { + // 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.5.1~rc2/sw/source/filter/ww8/docxattributeoutput.cxx libreoffice-7.5.2~rc2/sw/source/filter/ww8/docxattributeoutput.cxx --- libreoffice-7.5.1~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1476,13 +1476,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. @@ -1587,7 +1587,7 @@ m_pSerializer->mark(Tag_StartRun_3); // let's call it "postponed text" } -void DocxAttributeOutput::EndRun(const SwTextNode* pNode, sal_Int32 nPos, sal_Int32 nLen, bool /*bLastRun*/) +void DocxAttributeOutput::EndRun(const SwTextNode* pNode, sal_Int32 nPos, sal_Int32 nLen, bool bLastRun) { int nFieldsInPrevHyperlink = m_nFieldsInHyperlink; // Reset m_nFieldsInHyperlink if a new hyperlink is about to start @@ -1671,9 +1671,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; @@ -1742,7 +1742,7 @@ } // 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. @@ -1827,7 +1827,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) @@ -1931,7 +1931,7 @@ if ( m_pRedlineData ) { - EndRedline( m_pRedlineData ); + EndRedline( m_pRedlineData, bLastRun ); m_pRedlineData = nullptr; } @@ -3865,13 +3865,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++ ) ); @@ -3916,7 +3917,7 @@ } } -void DocxAttributeOutput::EndRedline( const SwRedlineData * pRedlineData ) +void DocxAttributeOutput::EndRedline( const SwRedlineData * pRedlineData, bool bLastRun ) { if ( !pRedlineData || m_bWritingField ) return; @@ -3942,7 +3943,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.5.1~rc2/sw/source/filter/ww8/docxattributeoutput.hxx libreoffice-7.5.2~rc2/sw/source/filter/ww8/docxattributeoutput.hxx --- libreoffice-7.5.1~rc2/sw/source/filter/ww8/docxattributeoutput.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/filter/ww8/docxattributeoutput.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -231,12 +231,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.5.1~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx libreoffice-7.5.2~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx --- libreoffice-7.5.1~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1077,10 +1077,6 @@ { SAL_INFO("sw.rtf", __func__ << ", (depth is " << m_nTableDepth << ")"); - // Trying to end the row without writing the required number of cells? Fill with empty ones. - for (sal_uInt32 i = 0; i < m_aCells[m_nTableDepth]; i++) - m_aAfterRuns.append(OOO_STRING_SVTOOLS_RTF_CELL); - if (m_nTableDepth > 1) { m_aAfterRuns.append( diff -Nru libreoffice-7.5.1~rc2/sw/source/ui/fldui/fldpage.cxx libreoffice-7.5.2~rc2/sw/source/ui/fldui/fldpage.cxx --- libreoffice-7.5.1~rc2/sw/source/ui/fldui/fldpage.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/ui/fldui/fldpage.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -120,6 +120,9 @@ SwView* pView = GetActiveView(); SwWrtShell *pSh = m_pWrtShell ? m_pWrtShell : pView->GetWrtShellPtr(); + if (!pSh) + return; + if (!IsFieldEdit()) // insert new field { SwInsertField_Data aData(nTypeId, nSubType, rPar1, rPar2, nFormatId, nullptr, cSeparator, bIsAutomaticLanguage ); diff -Nru libreoffice-7.5.1~rc2/sw/source/ui/misc/pggrid.cxx libreoffice-7.5.2~rc2/sw/source/ui/misc/pggrid.cxx --- libreoffice-7.5.1~rc2/sw/source/ui/misc/pggrid.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/ui/misc/pggrid.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -93,8 +93,7 @@ SwView *pView = ::GetActiveView(); if( pView ) { - SwWrtShell* pSh = pView->GetWrtShellPtr(); - if( pSh ) + if (SwWrtShell* pSh = pView->GetWrtShellPtr()) { m_bSquaredMode = pSh->GetDoc()->IsSquaredPageMode(); } diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/app/appenv.cxx libreoffice-7.5.2~rc2/sw/source/uibase/app/appenv.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/app/appenv.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/app/appenv.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -150,6 +150,9 @@ pNewView->AttrChangedNotify(nullptr); // so that SelectShell is being called pSh = pNewView->GetWrtShellPtr(); + if (!pSh) + return; + OUString aTmp = SwResId(STR_ENV_TITLE) + OUString::number( ++nTitleNo ); xDocSh->SetTitle( aTmp ); diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/app/applab.cxx libreoffice-7.5.2~rc2/sw/source/uibase/app/applab.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/app/applab.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/app/applab.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -207,6 +207,7 @@ SwWrtShell *pSh = pNewView->GetWrtShellPtr(); OSL_ENSURE( pSh, "missing WrtShell" ); + if (pSh) { // block for locks the dispatcher!! SwWait aWait( static_cast(*xDocSh), true ); diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/app/docsh2.cxx libreoffice-7.5.2~rc2/sw/source/uibase/app/docsh2.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/app/docsh2.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/app/docsh2.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1197,11 +1197,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.5.1~rc2/sw/source/uibase/dbui/dbmgr.cxx libreoffice-7.5.2~rc2/sw/source/uibase/dbui/dbmgr.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/dbui/dbmgr.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/dbui/dbmgr.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -919,49 +919,52 @@ } SwView* pWorkView = static_cast< SwView* >( pWorkFrame->GetViewShell() ); - SwWrtShell* pWorkWrtShell = pWorkView->GetWrtShellPtr(); - pWorkWrtShell->GetViewOptions()->SetIdle( false ); - pWorkView->AttrChangedNotify(nullptr);// in order for SelectShell to be called - SwDoc* pWorkDoc = pWorkWrtShell->GetDoc(); - pWorkDoc->GetIDocumentUndoRedo().DoUndo( false ); - pWorkDoc->ReplaceDocumentProperties( *pSourceDoc ); - - // import print settings - const SwPrintData &rPrintData = pSourceDoc->getIDocumentDeviceAccess().getPrintData(); - pWorkDoc->getIDocumentDeviceAccess().setPrintData(rPrintData); - const JobSetup *pJobSetup = pSourceDoc->getIDocumentDeviceAccess().getJobsetup(); - if (pJobSetup) - pWorkDoc->getIDocumentDeviceAccess().setJobsetup(*pJobSetup); - - if( aType == WorkingDocType::TARGET ) - { - assert( !ppDBManager ); - pWorkDoc->SetInMailMerge( true ); - pWorkWrtShell->SetLabelDoc( false ); - } - else + + if (SwWrtShell* pWorkWrtShell = pWorkView->GetWrtShellPtr()) { - // We have to swap the DBmanager of the new doc, so we also need input - assert(ppDBManager && *ppDBManager); - SwDBManager *pWorkDBManager = pWorkDoc->GetDBManager(); - pWorkDoc->SetDBManager( *ppDBManager ); - *ppDBManager = pWorkDBManager; + pWorkWrtShell->GetViewOptions()->SetIdle( false ); + pWorkView->AttrChangedNotify(nullptr);// in order for SelectShell to be called + SwDoc* pWorkDoc = pWorkWrtShell->GetDoc(); + pWorkDoc->GetIDocumentUndoRedo().DoUndo( false ); + pWorkDoc->ReplaceDocumentProperties( *pSourceDoc ); + + // import print settings + const SwPrintData &rPrintData = pSourceDoc->getIDocumentDeviceAccess().getPrintData(); + pWorkDoc->getIDocumentDeviceAccess().setPrintData(rPrintData); + const JobSetup *pJobSetup = pSourceDoc->getIDocumentDeviceAccess().getJobsetup(); + if (pJobSetup) + pWorkDoc->getIDocumentDeviceAccess().setJobsetup(*pJobSetup); - if( aType == WorkingDocType::SOURCE ) + if( aType == WorkingDocType::TARGET ) { - // the GetDBData call constructs the data, if it's missing - kind of const... - pWorkWrtShell->ChgDBData( const_cast(pSourceDoc)->GetDBData() ); - // some DocumentSettings are currently not copied by SwDoc::CreateCopy - pWorkWrtShell->SetLabelDoc( rSourceWrtShell.IsLabelDoc() ); - pWorkDoc->getIDocumentState().ResetModified(); + assert( !ppDBManager ); + pWorkDoc->SetInMailMerge( true ); + pWorkWrtShell->SetLabelDoc( false ); } else - pWorkDoc->getIDocumentLinksAdministration().EmbedAllLinks(); - } + { + // We have to swap the DBmanager of the new doc, so we also need input + assert(ppDBManager && *ppDBManager); + SwDBManager *pWorkDBManager = pWorkDoc->GetDBManager(); + pWorkDoc->SetDBManager( *ppDBManager ); + *ppDBManager = pWorkDBManager; - if( pView ) *pView = pWorkView; - if( pWrtShell ) *pWrtShell = pWorkWrtShell; - if( pDoc ) *pDoc = pWorkDoc; + if( aType == WorkingDocType::SOURCE ) + { + // the GetDBData call constructs the data, if it's missing - kind of const... + pWorkWrtShell->ChgDBData( const_cast(pSourceDoc)->GetDBData() ); + // some DocumentSettings are currently not copied by SwDoc::CreateCopy + pWorkWrtShell->SetLabelDoc( rSourceWrtShell.IsLabelDoc() ); + pWorkDoc->getIDocumentState().ResetModified(); + } + else + pWorkDoc->getIDocumentLinksAdministration().EmbedAllLinks(); + } + + if( pView ) *pView = pWorkView; + if( pWrtShell ) *pWrtShell = pWorkWrtShell; + if( pDoc ) *pDoc = pWorkDoc; + } return xWorkObjectShell.get(); } @@ -1223,8 +1226,11 @@ else if( pTargetView ) { pTargetShell = pTargetView->GetWrtShellPtr(); - pTargetDoc = pTargetShell->GetDoc(); - xTargetDocShell = pTargetView->GetDocShell(); + if (pTargetShell) + { + pTargetDoc = pTargetShell->GetDoc(); + xTargetDocShell = pTargetView->GetDocShell(); + } } if( bCreateSingleFile ) diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/docvw/AnnotationWin2.cxx libreoffice-7.5.2~rc2/sw/source/uibase/docvw/AnnotationWin2.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/docvw/AnnotationWin2.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/docvw/AnnotationWin2.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -348,7 +348,6 @@ mxVScrollbar->connect_vadjustment_changed(LINK(this, SwAnnotationWin, ScrollHdl)); mxVScrollbar->connect_mouse_move(LINK(this, SwAnnotationWin, MouseMoveHdl)); - const SwViewOption* pVOpt = mrView.GetWrtShellPtr()->GetViewOptions(); EEControlBits nCntrl = mpOutliner->GetControlWord(); // TODO: crash when AUTOCOMPLETE enabled nCntrl |= EEControlBits::MARKFIELDS | EEControlBits::PASTESPECIAL | EEControlBits::AUTOCORRECT | EEControlBits::USECHARATTRIBS; // | EEControlBits::AUTOCOMPLETE; @@ -356,10 +355,15 @@ nCntrl |= EEControlBits::MARKFIELDS; else nCntrl &= ~EEControlBits::MARKFIELDS; - if (pVOpt->IsOnlineSpell()) - nCntrl |= EEControlBits::ONLINESPELLING; - else - nCntrl &= ~EEControlBits::ONLINESPELLING; + + if (SwWrtShell* pWrtShell = mrView.GetWrtShellPtr()) + { + const SwViewOption* pVOpt = pWrtShell->GetViewOptions(); + if (pVOpt->IsOnlineSpell()) + nCntrl |= EEControlBits::ONLINESPELLING; + else + nCntrl &= ~EEControlBits::ONLINESPELLING; + } mpOutliner->SetControlWord(nCntrl); std::size_t aIndex = SW_MOD()->InsertRedlineAuthor(GetAuthor()); @@ -453,7 +457,10 @@ mxMenuButton->set_background(mColorDark); - const Fraction& rFraction = mrView.GetWrtShellPtr()->GetOut()->GetMapMode().GetScaleY(); + SwWrtShell* pWrtShell = mrView.GetWrtShellPtr(); + if (!pWrtShell) + return; + const Fraction& rFraction = pWrtShell->GetOut()->GetMapMode().GetScaleY(); ScopedVclPtrInstance xVirDev; Size aSize(tools::Long(METABUTTON_WIDTH * rFraction), @@ -503,7 +510,11 @@ aMode.SetOrigin( Point() ); SetMapMode( aMode ); mxSidebarTextControl->SetMapMode( aMode ); - const Fraction& rFraction = mrView.GetWrtShellPtr()->GetOut()->GetMapMode().GetScaleY(); + + SwWrtShell* pWrtShell = mrView.GetWrtShellPtr(); + if (!pWrtShell) + return; + const Fraction& rFraction = pWrtShell->GetOut()->GetMapMode().GetScaleY(); vcl::Font aFont = maLabelFont; sal_Int32 nHeight = tools::Long(aFont.GetFontHeight() * rFraction); @@ -930,17 +941,20 @@ GetOutlinerView()->SetSelection(aOld); mpOutliner->SetModifyHdl( aLink ); - const SwViewOption* pVOpt = mrView.GetWrtShellPtr()->GetViewOptions(); EEControlBits nCntrl = mpOutliner->GetControlWord(); // turn off nCntrl &= ~EEControlBits::ONLINESPELLING; mpOutliner->SetControlWord(nCntrl); - //turn back on - if (pVOpt->IsOnlineSpell()) - nCntrl |= EEControlBits::ONLINESPELLING; - else - nCntrl &= ~EEControlBits::ONLINESPELLING; + if (SwWrtShell* pWrtShell = mrView.GetWrtShellPtr()) + { + const SwViewOption* pVOpt = pWrtShell->GetViewOptions(); + //turn back on + if (pVOpt->IsOnlineSpell()) + nCntrl |= EEControlBits::ONLINESPELLING; + else + nCntrl &= ~EEControlBits::ONLINESPELLING; + } mpOutliner->SetControlWord(nCntrl); mpOutliner->CompleteOnlineSpelling(); @@ -1009,7 +1023,8 @@ // when cursor out of visible area GetOutlinerView()->ShowCursor(false); - mpOutlinerView->GetEditView().SetInsertMode(mrView.GetWrtShellPtr()->IsInsMode()); + if (SwWrtShell* pWrtShell = mrView.GetWrtShellPtr()) + mpOutlinerView->GetEditView().SetInsertMode(pWrtShell->IsInsMode()); if ( !Application::GetSettings().GetStyleSettings().GetHighContrastMode() ) GetOutlinerView()->SetBackgroundColor(mColorDark); @@ -1228,8 +1243,13 @@ int SwAnnotationWin::GetPrefScrollbarWidth() const { - const Fraction& f(mrView.GetWrtShellPtr()->GetOut()->GetMapMode().GetScaleY()); - return tools::Long(Application::GetSettings().GetStyleSettings().GetScrollBarSize() * f); + if (SwWrtShell* pWrtShell = mrView.GetWrtShellPtr()) + { + const Fraction& f(pWrtShell->GetOut()->GetMapMode().GetScaleY()); + return tools::Long(Application::GetSettings().GetStyleSettings().GetScrollBarSize() * f); + } + else + return tools::Long(Application::GetSettings().GetStyleSettings().GetScrollBarSize()); } sal_Int32 SwAnnotationWin::GetMetaHeight() const @@ -1256,22 +1276,30 @@ sal_Int32 SwAnnotationWin::GetMinimumSizeWithoutMeta() const { - const Fraction& f(mrView.GetWrtShellPtr()->GetOut()->GetMapMode().GetScaleY()); - return tools::Long(POSTIT_MINIMUMSIZE_WITHOUT_META * f); + if (SwWrtShell* pWrtShell = mrView.GetWrtShellPtr()) + { + const Fraction& f(pWrtShell->GetOut()->GetMapMode().GetScaleY()); + return tools::Long(POSTIT_MINIMUMSIZE_WITHOUT_META * f); + } + else + return tools::Long(POSTIT_MINIMUMSIZE_WITHOUT_META); } void SwAnnotationWin::SetSpellChecking() { - const SwViewOption* pVOpt = mrView.GetWrtShellPtr()->GetViewOptions(); - EEControlBits nCntrl = mpOutliner->GetControlWord(); - if (pVOpt->IsOnlineSpell()) - nCntrl |= EEControlBits::ONLINESPELLING; - else - nCntrl &= ~EEControlBits::ONLINESPELLING; - mpOutliner->SetControlWord(nCntrl); + if (SwWrtShell* pWrtShell = mrView.GetWrtShellPtr()) + { + const SwViewOption* pVOpt = pWrtShell->GetViewOptions(); + EEControlBits nCntrl = mpOutliner->GetControlWord(); + if (pVOpt->IsOnlineSpell()) + nCntrl |= EEControlBits::ONLINESPELLING; + else + nCntrl &= ~EEControlBits::ONLINESPELLING; + mpOutliner->SetControlWord(nCntrl); - mpOutliner->CompleteOnlineSpelling(); - Invalidate(); + mpOutliner->CompleteOnlineSpelling(); + Invalidate(); + } } void SwAnnotationWin::SetViewState(ViewState bViewState) diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/docvw/AnnotationWin.cxx libreoffice-7.5.2~rc2/sw/source/uibase/docvw/AnnotationWin.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/docvw/AnnotationWin.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/docvw/AnnotationWin.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -207,8 +207,11 @@ { bool oldState = IsResolved(); static_cast(mpFormatField->GetField())->SetResolved(resolved); - const SwViewOption* pVOpt = mrView.GetWrtShellPtr()->GetViewOptions(); - mrSidebarItem.mbShow = !IsResolved() || (pVOpt->IsResolvedPostIts()); + if (SwWrtShell* pWrtShell = mrView.GetWrtShellPtr()) + { + const SwViewOption* pVOpt = pWrtShell->GetViewOptions(); + mrSidebarItem.mbShow = !IsResolved() || (pVOpt->IsResolvedPostIts()); + } mpTextRangeOverlay.reset(); @@ -315,7 +318,8 @@ void SwAnnotationWin::Delete() { collectUIInformation("DELETE",get_id()); - if (!mrView.GetWrtShellPtr()->GotoField(*mpFormatField)) + SwWrtShell* pWrtShell = mrView.GetWrtShellPtr(); + if (!(pWrtShell && pWrtShell->GotoField(*mpFormatField))) return; if ( mrMgr.GetActiveSidebarWin() == this) @@ -330,8 +334,8 @@ } // we delete the field directly, the Mgr cleans up the PostIt by listening GrabFocusToDocument(); - mrView.GetWrtShellPtr()->ClearMark(); - mrView.GetWrtShellPtr()->DelRight(); + pWrtShell->ClearMark(); + pWrtShell->DelRight(); } void SwAnnotationWin::GotoPos() diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/docvw/edtwin2.cxx libreoffice-7.5.2~rc2/sw/source/uibase/docvw/edtwin2.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/docvw/edtwin2.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/docvw/edtwin2.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -441,12 +441,8 @@ void SwEditWin::PrePaint(vcl::RenderContext& /*rRenderContext*/) { - SwWrtShell* pWrtShell = GetView().GetWrtShellPtr(); - - if(pWrtShell) - { + if (SwWrtShell* pWrtShell = GetView().GetWrtShellPtr()) pWrtShell->PrePaint(); - } } void SwEditWin::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/misc/redlndlg.cxx libreoffice-7.5.2~rc2/sw/source/uibase/misc/redlndlg.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/misc/redlndlg.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/misc/redlndlg.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -100,6 +100,8 @@ { // doc-switch SwWait aWait( *pDocSh, false ); SwWrtShell* pSh = pView->GetWrtShellPtr(); + if (!pSh) + return; m_pChildWin->SetOldDocShell(pDocSh); // avoid recursion (using modified-Hdl) @@ -389,6 +391,9 @@ // did something change? SwWrtShell* pSh = pView->GetWrtShellPtr(); + if (!pSh) + return; + SwRedlineTable::size_type nCount = pSh->GetRedlineCount(); // check the number of pointers @@ -488,6 +493,9 @@ rTreeView.freeze(); SwView *pView = ::GetActiveView(); SwWrtShell* pSh = pView->GetWrtShellPtr(); + if (!pSh) + return SwRedlineTable::npos; + bool bHasRedlineAutoFormat = HasRedlineAutoFormat(); SwRedlineDataParent *const pParent = m_RedlineParents[nStart].get(); const SwRangeRedline& rRedln = pSh->GetRedline(nStart); @@ -655,6 +663,9 @@ void SwRedlineAcceptDlg::RemoveParents(SwRedlineTable::size_type nStart, SwRedlineTable::size_type nEnd) { SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); + if (!pSh) + return; + SwRedlineTable::size_type nCount = pSh->GetRedlineCount(); std::vector aLBoxArr; @@ -735,6 +746,9 @@ return; SwWrtShell* pSh = pView->GetWrtShellPtr(); + if (!pSh) + return; + bool bHasRedlineAutoFormat = HasRedlineAutoFormat(); SwRedlineTable::size_type nCount = pSh->GetRedlineCount(); @@ -913,6 +927,9 @@ void SwRedlineAcceptDlg::CallAcceptReject( bool bSelect, bool bAccept ) { SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); + if (!pSh) + return; + int nPos = -1; typedef std::vector> ListBoxEntries_t; @@ -1053,10 +1070,14 @@ SwRedlineTable::size_type SwRedlineAcceptDlg::GetRedlinePos(const weld::TreeIter& rEntry) { - SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); - weld::TreeView& rTreeView = m_pTable->GetWidget(); - return pSh->FindRedlineOfData( *static_cast(weld::fromId( - rTreeView.get_id(rEntry))->pData)->pData ); + if (SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr()) + { + weld::TreeView& rTreeView = m_pTable->GetWidget(); + return pSh->FindRedlineOfData( *static_cast(weld::fromId( + rTreeView.get_id(rEntry))->pData)->pData ); + } + else + return SwRedlineTable::npos; } IMPL_LINK_NOARG(SwRedlineAcceptDlg, AcceptHdl, SvxTPView*, void) @@ -1108,9 +1129,12 @@ IMPL_LINK_NOARG(SwRedlineAcceptDlg, GotoHdl, Timer *, void) { - SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); m_aSelectTimer.Stop(); + SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); + if (!pSh) + return; + bool bIsNotFormated = false; bool bSel = false; @@ -1205,6 +1229,9 @@ return false; SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); + if (!pSh) + return false; + const SwRangeRedline *pRed = nullptr; weld::TreeView& rTreeView = m_pTable->GetWidget(); diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/ribbar/inputwin.cxx libreoffice-7.5.2~rc2/sw/source/uibase/ribbar/inputwin.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/ribbar/inputwin.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/ribbar/inputwin.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -191,12 +191,11 @@ { m_bIsTable = false; // stop rulers - if (m_pView) + if (m_pView && m_pWrtShell) { m_pView->GetHRuler().SetActive( false ); m_pView->GetVRuler().SetActive( false ); - OSL_ENSURE(m_pWrtShell, "no WrtShell!"); // Cursor in table m_bIsTable = m_pWrtShell->IsCursorInTable(); @@ -332,7 +331,7 @@ // in case it was created while loading the document, the active view // wasn't initialised at that time, so ShowWin() didn't initialise anything // either - nothing to do - if (!m_pView) + if (!m_pView || !m_pWrtShell) { // presumably there must be an active view now since the event arrived SwView *const pActiveView = ::GetActiveView(); @@ -365,7 +364,7 @@ // in case it was created while loading the document, the active view // wasn't initialised at that time, so ShowWin() didn't initialise anything // either - nothing to do - if (!m_pView) + if (!m_pView || !m_pWrtShell) { // presumably there must be an active view now since the event arrived SwView *const pActiveView = ::GetActiveView(); @@ -394,7 +393,7 @@ IMPL_LINK( SwInputWindow, SelTableCellsNotify, SwWrtShell&, rCaller, void ) { - if(m_bIsTable) + if(m_pWrtShell && m_bIsTable) { SwFrameFormat* pTableFormat = rCaller.GetTableFormat(); OUString sBoxNms( rCaller.GetBoxNms() ); @@ -447,7 +446,7 @@ IMPL_LINK_NOARG(SwInputWindow, ModifyHdl, weld::Entry&, void) { - if (m_bIsTable && m_bResetUndo) + if (m_pWrtShell && m_bIsTable && m_bResetUndo) { m_pWrtShell->StartAllAction(); DelBoxContent(); @@ -461,7 +460,7 @@ void SwInputWindow::DelBoxContent() { - if( m_bIsTable ) + if( m_pWrtShell && m_bIsTable ) { m_pWrtShell->StartAllAction(); m_pWrtShell->ClearMark(); diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/shells/langhelper.cxx libreoffice-7.5.2~rc2/sw/source/uibase/shells/langhelper.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/shells/langhelper.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/shells/langhelper.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -177,21 +177,24 @@ // when setting a new language attribute if (bForSelection) { - const SwViewOption* pVOpt = rView.GetWrtShellPtr()->GetViewOptions(); - EEControlBits nCntrl = pEditEngine->GetControlWord(); - // turn off - nCntrl &= ~EEControlBits::ONLINESPELLING; - pEditEngine->SetControlWord(nCntrl); - - //turn back on - if (pVOpt->IsOnlineSpell()) - nCntrl |= EEControlBits::ONLINESPELLING; - else + if (SwWrtShell* pWrtShell = rView.GetWrtShellPtr()) + { + const SwViewOption* pVOpt = pWrtShell->GetViewOptions(); + EEControlBits nCntrl = pEditEngine->GetControlWord(); + // turn off nCntrl &= ~EEControlBits::ONLINESPELLING; - pEditEngine->SetControlWord(nCntrl); + pEditEngine->SetControlWord(nCntrl); + + //turn back on + if (pVOpt->IsOnlineSpell()) + nCntrl |= EEControlBits::ONLINESPELLING; + else + nCntrl &= ~EEControlBits::ONLINESPELLING; + pEditEngine->SetControlWord(nCntrl); - pEditEngine->CompleteOnlineSpelling(); - rEditView.Invalidate(); + pEditEngine->CompleteOnlineSpelling(); + rEditView.Invalidate(); + } } if (!bForSelection) diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/shells/tabsh.cxx libreoffice-7.5.2~rc2/sw/source/uibase/shells/tabsh.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/shells/tabsh.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/shells/tabsh.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -175,7 +175,7 @@ rSet.Put(*aBoxDirection); } - bool bSelectAll = rSh.StartsWithTable() && rSh.ExtendedSelectedAll(); + bool bSelectAll = rSh.StartsWith_() == SwCursorShell::StartsWith::Table && rSh.ExtendedSelectedAll(); bool bTableSel = rSh.IsTableMode() || bSelectAll; if(!bTableSel) { diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/uiview/view.cxx libreoffice-7.5.2~rc2/sw/source/uibase/uiview/view.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/uiview/view.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/uiview/view.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -185,10 +185,10 @@ const_cast< SwView* >( this )->AttrChangedNotify(nullptr); } } - if( GetWrtShellPtr() ) + if (SwWrtShell* pWrtShell = GetWrtShellPtr()) { SwWrtShell& rWrtShell = GetWrtShell(); - rWrtShell.GetDoc()->getIDocumentLayoutAccess().SetCurrentViewShell( GetWrtShellPtr() ); + rWrtShell.GetDoc()->getIDocumentLayoutAccess().SetCurrentViewShell( pWrtShell ); rWrtShell.GetDoc()->getIDocumentSettingAccess().set( DocumentSettingId::BROWSE_MODE, rWrtShell.GetViewOptions()->getBrowseMode() ); } @@ -528,6 +528,11 @@ if ( GetEditWin().IsChainMode() ) GetEditWin().SetChainMode( false ); + if (!m_pWrtShell || !GetDocShell()) + { + return; + } + //Opt: Not if PaintLocked. During unlock a notify will be once more triggered. if( !m_pWrtShell->IsPaintLocked() && !g_bNoInterrupt && GetDocShell()->IsReadOnly() ) @@ -1931,8 +1936,7 @@ tools::Rectangle SwView::getLOKVisibleArea() const { - SwViewShell* pVwSh = GetWrtShellPtr(); - if (pVwSh) + if (SwViewShell* pVwSh = GetWrtShellPtr()) return pVwSh->getLOKVisibleArea(); else return tools::Rectangle(); @@ -1940,16 +1944,16 @@ void SwView::flushPendingLOKInvalidateTiles() { - SwWrtShell* pSh = GetWrtShellPtr(); - assert(pSh); - pSh->FlushPendingLOKInvalidateTiles(); + if (SwWrtShell* pSh = GetWrtShellPtr()) + pSh->FlushPendingLOKInvalidateTiles(); } std::optional SwView::getLOKPayload(int nType, int nViewId) const { - SwWrtShell* pSh = GetWrtShellPtr(); - assert(pSh); - return pSh->getLOKPayload(nType, nViewId); + if (SwWrtShell* pSh = GetWrtShellPtr()) + return pSh->getLOKPayload(nType, nViewId); + else + return std::nullopt; } OUString SwView::GetDataSourceName() const diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/uno/unomailmerge.cxx libreoffice-7.5.2~rc2/sw/source/uibase/uno/unomailmerge.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/uno/unomailmerge.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/uno/unomailmerge.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -591,7 +591,6 @@ SwView *pView = pFrame ? dynamic_cast( pFrame->GetViewShell() ) : nullptr; if (!pView) throw RuntimeException(); - SwWrtShell &rSh = *pView->GetWrtShellPtr(); // avoid assertion in 'Update' from Sfx by supplying a shell // and thus avoiding the SelectShell call in Writers GetState function @@ -662,6 +661,7 @@ throw IllegalArgumentException("Invalid value of property: OutputType", static_cast < cppu::OWeakObject * > ( this ), 0 ); } + SwWrtShell &rSh = pView->GetWrtShell(); SwDBManager* pMgr = rSh.GetDBManager(); //force layout creation rSh.CalcLayout(); diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/uno/unotxdoc.cxx libreoffice-7.5.2~rc2/sw/source/uibase/uno/unotxdoc.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/uno/unotxdoc.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/uno/unotxdoc.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -2653,14 +2653,6 @@ if (0 > nRenderer) throw IllegalArgumentException(); - // TODO/mba: we really need a generic way to get the SwViewShell! - SwViewShell* pVwSh = nullptr; - SwView* pSwView = dynamic_cast( pView ); - if ( pSwView ) - pVwSh = pSwView->GetWrtShellPtr(); - else - pVwSh = static_cast(pView)->GetViewShell(); - sal_Int32 nMaxRenderer = 0; if (!bIsSwSrcView && m_pRenderData) { @@ -2751,11 +2743,22 @@ } else { - aTmpSize = pVwSh->GetPageSize( nPage, bIsSkipEmptyPages ); - aPageSize = awt::Size ( convertTwipToMm100( aTmpSize.Width() ), - convertTwipToMm100( aTmpSize.Height() )); - Point aPoint = pVwSh->GetPagePos(nPage); - aPagePos = awt::Point(convertTwipToMm100(aPoint.X()), convertTwipToMm100(aPoint.Y())); + // TODO/mba: we really need a generic way to get the SwViewShell! + SwViewShell* pVwSh = nullptr; + SwView* pSwView = dynamic_cast( pView ); + if ( pSwView ) + pVwSh = pSwView->GetWrtShellPtr(); + else + pVwSh = static_cast(pView)->GetViewShell(); + + if (pVwSh) + { + aTmpSize = pVwSh->GetPageSize( nPage, bIsSkipEmptyPages ); + aPageSize = awt::Size ( convertTwipToMm100( aTmpSize.Width() ), + convertTwipToMm100( aTmpSize.Height() )); + Point aPoint = pVwSh->GetPagePos(nPage); + aPagePos = awt::Point(convertTwipToMm100(aPoint.X()), convertTwipToMm100(aPoint.Y())); + } } sal_Int32 nLen = 3; diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/uno/unotxvw.cxx libreoffice-7.5.2~rc2/sw/source/uibase/uno/unotxvw.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/uno/unotxvw.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/uno/unotxvw.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -710,24 +710,25 @@ SfxViewFrame* pDocFrame = SfxViewFrame::LoadHiddenDocument( *xDocSh, SFX_INTERFACE_NONE ); SwView* pDocView = static_cast( pDocFrame->GetViewShell() ); pDocView->AttrChangedNotify(nullptr);//So that SelectShell is called. - SwWrtShell* pSh = pDocView->GetWrtShellPtr(); + if (SwWrtShell* pSh = pDocView->GetWrtShellPtr()) + { + IDocumentDeviceAccess& rIDDA = pSh->getIDocumentDeviceAccess(); + SfxPrinter* pTempPrinter = rIDDA.getPrinter( true ); - IDocumentDeviceAccess& rIDDA = pSh->getIDocumentDeviceAccess(); - SfxPrinter* pTempPrinter = rIDDA.getPrinter( true ); + const SwPageDesc& rCurPageDesc = rOldSh.GetPageDesc(rOldSh.GetCurPageDesc()); - const SwPageDesc& rCurPageDesc = rOldSh.GetPageDesc(rOldSh.GetCurPageDesc()); + IDocumentDeviceAccess& rIDDA_old = rOldSh.getIDocumentDeviceAccess(); - IDocumentDeviceAccess& rIDDA_old = rOldSh.getIDocumentDeviceAccess(); + if( rIDDA_old.getPrinter( false ) ) + { + rIDDA.setJobsetup( *rIDDA_old.getJobsetup() ); + //#69563# if it isn't the same printer then the pointer has been invalidated! + pTempPrinter = rIDDA.getPrinter( true ); + } - if( rIDDA_old.getPrinter( false ) ) - { - rIDDA.setJobsetup( *rIDDA_old.getJobsetup() ); - //#69563# if it isn't the same printer then the pointer has been invalidated! - pTempPrinter = rIDDA.getPrinter( true ); + pTempPrinter->SetPaperBin(rCurPageDesc.GetMaster().GetPaperBin().GetValue()); } - pTempPrinter->SetPaperBin(rCurPageDesc.GetMaster().GetPaperBin().GetValue()); - return xDocSh; } diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/utlui/content.cxx libreoffice-7.5.2~rc2/sw/source/uibase/utlui/content.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/utlui/content.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/utlui/content.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -3722,13 +3722,14 @@ // No update while drag and drop. // Query view because the Navigator is cleared too late. SwView* pView = GetParentWindow()->GetCreateView(); - if(pView && pView->GetWrtShellPtr() && pView->GetWrtShellPtr()->GetWin() && - (pView->GetWrtShellPtr()->GetWin()->HasFocus() || m_bDocHasChanged || m_bViewHasChanged) && - !IsInDrag() && !pView->GetWrtShellPtr()->ActionPend()) + + SwWrtShell* pActShell = pView ? pView->GetWrtShellPtr() : nullptr; + if(pActShell && pActShell->GetWin() && + (pActShell->GetWin()->HasFocus() || m_bDocHasChanged || m_bViewHasChanged) && + !IsInDrag() && !pActShell->ActionPend()) { if (m_bDocHasChanged || m_bViewHasChanged) { - SwWrtShell* pActShell = pView->GetWrtShellPtr(); if (State::CONSTANT == m_eState && !lcl_FindShell(m_pActiveShell)) { SetActiveShell(pActShell); diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/utlui/navipi.cxx libreoffice-7.5.2~rc2/sw/source/uibase/utlui/navipi.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/utlui/navipi.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/utlui/navipi.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -663,8 +663,9 @@ if(IsGlobalDoc()) { SwView *pActView = GetCreateView(); - m_xGlobalToolBox->set_item_active("save", - pActView->GetWrtShellPtr()->IsGlblDocSaveLinks()); + if (pActView && pActView->GetWrtShellPtr()) + m_xGlobalToolBox->set_item_active("save", + pActView->GetWrtShellPtr()->IsGlblDocSaveLinks()); if (m_pConfig->IsGlobalActive()) ToggleTree(); if (bFloatingNavigator) diff -Nru libreoffice-7.5.1~rc2/sw/source/uibase/wrtsh/select.cxx libreoffice-7.5.2~rc2/sw/source/uibase/wrtsh/select.cxx --- libreoffice-7.5.1~rc2/sw/source/uibase/wrtsh/select.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/source/uibase/wrtsh/select.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -162,7 +162,7 @@ SttSelect(); GoEnd(true, &bMoveTable); - bool bNeedsExtendedSelectAll = StartsWithTable(); + bool bNeedsExtendedSelectAll = StartsWith_() != StartsWith::None; // If the cursor was in a table, then we only need the extended select // all if the whole table is already selected, to still allow selecting diff -Nru libreoffice-7.5.1~rc2/sw/uiconfig/swriter/ui/frmaddpage.ui libreoffice-7.5.2~rc2/sw/uiconfig/swriter/ui/frmaddpage.ui --- libreoffice-7.5.1~rc2/sw/uiconfig/swriter/ui/frmaddpage.ui 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/sw/uiconfig/swriter/ui/frmaddpage.ui 2023-03-24 16:53:38.000000000 +0000 @@ -18,7 +18,7 @@ 12 24 - + True False True @@ -26,8 +26,8 @@ 0 none - - + + True False 12 @@ -37,113 +37,146 @@ 6 12 - - True - True - True - True - 50 - True - - - Enter a name for the selected item. - - - - - 1 - 0 - - - - - True - True - True - True - 50 - True - - - 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. For images, this text is exported with an appropriate tag to HTML and PDF format. - - - - - 1 - 1 - - - - - True - False - _Name: - True - name - 0 - - - 0 - 0 - - - - - True - False - Text _Alternative: - Give a short description for users who do not see this object. - True - altname - 0 - - - 0 - 1 - - - - + True False - _Description: - Give a longer explanation of the content if it is too complex to be described briefly in “Text Alternative.” - True - description - 0 - - - 0 - 2 - - - - - True - True True True - in + 0 + none - + + True - True + False + 0 + 0 True True - word - textbuffer1 - - - 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.” This text is available for use by assistive technologies. For images, this text is exported with an appropriate tag to HTML and PDF format. + 6 + 12 + + + True + True + True + True + 50 + True + + + Enter a name for the selected item. + + + + 1 + 0 + + + + True + True + True + True + 50 + True + + + 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. For images, this text is exported with an appropriate tag to HTML and PDF format. + + + + + 1 + 1 + + + + + True + False + _Name: + True + name + 0 + + + 0 + 0 + + + + + True + False + Text _Alternative: + Give a short description for users who do not see this object. + True + altname + 0 + + + 0 + 1 + + + + + True + False + _Description: + Give a longer explanation of the content if it is too complex to be described briefly in “Text Alternative.” + True + description + 0 + + + 0 + 2 + + + + + True + True + True + True + in + + + True + True + True + True + word + textbuffer1 + + + 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.” This text is available for use by assistive technologies. For images, this text is exported with an appropriate tag to HTML and PDF format. + + + + + + + 1 + 2 + + + + + + + False + False - 1 - 2 + 0 + 1 @@ -162,8 +195,7 @@ 0 - 3 - 2 + 2 Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/tarballs/curl-7.87.0.tar.xz and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/tarballs/curl-7.87.0.tar.xz differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/tarballs/curl-8.0.1.tar.xz and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/tarballs/curl-8.0.1.tar.xz differ diff -Nru libreoffice-7.5.1~rc2/tarballs/fetch.log libreoffice-7.5.2~rc2/tarballs/fetch.log --- libreoffice-7.5.1~rc2/tarballs/fetch.log 2023-02-09 12:57:19.000000000 +0000 +++ libreoffice-7.5.2~rc2/tarballs/fetch.log 2023-03-24 17:12:02.000000000 +0000 @@ -1,1408 +1,1408 @@ -Do 9. Feb 13:45:48 CET 2023 ---2023-02-09 13:45:48-- https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz +Fr 24. Mär 18:06:05 CET 2023 +--2023-03-24 18:06:05-- 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,66M=0,2s + 0K .... 100% 1,80M=0,2s -2023-02-09 13:45:51 (1,66 MB/s) - ‘./libabw-0.1.3.tar.xz’ gespeichert [318808/318808] +2023-03-24 18:06:08 (1,80 MB/s) - ‘./libabw-0.1.3.tar.xz’ gespeichert [318808/318808] ---2023-02-09 13:45:51-- https://dev-www.libreoffice.org/src/boost_1_80_0.tar.xz +--2023-03-24 18:06:08-- https://dev-www.libreoffice.org/src/boost_1_80_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: 17696788 (17M) [application/octet-stream] Wird in ‘./boost_1_80_0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 17% 2,67M 5s - 3072K ........ ........ ........ ........ ........ ........ 35% 2,40M 4s - 6144K ........ ........ ........ ........ ........ ........ 53% 1,15M 4s - 9216K ........ ........ ........ ........ ........ ........ 71% 973K 3s - 12288K ........ ........ ........ ........ ........ ........ 88% 1,49M 1s - 15360K ........ ........ ........ ...... 100% 2,01M=11s + 0K ........ ........ ........ ........ ........ ........ 17% 2,04M 7s + 3072K ........ ........ ........ ........ ........ ........ 35% 1,58M 6s + 6144K ........ ........ ........ ........ ........ ........ 53% 1,22M 5s + 9216K ........ ........ ........ ........ ........ ........ 71% 1,42M 3s + 12288K ........ ........ ........ ........ ........ ........ 88% 1,23M 1s + 15360K ........ ........ ........ ...... 100% 1,42M=12s -2023-02-09 13:46:03 (1,52 MB/s) - ‘./boost_1_80_0.tar.xz’ gespeichert [17696788/17696788] +2023-03-24 18:06:20 (1,44 MB/s) - ‘./boost_1_80_0.tar.xz’ gespeichert [17696788/17696788] ---2023-02-09 13:46:03-- https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz +--2023-03-24 18:06:21-- 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,06M=1,1s + 0K ........ ........ .. 100% 1,59M=0,7s -2023-02-09 13:46:04 (1,06 MB/s) - ‘./box2d-2.4.1.tar.gz’ gespeichert [1224516/1224516] +2023-03-24 18:06:22 (1,59 MB/s) - ‘./box2d-2.4.1.tar.gz’ gespeichert [1224516/1224516] ---2023-02-09 13:46:04-- https://dev-www.libreoffice.org/src/breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz +--2023-03-24 18:06:22-- 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,97M 1s - 3072K ........ ........ ........ .... 100% 2,43M=2,3s + 0K ........ ........ ........ ........ ........ ........ 62% 984K 2s + 3072K ........ ........ ........ .... 100% 1,45M=4,3s -2023-02-09 13:46:07 (2,12 MB/s) - ‘./breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz’ gespeichert [5000956/5000956] +2023-03-24 18:06:26 (1,10 MB/s) - ‘./breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz’ gespeichert [5000956/5000956] ---2023-02-09 13:46:07-- https://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip +--2023-03-24 18:06:26-- 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% 2,51M=0,8s + 0K ........ ........ ........ ...... 100% 875K=2,2s -2023-02-09 13:46:08 (2,51 MB/s) - ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert [1997625/1997625] +2023-03-24 18:06:29 (875 KB/s) - ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert [1997625/1997625] ---2023-02-09 13:46:08-- https://dev-www.libreoffice.org/src/bzip2-1.0.8.tar.gz +--2023-03-24 18:06:29-- 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% 2,01M=0,4s + 0K ........ .... 100% 744K=1,1s -2023-02-09 13:46:09 (2,01 MB/s) - ‘./bzip2-1.0.8.tar.gz’ gespeichert [810029/810029] +2023-03-24 18:06:30 (744 KB/s) - ‘./bzip2-1.0.8.tar.gz’ gespeichert [810029/810029] ---2023-02-09 13:46:09-- https://dev-www.libreoffice.org/src/cairo-1.17.6.tar.xz +--2023-03-24 18:06:30-- 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,94M 16s - 3072K ........ ........ ........ ........ ........ ........ 17% 1,52M 16s - 6144K ........ ........ ........ ........ ........ ........ 26% 1,20M 16s - 9216K ........ ........ ........ ........ ........ ........ 35% 1,23M 15s - 12288K ........ ........ ........ ........ ........ ........ 44% 1,04M 14s - 15360K ........ ........ ........ ........ ........ ........ 53% 983K 12s - 18432K ........ ........ ........ ........ ........ ........ 62% 773K 11s - 21504K ........ ........ ........ ........ ........ ........ 71% 1,14M 8s - 24576K ........ ........ ........ ........ ........ ........ 80% 1,53M 5s - 27648K ........ ........ ........ ........ ........ ........ 89% 1,20M 3s - 30720K ........ ........ ........ ........ ........ ........ 98% 963K 0s - 33792K ...... 100% 914K=29s + 0K ........ ........ ........ ........ ........ ........ 8% 1015K 31s + 3072K ........ ........ ........ ........ ........ ........ 17% 1,25M 25s + 6144K ........ ........ ........ ........ ........ ........ 26% 1,59M 20s + 9216K ........ ........ ........ ........ ........ ........ 35% 1,58M 16s + 12288K ........ ........ ........ ........ ........ ........ 44% 770K 16s + 15360K ........ ........ ........ ........ ........ ........ 53% 857K 14s + 18432K ........ ........ ........ ........ ........ ........ 62% 859K 12s + 21504K ........ ........ ........ ........ ........ ........ 71% 1,16M 9s + 24576K ........ ........ ........ ........ ........ ........ 80% 1,29M 6s + 27648K ........ ........ ........ ........ ........ ........ 89% 1,01M 3s + 30720K ........ ........ ........ ........ ........ ........ 98% 784K 0s + 33792K ...... 100% 1,40M=32s -2023-02-09 13:46:38 (1,14 MB/s) - ‘./cairo-1.17.6.tar.xz’ gespeichert [35055900/35055900] +2023-03-24 18:07:03 (1,03 MB/s) - ‘./cairo-1.17.6.tar.xz’ gespeichert [35055900/35055900] ---2023-02-09 13:46:38-- https://dev-www.libreoffice.org/src/pixman-0.42.2.tar.gz +--2023-03-24 18:07:03-- 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% 790K=1,2s + 0K ........ ...... 100% 1,13M=0,8s -2023-02-09 13:46:40 (790 KB/s) - ‘./pixman-0.42.2.tar.gz’ gespeichert [959669/959669] +2023-03-24 18:07:04 (1,13 MB/s) - ‘./pixman-0.42.2.tar.gz’ gespeichert [959669/959669] ---2023-02-09 13:46:40-- https://dev-www.libreoffice.org/src/libcdr-0.1.7.tar.xz +--2023-03-24 18:07:04-- 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% 921K=0,7s + 0K ........ . 100% 1,14M=0,5s -2023-02-09 13:46:41 (921 KB/s) - ‘./libcdr-0.1.7.tar.xz’ gespeichert [618528/618528] +2023-03-24 18:07:05 (1,14 MB/s) - ‘./libcdr-0.1.7.tar.xz’ gespeichert [618528/618528] ---2023-02-09 13:46:41-- https://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz +--2023-03-24 18:07:05-- 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,01M=2,1s + 0K ........ ........ ........ ........ .. 100% 1,69M=1,3s -2023-02-09 13:46:43 (1,01 MB/s) - ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert [2241498/2241498] +2023-03-24 18:07:07 (1,69 MB/s) - ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert [2241498/2241498] ---2023-02-09 13:46:43-- https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz +--2023-03-24 18:07:07-- 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% 464K 3s - 3072K ........ ........ .. 100% 880K=7,9s + 0K ........ ........ ........ ........ ........ ........ 72% 1,32M 1s + 3072K ........ ........ .. 100% 1,62M=3,0s -2023-02-09 13:46:52 (533 KB/s) - ‘./dragonbox-1.1.3.tar.gz’ gespeichert [4337233/4337233] +2023-03-24 18:07:10 (1,39 MB/s) - ‘./dragonbox-1.1.3.tar.gz’ gespeichert [4337233/4337233] ---2023-02-09 13:46:52-- https://dev-www.libreoffice.org/src/dtoa-20180411.tgz +--2023-03-24 18:07:10-- 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,04M=0,05s + 0K 100% 1,05M=0,04s -2023-02-09 13:46:52 (1,04 MB/s) - ‘./dtoa-20180411.tgz’ gespeichert [48893/48893] +2023-03-24 18:07:10 (1,05 MB/s) - ‘./dtoa-20180411.tgz’ gespeichert [48893/48893] ---2023-02-09 13:46:52-- https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz +--2023-03-24 18:07:11-- 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% 566K=0,8s + 0K ....... 100% 1,25M=0,4s -2023-02-09 13:46:53 (566 KB/s) - ‘./libcmis-0.5.2.tar.xz’ gespeichert [484404/484404] +2023-03-24 18:07:11 (1,25 MB/s) - ‘./libcmis-0.5.2.tar.xz’ gespeichert [484404/484404] ---2023-02-09 13:46:53-- https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz +--2023-03-24 18:07:11-- 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% 772K 9s - 3072K ........ ........ ........ ........ ........ ........ 60% 493K 7s - 6144K ........ ........ ........ ........ ........ ........ 91% 992K 1s - 9216K ........ ..... 100% 839K=14s + 0K ........ ........ ........ ........ ........ ........ 30% 1,19M 6s + 3072K ........ ........ ........ ........ ........ ........ 60% 1,70M 3s + 6144K ........ ........ ........ ........ ........ ........ 91% 1,49M 1s + 9216K ........ ..... 100% 1,88M=6,8s -2023-02-09 13:47:08 (704 KB/s) - ‘./CoinMP-1.7.6.tgz’ gespeichert [10343849/10343849] +2023-03-24 18:07:18 (1,46 MB/s) - ‘./CoinMP-1.7.6.tgz’ gespeichert [10343849/10343849] ---2023-02-09 13:47:08-- https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz +--2023-03-24 18:07:18-- 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% 603K=1,3s + 0K ........ .... 100% 1,50M=0,5s -2023-02-09 13:47:10 (603 KB/s) - ‘./cppunit-1.15.1.tar.gz’ gespeichert [814363/814363] +2023-03-24 18:07:19 (1,50 MB/s) - ‘./cppunit-1.15.1.tar.gz’ gespeichert [814363/814363] ---2023-02-09 13:47:10-- https://dev-www.libreoffice.org/src/curl-7.87.0.tar.xz +--2023-03-24 18:07:19-- 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: 2547932 (2,4M) [application/octet-stream] -Wird in ‘./curl-7.87.0.tar.xz’ gespeichert. +Länge: 2575544 (2,5M) [application/octet-stream] +Wird in ‘./curl-8.0.1.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ...... 100% 656K=3,8s + 0K ........ ........ ........ ........ ....... 100% 2,08M=1,2s -2023-02-09 13:47:14 (656 KB/s) - ‘./curl-7.87.0.tar.xz’ gespeichert [2547932/2547932] +2023-03-24 18:07:21 (2,08 MB/s) - ‘./curl-8.0.1.tar.xz’ gespeichert [2575544/2575544] ---2023-02-09 13:47:14-- https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz +--2023-03-24 18:07:21-- 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% 587K=0,7s + 0K ...... 100% 1,71M=0,2s -2023-02-09 13:47:15 (587 KB/s) - ‘./libe-book-0.1.3.tar.xz’ gespeichert [416268/416268] +2023-03-24 18:07:21 (1,71 MB/s) - ‘./libe-book-0.1.3.tar.xz’ gespeichert [416268/416268] ---2023-02-09 13:47:15-- https://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz +--2023-03-24 18:07:21-- 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% 427K=1,1s + 0K ....... 100% 1,78M=0,2s -2023-02-09 13:47:16 (427 KB/s) - ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert [463264/463264] +2023-03-24 18:07:22 (1,78 MB/s) - ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert [463264/463264] ---2023-02-09 13:47:16-- https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz +--2023-03-24 18:07:22-- 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% 431K=0,7s + 0K .... 100% 1,61M=0,2s -2023-02-09 13:47:17 (431 KB/s) - ‘./libepubgen-0.1.1.tar.xz’ gespeichert [324380/324380] +2023-03-24 18:07:22 (1,61 MB/s) - ‘./libepubgen-0.1.1.tar.xz’ gespeichert [324380/324380] ---2023-02-09 13:47:17-- https://dev-www.libreoffice.org/src/libetonyek-0.1.10.tar.xz +--2023-03-24 18:07:22-- 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% 399K=3,7s + 0K ........ ........ ...... 100% 2,14M=0,7s -2023-02-09 13:47:21 (399 KB/s) - ‘./libetonyek-0.1.10.tar.xz’ gespeichert [1494000/1494000] +2023-03-24 18:07:23 (2,14 MB/s) - ‘./libetonyek-0.1.10.tar.xz’ gespeichert [1494000/1494000] ---2023-02-09 13:47:21-- https://dev-www.libreoffice.org/src/expat-2.5.0.tar.xz +--2023-03-24 18:07:23-- 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% 549K=0,8s + 0K ....... 100% 1,53M=0,3s -2023-02-09 13:47:23 (549 KB/s) - ‘./expat-2.5.0.tar.xz’ gespeichert [460560/460560] +2023-03-24 18:07:24 (1,53 MB/s) - ‘./expat-2.5.0.tar.xz’ gespeichert [460560/460560] ---2023-02-09 13:47:23-- https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2 +--2023-03-24 18:07:24-- 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% 489K 13s - 3072K ........ ........ ........ ........ ........ ........ 63% 426K 8s - 6144K ........ ........ ........ ........ ........ ........ 95% 380K 1s - 9216K ...... 100% 574K=22s + 0K ........ ........ ........ ........ ........ ........ 31% 2,30M 3s + 3072K ........ ........ ........ ........ ........ ........ 63% 1,03M 2s + 6144K ........ ........ ........ ........ ........ ........ 95% 1,21M 0s + 9216K ...... 100% 1,75M=6,9s -2023-02-09 13:47:45 (432 KB/s) - ‘./Firebird-3.0.7.33374-0.tar.bz2’ gespeichert [9841457/9841457] +2023-03-24 18:07:31 (1,36 MB/s) - ‘./Firebird-3.0.7.33374-0.tar.bz2’ gespeichert [9841457/9841457] ---2023-02-09 13:47:45-- https://dev-www.libreoffice.org/src/fontconfig-2.13.94.tar.xz +--2023-03-24 18:07:31-- 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% 365K=3,8s + 0K ........ ........ ..... 100% 892K=1,6s -2023-02-09 13:47:49 (365 KB/s) - ‘./fontconfig-2.13.94.tar.xz’ gespeichert [1416832/1416832] +2023-03-24 18:07:33 (892 KB/s) - ‘./fontconfig-2.13.94.tar.xz’ gespeichert [1416832/1416832] ---2023-02-09 13:47:49-- https://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz +--2023-03-24 18:07:33-- 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% 310K=1,6s + 0K ....... 100% 912K=0,6s -2023-02-09 13:47:51 (310 KB/s) - ‘./libfreehand-0.1.2.tar.xz’ gespeichert [516132/516132] +2023-03-24 18:07:34 (912 KB/s) - ‘./libfreehand-0.1.2.tar.xz’ gespeichert [516132/516132] ---2023-02-09 13:47:52-- https://dev-www.libreoffice.org/src/freetype-2.12.0.tar.xz +--2023-03-24 18:07:34-- 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% 355K=6,4s + 0K ........ ........ ........ ........ ... 100% 983K=2,3s -2023-02-09 13:47:58 (355 KB/s) - ‘./freetype-2.12.0.tar.xz’ gespeichert [2340352/2340352] +2023-03-24 18:07:37 (983 KB/s) - ‘./freetype-2.12.0.tar.xz’ gespeichert [2340352/2340352] ---2023-02-09 13:47:58-- https://dev-www.libreoffice.org/src/libepoxy-1.5.10.tar.gz +--2023-03-24 18:07:37-- 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% 505K=0,6s + 0K ..... 100% 888K=0,4s -2023-02-09 13:47:59 (505 KB/s) - ‘./libepoxy-1.5.10.tar.gz’ gespeichert [332078/332078] +2023-03-24 18:07:37 (888 KB/s) - ‘./libepoxy-1.5.10.tar.gz’ gespeichert [332078/332078] ---2023-02-09 13:47:59-- https://dev-www.libreoffice.org/src/glm-0.9.9.8.zip +--2023-03-24 18:07:37-- 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% 611K 4s - 3072K ........ ........ ........ ........ ........ . 100% 641K=9,2s + 0K ........ ........ ........ ........ ........ ........ 53% 867K 3s + 3072K ........ ........ ........ ........ ........ . 100% 1,61M=5,1s -2023-02-09 13:48:09 (625 KB/s) - ‘./glm-0.9.9.8.zip’ gespeichert [5856665/5856665] +2023-03-24 18:07:43 (1,08 MB/s) - ‘./glm-0.9.9.8.zip’ gespeichert [5856665/5856665] ---2023-02-09 13:48:09-- https://dev-www.libreoffice.org/src/gpgme-1.18.0.tar.bz2 +--2023-03-24 18:07:43-- 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% 1011K=1,7s + 0K ........ ........ ........ .. 100% 1,56M=1,1s -2023-02-09 13:48:11 (1011 KB/s) - ‘./gpgme-1.18.0.tar.bz2’ gespeichert [1762323/1762323] +2023-03-24 18:07:44 (1,56 MB/s) - ‘./gpgme-1.18.0.tar.bz2’ gespeichert [1762323/1762323] ---2023-02-09 13:48:11-- https://dev-www.libreoffice.org/src/graphite2-minimal-1.3.14.tgz +--2023-03-24 18:07:44-- https://dev-www.libreoffice.org/src/graphite2-minimal-1.3.14.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 149974 (146K) [application/octet-stream] Wird in ‘./graphite2-minimal-1.3.14.tgz’ gespeichert. - 0K .. 100% 789K=0,2s + 0K .. 100% 1,38M=0,1s -2023-02-09 13:48:11 (789 KB/s) - ‘./graphite2-minimal-1.3.14.tgz’ gespeichert [149974/149974] +2023-03-24 18:07:45 (1,38 MB/s) - ‘./graphite2-minimal-1.3.14.tgz’ gespeichert [149974/149974] ---2023-02-09 13:48:11-- https://dev-www.libreoffice.org/src/harfbuzz-5.2.0.tar.xz +--2023-03-24 18:07:45-- https://dev-www.libreoffice.org/src/harfbuzz-5.2.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: 17711968 (17M) [application/octet-stream] Wird in ‘./harfbuzz-5.2.0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 17% 482K 30s - 3072K ........ ........ ........ ........ ........ ........ 35% 490K 23s - 6144K ........ ........ ........ ........ ........ ........ 53% 428K 17s - 9216K ........ ........ ........ ........ ........ ........ 71% 466K 11s - 12288K ........ ........ ........ ........ ........ ........ 88% 583K 4s - 15360K ........ ........ ........ ...... 100% 469K=36s + 0K ........ ........ ........ ........ ........ ........ 17% 2,49M 6s + 3072K ........ ........ ........ ........ ........ ........ 35% 3,00M 4s + 6144K ........ ........ ........ ........ ........ ........ 53% 3,00M 3s + 9216K ........ ........ ........ ........ ........ ........ 71% 2,91M 2s + 12288K ........ ........ ........ ........ ........ ........ 88% 3,00M 1s + 15360K ........ ........ ........ ...... 100% 3,02M=5,9s -2023-02-09 13:48:48 (483 KB/s) - ‘./harfbuzz-5.2.0.tar.xz’ gespeichert [17711968/17711968] +2023-03-24 18:07:51 (2,88 MB/s) - ‘./harfbuzz-5.2.0.tar.xz’ gespeichert [17711968/17711968] ---2023-02-09 13:48:48-- https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip +--2023-03-24 18:07:51-- 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% 516K 1s - 3072K ..... 100% 697K=6,5s + 0K ........ ........ ........ ........ ........ ........ 89% 1,88M 0s + 3072K ..... 100% 1,97M=1,8s -2023-02-09 13:48:55 (531 KB/s) - ‘./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip’ gespeichert [3519470/3519470] +2023-03-24 18:07:53 (1,89 MB/s) - ‘./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip’ gespeichert [3519470/3519470] ---2023-02-09 13:48:55-- https://dev-www.libreoffice.org/src/hunspell-1.7.2.tar.gz +--2023-03-24 18:07:53-- https://dev-www.libreoffice.org/src/hunspell-1.7.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: 1536202 (1,5M) [application/octet-stream] Wird in ‘./hunspell-1.7.2.tar.gz’ gespeichert. - 0K ........ ........ ....... 100% 594K=2,5s + 0K ........ ........ ....... 100% 827K=1,8s -2023-02-09 13:48:57 (594 KB/s) - ‘./hunspell-1.7.2.tar.gz’ gespeichert [1536202/1536202] +2023-03-24 18:07:55 (827 KB/s) - ‘./hunspell-1.7.2.tar.gz’ gespeichert [1536202/1536202] ---2023-02-09 13:48:58-- https://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz +--2023-03-24 18:07:55-- 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% 522K=1,2s + 0K ........ . 100% 796K=0,8s -2023-02-09 13:48:59 (522 KB/s) - ‘./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz’ gespeichert [638369/638369] +2023-03-24 18:07:56 (796 KB/s) - ‘./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz’ gespeichert [638369/638369] ---2023-02-09 13:48:59-- https://dev-www.libreoffice.org/src/icu4c-72_1-src.tgz +--2023-03-24 18:07:57-- https://dev-www.libreoffice.org/src/icu4c-72_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: 26303933 (25M) [application/octet-stream] Wird in ‘./icu4c-72_1-src.tgz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 11% 536K 42s - 3072K ........ ........ ........ ........ ........ ........ 23% 608K 34s - 6144K ........ ........ ........ ........ ........ ........ 35% 723K 27s - 9216K ........ ........ ........ ........ ........ ........ 47% 469K 24s - 12288K ........ ........ ........ ........ ........ ........ 59% 678K 18s - 15360K ........ ........ ........ ........ ........ ........ 71% 608K 12s - 18432K ........ ........ ........ ........ ........ ........ 83% 848K 7s - 21504K ........ ........ ........ ........ ........ ........ 95% 478K 2s - 24576K ........ ........ . 100% 731K=43s + 0K ........ ........ ........ ........ ........ ........ 11% 1,42M 16s + 3072K ........ ........ ........ ........ ........ ........ 23% 1,63M 13s + 6144K ........ ........ ........ ........ ........ ........ 35% 958K 13s + 9216K ........ ........ ........ ........ ........ ........ 47% 1,48M 10s + 12288K ........ ........ ........ ........ ........ ........ 59% 968K 8s + 15360K ........ ........ ........ ........ ........ ........ 71% 1,19M 6s + 18432K ........ ........ ........ ........ ........ ........ 83% 1,25M 3s + 21504K ........ ........ ........ ........ ........ ........ 95% 974K 1s + 24576K ........ ........ . 100% 1,02M=21s -2023-02-09 13:49:42 (601 KB/s) - ‘./icu4c-72_1-src.tgz’ gespeichert [26303933/26303933] +2023-03-24 18:08:18 (1,17 MB/s) - ‘./icu4c-72_1-src.tgz’ gespeichert [26303933/26303933] ---2023-02-09 13:49:42-- https://dev-www.libreoffice.org/src/icu4c-72_1-data.zip +--2023-03-24 18:08:18-- https://dev-www.libreoffice.org/src/icu4c-72_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: 19612531 (19M) [application/zip] Wird in ‘./icu4c-72_1-data.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 16% 463K 35s - 3072K ........ ........ ........ ........ ........ ........ 32% 499K 27s - 6144K ........ ........ ........ ........ ........ ........ 48% 543K 20s - 9216K ........ ........ ........ ........ ........ ........ 64% 458K 14s - 12288K ........ ........ ........ ........ ........ ........ 80% 390K 8s - 15360K ........ ........ ........ ........ ........ ........ 96% 404K 2s - 18432K ........ ... 100% 684K=42s + 0K ........ ........ ........ ........ ........ ........ 16% 822K 20s + 3072K ........ ........ ........ ........ ........ ........ 32% 1,16M 13s + 6144K ........ ........ ........ ........ ........ ........ 48% 1,37M 9s + 9216K ........ ........ ........ ........ ........ ........ 64% 1,67M 6s + 12288K ........ ........ ........ ........ ........ ........ 80% 2,12M 3s + 15360K ........ ........ ........ ........ ........ ........ 96% 1,07M 1s + 18432K ........ ... 100% 1,55M=15s -2023-02-09 13:50:24 (459 KB/s) - ‘./icu4c-72_1-data.zip’ gespeichert [19612531/19612531] +2023-03-24 18:08:34 (1,25 MB/s) - ‘./icu4c-72_1-data.zip’ gespeichert [19612531/19612531] ---2023-02-09 13:50:24-- https://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip +--2023-03-24 18:08:34-- 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% 747K=1,0s + 0K ........ ... 100% 852K=0,9s -2023-02-09 13:50:26 (747 KB/s) - ‘./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip’ gespeichert [743031/743031] +2023-03-24 18:08:35 (852 KB/s) - ‘./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip’ gespeichert [743031/743031] ---2023-02-09 13:50:26-- https://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip +--2023-03-24 18:08:35-- 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% 830K=0,2s + 0K ... 100% 731K=0,3s -2023-02-09 13:50:26 (830 KB/s) - ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert [207563/207563] +2023-03-24 18:08:36 (731 KB/s) - ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert [207563/207563] ---2023-02-09 13:50:26-- https://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip +--2023-03-24 18:08:36-- 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% 883K=0,5s + 0K ...... 100% 822K=0,5s -2023-02-09 13:50:27 (883 KB/s) - ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert [427800/427800] +2023-03-24 18:08:37 (822 KB/s) - ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert [427800/427800] ---2023-02-09 13:50:27-- https://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip +--2023-03-24 18:08:37-- 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% 596K 4s - 3072K ........ ........ ........ ........ ....... 100% 652K=9,1s + 0K ........ ........ ........ ........ ........ ........ 54% 954K 3s + 3072K ........ ........ ........ ........ ....... 100% 1,72M=4,7s -2023-02-09 13:50:37 (620 KB/s) - ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert [5750610/5750610] +2023-03-24 18:08:42 (1,18 MB/s) - ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert [5750610/5750610] ---2023-02-09 13:50:37-- https://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip +--2023-03-24 18:08:42-- 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% 585K=2,0s + 0K ........ ........ .. 100% 1,46M=0,8s -2023-02-09 13:50:39 (585 KB/s) - ‘./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip’ gespeichert [1180582/1180582] +2023-03-24 18:08:43 (1,46 MB/s) - ‘./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip’ gespeichert [1180582/1180582] ---2023-02-09 13:50:39-- https://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip +--2023-03-24 18:08:43-- 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% 605K=2,3s + 0K ........ ........ ..... 100% 1,62M=0,8s -2023-02-09 13:50:41 (605 KB/s) - ‘./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip’ gespeichert [1396007/1396007] +2023-03-24 18:08:44 (1,62 MB/s) - ‘./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip’ gespeichert [1396007/1396007] ---2023-02-09 13:50:42-- https://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip +--2023-03-24 18:08:44-- 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% 690K=4,2s + 0K ........ ........ ........ ........ ........ .... 100% 2,15M=1,3s -2023-02-09 13:50:46 (690 KB/s) - ‘./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip’ gespeichert [2938721/2938721] +2023-03-24 18:08:46 (2,15 MB/s) - ‘./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip’ gespeichert [2938721/2938721] ---2023-02-09 13:50:46-- https://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip +--2023-03-24 18:08:46-- 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% 465K=1,6s + 0K ........ ... 100% 2,03M=0,4s -2023-02-09 13:50:48 (465 KB/s) - ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert [762419/762419] +2023-03-24 18:08:46 (2,03 MB/s) - ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert [762419/762419] ---2023-02-09 13:50:48-- https://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip +--2023-03-24 18:08:46-- 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% 498K=0,4s + 0K ... 100% 1,47M=0,1s -2023-02-09 13:50:49 (498 KB/s) - ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert [211919/211919] +2023-03-24 18:08:47 (1,47 MB/s) - ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert [211919/211919] ---2023-02-09 13:50:49-- https://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip +--2023-03-24 18:08:47-- 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% 677K=4,2s + 0K ........ ........ ........ ........ ........ .... 100% 957K=3,0s -2023-02-09 13:50:53 (677 KB/s) - ‘./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip’ gespeichert [2929311/2929311] +2023-03-24 18:08:50 (957 KB/s) - ‘./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip’ gespeichert [2929311/2929311] ---2023-02-09 13:50:53-- https://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip +--2023-03-24 18:08:50-- 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% 786K=0,2s + 0K .. 100% 650K=0,2s -2023-02-09 13:50:54 (786 KB/s) - ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert [153157/153157] +2023-03-24 18:08:51 (650 KB/s) - ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert [153157/153157] ---2023-02-09 13:50:54-- https://dev-www.libreoffice.org/src/libjpeg-turbo-2.1.4.tar.gz +--2023-03-24 18:08:51-- https://dev-www.libreoffice.org/src/libjpeg-turbo-2.1.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: 2261822 (2,2M) [application/octet-stream] -Wird in ‘./libjpeg-turbo-2.1.4.tar.gz’ gespeichert. +Länge: 2264471 (2,2M) [application/octet-stream] +Wird in ‘./libjpeg-turbo-2.1.5.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ .. 100% 335K=6,6s + 0K ........ ........ ........ ........ .. 100% 815K=2,7s -2023-02-09 13:51:01 (335 KB/s) - ‘./libjpeg-turbo-2.1.4.tar.gz’ gespeichert [2261822/2261822] +2023-03-24 18:08:54 (815 KB/s) - ‘./libjpeg-turbo-2.1.5.tar.gz’ gespeichert [2264471/2264471] ---2023-02-09 13:51:01-- https://dev-www.libreoffice.org/src/lcms2-2.12.tar.gz +--2023-03-24 18:08:54-- 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% 431K 10s - 3072K ........ ........ ........ ........ ........ ........ 84% 436K 3s - 6144K ........ ........ . 100% 775K=16s + 0K ........ ........ ........ ........ ........ ........ 42% 924K 5s + 3072K ........ ........ ........ ........ ........ ........ 84% 1,08M 1s + 6144K ........ ........ . 100% 822K=7,4s -2023-02-09 13:51:17 (464 KB/s) - ‘./lcms2-2.12.tar.gz’ gespeichert [7419126/7419126] +2023-03-24 18:09:01 (974 KB/s) - ‘./lcms2-2.12.tar.gz’ gespeichert [7419126/7419126] ---2023-02-09 13:51:17-- https://dev-www.libreoffice.org/src/libatomic_ops-7.6.8.tar.gz +--2023-03-24 18:09:02-- 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% 656K=0,7s + 0K ....... 100% 653K=0,8s -2023-02-09 13:51:18 (656 KB/s) - ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert [503550/503550] +2023-03-24 18:09:03 (653 KB/s) - ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert [503550/503550] ---2023-02-09 13:51:18-- https://dev-www.libreoffice.org/src/libassuan-2.5.5.tar.bz2 +--2023-03-24 18:09:03-- 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% 564K=1,0s + 0K ........ 100% 657K=0,9s -2023-02-09 13:51:19 (564 KB/s) - ‘./libassuan-2.5.5.tar.bz2’ gespeichert [572263/572263] +2023-03-24 18:09:04 (657 KB/s) - ‘./libassuan-2.5.5.tar.bz2’ gespeichert [572263/572263] ---2023-02-09 13:51:19-- https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 +--2023-03-24 18:09:04-- 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% 482K=0,5s + 0K ... 100% 766K=0,3s -2023-02-09 13:51:20 (482 KB/s) - ‘./libeot-0.01.tar.bz2’ gespeichert [260288/260288] +2023-03-24 18:09:04 (766 KB/s) - ‘./libeot-0.01.tar.bz2’ gespeichert [260288/260288] ---2023-02-09 13:51:20-- https://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz +--2023-03-24 18:09:04-- 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% 422K=2,6s + 0K ........ ........ 100% 1,01M=1,1s -2023-02-09 13:51:23 (422 KB/s) - ‘./libexttextcat-3.4.6.tar.xz’ gespeichert [1111320/1111320] +2023-03-24 18:09:06 (1,01 MB/s) - ‘./libexttextcat-3.4.6.tar.xz’ gespeichert [1111320/1111320] ---2023-02-09 13:51:23-- https://dev-www.libreoffice.org/src/libffi-3.3.tar.gz +--2023-03-24 18:09:06-- 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% 389K=3,3s + 0K ........ ........ ... 100% 1,23M=1,0s -2023-02-09 13:51:27 (389 KB/s) - ‘./libffi-3.3.tar.gz’ gespeichert [1305466/1305466] +2023-03-24 18:09:07 (1,23 MB/s) - ‘./libffi-3.3.tar.gz’ gespeichert [1305466/1305466] ---2023-02-09 13:51:27-- https://dev-www.libreoffice.org/src/libgpg-error-1.43.tar.bz2 +--2023-03-24 18:09:07-- 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% 557K=1,8s + 0K ........ ....... 100% 1,57M=0,6s -2023-02-09 13:51:29 (557 KB/s) - ‘./libgpg-error-1.43.tar.bz2’ gespeichert [999006/999006] +2023-03-24 18:09:08 (1,57 MB/s) - ‘./libgpg-error-1.43.tar.bz2’ gespeichert [999006/999006] ---2023-02-09 13:51:29-- https://dev-www.libreoffice.org/src/language-subtag-registry-2022-08-08.tar.bz2 +--2023-03-24 18:09:08-- 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% 804K=0,09s + 0K . 100% 1,35M=0,05s -2023-02-09 13:51:29 (804 KB/s) - ‘./language-subtag-registry-2022-08-08.tar.bz2’ gespeichert [77580/77580] +2023-03-24 18:09:09 (1,35 MB/s) - ‘./language-subtag-registry-2022-08-08.tar.bz2’ gespeichert [77580/77580] ---2023-02-09 13:51:29-- https://dev-www.libreoffice.org/src/liblangtag-0.6.3.tar.bz2 +--2023-03-24 18:09:09-- 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% 490K=1,5s + 0K ........ ... 100% 1,45M=0,5s -2023-02-09 13:51:31 (490 KB/s) - ‘./liblangtag-0.6.3.tar.bz2’ gespeichert [755492/755492] +2023-03-24 18:09:09 (1,45 MB/s) - ‘./liblangtag-0.6.3.tar.bz2’ gespeichert [755492/755492] ---2023-02-09 13:51:31-- https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz +--2023-03-24 18:09:09-- 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% 414K=0,7s + 0K .... 100% 1,21M=0,2s -2023-02-09 13:51:32 (414 KB/s) - ‘./libnumbertext-1.0.11.tar.xz’ gespeichert [302676/302676] +2023-03-24 18:09:10 (1,21 MB/s) - ‘./libnumbertext-1.0.11.tar.xz’ gespeichert [302676/302676] ---2023-02-09 13:51:32-- https://dev-www.libreoffice.org/src/libpng-1.6.39.tar.xz +--2023-03-24 18:09:10-- 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% 504K=2,0s + 0K ........ ....... 100% 1,39M=0,7s -2023-02-09 13:51:35 (504 KB/s) - ‘./libpng-1.6.39.tar.xz’ gespeichert [1020552/1020552] +2023-03-24 18:09:11 (1,39 MB/s) - ‘./libpng-1.6.39.tar.xz’ gespeichert [1020552/1020552] ---2023-02-09 13:51:35-- https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.tar.xz +--2023-03-24 18:09:11-- 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% 552K=4,1s + 0K ........ ........ ........ ........ ... 100% 1,87M=1,2s -2023-02-09 13:51:39 (552 KB/s) - ‘./tiff-4.5.0rc3.tar.xz’ gespeichert [2320900/2320900] +2023-03-24 18:09:12 (1,87 MB/s) - ‘./tiff-4.5.0rc3.tar.xz’ gespeichert [2320900/2320900] ---2023-02-09 13:51:39-- https://dev-www.libreoffice.org/src/ltm-1.0.zip +--2023-03-24 18:09:13-- 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% 660K=3,8s + 0K ........ ........ ........ ........ ...... 100% 1,18M=2,0s -2023-02-09 13:51:43 (660 KB/s) - ‘./ltm-1.0.zip’ gespeichert [2542693/2542693] +2023-03-24 18:09:15 (1,18 MB/s) - ‘./ltm-1.0.zip’ gespeichert [2542693/2542693] ---2023-02-09 13:51:43-- https://dev-www.libreoffice.org/src/libwebp-1.2.4.tar.gz +--2023-03-24 18:09:15-- 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% 561K 2s - 3072K ........ ....... 100% 955K=6,5s + 0K ........ ........ ........ ........ ........ ........ 75% 2,00M 0s + 3072K ........ ....... 100% 2,83M=1,8s -2023-02-09 13:51:50 (623 KB/s) - ‘./libwebp-1.2.4.tar.gz’ gespeichert [4141376/4141376] +2023-03-24 18:09:17 (2,15 MB/s) - ‘./libwebp-1.2.4.tar.gz’ gespeichert [4141376/4141376] ---2023-02-09 13:51:50-- https://dev-www.libreoffice.org/src/libxml2-2.10.3.tar.xz +--2023-03-24 18:09:17-- https://dev-www.libreoffice.org/src/libxml2-2.10.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2639908 (2,5M) [application/octet-stream] Wird in ‘./libxml2-2.10.3.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ 100% 655K=3,9s + 0K ........ ........ ........ ........ ........ 100% 2,66M=0,9s -2023-02-09 13:51:54 (655 KB/s) - ‘./libxml2-2.10.3.tar.xz’ gespeichert [2639908/2639908] +2023-03-24 18:09:19 (2,66 MB/s) - ‘./libxml2-2.10.3.tar.xz’ gespeichert [2639908/2639908] ---2023-02-09 13:51:54-- https://dev-www.libreoffice.org/src/xmlsec1-1.2.37.tar.gz +--2023-03-24 18:09:19-- https://dev-www.libreoffice.org/src/xmlsec1-1.2.37.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: 2009175 (1,9M) [application/octet-stream] Wird in ‘./xmlsec1-1.2.37.tar.gz’ gespeichert. - 0K ........ ........ ........ ...... 100% 688K=2,9s + 0K ........ ........ ........ ...... 100% 2,44M=0,8s -2023-02-09 13:51:58 (688 KB/s) - ‘./xmlsec1-1.2.37.tar.gz’ gespeichert [2009175/2009175] +2023-03-24 18:09:20 (2,44 MB/s) - ‘./xmlsec1-1.2.37.tar.gz’ gespeichert [2009175/2009175] ---2023-02-09 13:51:58-- https://dev-www.libreoffice.org/src/libxslt-1.1.35.tar.xz +--2023-03-24 18:09:20-- 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% 564K=3,2s + 0K ........ ........ ........ ... 100% 1,76M=1,0s -2023-02-09 13:52:01 (564 KB/s) - ‘./libxslt-1.1.35.tar.xz’ gespeichert [1827548/1827548] +2023-03-24 18:09:21 (1,76 MB/s) - ‘./libxslt-1.1.35.tar.xz’ gespeichert [1827548/1827548] ---2023-02-09 13:52:01-- https://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz +--2023-03-24 18:09:21-- 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% 604K=1,2s + 0K ........ ... 100% 1,60M=0,5s -2023-02-09 13:52:03 (604 KB/s) - ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert [769268/769268] +2023-03-24 18:09:22 (1,60 MB/s) - ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert [769268/769268] ---2023-02-09 13:52:03-- https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz +--2023-03-24 18:09:22-- 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% 552K=4,2s + 0K ........ ........ ........ ........ .... 100% 1,81M=1,3s -2023-02-09 13:52:08 (552 KB/s) - ‘./lxml-4.1.1.tgz’ gespeichert [2380804/2380804] +2023-03-24 18:09:23 (1,81 MB/s) - ‘./lxml-4.1.1.tgz’ gespeichert [2380804/2380804] ---2023-02-09 13:52:08-- https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz +--2023-03-24 18:09:23-- https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 744745 (727K) [application/octet-stream] Wird in ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert. - 0K ........ ... 100% 464K=1,6s + 0K ........ ... 100% 1,84M=0,4s -2023-02-09 13:52:10 (464 KB/s) - ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert [744745/744745] +2023-03-24 18:09:24 (1,84 MB/s) - ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert [744745/744745] ---2023-02-09 13:52:10-- https://dev-www.libreoffice.org/src/mdds-2.0.3.tar.bz2 +--2023-03-24 18:09:24-- https://dev-www.libreoffice.org/src/mdds-2.0.3.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 516540 (504K) [application/octet-stream] Wird in ‘./mdds-2.0.3.tar.bz2’ gespeichert. - 0K ....... 100% 390K=1,3s + 0K ....... 100% 1,70M=0,3s -2023-02-09 13:52:11 (390 KB/s) - ‘./mdds-2.0.3.tar.bz2’ gespeichert [516540/516540] +2023-03-24 18:09:25 (1,70 MB/s) - ‘./mdds-2.0.3.tar.bz2’ gespeichert [516540/516540] ---2023-02-09 13:52:11-- https://dev-www.libreoffice.org/src/zxing-cpp-1.4.0.tar.gz +--2023-03-24 18:09:25-- https://dev-www.libreoffice.org/src/zxing-cpp-1.4.0.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1018225 (994K) [application/octet-stream] Wird in ‘./zxing-cpp-1.4.0.tar.gz’ gespeichert. - 0K ........ ....... 100% 461K=2,2s + 0K ........ ....... 100% 1,95M=0,5s -2023-02-09 13:52:14 (461 KB/s) - ‘./zxing-cpp-1.4.0.tar.gz’ gespeichert [1018225/1018225] +2023-03-24 18:09:26 (1,95 MB/s) - ‘./zxing-cpp-1.4.0.tar.gz’ gespeichert [1018225/1018225] ---2023-02-09 13:52:14-- https://dev-www.libreoffice.org/src/mDNSResponder-878.200.35.tar.gz +--2023-03-24 18:09:26-- 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% 423K=5,9s + 0K ........ ........ ........ ........ ...... 100% 1,51M=1,6s -2023-02-09 13:52:20 (423 KB/s) - ‘./mDNSResponder-878.200.35.tar.gz’ gespeichert [2537410/2537410] +2023-03-24 18:09:28 (1,51 MB/s) - ‘./mDNSResponder-878.200.35.tar.gz’ gespeichert [2537410/2537410] ---2023-02-09 13:52:20-- https://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz +--2023-03-24 18:09:28-- 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% 295K=0,4s + 0K . 100% 1,17M=0,09s -2023-02-09 13:52:21 (295 KB/s) - ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert [112756/112756] +2023-03-24 18:09:28 (1,17 MB/s) - ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert [112756/112756] ---2023-02-09 13:52:21-- https://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz +--2023-03-24 18:09:28-- 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% 486K=2,4s + 0K ........ ........ . 100% 1,69M=0,7s -2023-02-09 13:52:23 (486 KB/s) - ‘./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz’ gespeichert [1169488/1169488] +2023-03-24 18:09:29 (1,69 MB/s) - ‘./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz’ gespeichert [1169488/1169488] ---2023-02-09 13:52:24-- https://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip +--2023-03-24 18:09:29-- 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% 402K 6s - 3072K ........ ........ ........ ........ .... 100% 635K=11s + 0K ........ ........ ........ ........ ........ ........ 56% 2,22M 1s + 3072K ........ ........ ........ ........ .... 100% 2,58M=2,2s -2023-02-09 13:52:35 (477 KB/s) - ‘./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip’ gespeichert [5522795/5522795] +2023-03-24 18:09:32 (2,36 MB/s) - ‘./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip’ gespeichert [5522795/5522795] ---2023-02-09 13:52:35-- https://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip +--2023-03-24 18:09:32-- 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% 714K=1,1s + 0K ........ .... 100% 2,14M=0,4s -2023-02-09 13:52:37 (714 KB/s) - ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert [811606/811606] +2023-03-24 18:09:32 (2,14 MB/s) - ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert [811606/811606] ---2023-02-09 13:52:37-- https://dev-www.libreoffice.org/src/liberation-narrow-fonts-ttf-1.07.6.tar.gz +--2023-03-24 18:09:32-- 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% 495K=0,6s + 0K .... 100% 1,75M=0,2s -2023-02-09 13:52:38 (495 KB/s) - ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert [300832/300832] +2023-03-24 18:09:33 (1,75 MB/s) - ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert [300832/300832] ---2023-02-09 13:52:38-- https://dev-www.libreoffice.org/src/liberation-fonts-ttf-2.1.4.tar.gz +--2023-03-24 18:09:33-- 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% 747K=3,1s + 0K ........ ........ ........ ........ .... 100% 2,07M=1,1s -2023-02-09 13:52:41 (747 KB/s) - ‘./liberation-fonts-ttf-2.1.4.tar.gz’ gespeichert [2388283/2388283] +2023-03-24 18:09:34 (2,07 MB/s) - ‘./liberation-fonts-ttf-2.1.4.tar.gz’ gespeichert [2388283/2388283] ---2023-02-09 13:52:41-- https://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip +--2023-03-24 18:09:34-- 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% 546K 6s - 3072K ........ ........ ........ ........ ........ ........ 94% 543K 1s - 6144K ..... 100% 628K=12s + 0K ........ ........ ........ ........ ........ ........ 47% 2,59M 1s + 3072K ........ ........ ........ ........ ........ ........ 94% 2,41M 0s + 6144K ..... 100% 1,49M=2,6s -2023-02-09 13:52:53 (549 KB/s) - ‘./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip’ gespeichert [6651982/6651982] +2023-03-24 18:09:37 (2,41 MB/s) - ‘./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip’ gespeichert [6651982/6651982] ---2023-02-09 13:52:53-- https://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz +--2023-03-24 18:09:37-- 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% 435K=2,5s + 0K ........ ........ 100% 1,66M=0,6s -2023-02-09 13:52:56 (435 KB/s) - ‘./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz’ gespeichert [1098827/1098827] +2023-03-24 18:09:38 (1,66 MB/s) - ‘./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz’ gespeichert [1098827/1098827] ---2023-02-09 13:52:56-- https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz +--2023-03-24 18:09:38-- 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% 646K 5s - 3072K ........ ........ ........ ........ ........ ........ 94% 449K 1s - 6144K ..... 100% 787K=12s + 0K ........ ........ ........ ........ ........ ........ 47% 2,27M 1s + 3072K ........ ........ ........ ........ ........ ........ 94% 2,99M 0s + 6144K ..... 100% 3,15M=2,4s -2023-02-09 13:53:08 (539 KB/s) - ‘./noto-fonts-20171024.tar.gz’ gespeichert [6646182/6646182] +2023-03-24 18:09:41 (2,61 MB/s) - ‘./noto-fonts-20171024.tar.gz’ gespeichert [6646182/6646182] ---2023-02-09 13:53:09-- https://dev-www.libreoffice.org/src/culmus-0.133.tar.gz +--2023-03-24 18:09:41-- 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% 1,05M=1,1s + 0K ........ ........ . 100% 2,34M=0,5s -2023-02-09 13:53:10 (1,05 MB/s) - ‘./culmus-0.133.tar.gz’ gespeichert [1174687/1174687] +2023-03-24 18:09:42 (2,34 MB/s) - ‘./culmus-0.133.tar.gz’ gespeichert [1174687/1174687] ---2023-02-09 13:53:10-- https://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz +--2023-03-24 18:09:42-- 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,05M=0,5s + 0K ........ 100% 1,98M=0,3s -2023-02-09 13:53:11 (1,05 MB/s) - ‘./libre-hebrew-1.0.tar.gz’ gespeichert [531276/531276] +2023-03-24 18:09:42 (1,98 MB/s) - ‘./libre-hebrew-1.0.tar.gz’ gespeichert [531276/531276] ---2023-02-09 13:53:11-- https://dev-www.libreoffice.org/src/alef-1.001.tar.gz +--2023-03-24 18:09:42-- 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% 966K=0,09s + 0K . 100% 1,50M=0,06s -2023-02-09 13:53:11 (966 KB/s) - ‘./alef-1.001.tar.gz’ gespeichert [93498/93498] +2023-03-24 18:09:43 (1,50 MB/s) - ‘./alef-1.001.tar.gz’ gespeichert [93498/93498] ---2023-02-09 13:53:11-- https://dev-www.libreoffice.org/src/Amiri-1.000.zip +--2023-03-24 18:09:43-- https://dev-www.libreoffice.org/src/Amiri-1.000.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: 1039502 (1015K) [application/zip] Wird in ‘./Amiri-1.000.zip’ gespeichert. - 0K ........ ....... 100% 833K=1,2s + 0K ........ ....... 100% 1,77M=0,6s -2023-02-09 13:53:13 (833 KB/s) - ‘./Amiri-1.000.zip’ gespeichert [1039502/1039502] +2023-03-24 18:09:44 (1,77 MB/s) - ‘./Amiri-1.000.zip’ gespeichert [1039502/1039502] ---2023-02-09 13:53:13-- https://dev-www.libreoffice.org/src/ReemKufi-1.2.zip +--2023-03-24 18:09:44-- 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% 855K=0,5s + 0K ...... 100% 1,63M=0,3s -2023-02-09 13:53:14 (855 KB/s) - ‘./ReemKufi-1.2.zip’ gespeichert [450612/450612] +2023-03-24 18:09:44 (1,63 MB/s) - ‘./ReemKufi-1.2.zip’ gespeichert [450612/450612] ---2023-02-09 13:53:14-- https://dev-www.libreoffice.org/src/Scheherazade-2.100.zip +--2023-03-24 18:09:44-- 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% 578K=1,9s + 0K ........ ........ . 100% 1,99M=0,5s -2023-02-09 13:53:16 (578 KB/s) - ‘./Scheherazade-2.100.zip’ gespeichert [1114645/1114645] +2023-03-24 18:09:45 (1,99 MB/s) - ‘./Scheherazade-2.100.zip’ gespeichert [1114645/1114645] ---2023-02-09 13:53:16-- https://dev-www.libreoffice.org/src/libmspub-0.1.4.tar.xz +--2023-03-24 18:09:45-- 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% 517K=0,7s + 0K ..... 100% 1,56M=0,2s -2023-02-09 13:53:17 (517 KB/s) - ‘./libmspub-0.1.4.tar.xz’ gespeichert [377472/377472] +2023-03-24 18:09:46 (1,56 MB/s) - ‘./libmspub-0.1.4.tar.xz’ gespeichert [377472/377472] ---2023-02-09 13:53:17-- https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz +--2023-03-24 18:09:46-- 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% 812K=1,8s + 0K ........ ........ ...... 100% 2,12M=0,7s -2023-02-09 13:53:20 (812 KB/s) - ‘./libmwaw-0.3.21.tar.xz’ gespeichert [1457212/1457212] +2023-03-24 18:09:47 (2,12 MB/s) - ‘./libmwaw-0.3.21.tar.xz’ gespeichert [1457212/1457212] ---2023-02-09 13:53:20-- https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz +--2023-03-24 18:09:47-- https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2891852 (2,8M) [application/octet-stream] Wird in ‘./mythes-1.2.5.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ .... 100% 694K=4,1s + 0K ........ ........ ........ ........ ........ .... 100% 2,15M=1,3s -2023-02-09 13:53:24 (694 KB/s) - ‘./mythes-1.2.5.tar.xz’ gespeichert [2891852/2891852] +2023-03-24 18:09:48 (2,15 MB/s) - ‘./mythes-1.2.5.tar.xz’ gespeichert [2891852/2891852] ---2023-02-09 13:53:24-- https://dev-www.libreoffice.org/src/nss-3.86-with-nspr-4.35.tar.gz +--2023-03-24 18:09:48-- 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: 73042802 (70M) [application/octet-stream] -Wird in ‘./nss-3.86-with-nspr-4.35.tar.gz’ gespeichert. - - 0K ........ ........ ........ ........ ........ ........ 4% 579K 1m58s - 3072K ........ ........ ........ ........ ........ ........ 8% 488K 2m3s - 6144K ........ ........ ........ ........ ........ ........ 12% 583K 1m54s - 9216K ........ ........ ........ ........ ........ ........ 17% 592K 1m46s - 12288K ........ ........ ........ ........ ........ ........ 21% 654K 98s - 15360K ........ ........ ........ ........ ........ ........ 25% 458K 96s - 18432K ........ ........ ........ ........ ........ ........ 30% 531K 91s - 21504K ........ ........ ........ ........ ........ ........ 34% 643K 84s - 24576K ........ ........ ........ ........ ........ ........ 38% 650K 77s - 27648K ........ ........ ........ ........ ........ ........ 43% 418K 74s - 30720K ........ ........ ........ ........ ........ ........ 47% 603K 68s - 33792K ........ ........ ........ ........ ........ ........ 51% 550K 62s - 36864K ........ ........ ........ ........ ........ ........ 55% 632K 56s - 39936K ........ ........ ........ ........ ........ ........ 60% 656K 50s - 43008K ........ ........ ........ ........ ........ ........ 64% 517K 45s - 46080K ........ ........ ........ ........ ........ ........ 68% 495K 40s - 49152K ........ ........ ........ ........ ........ ........ 73% 712K 34s - 52224K ........ ........ ........ ........ ........ ........ 77% 664K 28s - 55296K ........ ........ ........ ........ ........ ........ 81% 784K 23s - 58368K ........ ........ ........ ........ ........ ........ 86% 1,00M 17s - 61440K ........ ........ ........ ........ ........ ........ 90% 737K 11s - 64512K ........ ........ ........ ........ ........ ........ 94% 905K 6s - 67584K ........ ........ ........ ........ ........ ........ 99% 677K 1s - 70656K ........ .. 100% 739K=1m57s +Länge: 73100402 (70M) [application/octet-stream] +Wird in ‘./nss-3.88.1-with-nspr-4.35.tar.gz’ gespeichert. + + 0K ........ ........ ........ ........ ........ ........ 4% 2,64M 25s + 3072K ........ ........ ........ ........ ........ ........ 8% 3,00M 23s + 6144K ........ ........ ........ ........ ........ ........ 12% 2,50M 23s + 9216K ........ ........ ........ ........ ........ ........ 17% 1,66M 25s + 12288K ........ ........ ........ ........ ........ ........ 21% 1,64M 25s + 15360K ........ ........ ........ ........ ........ ........ 25% 1,76M 25s + 18432K ........ ........ ........ ........ ........ ........ 30% 2,24M 23s + 21504K ........ ........ ........ ........ ........ ........ 34% 2,21M 22s + 24576K ........ ........ ........ ........ ........ ........ 38% 2,24M 20s + 27648K ........ ........ ........ ........ ........ ........ 43% 2,10M 19s + 30720K ........ ........ ........ ........ ........ ........ 47% 2,14M 17s + 33792K ........ ........ ........ ........ ........ ........ 51% 1,39M 17s + 36864K ........ ........ ........ ........ ........ ........ 55% 1,22M 16s + 39936K ........ ........ ........ ........ ........ ........ 60% 1,49M 15s + 43008K ........ ........ ........ ........ ........ ........ 64% 1,64M 13s + 46080K ........ ........ ........ ........ ........ ........ 68% 1,23M 12s + 49152K ........ ........ ........ ........ ........ ........ 73% 1,91M 10s + 52224K ........ ........ ........ ........ ........ ........ 77% 1,77M 9s + 55296K ........ ........ ........ ........ ........ ........ 81% 1,80M 7s + 58368K ........ ........ ........ ........ ........ ........ 86% 2,31M 5s + 61440K ........ ........ ........ ........ ........ ........ 90% 1,70M 4s + 64512K ........ ........ ........ ........ ........ ........ 94% 1,57M 2s + 67584K ........ ........ ........ ........ ........ ........ 98% 1,49M 0s + 70656K ........ ... 100% 1,12M=39s -2023-02-09 13:55:22 (608 KB/s) - ‘./nss-3.86-with-nspr-4.35.tar.gz’ gespeichert [73042802/73042802] +2023-03-24 18:10:28 (1,79 MB/s) - ‘./nss-3.88.1-with-nspr-4.35.tar.gz’ gespeichert [73100402/73100402] ---2023-02-09 13:55:22-- https://dev-www.libreoffice.org/src/libodfgen-0.1.8.tar.xz +--2023-03-24 18:10:28-- 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% 628K=0,6s + 0K ..... 100% 1,13M=0,3s -2023-02-09 13:55:23 (628 KB/s) - ‘./libodfgen-0.1.8.tar.xz’ gespeichert [386156/386156] +2023-03-24 18:10:29 (1,13 MB/s) - ‘./libodfgen-0.1.8.tar.xz’ gespeichert [386156/386156] ---2023-02-09 13:55:23-- https://dev-www.libreoffice.org/src/openldap-2.4.59.tgz +--2023-03-24 18:10:29-- 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% 589K 5s - 3072K ........ ........ ........ ........ ........ . 100% 1,31M=7,2s + 0K ........ ........ ........ ........ ........ ........ 53% 1,04M 3s + 3072K ........ ........ ........ ........ ........ . 100% 691K=6,7s -2023-02-09 13:55:31 (797 KB/s) - ‘./openldap-2.4.59.tgz’ gespeichert [5886272/5886272] +2023-03-24 18:10:36 (852 KB/s) - ‘./openldap-2.4.59.tgz’ gespeichert [5886272/5886272] ---2023-02-09 13:55:31-- https://dev-www.libreoffice.org/src/openssl-3.0.8.tar.gz +--2023-03-24 18:10:36-- https://dev-www.libreoffice.org/src/openssl-3.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: 15151328 (14M) [application/octet-stream] Wird in ‘./openssl-3.0.8.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 20% 2,08M 5s - 3072K ........ ........ ........ ........ ........ ........ 41% 2,30M 4s - 6144K ........ ........ ........ ........ ........ ........ 62% 1,16M 3s - 9216K ........ ........ ........ ........ ........ ........ 83% 1,21M 2s - 12288K ........ ........ ........ ........ ....... 100% 785K=11s + 0K ........ ........ ........ ........ ........ ........ 20% 979K 12s + 3072K ........ ........ ........ ........ ........ ........ 41% 1,06M 8s + 6144K ........ ........ ........ ........ ........ ........ 62% 1,11M 5s + 9216K ........ ........ ........ ........ ........ ........ 83% 922K 2s + 12288K ........ ........ ........ ........ ....... 100% 1,75M=13s -2023-02-09 13:55:42 (1,31 MB/s) - ‘./openssl-3.0.8.tar.gz’ gespeichert [15151328/15151328] +2023-03-24 18:10:50 (1,08 MB/s) - ‘./openssl-3.0.8.tar.gz’ gespeichert [15151328/15151328] ---2023-02-09 13:55:42-- https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2 +--2023-03-24 18:10:50-- 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% 702K=3,0s + 0K ........ ........ ........ ........ 100% 1,71M=1,2s -2023-02-09 13:55:46 (702 KB/s) - ‘./liborcus-0.17.2.tar.bz2’ gespeichert [2123970/2123970] +2023-03-24 18:10:51 (1,71 MB/s) - ‘./liborcus-0.17.2.tar.bz2’ gespeichert [2123970/2123970] ---2023-02-09 13:55:46-- https://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz +--2023-03-24 18:10:51-- 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% 587K=0,5s + 0K .... 100% 1,59M=0,2s -2023-02-09 13:55:46 (587 KB/s) - ‘./libpagemaker-0.0.4.tar.xz’ gespeichert [306496/306496] +2023-03-24 18:10:52 (1,59 MB/s) - ‘./libpagemaker-0.0.4.tar.xz’ gespeichert [306496/306496] ---2023-02-09 13:55:46-- https://dev-www.libreoffice.org/src/pdfium-5408.tar.bz2 +--2023-03-24 18:10:52-- https://dev-www.libreoffice.org/src/pdfium-5408.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: 10077997 (9,6M) [application/octet-stream] Wird in ‘./pdfium-5408.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 31% 714K 9s - 3072K ........ ........ ........ ........ ........ ........ 62% 705K 5s - 6144K ........ ........ ........ ........ ........ ........ 93% 675K 1s - 9216K ........ . 100% 757K=14s + 0K ........ ........ ........ ........ ........ ........ 31% 2,54M 3s + 3072K ........ ........ ........ ........ ........ ........ 62% 1,50M 2s + 6144K ........ ........ ........ ........ ........ ........ 93% 1,42M 0s + 9216K ........ . 100% 1,89M=5,6s -2023-02-09 13:56:01 (701 KB/s) - ‘./pdfium-5408.tar.bz2’ gespeichert [10077997/10077997] +2023-03-24 18:10:58 (1,71 MB/s) - ‘./pdfium-5408.tar.bz2’ gespeichert [10077997/10077997] ---2023-02-09 13:56:01-- https://dev-www.libreoffice.org/src/poppler-22.12.0.tar.xz +--2023-03-24 18:10:58-- 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% 1004K=1,8s + 0K ........ ........ ........ .... 100% 1,21M=1,5s -2023-02-09 13:56:03 (1004 KB/s) - ‘./poppler-22.12.0.tar.xz’ gespeichert [1845856/1845856] +2023-03-24 18:11:00 (1,21 MB/s) - ‘./poppler-22.12.0.tar.xz’ gespeichert [1845856/1845856] ---2023-02-09 13:56:03-- https://dev-www.libreoffice.org/src/poppler-data-0.4.11.tar.gz +--2023-03-24 18:11:00-- 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% 731K 2s - 3072K ........ ........ .... 100% 661K=6,2s + 0K ........ ........ ........ ........ ........ ........ 69% 1,94M 1s + 3072K ........ ........ .... 100% 3,47M=1,9s -2023-02-09 13:56:10 (708 KB/s) - ‘./poppler-data-0.4.11.tar.gz’ gespeichert [4497282/4497282] +2023-03-24 18:11:02 (2,23 MB/s) - ‘./poppler-data-0.4.11.tar.gz’ gespeichert [4497282/4497282] ---2023-02-09 13:56:10-- https://dev-www.libreoffice.org/src/postgresql-13.8.tar.bz2 +--2023-03-24 18:11:02-- 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: 21397381 (20M) [application/octet-stream] -Wird in ‘./postgresql-13.8.tar.bz2’ gespeichert. +Länge: 21457594 (20M) [application/octet-stream] +Wird in ‘./postgresql-13.10.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 14% 923K 19s - 3072K ........ ........ ........ ........ ........ ........ 29% 1,07M 15s - 6144K ........ ........ ........ ........ ........ ........ 44% 1,74M 10s - 9216K ........ ........ ........ ........ ........ ........ 58% 1,98M 7s - 12288K ........ ........ ........ ........ ........ ........ 73% 2,11M 4s - 15360K ........ ........ ........ ........ ........ ........ 88% 2,07M 2s - 18432K ........ ........ ........ ........ ...... 100% 1,06M=15s + 0K ........ ........ ........ ........ ........ ........ 14% 2,67M 7s + 3072K ........ ........ ........ ........ ........ ........ 29% 1,94M 6s + 6144K ........ ........ ........ ........ ........ ........ 43% 2,00M 5s + 9216K ........ ........ ........ ........ ........ ........ 58% 905K 5s + 12288K ........ ........ ........ ........ ........ ........ 73% 785K 4s + 15360K ........ ........ ........ ........ ........ ........ 87% 1,22M 2s + 18432K ........ ........ ........ ........ ....... 100% 1,55M=16s -2023-02-09 13:56:24 (1,41 MB/s) - ‘./postgresql-13.8.tar.bz2’ gespeichert [21397381/21397381] +2023-03-24 18:11:18 (1,32 MB/s) - ‘./postgresql-13.10.tar.bz2’ gespeichert [21457594/21457594] ---2023-02-09 13:56:25-- https://dev-www.libreoffice.org/src/Python-3.8.16.tar.xz +--2023-03-24 18:11:18-- 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,50M 10s - 3072K ........ ........ ........ ........ ........ ........ 33% 1,11M 10s - 6144K ........ ........ ........ ........ ........ ........ 49% 1,01M 8s - 9216K ........ ........ ........ ........ ........ ........ 66% 1,50M 5s - 12288K ........ ........ ........ ........ ........ ........ 82% 2,08M 2s - 15360K ........ ........ ........ ........ ........ ........ 99% 2,47M 0s - 18432K .. 100% 3,82M=12s + 0K ........ ........ ........ ........ ........ ........ 16% 2,03M 7s + 3072K ........ ........ ........ ........ ........ ........ 33% 2,10M 6s + 6144K ........ ........ ........ ........ ........ ........ 49% 1,87M 5s + 9216K ........ ........ ........ ........ ........ ........ 66% 1,37M 3s + 12288K ........ ........ ........ ........ ........ ........ 82% 1,33M 2s + 15360K ........ ........ ........ ........ ........ ........ 99% 1,78M 0s + 18432K .. 100% 2,31M=11s -2023-02-09 13:56:37 (1,47 MB/s) - ‘./Python-3.8.16.tar.xz’ gespeichert [19046724/19046724] +2023-03-24 18:11:29 (1,70 MB/s) - ‘./Python-3.8.16.tar.xz’ gespeichert [19046724/19046724] ---2023-02-09 13:56:37-- https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz +--2023-03-24 18:11:29-- 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,64M=0,2s + 0K ..... 100% 1,18M=0,3s -2023-02-09 13:56:38 (1,64 MB/s) - ‘./libqxp-0.0.2.tar.xz’ gespeichert [341760/341760] +2023-03-24 18:11:30 (1,18 MB/s) - ‘./libqxp-0.0.2.tar.xz’ gespeichert [341760/341760] ---2023-02-09 13:56:38-- https://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz +--2023-03-24 18:11:30-- https://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1886657 (1,8M) [application/octet-stream] Wird in ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert. - 0K ........ ........ ........ .... 100% 2,02M=0,9s + 0K ........ ........ ........ .... 100% 1,49M=1,2s -2023-02-09 13:56:39 (2,02 MB/s) - ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert [1886657/1886657] +2023-03-24 18:11:31 (1,49 MB/s) - ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert [1886657/1886657] ---2023-02-09 13:56:39-- https://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz +--2023-03-24 18:11:31-- 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,91M=0,8s + 0K ........ ........ ........ 100% 1,29M=1,2s -2023-02-09 13:56:40 (1,91 MB/s) - ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert [1595647/1595647] +2023-03-24 18:11:33 (1,29 MB/s) - ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert [1595647/1595647] ---2023-02-09 13:56:40-- https://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz +--2023-03-24 18:11:33-- 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,21M=1,3s + 0K ........ ........ ........ 100% 1,72M=0,9s -2023-02-09 13:56:42 (1,21 MB/s) - ‘./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz’ gespeichert [1621566/1621566] +2023-03-24 18:11:34 (1,72 MB/s) - ‘./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz’ gespeichert [1621566/1621566] ---2023-02-09 13:56:42-- https://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 +--2023-03-24 18:11:34-- 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,19M=0,4s + 0K ........ 100% 1,52M=0,3s -2023-02-09 13:56:43 (1,19 MB/s) - ‘./librevenge-0.0.4.tar.bz2’ gespeichert [529833/529833] +2023-03-24 18:11:35 (1,52 MB/s) - ‘./librevenge-0.0.4.tar.bz2’ gespeichert [529833/529833] ---2023-02-09 13:56:43-- https://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip +--2023-03-24 18:11:35-- 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% 1004K=1,5s + 0K ........ ........ ....... 100% 1,92M=0,8s -2023-02-09 13:56:45 (1004 KB/s) - ‘./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip’ gespeichert [1521926/1521926] +2023-03-24 18:11:36 (1,92 MB/s) - ‘./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip’ gespeichert [1521926/1521926] ---2023-02-09 13:56:45-- https://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip +--2023-03-24 18:11:36-- 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% 276M=0s + 0K 100% 332M=0s -2023-02-09 13:56:45 (276 MB/s) - ‘./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip’ gespeichert [9796/9796] +2023-03-24 18:11:36 (332 MB/s) - ‘./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip’ gespeichert [9796/9796] ---2023-02-09 13:56:45-- https://dev-www.libreoffice.org/src/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz +--2023-03-24 18:11:36-- 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% 1,30M 6s - 3072K ........ ........ ........ ........ ........ ........ 56% 1,53M 3s - 6144K ........ ........ ........ ........ ........ ........ 85% 1,98M 1s - 9216K ........ ........ ........ . 100% 1,84M=6,6s + 0K ........ ........ ........ ........ ........ ........ 28% 2,30M 3s + 3072K ........ ........ ........ ........ ........ ........ 56% 2,91M 2s + 6144K ........ ........ ........ ........ ........ ........ 85% 3,00M 1s + 9216K ........ ........ ........ . 100% 2,76M=3,9s -2023-02-09 13:56:52 (1,59 MB/s) - ‘./skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz’ gespeichert [11079112/11079112] +2023-03-24 18:11:40 (2,71 MB/s) - ‘./skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz’ gespeichert [11079112/11079112] ---2023-02-09 13:56:52-- https://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz +--2023-03-24 18:11:40-- https://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 707920 (691K) [application/octet-stream] Wird in ‘./libstaroffice-0.0.7.tar.xz’ gespeichert. - 0K ........ .. 100% 1,58M=0,4s + 0K ........ .. 100% 2,01M=0,3s -2023-02-09 13:56:53 (1,58 MB/s) - ‘./libstaroffice-0.0.7.tar.xz’ gespeichert [707920/707920] +2023-03-24 18:11:41 (2,01 MB/s) - ‘./libstaroffice-0.0.7.tar.xz’ gespeichert [707920/707920] ---2023-02-09 13:56:53-- https://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz +--2023-03-24 18:11:41-- https://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 854296 (834K) [application/octet-stream] Wird in ‘./libvisio-0.1.7.tar.xz’ gespeichert. - 0K ........ ..... 100% 1,74M=0,5s + 0K ........ ..... 100% 2,18M=0,4s -2023-02-09 13:56:54 (1,74 MB/s) - ‘./libvisio-0.1.7.tar.xz’ gespeichert [854296/854296] +2023-03-24 18:11:42 (2,18 MB/s) - ‘./libvisio-0.1.7.tar.xz’ gespeichert [854296/854296] ---2023-02-09 13:56:54-- https://dev-www.libreoffice.org/src/libwpd-0.10.3.tar.xz +--2023-03-24 18:11:42-- https://dev-www.libreoffice.org/src/libwpd-0.10.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 534712 (522K) [application/octet-stream] Wird in ‘./libwpd-0.10.3.tar.xz’ gespeichert. - 0K ........ 100% 1,20M=0,4s + 0K ........ 100% 1,98M=0,3s -2023-02-09 13:56:54 (1,20 MB/s) - ‘./libwpd-0.10.3.tar.xz’ gespeichert [534712/534712] +2023-03-24 18:11:42 (1,98 MB/s) - ‘./libwpd-0.10.3.tar.xz’ gespeichert [534712/534712] ---2023-02-09 13:56:54-- https://dev-www.libreoffice.org/src/libwpg-0.3.3.tar.xz +--2023-03-24 18:11:42-- 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% 1001K=0,3s + 0K ..... 100% 1,70M=0,2s -2023-02-09 13:56:55 (1001 KB/s) - ‘./libwpg-0.3.3.tar.xz’ gespeichert [328664/328664] +2023-03-24 18:11:43 (1,70 MB/s) - ‘./libwpg-0.3.3.tar.xz’ gespeichert [328664/328664] ---2023-02-09 13:56:55-- https://dev-www.libreoffice.org/src/libwps-0.4.12.tar.xz +--2023-03-24 18:11:43-- https://dev-www.libreoffice.org/src/libwps-0.4.12.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 713008 (696K) [application/octet-stream] Wird in ‘./libwps-0.4.12.tar.xz’ gespeichert. - 0K ........ .. 100% 1,13M=0,6s + 0K ........ .. 100% 2,08M=0,3s -2023-02-09 13:56:56 (1,13 MB/s) - ‘./libwps-0.4.12.tar.xz’ gespeichert [713008/713008] +2023-03-24 18:11:43 (2,08 MB/s) - ‘./libwps-0.4.12.tar.xz’ gespeichert [713008/713008] ---2023-02-09 13:56:56-- https://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip +--2023-03-24 18:11:43-- 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% 12,8M=0,002s + 0K 100% 13,3M=0,002s -2023-02-09 13:56:56 (12,8 MB/s) - ‘./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip’ gespeichert [23150/23150] +2023-03-24 18:11:44 (13,3 MB/s) - ‘./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip’ gespeichert [23150/23150] ---2023-02-09 13:56:56-- https://dev-www.libreoffice.org/src/zlib-1.2.13.tar.xz +--2023-03-24 18:11:44-- 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,33M=0,9s + 0K ........ ........ ... 100% 2,27M=0,5s -2023-02-09 13:56:58 (1,33 MB/s) - ‘./zlib-1.2.13.tar.xz’ gespeichert [1296496/1296496] +2023-03-24 18:11:45 (2,27 MB/s) - ‘./zlib-1.2.13.tar.xz’ gespeichert [1296496/1296496] ---2023-02-09 13:56:58-- https://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz +--2023-03-24 18:11:45-- 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% 947K=0,3s + 0K .... 100% 1,68M=0,2s -2023-02-09 13:56:58 (947 KB/s) - ‘./libzmf-0.0.2.tar.xz’ gespeichert [320952/320952] +2023-03-24 18:11:45 (1,68 MB/s) - ‘./libzmf-0.0.2.tar.xz’ gespeichert [320952/320952] ---2023-02-09 13:56:58-- https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf +--2023-03-24 18:11:45-- 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,27M=0,2s + 0K ... 100% 1,47M=0,1s -2023-02-09 13:56:59 (1,27 MB/s) - ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert [207992/207992] +2023-03-24 18:11:46 (1,47 MB/s) - ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert [207992/207992] ---2023-02-09 13:56:59-- https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar +--2023-03-24 18:11:46-- 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% 2,01M 11s - 3072K ........ ........ ........ ........ ........ ........ 22% 1,97M 10s - 6144K ........ ........ ........ ........ ........ ........ 34% 1,16M 11s - 9216K ........ ........ ........ ........ ........ ........ 45% 1,01M 10s - 12288K ........ ........ ........ ........ ........ ........ 57% 1,61M 8s - 15360K ........ ........ ........ ........ ........ ........ 68% 1,74M 5s - 18432K ........ ........ ........ ........ ........ ........ 80% 1,49M 3s - 21504K ........ ........ ........ ........ ........ ........ 91% 1,15M 1s - 24576K ........ ........ ........ ........ .. 100% 1,40M=18s + 0K ........ ........ ........ ........ ........ ........ 11% 2,21M 10s + 3072K ........ ........ ........ ........ ........ ........ 22% 2,13M 9s + 6144K ........ ........ ........ ........ ........ ........ 34% 2,44M 8s + 9216K ........ ........ ........ ........ ........ ........ 45% 1,67M 7s + 12288K ........ ........ ........ ........ ........ ........ 57% 1,20M 6s + 15360K ........ ........ ........ ........ ........ ........ 68% 1,64M 5s + 18432K ........ ........ ........ ........ ........ ........ 80% 1,39M 3s + 21504K ........ ........ ........ ........ ........ ........ 91% 1,88M 1s + 24576K ........ ........ ........ ........ .. 100% 2,34M=15s -2023-02-09 13:57:17 (1,43 MB/s) - ‘./odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar’ gespeichert [27397202/27397202] +2023-03-24 18:12:01 (1,77 MB/s) - ‘./odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar’ gespeichert [27397202/27397202] ---2023-02-09 13:57:18-- https://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar +--2023-03-24 18:12:01-- 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,50M=1,6s + 0K ........ ........ ........ ........ ..... 100% 2,09M=1,1s -2023-02-09 13:57:19 (1,50 MB/s) - ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert [2448421/2448421] +2023-03-24 18:12:02 (2,09 MB/s) - ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert [2448421/2448421] Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/tarballs/libjpeg-turbo-2.1.4.tar.gz and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/tarballs/libjpeg-turbo-2.1.4.tar.gz differ Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/tarballs/libjpeg-turbo-2.1.5.tar.gz and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/tarballs/libjpeg-turbo-2.1.5.tar.gz differ diff -Nru libreoffice-7.5.1~rc2/translations/source/af/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/af/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/af/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/af/extensions/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-03-12 10:33+0000\n" "Last-Translator: Paul Roos \n" -"Language-Team: Afrikaans \n" +"Language-Team: Afrikaans \n" "Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.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 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/basctl/messages.po libreoffice-7.5.2~rc2/translations/source/an/basctl/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/basctl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/basctl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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 11: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.5.1~rc2/translations/source/an/chart2/messages.po libreoffice-7.5.2~rc2/translations/source/an/chart2/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/chart2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/chart2/messages.po 2023-03-24 16:53:38.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-11-22 14:43+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-22 11: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" @@ -3414,7 +3414,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/cui/messages.po libreoffice-7.5.2~rc2/translations/source/an/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-22 11: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" @@ -64,7 +64,7 @@ #: cui/inc/numcategories.hrc:25 msgctxt "numberingformatpage|liststore1" msgid "Scientific" -msgstr "" +msgstr "Scientifico" #. vMka9 #: cui/inc/numcategories.hrc:26 @@ -1286,7 +1286,7 @@ #: cui/inc/strings.hrc:230 msgctxt "RID_SVXSTR_NO" msgid "No" -msgstr "" +msgstr "No" #. irLeD #: cui/inc/strings.hrc:232 @@ -3653,7 +3653,7 @@ #: cui/inc/treeopt.hrc:36 msgctxt "SID_GENERAL_OPTIONS_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. HCH7S #: cui/inc/treeopt.hrc:37 @@ -3804,7 +3804,7 @@ #: cui/inc/treeopt.hrc:73 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. t9DgE #: cui/inc/treeopt.hrc:74 @@ -3952,7 +3952,7 @@ #: cui/inc/treeopt.hrc:109 msgctxt "SID_SC_EDITOPTIONS_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. xE8RH #: cui/inc/treeopt.hrc:110 @@ -4020,7 +4020,7 @@ #: cui/inc/treeopt.hrc:124 msgctxt "SID_SD_EDITOPTIONS_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. unCEW #: cui/inc/treeopt.hrc:125 @@ -4052,7 +4052,7 @@ #: cui/inc/treeopt.hrc:133 msgctxt "SID_SD_GRAPHIC_OPTIONS_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. oiiBb #: cui/inc/treeopt.hrc:134 @@ -4096,7 +4096,7 @@ #: cui/inc/treeopt.hrc:148 msgctxt "SID_FILTER_DLG_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. 9aX4K #: cui/inc/treeopt.hrc:149 @@ -6910,7 +6910,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:465 msgctxt "colorconfigwin|general" msgid "General" -msgstr "" +msgstr "Cheneral" #. 3bVoq #: cui/uiconfig/ui/colorconfigwin.ui:499 @@ -8024,10 +8024,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 @@ -9761,7 +9760,7 @@ #: cui/uiconfig/ui/gallerythemedialog.ui:137 msgctxt "gallerythemedialog|general" msgid "General" -msgstr "" +msgstr "Cheneral" #. BfeDE #: cui/uiconfig/ui/gallerythemedialog.ui:184 @@ -10075,10 +10074,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 @@ -13599,7 +13597,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:651 msgctxt "numberingoptionspage|label2" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. kcgWM #: cui/uiconfig/ui/numberingoptionspage.ui:672 @@ -13831,10 +13829,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 @@ -15954,10 +15951,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 @@ -19915,7 +19911,7 @@ #: cui/uiconfig/ui/signatureline.ui:165 msgctxt "signatureline|label_name" msgid "Name:" -msgstr "" +msgstr "Nombre:" #. dMWtK #. Suggested Signer Title @@ -21718,19 +21714,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 @@ -21796,7 +21792,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.5.1~rc2/translations/source/an/dbaccess/messages.po libreoffice-7.5.2~rc2/translations/source/an/dbaccess/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/dbaccess/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/dbaccess/messages.po 2023-03-24 16:53:38.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-11-25 13:48+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-21 10: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" @@ -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... @@ -2812,7 +2812,7 @@ #: dbaccess/uiconfig/ui/connectionpage.ui:115 msgctxt "connectionpage|generalLabel" msgid "General" -msgstr "" +msgstr "Cheneral" #. BvLEW #: dbaccess/uiconfig/ui/connectionpage.ui:151 @@ -4315,7 +4315,7 @@ #: dbaccess/uiconfig/ui/querypropertiesdialog.ui:123 msgctxt "querypropertiesdialog|nondistinct" msgid "No" -msgstr "" +msgstr "No" #. QAGhF #: dbaccess/uiconfig/ui/querypropertiesdialog.ui:132 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/desktop/messages.po libreoffice-7.5.2~rc2/translations/source/an/desktop/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/desktop/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/desktop/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2022-01-18 17:38+0000\n" +"PO-Revision-Date: 2023-03-21 10: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: 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.5.1~rc2/translations/source/an/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/an/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/extensions/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-03-21 10: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: 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 @@ -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.5.1~rc2/translations/source/an/filter/messages.po libreoffice-7.5.2~rc2/translations/source/an/filter/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/filter/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/filter/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 13:11+0100\n" -"PO-Revision-Date: 2022-01-17 16:38+0000\n" +"PO-Revision-Date: 2023-03-22 11: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 @@ -557,10 +557,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 @@ -638,13 +637,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 @@ -656,7 +655,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:600 msgctxt "pdfgeneralpage|format" msgid "XML" -msgstr "" +msgstr "XML" #. xbYYC #: filter/uiconfig/ui/pdfgeneralpage.ui:604 @@ -716,7 +715,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:773 msgctxt "pdfgeneralpage|label4" msgid "General" -msgstr "" +msgstr "Cheneral" #. FQzGc #: filter/uiconfig/ui/pdfgeneralpage.ui:802 @@ -884,7 +883,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:90 msgctxt "pdflinkspage|label1" msgid "General" -msgstr "" +msgstr "Cheneral" #. mGRBH #: filter/uiconfig/ui/pdflinkspage.ui:119 @@ -944,7 +943,7 @@ #: filter/uiconfig/ui/pdfoptionsdialog.ui:138 msgctxt "pdfoptionsdialog|general" msgid "General" -msgstr "" +msgstr "Cheneral" #. DMBHC #: filter/uiconfig/ui/pdfoptionsdialog.ui:185 @@ -2090,7 +2089,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.5.1~rc2/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:44+0100\n" -"PO-Revision-Date: 2022-11-29 18:26+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: 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 @@ -5726,11 +5724,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 +5770,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 @@ -7303,7 +7299,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. aPW8y #: ChartWindowState.xcu @@ -7475,7 +7471,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. gT898 #: DbReportWindowState.xcu @@ -8995,7 +8991,6 @@ #. FWGDR #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:InsertToolbox\n" @@ -12373,7 +12368,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 @@ -12724,7 +12719,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 @@ -12792,7 +12787,6 @@ #. XzZLB #: DrawWindowState.xcu -#, fuzzy msgctxt "" "DrawWindowState.xcu\n" "..DrawWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -12843,14 +12837,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 @@ -17058,7 +17051,6 @@ #. 2yKvJ #: GenericCategories.xcu -#, fuzzy msgctxt "" "GenericCategories.xcu\n" "..GenericCategories.Commands.Categories.9\n" @@ -17132,7 +17124,6 @@ #. F7ZM5 #: GenericCategories.xcu -#, fuzzy msgctxt "" "GenericCategories.xcu\n" "..GenericCategories.Commands.Categories.16\n" @@ -21694,14 +21685,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 @@ -27954,14 +27944,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 @@ -29087,7 +29076,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 @@ -29377,7 +29366,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 @@ -29477,7 +29466,6 @@ #. tBpp5 #: ImpressWindowState.xcu -#, fuzzy msgctxt "" "ImpressWindowState.xcu\n" "..ImpressWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -29645,14 +29633,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 @@ -30308,14 +30295,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 @@ -34187,25 +34173,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 @@ -35674,14 +35658,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 @@ -36860,14 +36843,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 formateo" +msgstr "Marcas de formatación" #. FFNXc #: WriterCommands.xcu @@ -37138,7 +37120,7 @@ "Label\n" "value.text" msgid "Position and Size" -msgstr "" +msgstr "Posición y grandaria" #. ArKzw #: WriterCommands.xcu @@ -37148,7 +37130,7 @@ "Label\n" "value.text" msgid "Image Properties" -msgstr "" +msgstr "Propiedatz d'a imachen" #. KEZCp #: WriterCommands.xcu @@ -38563,7 +38545,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 @@ -38655,7 +38637,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. Bp5Du #: WriterFormWindowState.xcu @@ -38747,7 +38729,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 @@ -39080,7 +39062,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 @@ -39183,7 +39165,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. 6QzrE #: WriterGlobalWindowState.xcu @@ -39265,7 +39247,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 @@ -39355,7 +39337,6 @@ #. 9HGCu #: WriterGlobalWindowState.xcu -#, fuzzy msgctxt "" "WriterGlobalWindowState.xcu\n" "..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -39564,7 +39545,7 @@ "UIName\n" "value.text" msgid "Formatting (Styles)" -msgstr "" +msgstr "Formatación (estilos)" #. ogQzM #: WriterReportWindowState.xcu @@ -39618,7 +39599,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 @@ -39710,7 +39691,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. FftME #: WriterReportWindowState.xcu @@ -39801,7 +39782,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 @@ -40111,7 +40092,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 @@ -40214,7 +40195,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. BwCtL #: WriterWebWindowState.xcu @@ -40326,7 +40307,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 @@ -40395,7 +40376,6 @@ #. sg6nC #: WriterWebWindowState.xcu -#, fuzzy msgctxt "" "WriterWebWindowState.xcu\n" "..WriterWebWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -40575,7 +40555,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 @@ -40698,7 +40678,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. UHYbB #: WriterWindowState.xcu @@ -40820,7 +40800,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 @@ -40910,7 +40890,6 @@ #. kPwDN #: WriterWindowState.xcu -#, fuzzy msgctxt "" "WriterWindowState.xcu\n" "..WriterWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -41248,7 +41227,7 @@ "UIName\n" "value.text" msgid "Formatting (Styles)" -msgstr "" +msgstr "Formatación (estilos)" #. GqBDG #: XFormsWindowState.xcu @@ -41302,7 +41281,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 @@ -41405,7 +41384,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. 89GBD #: XFormsWindowState.xcu @@ -41487,7 +41466,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 @@ -41577,7 +41556,6 @@ #. SdDEA #: XFormsWindowState.xcu -#, fuzzy msgctxt "" "XFormsWindowState.xcu\n" "..XFormsWindowState.UIElements.States.private:resource/toolbar/insertbar\n" diff -Nru libreoffice-7.5.1~rc2/translations/source/an/reportdesign/messages.po libreoffice-7.5.2~rc2/translations/source/an/reportdesign/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/reportdesign/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/reportdesign/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-21 15:34+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: 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 @@ -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.5.1~rc2/translations/source/an/sc/messages.po libreoffice-7.5.2~rc2/translations/source/an/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/sc/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-22 11: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" @@ -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 @@ -1616,6 +1615,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 @@ -3379,7 +3381,7 @@ #: sc/inc/globstr.hrc:519 msgctxt "STR_GENERAL" msgid "General" -msgstr "" +msgstr "Cheneral" #. Ekqp8 #: sc/inc/globstr.hrc:520 @@ -3416,7 +3418,7 @@ #: sc/inc/globstr.hrc:525 msgctxt "STR_SCIENTIFIC" msgid "Scientific" -msgstr "" +msgstr "Scientifico" #. DGyo9 #: sc/inc/globstr.hrc:526 @@ -20747,10 +20749,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 @@ -21061,10 +21062,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 @@ -23283,7 +23283,7 @@ #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:136 msgctxt "dataproviderdlg/url" msgid "URL:" -msgstr "" +msgstr "URL:" #. GKDQA #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:159 @@ -23553,7 +23553,7 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:65 msgctxt "datetimetransformationentry|time" msgid "Time" -msgstr "" +msgstr "Hora" #. bRjJe #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:80 @@ -23741,10 +23741,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 @@ -26202,10 +26201,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 @@ -29660,10 +29658,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 @@ -32131,7 +32128,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:85 msgctxt "sidebarnumberformat|numberformatcombobox" msgid "General" -msgstr "" +msgstr "Cheneral" #. SmpsG #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:86 @@ -32167,7 +32164,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:91 msgctxt "sidebarnumberformat|numberformatcombobox" msgid "Scientific" -msgstr "" +msgstr "Scientifico" #. AQV5y #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:92 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/sd/messages.po libreoffice-7.5.2~rc2/translations/source/an/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/sd/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:12+0100\n" -"PO-Revision-Date: 2023-02-01 09:32+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: 1542022406.000000\n" #. WDjkB @@ -3525,7 +3525,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 @@ -3719,7 +3719,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 @@ -5507,10 +5507,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/sfx2/messages.po libreoffice-7.5.2~rc2/translations/source/an/sfx2/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/sfx2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/sfx2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-09 11:30+0100\n" -"PO-Revision-Date: 2022-10-21 14:17+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: 1540149298.000000\n" #. bHbFE @@ -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 @@ -2608,7 +2608,7 @@ #: sfx2/uiconfig/ui/addtargetdialog.ui:89 msgctxt "addtargetdialog|label_name" msgid "Name:" -msgstr "" +msgstr "Nombre:" #. LXpbz #: sfx2/uiconfig/ui/addtargetdialog.ui:120 @@ -2904,7 +2904,7 @@ #: sfx2/uiconfig/ui/cmisline.ui:73 msgctxt "cmisline|no" msgid "No" -msgstr "" +msgstr "No" #. kDKBB #: sfx2/uiconfig/ui/commandpopup.ui:35 @@ -3716,7 +3716,7 @@ #: sfx2/uiconfig/ui/linefragment.ui:200 msgctxt "linefragment|no" msgid "No" -msgstr "" +msgstr "No" #. muk9B #: sfx2/uiconfig/ui/linkeditdialog.ui:8 @@ -3939,7 +3939,7 @@ #: sfx2/uiconfig/ui/managestylepage.ui:33 msgctxt "managestylepage|nameft" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. VroAG #: sfx2/uiconfig/ui/managestylepage.ui:47 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/starmath/messages.po libreoffice-7.5.2~rc2/translations/source/an/starmath/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/starmath/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/starmath/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-12-21 15:34+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: 1525785846.000000\n" #. GrDhX @@ -1928,7 +1928,7 @@ #: starmath/inc/strings.hrc:271 msgctxt "RID_WP_HELP" msgid "Weierstrass p" -msgstr "" +msgstr "p de Weierstraß" #. f9sfv #: starmath/inc/strings.hrc:272 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/svtools/messages.po libreoffice-7.5.2~rc2/translations/source/an/svtools/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/svtools/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/svtools/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-21 15:35+0000\n" +"PO-Revision-Date: 2023-03-13 11: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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542195186.000000\n" #. fLdeV @@ -2575,7 +2575,7 @@ #: svtools/inc/langtab.hrc:29 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. aUWzb #: svtools/inc/langtab.hrc:30 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/svx/messages.po libreoffice-7.5.2~rc2/translations/source/an/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/svx/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-22 11: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" @@ -1455,31 +1455,31 @@ #: include/svx/strings.hrc:264 msgctxt "STR_ItemValNO" msgid "No" -msgstr "" +msgstr "No" #. aeEuB #: include/svx/strings.hrc:265 msgctxt "STR_ItemValCAPTIONTYPE1" msgid "Type 1" -msgstr "" +msgstr "Tipo 1" #. BFaLY #: include/svx/strings.hrc:266 msgctxt "STR_ItemValCAPTIONTYPE2" msgid "Type 2" -msgstr "" +msgstr "Tipo 2" #. KFMjw #: include/svx/strings.hrc:267 msgctxt "STR_ItemValCAPTIONTYPE3" msgid "Type 3" -msgstr "" +msgstr "Tipo 3" #. 48UKA #: include/svx/strings.hrc:268 msgctxt "STR_ItemValCAPTIONTYPE4" msgid "Type 4" -msgstr "" +msgstr "Tipo 4" #. DVm64 #: include/svx/strings.hrc:269 @@ -7371,7 +7371,7 @@ #: include/svx/strings.hrc:1317 msgctxt "RID_SVXSTR_INSERT_TEXT" msgid "Insert" -msgstr "" +msgstr "Ficar" #. 2BBEb #: include/svx/strings.hrc:1318 @@ -13177,7 +13177,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:114 msgctxt "adddataitemdialog|nameft" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. C2HJB #: svx/uiconfig/ui/adddataitemdialog.ui:128 @@ -13359,7 +13359,7 @@ #: svx/uiconfig/ui/addinstancedialog.ui:104 msgctxt "addinstancedialog|label2" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. SyBuY #: svx/uiconfig/ui/addinstancedialog.ui:118 @@ -13413,7 +13413,7 @@ #: svx/uiconfig/ui/addmodeldialog.ui:125 msgctxt "addmodeldialog|label2" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. BCjAN #: svx/uiconfig/ui/addmodeldialog.ui:139 @@ -13456,7 +13456,7 @@ #: svx/uiconfig/ui/addsubmissiondialog.ui:105 msgctxt "addsubmissiondialog|label2" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. uHEpR #: svx/uiconfig/ui/addsubmissiondialog.ui:119 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/sw/messages.po libreoffice-7.5.2~rc2/translations/source/an/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-22 11: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" @@ -2609,7 +2609,7 @@ #: sw/inc/strings.hrc:73 msgctxt "STR_POOLFRM_LABEL" msgid "Labels" -msgstr "~Etiquetas" +msgstr "Etiquetas" #. JV6pZ #. Template names @@ -3606,7 +3606,7 @@ #: sw/inc/strings.hrc:245 msgctxt "STR_LAB_TITLE" msgid "Labels" -msgstr "~Etiquetas" +msgstr "Etiquetas" #. 2otxp #: sw/inc/strings.hrc:247 @@ -3678,7 +3678,7 @@ #: sw/inc/strings.hrc:258 msgctxt "SW_STR_NONE" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. C4tz3 #: sw/inc/strings.hrc:259 @@ -3851,7 +3851,7 @@ #: sw/inc/strings.hrc:287 msgctxt "STR_NUMRULE_DEFNAME" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. Vk8M5 #: sw/inc/strings.hrc:288 @@ -6257,7 +6257,7 @@ #: sw/inc/strings.hrc:699 msgctxt "STR_EDIT_INSERT" msgid "Insert" -msgstr "" +msgstr "Ficar" #. AT9SS #: sw/inc/strings.hrc:700 @@ -7898,25 +7898,25 @@ #: sw/inc/strings.hrc:1009 msgctxt "FMT_NUM_ABC" msgid "A B C" -msgstr "" +msgstr "A B C" #. jm7G7 #: sw/inc/strings.hrc:1010 msgctxt "FMT_NUM_SABC" msgid "a b c" -msgstr "" +msgstr "a b c" #. ETgy7 #: sw/inc/strings.hrc:1011 msgctxt "FMT_NUM_ABC_N" msgid "A .. AA .. AAA" -msgstr "" +msgstr "A .. AA .. AAA" #. m84Fb #: sw/inc/strings.hrc:1012 msgctxt "FMT_NUM_SABC_N" msgid "a .. aa .. aaa" -msgstr "" +msgstr "a .. aa .. aaa" #. d9YtB #: sw/inc/strings.hrc:1013 @@ -8085,7 +8085,7 @@ #: sw/inc/strings.hrc:1050 msgctxt "FMT_REF_ONLYSEQNO" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. QBGit #: sw/inc/strings.hrc:1051 @@ -10124,7 +10124,7 @@ #: sw/inc/strings.hrc:1430 msgctxt "optredlinepage|insertedpreview" msgid "Insert" -msgstr "" +msgstr "Ficar" #. NL48o #: sw/inc/strings.hrc:1431 @@ -10191,14 +10191,13 @@ #: sw/inc/strings.hrc:1442 msgctxt "createautomarkdialog|no" msgid "No" -msgstr "" +msgstr "No" #. KhKwa #: sw/inc/strings.hrc:1444 -#, fuzzy msgctxt "sidebarwrap|customlabel" msgid "Custom" -msgstr "Personalizau 1" +msgstr "Personalizau" #. aHi89 #: sw/inc/strings.hrc:1445 @@ -11378,10 +11377,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 @@ -11460,7 +11458,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:93 msgctxt "bibliographyentry|insert" msgid "Insert" -msgstr "" +msgstr "Ficar" #. rUZwC #: sw/uiconfig/swriter/ui/bibliographyentry.ui:101 @@ -12063,7 +12061,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 @@ -12247,21 +12245,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 @@ -13923,7 +13919,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 @@ -14087,7 +14083,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 @@ -15535,7 +15531,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 @@ -16210,10 +16206,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 @@ -16778,10 +16773,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 @@ -16864,10 +16858,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 @@ -16939,7 +16932,7 @@ #: sw/uiconfig/swriter/ui/indexentry.ui:92 msgctxt "indexentry|insert" msgid "Insert" -msgstr "" +msgstr "Ficar" #. qbAWn #: sw/uiconfig/swriter/ui/indexentry.ui:170 @@ -17546,7 +17539,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:118 msgctxt "insertbookmark|insert" msgid "Insert" -msgstr "" +msgstr "Ficar" #. 56gF6 #: sw/uiconfig/swriter/ui/insertbookmark.ui:136 @@ -17722,7 +17715,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:216 msgctxt "insertbreak|liststore1" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. 8WDUc #: sw/uiconfig/swriter/ui/insertbreak.ui:220 @@ -17883,7 +17876,7 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:429 msgctxt "insertcaption|liststore1" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. hKFSr #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:57 @@ -18191,7 +18184,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 @@ -18269,7 +18262,7 @@ #: sw/uiconfig/swriter/ui/insertscript.ui:178 msgctxt "insertscript|url" msgid "URL:" -msgstr "" +msgstr "URL:" #. sYT47 #: sw/uiconfig/swriter/ui/insertscript.ui:188 @@ -18298,10 +18291,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 @@ -18375,7 +18367,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:53 msgctxt "inserttable|ok" msgid "Insert" -msgstr "" +msgstr "Ficar" #. AzYkF #: sw/uiconfig/swriter/ui/inserttable.ui:61 @@ -18397,10 +18389,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 @@ -18438,7 +18429,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:257 msgctxt "inserttable|label1" msgid "General" -msgstr "" +msgstr "Cheneral" #. dYEPP #: sw/uiconfig/swriter/ui/inserttable.ui:290 @@ -18522,7 +18513,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 @@ -18540,7 +18531,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 @@ -18924,10 +18915,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 @@ -21425,7 +21415,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 @@ -22642,28 +22632,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 @@ -23948,7 +23935,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:64 msgctxt "optredlinepage|insert" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. mhAvC #: sw/uiconfig/swriter/ui/optredlinepage.ui:65 @@ -24136,7 +24123,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:525 msgctxt "optredlinepage|markpos" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. gj7eD #: sw/uiconfig/swriter/ui/optredlinepage.ui:526 @@ -24507,7 +24494,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 @@ -24604,7 +24591,7 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:328 msgctxt "outlinenumberingpage|label2" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. xVDF2 #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:364 @@ -29919,31 +29906,31 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:872 msgctxt "tocindexpage|brackets" msgid "[none]" -msgstr "" +msgstr "[garra]" #. hpS6x #: sw/uiconfig/swriter/ui/tocindexpage.ui:873 msgctxt "tocindexpage|brackets" msgid "[]" -msgstr "" +msgstr "[ ]" #. RcAuE #: sw/uiconfig/swriter/ui/tocindexpage.ui:874 msgctxt "tocindexpage|brackets" msgid "()" -msgstr "" +msgstr "( )" #. 68zRA #: sw/uiconfig/swriter/ui/tocindexpage.ui:875 msgctxt "tocindexpage|brackets" msgid "{}" -msgstr "" +msgstr "{ }" #. fSv5S #: sw/uiconfig/swriter/ui/tocindexpage.ui:876 msgctxt "tocindexpage|brackets" msgid "<>" -msgstr "" +msgstr "< >" #. kcJWC #: sw/uiconfig/swriter/ui/tocindexpage.ui:880 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-7.5.2~rc2/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-7.5.1~rc2/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-21 10: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: 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.5.1~rc2/translations/source/an/vcl/messages.po libreoffice-7.5.2~rc2/translations/source/an/vcl/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/vcl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/vcl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-09-21 09:47+0000\n" +"PO-Revision-Date: 2023-03-21 10: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: 1542022411.000000\n" #. k5jTM @@ -2435,7 +2435,7 @@ #: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" -msgstr "" +msgstr "Cheneral" #. CzGM4 #: vcl/uiconfig/ui/printdialog.ui:1455 diff -Nru libreoffice-7.5.1~rc2/translations/source/an/wizards/messages.po libreoffice-7.5.2~rc2/translations/source/an/wizards/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/wizards/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/wizards/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 14:06+0100\n" -"PO-Revision-Date: 2022-03-02 17:39+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: 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 @@ -402,7 +402,6 @@ #. Y4XMj #: wizards/com/sun/star/wizards/common/strings.hrc:97 -#, fuzzy msgctxt "RID_LETTERWIZARDDIALOG_START_43" msgid "Name:" msgstr "Nombre:" diff -Nru libreoffice-7.5.1~rc2/translations/source/an/wizards/source/resources.po libreoffice-7.5.2~rc2/translations/source/an/wizards/source/resources.po --- libreoffice-7.5.1~rc2/translations/source/an/wizards/source/resources.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/wizards/source/resources.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 14:06+0100\n" -"PO-Revision-Date: 2022-03-02 17:39+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: 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.5.1~rc2/translations/source/an/writerperfect/messages.po libreoffice-7.5.2~rc2/translations/source/an/writerperfect/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/writerperfect/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/writerperfect/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 10: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: 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.5.1~rc2/translations/source/an/xmlsecurity/messages.po libreoffice-7.5.2~rc2/translations/source/an/xmlsecurity/messages.po --- libreoffice-7.5.1~rc2/translations/source/an/xmlsecurity/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/an/xmlsecurity/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-03-21 10: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: 1527110898.000000\n" #. EyJrF @@ -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.5.1~rc2/translations/source/ast/basctl/messages.po libreoffice-7.5.2~rc2/translations/source/ast/basctl/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/basctl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/basctl/messages.po 2023-03-24 16:53:38.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-07-06 20:18+0200\n" -"PO-Revision-Date: 2023-02-22 14:22+0000\n" +"PO-Revision-Date: 2023-03-21 10: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" @@ -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.5.1~rc2/translations/source/ast/cui/messages.po libreoffice-7.5.2~rc2/translations/source/ast/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-22 11: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" @@ -56,7 +56,7 @@ #: cui/inc/numcategories.hrc:24 msgctxt "numberingformatpage|liststore1" msgid "Time" -msgstr "Tiempu" +msgstr "Hora" #. xnmxf #: cui/inc/numcategories.hrc:25 @@ -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:85 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "AutoCaption" -msgstr "Pie automáticu" +msgstr "Lleenda automática" #. aGnq6 #: cui/inc/treeopt.hrc:86 @@ -5342,19 +5342,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 @@ -12556,10 +12556,9 @@ #. CqT9E #: cui/uiconfig/ui/macroassignpage.ui:204 -#, fuzzy msgctxt "macroassignpage|label1" msgid "Assign" -msgstr "_Asignar" +msgstr "Atribuyir" #. v49A4 #: cui/uiconfig/ui/macroassignpage.ui:218 @@ -13000,13 +12999,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 @@ -15431,7 +15430,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 @@ -17884,13 +17883,13 @@ #: cui/uiconfig/ui/pageformatpage.ui:571 msgctxt "pageformatpage|liststorePageLayout" msgid "Right and left" -msgstr "Derecha y esquierda" +msgstr "Derecha ya izquierda" #. xetCH #: cui/uiconfig/ui/pageformatpage.ui:572 msgctxt "pageformatpage|liststorePageLayout" msgid "Mirrored" -msgstr "Reflejado" +msgstr "Espeyáu" #. 47EHF #: cui/uiconfig/ui/pageformatpage.ui:573 @@ -18566,10 +18565,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 @@ -19797,13 +19795,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/dbaccess/messages.po libreoffice-7.5.2~rc2/translations/source/ast/dbaccess/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/dbaccess/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/dbaccess/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-25 13:48+0100\n" -"PO-Revision-Date: 2022-11-02 09:22+0000\n" +"PO-Revision-Date: 2023-03-21 10: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: 1524566374.000000\n" #. BiN6g @@ -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 @@ -2239,6 +2239,9 @@ "Click 'Browse...' to select an ODBC data source that is already registered in %PRODUCTNAME.\n" "Please contact your system administrator if you are unsure about the following settings." msgstr "" +"Escribi'l nome de la fonte de datos ODBC cola que quies coneutar.\n" +"Calca «Restolar» pa escoyer una base de datos ODBC yá rexistrada en %PRODUCTNAME.\n" +"Comunícate colos alministradores del sistema si tienes duldes de los axustes siguientes." #. dmi7n #: dbaccess/inc/strings.hrc:390 @@ -5160,10 +5163,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.5.1~rc2/translations/source/ast/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po libreoffice-7.5.2~rc2/translations/source/ast/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po --- libreoffice-7.5.1~rc2/translations/source/ast/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-03-01 12:03+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: 1369347961.000000\n" #. Bshz7 @@ -34,4 +34,4 @@ "Label\n" "value.text" msgid "Hungarian Sentence Checking" -msgstr "Correición de frasen n'húngaru" +msgstr "Correición de frases n'húngaru" diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/ast/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/extensions/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 10: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: 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.5.1~rc2/translations/source/ast/filter/source/config/fragments/filters.po libreoffice-7.5.2~rc2/translations/source/ast/filter/source/config/fragments/filters.po --- libreoffice-7.5.1~rc2/translations/source/ast/filter/source/config/fragments/filters.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/filter/source/config/fragments/filters.po 2023-03-24 16:53:38.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-10-10 13:35+0200\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-03-07 08: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" @@ -527,7 +527,7 @@ "UIName\n" "value.text" msgid "Word 2003 XML" -msgstr "" +msgstr "XML de Word 2003" #. RQrx8 #: MS_Word_2007_XML.xcu @@ -587,7 +587,7 @@ "UIName\n" "value.text" msgid "Word 97–2003" -msgstr "" +msgstr "Word 97-2003" #. 5dqtn #: MS_Word_97_Vorlage.xcu @@ -597,7 +597,7 @@ "UIName\n" "value.text" msgid "Word 97–2003 Template" -msgstr "" +msgstr "Plantía de Word 97-2003" #. GnuAC #: MS_Works.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/framework/messages.po libreoffice-7.5.2~rc2/translations/source/ast/framework/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/framework/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/framework/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: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: 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.5.1~rc2/translations/source/ast/helpcontent2/source/text/sbasic/guide.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/sbasic/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/sbasic/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-18 00:30+0000\n" +"PO-Revision-Date: 2023-03-22 12: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" @@ -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.5.1~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-07 12:19+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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: 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.5.1~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.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: 2023-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-05 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" @@ -2759,7 +2759,7 @@ "par_id871619098478513\n" "help.text" msgid "Returns True if the specified FormDocument is currently open." -msgstr "" +msgstr "Devuelve True si'l FormDocument especificáu ta abiertu." #. njjFg #: sf_base.xhp @@ -9896,7 +9896,7 @@ "par_id891600788076190\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. 5FdAQ #: sf_datasheet.xhp @@ -9968,7 +9968,7 @@ "par_id21600788076758\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. faBy9 #: sf_datasheet.xhp @@ -10013,7 +10013,7 @@ "par_id531600789141795\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. TSNA5 #: sf_datasheet.xhp @@ -29372,7 +29372,7 @@ "tit\n" "help.text" msgid "ScriptForge.UI service" -msgstr "" +msgstr "Serviciu ScriptForge.UI" #. rJz4Z #: sf_ui.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/sbasic/shared.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-21 09:34+0000\n" +"PO-Revision-Date: 2023-03-13 17: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" @@ -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 @@ -9365,7 +9365,7 @@ "par_id3155132\n" "help.text" msgid "RGB (Red, Green, Blue)" -msgstr "RGB (Colloráu, Verde, Azul)" +msgstr "RGB (bermeyu, verde, azul)" #. QM73e #: 03010305.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." #. 2XAYm #: 03010306.xhp @@ -20399,7 +20399,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,9 +4,9 @@ "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-12-08 19:46+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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" @@ -35079,7 +35079,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 @@ -39147,7 +39147,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 muestra" #. X7TFm #: 04060185.xhp @@ -42513,7 +42513,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 @@ -42522,7 +42522,7 @@ "hd_id3149121\n" "help.text" msgid "Contains column labels" -msgstr "Contien etiquetes de columna" +msgstr "Contién etiquetes de columna" #. DxBAW #: 04070400.xhp @@ -45240,7 +45240,7 @@ "hd_id31531891\n" "help.text" msgid "Condition list entries" -msgstr "" +msgstr "Entraes de la llista de condiciones" #. udAbc #: 05120000.xhp @@ -48327,7 +48327,7 @@ "tit\n" "help.text" msgid "Define Database Range" -msgstr "Definir área de base de datos" +msgstr "Definir estaya de la base de datos" #. AgxXS #: 12010000.xhp @@ -48336,7 +48336,7 @@ "hd_id3157909\n" "help.text" msgid "Define Range" -msgstr "" +msgstr "Definir la estaya" #. 8zFH5 #: 12010000.xhp @@ -48453,7 +48453,7 @@ "hd_id3153379\n" "help.text" msgid "Contains column labels" -msgstr "Contien etiquetes de columna" +msgstr "Contién etiquetes de columna" #. Fvoqg #: 12010100.xhp @@ -52395,7 +52395,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 @@ -66705,7 +66705,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 @@ -67069,6 +67069,7 @@ #. 8sQry #: func_webservice.xhp +#, fuzzy msgctxt "" "func_webservice.xhp\n" "bm_id3149012\n" diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/scalc/02.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/scalc/02.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/scalc/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/scalc/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-07 12:18+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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: 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.5.1~rc2/translations/source/ast/helpcontent2/source/text/scalc/06.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/scalc/06.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/scalc/06.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/scalc/06.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-02-21 14:35+0000\n" -"Last-Translator: Xandru Martino Ruz \n" -"Language-Team: Asturian \n" +"PO-Revision-Date: 2023-03-02 08: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: 1524568656.000000\n" #. HDsTF @@ -23,4 +23,4 @@ "tit\n" "help.text" msgid "Calc Sample Files" -msgstr "Ficheros d'exemplu del Calc" +msgstr "Ficheros d'exemplu de Calc" diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/scalc/guide.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/scalc/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/scalc/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-12 14:11+0000\n" +"PO-Revision-Date: 2023-03-21 06: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: 1542196265.000000\n" @@ -4155,7 +4155,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»." #. sHgcT #: currency_format.xhp @@ -7116,7 +7116,7 @@ "tit\n" "help.text" msgid "Entering Fractions" -msgstr "Introducir fracciones" +msgstr "Introducir fraiciones" #. AJMeW #: fraction_enter.xhp @@ -7134,7 +7134,7 @@ "hd_id3155411\n" "help.text" msgid "Entering Fractions " -msgstr "Introducir fracciones" +msgstr "Introducir fraiciones" #. NEuqx #: fraction_enter.xhp @@ -7143,7 +7143,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 @@ -7170,7 +7170,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 @@ -9699,7 +9699,7 @@ "tit\n" "help.text" msgid "Editing Pivot Charts" -msgstr "" +msgstr "Editar gráfiques dinámiques" #. LsYBC #: pivotchart_edit.xhp @@ -9816,7 +9816,7 @@ "tit\n" "help.text" msgid "Pivot Chart Update" -msgstr "" +msgstr "Anovamientu de tables dinámiques" #. cUrFa #: pivotchart_update.xhp @@ -9852,7 +9852,7 @@ "par_id451525146722974\n" "help.text" msgid "Choose Data - Pivot Table - Refresh." -msgstr "" +msgstr "Escueyi Datos - Tabla dinámica - Anovar." #. Q3QuQ #: pivotchart_update.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/scalc.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/scalc.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/scalc.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/scalc.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-15 10:06+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" @@ -257,7 +257,7 @@ "hd_id241636195404363\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentarios" #. 2QmH5 #: main0103.xhp @@ -293,7 +293,7 @@ "hd_id3125863\n" "help.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. Dp7mC #: main0104.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/schart/01.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/schart/01.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/schart/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/schart/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-08 10:41+0000\n" +"PO-Revision-Date: 2023-03-08 09:32+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: 1519748866.000000\n" #. DsZFP @@ -4955,7 +4955,7 @@ "par_id841665496617023\n" "help.text" msgid "Uncheck the option Show data table." -msgstr "" +msgstr "Desmarca la opción Amosar la tabla de datos." #. W8sr5 #: data_table.xhp @@ -4991,7 +4991,7 @@ "par_id571665497168086\n" "help.text" msgid "Format properties of the data table:" -msgstr "" +msgstr "Propiedaes del formatu de la tabla de datos:" #. 5tT7C #: data_table.xhp @@ -5027,7 +5027,7 @@ "par_id681665497198016\n" "help.text" msgid "Show or hide internal column borders." -msgstr "" +msgstr "Amosar o anubrir los berbesos de les columnes interiores." #. 8ZYS2 #: data_table.xhp @@ -5045,7 +5045,7 @@ "par_id681665497198017\n" "help.text" msgid "Show or hide borders around the table." -msgstr "" +msgstr "Amosar o anubrir los berbesos alredor de la tabla." #. YvKdx #: data_table.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/sdraw.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/sdraw.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/sdraw.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/sdraw.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-08 10:42+0000\n" +"PO-Revision-Date: 2023-03-13 17: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: 1507111981.000000\n" #. dHbww @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared/00.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared/00.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared/00.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-22 12: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" @@ -1598,7 +1598,7 @@ "par_id3147212\n" "help.text" msgid "Related Topics" -msgstr "Temes rellacionaes" +msgstr "Temes rellacionaos" #. bBAN4 #: 00000004.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared/01.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-21 09:33+0000\n" +"PO-Revision-Date: 2023-03-13 17: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" @@ -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 @@ -2534,7 +2534,7 @@ "hd_id3147000\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. 2FUcZ #: 01060000.xhp @@ -2696,7 +2696,7 @@ "hd_id3152996\n" "help.text" msgid "File type" -msgstr "" +msgstr "Triba de ficheru" #. sA2Ea #: 01060002.xhp @@ -2714,7 +2714,7 @@ "hd_id3148539\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. 4uxaW #: 01060002.xhp @@ -2723,7 +2723,7 @@ "par_id21513472326060\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. HBR4d #: 01060002.xhp @@ -4100,7 +4100,7 @@ "par_01110001\n" "help.text" msgid "Select File - Templates." -msgstr "" +msgstr "Escueyi Ficheru - Plantíes." #. xfFYL #: 01110101.xhp @@ -4199,7 +4199,7 @@ "hd_id3145119\n" "help.text" msgid "Assign" -msgstr "" +msgstr "Asignar" #. 7XELF #: 01110101.xhp @@ -41198,7 +41198,7 @@ "hd_id3149388\n" "help.text" msgid "Assign" -msgstr "" +msgstr "Asignar" #. vXXCe #: 06130000.xhp @@ -47327,7 +47327,7 @@ "hd_id3153089\n" "help.text" msgid "File Type" -msgstr "" +msgstr "Triba de ficheru" #. qCFFY #: gallery_files.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared/02.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared/02.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-27 11:24+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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: 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" #. eJywq #: 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 @@ -17826,7 +17826,7 @@ "tit\n" "help.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. 3BsfP #: 20030000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared/guide.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared/guide.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-27 11:24+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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: 1542196271.000000\n" #. iharT @@ -6566,7 +6566,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Inorar el campu (nun importar)" #. LEJDn #: csv_params.xhp @@ -6575,7 +6575,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Inglés (EE. XX.)" #. wLth6 #: csv_params.xhp @@ -7448,7 +7448,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 @@ -7457,7 +7457,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 "Abre'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 @@ -11129,7 +11129,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 @@ -25862,7 +25862,7 @@ "tit\n" "help.text" msgid "Start Center" -msgstr "Centru d'Entamu" +msgstr "Centru d'entamu" #. BezyC #: startcenter.xhp @@ -26771,7 +26771,7 @@ "par_id431607690468509\n" "help.text" msgid "Extensions Icon" -msgstr "" +msgstr "Iconu Estensiones" #. mwqRi #: template_manager.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared/optionen.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared/optionen.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared/optionen.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-22 12: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" @@ -140,7 +140,7 @@ "hd_id3153188\n" "help.text" msgid "%PRODUCTNAME Writer" -msgstr "%PRODUCTNAME Writer" +msgstr "Writer de %PRODUCTNAME" #. vNkTY #: 01000000.xhp @@ -149,7 +149,7 @@ "hd_id3150104\n" "help.text" msgid "%PRODUCTNAME Writer/Web" -msgstr "%PRODUCTNAME Writer/Web" +msgstr "Writer/Web de %PRODUCTNAME" #. FCjgZ #: 01000000.xhp @@ -158,7 +158,7 @@ "hd_id3154918\n" "help.text" msgid "%PRODUCTNAME Calc" -msgstr "%PRODUCTNAME Calc" +msgstr "Calc %PRODUCTNAME" #. dQVTm #: 01000000.xhp @@ -167,7 +167,7 @@ "hd_id3153142\n" "help.text" msgid "%PRODUCTNAME Impress" -msgstr "%PRODUCTNAME Impress" +msgstr "Impress de %PRODUCTNAME" #. e8D4o #: 01000000.xhp @@ -176,7 +176,7 @@ "hd_id3147434\n" "help.text" msgid "%PRODUCTNAME Draw" -msgstr "%PRODUCTNAME Draw" +msgstr "Draw de %PRODUCTNAME" #. P5AqS #: 01000000.xhp @@ -185,7 +185,7 @@ "hd_id3154732\n" "help.text" msgid "%PRODUCTNAME Math" -msgstr "%PRODUCTNAME Math" +msgstr "Math de %PRODUCTNAME" #. Cur9t #: 01000000.xhp @@ -194,7 +194,7 @@ "hd_id3149420\n" "help.text" msgid "%PRODUCTNAME Base" -msgstr "" +msgstr "Base de %PRODUCTNAME" #. ij9DU #: 01000000.xhp @@ -203,7 +203,7 @@ "hd_id3155418\n" "help.text" msgid "Charts" -msgstr "Gráficos" +msgstr "Gráfiques" #. pVQw2 #: 01000000.xhp @@ -590,7 +590,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 @@ -9698,7 +9698,7 @@ "hd_id0909200810585828\n" "help.text" msgid "Zoom" -msgstr "Escala" +msgstr "Ampliación" #. ihBVU #: 01060100.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/shared.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/shared.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-08 10:42+0000\n" +"PO-Revision-Date: 2023-03-15 10:06+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: 1542196266.000000\n" #. fcmzq @@ -869,7 +869,7 @@ "par_idN107F5\n" "help.text" msgid "Zoom" -msgstr "Escala" +msgstr "Ampliación" #. zYZRw #: main0201.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/simpress/00.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/simpress/00.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/simpress/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/simpress/00.po 2023-03-24 16:53:38.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-11-14 14:36+0100\n" -"PO-Revision-Date: 2023-02-15 13:51+0000\n" +"PO-Revision-Date: 2023-03-13 17: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" @@ -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.5.1~rc2/translations/source/ast/helpcontent2/source/text/simpress/02.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/simpress/02.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/simpress/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/simpress/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-07 12:18+0000\n" +"PO-Revision-Date: 2023-03-15 10:06+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: 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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/smath/01.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/smath/01.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/smath/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/smath/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-27 11:28+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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: 1542028602.000000\n" #. QmNGE @@ -10373,7 +10373,7 @@ "par_id3179167\n" "help.text" msgid "p function, Weierstrass p" -msgstr "función p, p de Weierstrass" +msgstr "función p, p de Weierstraß" #. tMoW8 #: 03091508.xhp @@ -11570,7 +11570,7 @@ "par_id3156177\n" "help.text" msgid "Weierstrass p" -msgstr "p de Weierstrass" +msgstr "p de Weierstraß" #. Wtjtx #: 03091600.xhp @@ -11579,7 +11579,7 @@ "par_id3155435\n" "help.text" msgid "This icon inserts a Weierstrass p-function symbol. Command for the Commands window: wp" -msgstr "Esti iconu inxerta'l símbolu d'una función p de Weierstrass. Comandu pa la ventana Comandos: wp" +msgstr "Esti iconu inxerta'l símbolu d'una función p de Weierstraß. Comandu pa la ventana Comandos: wp" #. PurGC #: 03091600.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/smath/guide.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/smath/guide.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/smath/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/smath/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-07 19:22+0100\n" -"PO-Revision-Date: 2022-05-25 10:44+0000\n" +"PO-Revision-Date: 2023-03-13 17: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-Poedit-SourceCharset: utf-8\n" "X-POOTLE-MTIME: 1494346361.000000\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" #. vAkzZ #: 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 @@ -636,7 +636,7 @@ "par_id841641846836041\n" "help.text" msgid "Orange red" -msgstr "" +msgstr "Roxu" #. opiDJ #: color.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/swriter/01.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/swriter/01.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/swriter/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/swriter/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,9 +4,9 @@ "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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-15 10:06+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" @@ -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 "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 @@ -14981,7 +14981,7 @@ "hd_id3154198\n" "help.text" msgid "Heading" -msgstr "Testera" +msgstr "Títulu" #. 7r8rq #: 04150000.xhp @@ -26717,7 +26717,7 @@ "hd_id3149802\n" "help.text" msgid "Heading" -msgstr "Testera" +msgstr "Títulu" #. kyQhi #: 06090000.xhp @@ -27932,7 +27932,7 @@ "tit\n" "help.text" msgid "Content Control Properties" -msgstr "" +msgstr "Propiedaes del control de conteníu" #. CFqNk #: contentcontrol00.xhp @@ -29309,7 +29309,7 @@ "par_idN10579\n" "help.text" msgid "Zoom" -msgstr "Escala" +msgstr "Ampliación" #. LRHco #: mailmerge05.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/swriter/guide.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/swriter/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/swriter/guide.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-22 12: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" @@ -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 @@ -7034,7 +7034,7 @@ "par_id3150949\n" "help.text" msgid "Click OK." -msgstr "Calque Aceutar." +msgstr "Calca Aceutar." #. PGC5v #: header_with_chapter.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 @@ -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 @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/swriter.po libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/swriter.po --- libreoffice-7.5.1~rc2/translations/source/ast/helpcontent2/source/text/swriter.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/helpcontent2/source/text/swriter.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-20 11:43+0000\n" +"PO-Revision-Date: 2023-03-12 04: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" @@ -2471,7 +2471,7 @@ "tit\n" "help.text" msgid "Frame Bar" -msgstr "Barra de Marcu" +msgstr "Barra Marcu" #. bXUUZ #: main0215.xhp @@ -2480,7 +2480,7 @@ "hd_id3154251\n" "help.text" msgid "Frame Bar" -msgstr "Barra de Marcu" +msgstr "Barra Marcu" #. BfA2A #: main0215.xhp @@ -2570,7 +2570,7 @@ "tit\n" "help.text" msgid "OLE Object Bar" -msgstr "" +msgstr "Barra Oxetu OLE" #. YCkLT #: main0216.xhp @@ -2579,7 +2579,7 @@ "hd_id3150726\n" "help.text" msgid "OLE Object Bar" -msgstr "" +msgstr "Barra Oxetu OLE" #. phgBb #: main0216.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-01-09 03:14+0000\n" +"PO-Revision-Date: 2023-03-21 10: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: 1542022492.000000\n" #. W5ukN @@ -2284,7 +2284,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes" -msgstr "" +msgstr "Amosar el siguimientu de cambeos" #. Cs6vq #: CalcCommands.xcu @@ -12198,7 +12198,7 @@ "UIName\n" "value.text" msgid "Gluepoints" -msgstr "" +msgstr "Puntos d'apegáu" #. 5SA3p #: DrawWindowState.xcu @@ -15451,7 +15451,7 @@ "Label\n" "value.text" msgid "Vortex" -msgstr "" +msgstr "Vórtiz" #. Ca9F8 #: Effects.xcu @@ -18165,14 +18165,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 @@ -18182,7 +18181,7 @@ "Label\n" "value.text" msgid "~Zoom..." -msgstr "~Zoom..." +msgstr "Ampliación..." #. xTbFE #: GenericCommands.xcu @@ -29466,7 +29465,7 @@ "Title\n" "value.text" msgid "Effect" -msgstr "" +msgstr "Efeutu" #. GBNW2 #: Sidebar.xcu @@ -35042,14 +35041,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 @@ -35600,7 +35598,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 @@ -39454,7 +39452,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatiando" +msgstr "Formatu" #. 89GBD #: XFormsWindowState.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/sc/messages.po libreoffice-7.5.2~rc2/translations/source/ast/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/sc/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-10 10:31+0000\n" +"PO-Revision-Date: 2023-03-22 11: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" @@ -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 @@ -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 @@ -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 @@ -17414,19 +17414,19 @@ #: sc/inc/strings.hrc:127 msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1" msgid "Calc A1" -msgstr "Calc A1" +msgstr "A1 de Calc" #. xEQCB #: sc/inc/strings.hrc:128 msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1" msgid "Excel A1" -msgstr "Excel A1" +msgstr "A1 d'Excel" #. KLkBH #: sc/inc/strings.hrc:129 msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1" msgid "Excel R1C1" -msgstr "Excel R1C1" +msgstr "R1C1 d'Excel" #. pr4wW #: sc/inc/strings.hrc:130 @@ -19020,13 +19020,13 @@ #: 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 @@ -19363,13 +19363,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 @@ -20514,13 +20514,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 @@ -20702,13 +20702,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 @@ -21862,7 +21862,7 @@ #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:136 msgctxt "dataproviderdlg/url" msgid "URL:" -msgstr "" +msgstr "URL:" #. GKDQA #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:159 @@ -22135,7 +22135,7 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:65 msgctxt "datetimetransformationentry|time" msgid "Time" -msgstr "" +msgstr "Hora" #. bRjJe #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:80 @@ -22159,13 +22159,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 @@ -23321,7 +23321,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 @@ -23776,13 +23776,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 @@ -23837,10 +23837,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 @@ -24706,13 +24705,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 @@ -25112,20 +25111,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 @@ -25177,10 +25175,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 @@ -25198,19 +25195,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 @@ -25276,7 +25273,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 @@ -28401,13 +28398,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 @@ -28423,10 +28420,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 @@ -28659,13 +28655,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 @@ -31841,13 +31837,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/scaddins/messages.po libreoffice-7.5.2~rc2/translations/source/ast/scaddins/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/scaddins/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/scaddins/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-14 14:36+0100\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" +"PO-Revision-Date: 2023-03-18 02: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: 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 @@ -451,7 +451,7 @@ #: scaddins/inc/analysis.hrc:151 msgctxt "ANALYSIS_Randbetween" msgid "The largest integer that can be returned" -msgstr "" +msgstr "L'enteru más grande que pue devolvese" #. 8CDCk #: scaddins/inc/analysis.hrc:156 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/scp2/source/draw.po libreoffice-7.5.2~rc2/translations/source/ast/scp2/source/draw.po --- libreoffice-7.5.1~rc2/translations/source/ast/scp2/source/draw.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/scp2/source/draw.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2014-01-20 22:08+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-15 14: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: 1390255726.000000\n" #. txsAG @@ -392,4 +392,4 @@ "STR_REG_VAL_PDF\n" "LngText.text" msgid "PDF (Portable Document Format)" -msgstr "" +msgstr "PDF (formatu de documentu portátil)" diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/sd/messages.po libreoffice-7.5.2~rc2/translations/source/ast/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/sd/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-22 11: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" @@ -1329,7 +1329,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 +1437,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 +1526,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 +1580,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 @@ -3156,13 +3156,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 @@ -3809,7 +3809,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:189 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:200 @@ -3905,7 +3905,7 @@ #: sd/uiconfig/sdraw/ui/navigatorcontextmenu.ui:12 msgctxt "navigatorcontextmenu|STR_RENAME" msgid "Rename..." -msgstr "" +msgstr "Renomar..." #. V3FWt #: sd/uiconfig/sdraw/ui/notebookbar.ui:3162 @@ -5493,13 +5493,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 @@ -8542,14 +8542,13 @@ #: sd/uiconfig/simpress/ui/pmsummarypage.ui:250 msgctxt "pmsummarypages|STR_SUMMARY_TITLE" msgid "Choose where to apply the following changes" -msgstr "" +msgstr "Escueyi ónde aplicar los cambeos siguientes" #. 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 @@ -10003,10 +10002,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/sfx2/messages.po libreoffice-7.5.2~rc2/translations/source/ast/sfx2/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/sfx2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/sfx2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-01-09 03:14+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: 1540149375.000000\n" #. bHbFE @@ -2135,7 +2135,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.5.1~rc2/translations/source/ast/starmath/messages.po libreoffice-7.5.2~rc2/translations/source/ast/starmath/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/starmath/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/starmath/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: 1525785908.000000\n" #. GrDhX @@ -1442,7 +1442,7 @@ #: starmath/inc/strings.hrc:190 msgctxt "RID_COLORX_BLACK_HELP" msgid "Color Black" -msgstr "Color prietu" +msgstr "Color prieto" #. GrXZS #: starmath/inc/strings.hrc:191 @@ -1478,7 +1478,7 @@ #: starmath/inc/strings.hrc:196 msgctxt "RID_COLORX_GRAY_HELP" msgid "Color Gray" -msgstr "Color buxu" +msgstr "Color buxo" #. 8Pn5t #: starmath/inc/strings.hrc:197 @@ -1496,7 +1496,7 @@ #: starmath/inc/strings.hrc:199 msgctxt "RID_COLORX_NAVY_HELP" msgid "Color Navy" -msgstr "" +msgstr "Color azul marín" #. XL3XB #: starmath/inc/strings.hrc:200 @@ -1582,7 +1582,7 @@ #: starmath/inc/strings.hrc:213 msgctxt "RID_COLORX_ORANGERED_HELP" msgid "Color Orangered" -msgstr "" +msgstr "Color roxo" #. LbfRK #: starmath/inc/strings.hrc:214 @@ -1930,7 +1930,7 @@ #: starmath/inc/strings.hrc:271 msgctxt "RID_WP_HELP" msgid "Weierstrass p" -msgstr "p de Weierstrass" +msgstr "p de Weierstraß" #. f9sfv #: starmath/inc/strings.hrc:272 @@ -2326,7 +2326,7 @@ #: starmath/inc/strings.hrc:339 msgctxt "STR_RED" msgid "red" -msgstr "bermeyo" +msgstr "bermeyu" #. b5qhM #: starmath/inc/strings.hrc:340 @@ -2392,7 +2392,7 @@ #: starmath/inc/strings.hrc:350 msgctxt "STR_YELLOW" msgid "yellow" -msgstr "mariello" +msgstr "mariellu" #. AZyLo #: starmath/inc/strings.hrc:351 @@ -2428,7 +2428,7 @@ #: starmath/inc/strings.hrc:356 msgctxt "STR_ORANGERED" msgid "orangered" -msgstr "" +msgstr "roxu" #. Ak3yd #: starmath/inc/strings.hrc:357 @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/svtools/messages.po libreoffice-7.5.2~rc2/translations/source/ast/svtools/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/svtools/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/svtools/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" +"PO-Revision-Date: 2023-03-15 14: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: 1542195213.000000\n" #. fLdeV @@ -2592,7 +2592,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/svx/messages.po libreoffice-7.5.2~rc2/translations/source/ast/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/svx/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-15 14: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" @@ -5536,7 +5536,7 @@ #: include/svx/strings.hrc:981 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 @@ -6796,7 +6796,7 @@ #: include/svx/strings.hrc:1219 msgctxt "RID_STR_PROPTITLE_COMBOBOX" msgid "Combo Box" -msgstr "Campu combináu" +msgstr "Caxa combinada" #. WiNUf #: include/svx/strings.hrc:1220 @@ -8142,7 +8142,7 @@ #: include/svx/strings.hrc:1458 msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR" msgid "Mirrored" -msgstr "Espeyau" +msgstr "Espeyáu" #. dcvEJ #: include/svx/strings.hrc:1459 @@ -15628,10 +15628,9 @@ #. Qkzsq #: svx/uiconfig/ui/docking3deffects.ui:2332 -#, fuzzy msgctxt "docking3deffects|assign|tooltip_text" msgid "Assign" -msgstr "Asignar" +msgstr "Atribuyir" #. cjrJ9 #: svx/uiconfig/ui/docking3deffects.ui:2346 @@ -17278,10 +17277,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 @@ -17930,10 +17928,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 @@ -20336,10 +20333,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 @@ -20433,7 +20429,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 @@ -20565,10 +20561,9 @@ #. QWLND #: svx/uiconfig/ui/xformspage.ui:35 -#, fuzzy msgctxt "xformspage|TBI_ITEM_ADD" msgid "Add Item" -msgstr "Amestar elementu" +msgstr "Amestar un elementu" #. Xe3ES #: svx/uiconfig/ui/xformspage.ui:48 diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/sw/messages.po libreoffice-7.5.2~rc2/translations/source/ast/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/ast/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-22 14:22+0000\n" +"PO-Revision-Date: 2023-03-22 11: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" @@ -2303,7 +2303,7 @@ #: sw/inc/pageformatpanel.hrc:35 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Mirrored" -msgstr "" +msgstr "Espeyáu" #. J9o3y #: sw/inc/pageformatpanel.hrc:41 @@ -2343,7 +2343,7 @@ #: sw/inc/pageformatpanel.hrc:51 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "Mirrored" -msgstr "" +msgstr "Espeyáu" #. qGjWe #. Dialog buttons @@ -4004,7 +4004,7 @@ #: sw/inc/strings.hrc:323 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:324 @@ -7233,7 +7233,7 @@ #: sw/inc/strings.hrc:875 msgctxt "STR_FILTER_TXT" msgid "Plain text" -msgstr "" +msgstr "Testu planu" #. 5iEeN #: sw/inc/strings.hrc:876 @@ -7519,13 +7519,13 @@ #: sw/inc/strings.hrc:931 msgctxt "STR_SETREFFLD" msgid "Set Reference" -msgstr "Afitar Referencia" +msgstr "Afitar referencia" #. FJ2X8 #: sw/inc/strings.hrc:932 msgctxt "STR_GETREFFLD" msgid "Insert Reference" -msgstr "Inxertar Referencia" +msgstr "Inxertar referencia" #. sztLS #. range database @@ -7627,13 +7627,13 @@ #: sw/inc/strings.hrc:954 msgctxt "FLD_TIME_STD" msgid "Time" -msgstr "Tiempu" +msgstr "Hora" #. 6dxVs #: sw/inc/strings.hrc:955 msgctxt "FLD_TIME_FIX" msgid "Time (fixed)" -msgstr "Tiempu (fixu)" +msgstr "Hora (fixada)" #. U3SW8 #. SubCmd Statistic @@ -7683,13 +7683,13 @@ #: sw/inc/strings.hrc:965 msgctxt "FMT_DDE_HOT" msgid "DDE automatic" -msgstr "DDE Automáticu" +msgstr "DDE automáticu" #. xPP2E #: sw/inc/strings.hrc:966 msgctxt "FMT_DDE_NORMAL" msgid "DDE manual" -msgstr "DDE Manual" +msgstr "DDE manual" #. spdXd #: sw/inc/strings.hrc:967 @@ -7764,13 +7764,13 @@ #: sw/inc/strings.hrc:982 msgctxt "FLD_EU_TELPRIV" msgid "Tel. (Home)" -msgstr "Tel. (Llar)" +msgstr "Tfnu. (llar)" #. JBZyj #: sw/inc/strings.hrc:983 msgctxt "FLD_EU_TELFIRMA" msgid "Tel. (Work)" -msgstr "Tel. (Trabayu)" +msgstr "Tfnu. (trabayu)" #. 5EmGH #: sw/inc/strings.hrc:984 @@ -7782,7 +7782,7 @@ #: sw/inc/strings.hrc:985 msgctxt "FLD_EU_EMAIL" msgid "Email" -msgstr "Corréu electrónicu" +msgstr "Señes electróniques" #. 6GBRm #: sw/inc/strings.hrc:986 @@ -7834,7 +7834,7 @@ #: sw/inc/strings.hrc:997 msgctxt "FMT_FF_UI_NAME" msgid "Template name" -msgstr "" +msgstr "Nome de la plantía" #. ANM2H #: sw/inc/strings.hrc:998 @@ -7876,25 +7876,25 @@ #: sw/inc/strings.hrc:1009 msgctxt "FMT_NUM_ABC" msgid "A B C" -msgstr "" +msgstr "A B C" #. jm7G7 #: sw/inc/strings.hrc:1010 msgctxt "FMT_NUM_SABC" msgid "a b c" -msgstr "" +msgstr "a b c" #. ETgy7 #: sw/inc/strings.hrc:1011 msgctxt "FMT_NUM_ABC_N" msgid "A .. AA .. AAA" -msgstr "" +msgstr "A .. AA .. AAA" #. m84Fb #: sw/inc/strings.hrc:1012 msgctxt "FMT_NUM_SABC_N" msgid "a .. aa .. aaa" -msgstr "" +msgstr "a .. aa .. aaa" #. d9YtB #: sw/inc/strings.hrc:1013 @@ -7918,7 +7918,7 @@ #: sw/inc/strings.hrc:1016 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:1017 @@ -9451,7 +9451,7 @@ #: sw/inc/strings.hrc:1290 msgctxt "STR_REDLINE_TABLECHG" msgid "Table Changes" -msgstr "Camudamientu de tabla" +msgstr "Camudamientos na tabla" #. PzfQF #: sw/inc/strings.hrc:1291 @@ -9481,7 +9481,7 @@ #: sw/inc/strings.hrc:1295 msgctxt "STR_PAGES_TWO_CONJUNCTION" msgid "and" -msgstr "" +msgstr "y" #. 3DpEx #: sw/inc/strings.hrc:1296 @@ -9493,43 +9493,43 @@ #: sw/inc/strings.hrc:1297 msgctxt "STR_PAGE_COUNT_EXTENDED" msgid "Page %1 of %2 [Page %3]" -msgstr "" +msgstr "Páxina %1 de %2 [p. %3]" #. gqFYf #: sw/inc/strings.hrc:1298 msgctxt "STR_PAGES_COUNT" msgid "Pages %1 - %2 of %3" -msgstr "" +msgstr "Páxines %1-%2 de %3" #. BqLqv #: sw/inc/strings.hrc:1299 msgctxt "STR_PAGES_COUNT_EXTENDED" msgid "Pages %1 - %2 of %3 [Pages %4 - %5]" -msgstr "" +msgstr "Páxines %1-%2 de %3 [pp. %4-%5]" #. FjgDc #: sw/inc/strings.hrc:1300 msgctxt "STR_PAGE_COUNT_CUSTOM" msgid "Page %1 (%2) of %3" -msgstr "" +msgstr "Páxina %1 (%2) de %3" #. jBinK #: sw/inc/strings.hrc:1301 msgctxt "STR_PAGE_COUNT_CUSTOM_EXTENDED" msgid "Page %1 (%2) of %3 [Page %4 (%5)]" -msgstr "" +msgstr "Páxina %1 (%2) de %3 [p. %4 (%5)]" #. 5EAe9 #: sw/inc/strings.hrc:1302 msgctxt "STR_PAGES_COUNT_CUSTOM" msgid "Pages %1 - %2 (%3 - %4) of %5" -msgstr "" +msgstr "Páxines %1-%2 (%3-%4) de %5" #. 6pfhH #: sw/inc/strings.hrc:1303 msgctxt "STR_PAGES_COUNT_CUSTOM_EXTENDED" msgid "Pages %1 - %2 (%3 - %4) of %5 [Pages %6 - %7 (%8 - %9)]" -msgstr "" +msgstr "Páxines %1-%2 (%3-%4) de %5 [pp. %6-%7 (%8-%9)]" #. a7tDc #: sw/inc/strings.hrc:1304 @@ -11086,13 +11086,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 @@ -15663,10 +15663,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 @@ -15726,7 +15725,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 @@ -16834,14 +16833,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 @@ -17577,7 +17575,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:297 msgctxt "insertbookmark|condition" msgid "Condition" -msgstr "" +msgstr "Condición" #. ACcov #: sw/uiconfig/swriter/ui/insertbookmark.ui:315 @@ -17649,7 +17647,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 @@ -18354,13 +18352,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 @@ -21528,10 +21526,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 @@ -24565,10 +24562,9 @@ #. JfB3i #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:168 -#, 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:185 @@ -25081,10 +25077,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 @@ -25114,10 +25109,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 @@ -25221,14 +25215,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 @@ -29945,7 +29938,6 @@ #. 2M3ZW #: sw/uiconfig/swriter/ui/tocindexpage.ui:895 -#, fuzzy msgctxt "tocindexpage|label7" msgid "Formatting of the Entries" msgstr "Formatu de les entraes" diff -Nru libreoffice-7.5.1~rc2/translations/source/ast/wizards/source/resources.po libreoffice-7.5.2~rc2/translations/source/ast/wizards/source/resources.po --- libreoffice-7.5.1~rc2/translations/source/ast/wizards/source/resources.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ast/wizards/source/resources.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 14:06+0100\n" -"PO-Revision-Date: 2022-12-19 14:08+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: 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 @@ -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 @@ -4331,7 +4331,7 @@ "CorrespondenceFields_17\n" "property.text" msgid "Email" -msgstr "Corréu electrónicu" +msgstr "Señes electróniques" #. w7uK5 #: resources_en_US.properties @@ -4467,7 +4467,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.5.1~rc2/translations/source/bg/cui/messages.po libreoffice-7.5.2~rc2/translations/source/bg/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/bg/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/bg/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-10 12: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" @@ -17446,19 +17446,19 @@ #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "Задава дали да се следва системният режим или да се замести със светла или тъмна тема." #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "Режим:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "Външен вид" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 diff -Nru libreoffice-7.5.1~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.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: 2023-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-12 04: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" @@ -10076,7 +10076,7 @@ "par_id661300789527859\n" "help.text" msgid "Returns the com.sun.star.awt.XControl UNO object that represents the datasheet." -msgstr "" +msgstr "Връща UNO обекта от типа com.sun.star.awt.XControl, който представя листа с данни." #. 62EDa #: sf_datasheet.xhp @@ -10085,7 +10085,7 @@ "par_id941600789527698\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Да" #. 7AReG #: sf_datasheet.xhp @@ -10094,7 +10094,7 @@ "par_id100160078952791\n" "help.text" msgid "UNO Object" -msgstr "" +msgstr "UNO обект" #. nTQHe #: sf_datasheet.xhp @@ -10103,7 +10103,7 @@ "par_id631600789527859\n" "help.text" msgid "Returns the com.sun.star.awt.XTabControllerModel UNO object that represents the datasheet." -msgstr "" +msgstr "Връща UNO обекта от типа com.sun.star.awt.XTabControllerModel, който представя листа с данни." #. wfJfa #: sf_datasheet.xhp @@ -10112,7 +10112,7 @@ "hd_id501582887473754\n" "help.text" msgid "Methods" -msgstr "" +msgstr "Методи" #. wgVfx #: sf_datasheet.xhp @@ -10121,7 +10121,7 @@ "par_id451619034669263\n" "help.text" msgid "List of Methods in the Datasheet Service" -msgstr "" +msgstr "Списък с методи на услугата Datasheet" #. euurc #: sf_datasheet.xhp @@ -10130,7 +10130,7 @@ "par_id801916099743199\n" "help.text" msgid "Brings to front the data view window referred to by the Datasheet instance." -msgstr "" +msgstr "Изнася на преден план прозореца на изгледа с данни, сочен от екземпляра на Datasheet." #. ZQdnE #: sf_datasheet.xhp @@ -10139,7 +10139,7 @@ "par_id801916099748128\n" "help.text" msgid "Closes the data view window referred to by the Datasheet instance." -msgstr "" +msgstr "Затваря прозореца на изгледа с данни, сочен от екземпляра на Datasheet." #. fStHW #: sf_datasheet.xhp @@ -10148,7 +10148,7 @@ "par_id801916099748639\n" "help.text" msgid "Creates a new menu entry in the data view window and returns a SFWidgets.Menu service instance, with which menu items can be programmatically added." -msgstr "" +msgstr "Създава ново меню в прозореца на изгледа с данни и връща екземпляр на услугата SFWidgets.Menu, с която може по програмен път да се добавят елементи в меню." #. H4ghA #: sf_datasheet.xhp @@ -10157,7 +10157,7 @@ "par_id71671047526843\n" "help.text" msgid "Menus added using the CreateMenu method are lost as soon as the data view window is closed." -msgstr "" +msgstr "Менютата, добавени с метода CreateMenu, се изгубват веднага щом се затвори прозорецът на изгледа с данни." #. QC9Uh #: sf_datasheet.xhp @@ -10166,7 +10166,7 @@ "par_id941619079997155\n" "help.text" msgid "menuheader: The name of the new menu." -msgstr "" +msgstr "menuheader: името на новото меню." #. yVxAC #: sf_datasheet.xhp @@ -10175,7 +10175,7 @@ "par_id941619079997180\n" "help.text" msgid "before: This argument can be either the name of an existing menu entry before which the new menu will be placed or a number expressing the position of the new menu. If this argument is left blank the new menu is placed as the last entry." -msgstr "" +msgstr "before: този аргумент може да бъде или име на съществуващо меню, преди което да се вмъкне новото, или число, указващо позицията на новото меню. Ако аргументът е оставен празен, новото меню се добавя последно." #. MXC5w #: sf_datasheet.xhp @@ -10184,7 +10184,7 @@ "par_id941619079997090\n" "help.text" msgid "submenuchar: The delimiter used in menu trees (Default = \">\")" -msgstr "" +msgstr "submenuchar: разделителят, използван в дърветата от менюта (подразбира се \">\")." #. EMDiB #: sf_datasheet.xhp @@ -10193,7 +10193,7 @@ "bas_id461619100382442\n" "help.text" msgid "Set oMenu = oSheet.CreateMenu(\"My Menu\", Before := \"Data\")" -msgstr "" +msgstr "Set oMenu = oSheet.CreateMenu(\"Моето меню\", Before := \"Данни\")" #. zLvjn #: sf_datasheet.xhp @@ -10202,7 +10202,7 @@ "bas_id591671048413063\n" "help.text" msgid ".AddItem(\"Item 1\", Command := \".uno:About\")" -msgstr "" +msgstr ".AddItem(\"Елемент 1\", Command := \".uno:About\")" #. DKtUn #: sf_datasheet.xhp @@ -10211,7 +10211,7 @@ "pyc_id361623165059667\n" "help.text" msgid "menu = sheet.CreateMenu(\"My Menu\", before=\"Data\")" -msgstr "" +msgstr "menu = sheet.CreateMenu(\"Моето меню\", before=\"Данни\")" #. WAFYz #: sf_datasheet.xhp @@ -10220,7 +10220,7 @@ "pyc_id571671048780765\n" "help.text" msgid "menu.AddItem(\"Item 1\", command=\".uno:About\")" -msgstr "" +msgstr "menu.AddItem(\"Елемент 1\", command=\".uno:About\")" #. K62eP #: sf_datasheet.xhp @@ -10229,7 +10229,7 @@ "par_id521671048538692\n" "help.text" msgid "Read the Menu service help page to learn more about how to create menu and submenu entries and associate commands." -msgstr "" +msgstr "Прочетете помощната страница за услугата Menu, за да научите повече относно създаването на менюта и подменюта и асоциирането на команди." #. nXH8z #: sf_datasheet.xhp @@ -10238,7 +10238,7 @@ "par_id801916099748009\n" "help.text" msgid "Returns the text in a given column of the current row." -msgstr "" +msgstr "Връща текста в дадена колона на текущия ред." #. DJ8Ft #: sf_datasheet.xhp @@ -10247,7 +10247,7 @@ "par_id161671050245887\n" "help.text" msgid "This method does not change the position of the cursor in the data view window." -msgstr "" +msgstr "Този метод не променя позицията на курсора в прозореца на изгледа с данни." #. 3qnwN #: sf_datasheet.xhp @@ -10256,7 +10256,7 @@ "par_id941619079997693\n" "help.text" msgid "column: The name of the column as a String or the column position (starting at 1). If a position greater than the number of columns is given, the last column is returned." -msgstr "" +msgstr "column: името на колоната като низ или позицията на колоната (започвайки от 1). Ако е дадена позиция, по-голяма от броя колони, се връща последната колона." #. ED6ma #: sf_datasheet.xhp @@ -10265,7 +10265,7 @@ "par_id801916099747177\n" "help.text" msgid "Returns the value in a given column of the current row as a valid Basic type." -msgstr "" +msgstr "Връща стойността в дадена колона на текущия ред като валиден тип на Basic." #. fXDwA #: sf_datasheet.xhp @@ -10274,7 +10274,7 @@ "par_id91671050315349\n" "help.text" msgid "The types that can be returned are: String, Integer, Long, Single, Double, Date and Null." -msgstr "" +msgstr "Типовете, които може да бъдат върнати, са: String, Integer, Long, Single, Double, Date и Null." #. HADUe #: sf_datasheet.xhp @@ -10283,7 +10283,7 @@ "par_id411671050476363\n" "help.text" msgid "Binary types are returned as a Long value indicating the length of the binary field." -msgstr "" +msgstr "За двоичните типове се връща стойност от тип Long, която показва дължината на двоичното поле." #. nTQDh #: sf_datasheet.xhp @@ -10292,7 +10292,7 @@ "par_id141671050559691\n" "help.text" msgid "An Empty value is returned if the required value could not be retrieved." -msgstr "" +msgstr "Ако изискваната стойност не може да бъде извлечена, се връща стойност Empty." #. BtN8B #: sf_datasheet.xhp @@ -10301,7 +10301,7 @@ "par_id161671050245365\n" "help.text" msgid "This method does not change the position of the cursor in the data view window." -msgstr "" +msgstr "Този метод не променя позицията на курсора в прозореца на изгледа с данни." #. DwSZS #: sf_datasheet.xhp @@ -10310,7 +10310,7 @@ "par_id941619079997253\n" "help.text" msgid "column: The name of the column as a String or the column position (starting at 1). If a position greater than the number of columns is given, the last column is returned." -msgstr "" +msgstr "column: името на колоната като низ или позицията на колоната (започвайки от 1). Ако е дадена позиция, по-голяма от броя колони, се връща последната колона." #. ij88V #: sf_datasheet.xhp @@ -10319,7 +10319,7 @@ "par_id801916099747188\n" "help.text" msgid "Moves the cursor to the specified row and column." -msgstr "" +msgstr "Премества курсора до зададения ред и колона." #. 4CXzN #: sf_datasheet.xhp @@ -10328,7 +10328,7 @@ "par_id161671050245147\n" "help.text" msgid "This method does not change the position of the cursor in the data view window." -msgstr "" +msgstr "Този метод не променя позицията на курсора в прозореца на изгледа с данни." #. CECkE #: sf_datasheet.xhp @@ -10337,7 +10337,7 @@ "par_id231671105664098\n" "help.text" msgid "row: The row number as a numeric value starting at 1. If the requested row exceeds the number of existing rows, the cursor is moved to the last row. If this argument is not specified, then the row is not changed." -msgstr "" +msgstr "row: номерът на ред като числова стойност, започвайки от 1. Ако заявеният номер на ред надхвърля броя съществуващи редове, курсорът се премества върху последния ред. Ако този аргумент не е зададен, редът не се променя." #. 4AYCp #: sf_datasheet.xhp @@ -10346,7 +10346,7 @@ "par_id941619079997124\n" "help.text" msgid "column: The name of the column as a String or the column position (starting at 1). If the requested column exceeds the number of existing columns, the cursor is moved to the last column. If this argument is not specified, then the column is not changed." -msgstr "" +msgstr "column: името на колона като стойност от тип String или позицията на колоната (започвайки от 1). Ако заявеният номер на колона надхвърля броя на съществуващите колони, курсорът се премества върху последната колона. Ако този аргумент не е зададен, колоната не се променя." #. t7xYa #: sf_datasheet.xhp @@ -10355,7 +10355,7 @@ "bas_id741671106250967\n" "help.text" msgid "' Moves the cursor to the column \"LastName\" in row 4" -msgstr "" +msgstr "' Премества курсора в колоната \"Фамилно име\" на ред 4." #. BRB4u #: sf_datasheet.xhp @@ -10364,7 +10364,7 @@ "bas_id51671106293155\n" "help.text" msgid "oSheet.GoToCell(4, \"LastName\")" -msgstr "" +msgstr "oSheet.GoToCell(4, \"ФамилноИме\")" #. xvnqb #: sf_datasheet.xhp @@ -10373,7 +10373,7 @@ "bas_id616711059619900\n" "help.text" msgid "' Moves the cursor to the third column of the current row" -msgstr "" +msgstr "' Премества курсора в третата колона на текущия ред." #. sSJ4S #: sf_datasheet.xhp @@ -10382,7 +10382,7 @@ "bas_id611671106014685\n" "help.text" msgid "' Moves cursor one row down leaving it in the same column" -msgstr "" +msgstr "' Премества курсора с един ред надолу и го оставя в същата колона." #. hLAZS #: sf_datasheet.xhp @@ -10391,7 +10391,7 @@ "bas_id711671107842042\n" "help.text" msgid "' Moves to the last column of the last row" -msgstr "" +msgstr "' Премества курсора в последната колона на последния ред." #. 4mHFQ #: sf_datasheet.xhp @@ -10400,7 +10400,7 @@ "pyc_id361623165059099\n" "help.text" msgid "sheet.GoToCell(4, \"LastName\")" -msgstr "" +msgstr "sheet.GoToCell(4, \"ФамилноИме\")" #. zU2uu #: sf_datasheet.xhp @@ -10409,7 +10409,7 @@ "par_id801916099747090\n" "help.text" msgid "Removes a menu entry from the data view by its name." -msgstr "" +msgstr "Премахва меню от изгледа с данни по името му." #. FhSiD #: sf_datasheet.xhp @@ -10418,7 +10418,7 @@ "par_id511671106735805\n" "help.text" msgid "This method can remove menus that belong to the standard user interface as well as menus that were programmatically added with the CreateMenu method. The removal of standard menus is not permanent and they will reappear after the window is closed and reopened." -msgstr "" +msgstr "Този метод може да премахва менюта, принадлежащи на стандартния потребителски интерфейс, както и менюта, добавени по програмен път чрез метода CreateMenu. Премахването на стандартни менюта е временно и те се появяват отново след затваряне и повторно отваряне на прозореца." #. ED3Co #: sf_datasheet.xhp @@ -10427,7 +10427,7 @@ "par_id941619079997083\n" "help.text" msgid "menuheader: The case-sensitive name of the menu to be removed. The name must not include the tilde (\"~\") character." -msgstr "" +msgstr "menuheader: името на менюто, което да бъде премахнато, със спазване на малки и главни букви. Името не трябва да съдържа знака тилда (\"~\")." #. BC4Sc #: sf_dialog.xhp @@ -10436,7 +10436,7 @@ "tit\n" "help.text" msgid "SFDialogs.Dialog service" -msgstr "" +msgstr "Услуга SFDialogs.Dialog" #. ZQBAD #: sf_dialog.xhp @@ -10445,7 +10445,7 @@ "bm_id781582391760253\n" "help.text" msgid "SFDialogs.Dialog service" -msgstr "" +msgstr "Услуга SFDialogs.Dialog" #. LSng5 #: sf_dialog.xhp @@ -10454,7 +10454,7 @@ "par_id931583589764919\n" "help.text" msgid "The Dialog service contributes to the management of dialogs created with the Basic Dialog Editor. Each instance of the current class represents a single dialog box displayed to the user." -msgstr "" +msgstr "Услугата Dialog помага за управлението на диалози, създадени с Редактора на диалози на Basic. Всеки екземпляр на текущия клас представя единичен диалогов прозорец, показан на потребителя." #. vxEvV #: sf_dialog.xhp @@ -10463,7 +10463,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 @@ -10472,7 +10472,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/bg/svx/messages.po libreoffice-7.5.2~rc2/translations/source/bg/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/bg/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/bg/svx/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562357387.000000\n" #. 3GkZj @@ -9861,7 +9861,7 @@ #: include/svx/strings.hrc:1756 msgctxt "RID_SUBSETMAP" msgid "Hanifi Rohingya" -msgstr "Ханифи рохингя" +msgstr "Ханифи рохинджа" #. FAwvP #: include/svx/strings.hrc:1757 diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/chart2/messages.po libreoffice-7.5.2~rc2/translations/source/ca/chart2/messages.po --- libreoffice-7.5.1~rc2/translations/source/ca/chart2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/chart2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:43+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" +"PO-Revision-Date: 2023-03-05 08: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.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 @@ -1709,7 +1709,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 @@ -2507,7 +2507,7 @@ #: chart2/uiconfig/ui/sidebarerrorbar.ui:66 msgctxt "sidebarerrorbar|comboboxtext_type" msgid "Standard deviation" -msgstr "Desviació estàndard" +msgstr "Desviació tipus" #. qUL78 #: chart2/uiconfig/ui/sidebarerrorbar.ui:67 @@ -4193,7 +4193,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.5.1~rc2/translations/source/ca/cui/messages.po libreoffice-7.5.2~rc2/translations/source/ca/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/ca/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-12 10: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" @@ -5020,7 +5020,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 @@ -5104,7 +5104,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 @@ -6070,7 +6070,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:919 msgctxt "bulletandposition|ALlabel" msgid "Alignment:" -msgstr "Alineament:" +msgstr "Alineació:" #. BfBBW #: cui/uiconfig/ui/bulletandposition.ui:937 @@ -15059,7 +15059,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:408 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:426 diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/guide.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-04 05:40+0000\n" +"PO-Revision-Date: 2023-03-22 12: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" @@ -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:" #. cYZYt #: 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" #. 4icyW #: 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 @@ -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 @@ -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.5.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-26 13:12+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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-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.5.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.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: 2023-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-05 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" @@ -2759,7 +2759,7 @@ "par_id871619098478513\n" "help.text" msgid "Returns True if the specified FormDocument is currently open." -msgstr "" +msgstr "Retorna True si el FormDocument especificat està obert actualment." #. njjFg #: sf_base.xhp @@ -9896,7 +9896,7 @@ "par_id891600788076190\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. 5FdAQ #: sf_datasheet.xhp @@ -9968,7 +9968,7 @@ "par_id21600788076758\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. faBy9 #: sf_datasheet.xhp @@ -10013,7 +10013,7 @@ "par_id531600789141795\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. TSNA5 #: sf_datasheet.xhp @@ -31595,7 +31595,7 @@ "par_id271656446258396\n" "help.text" msgid "Read the instructions in AssertLike for more information on the assumptions of this method." -msgstr "" +msgstr "Llegiu les instruccions relatives a AssertLike per a conèixer més informació quant als supòsits d'aquest mètode." #. C9GJn #: sf_unittest.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-21 09:34+0000\n" +"PO-Revision-Date: 2023-03-13 17: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" @@ -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 @@ -9522,7 +9515,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 "Retorna un valor cromàtic en forma d'enter Long (llarg) que consisteix de components vermell, verd i blau, segons la fórmula de colors de VBA." #. 2XAYm #: 03010306.xhp @@ -20483,7 +20476,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.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-12-08 19:46+0100\n" -"PO-Revision-Date: 2023-02-21 09:33+0000\n" +"PO-Revision-Date: 2023-03-22 12: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" @@ -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 @@ -8452,7 +8452,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 @@ -35434,7 +35434,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." #. nAPgU #: 04060182.xhp @@ -35508,7 +35508,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 @@ -35975,7 +35975,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 @@ -36047,7 +36047,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 @@ -36119,7 +36119,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 @@ -36733,7 +36733,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 @@ -36814,7 +36814,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 @@ -39503,7 +39503,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 @@ -39557,7 +39557,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 @@ -39620,7 +39620,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 @@ -39647,7 +39647,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 @@ -39674,7 +39674,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 @@ -39701,7 +39701,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 @@ -39728,7 +39728,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 @@ -39791,7 +39791,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 @@ -39800,7 +39800,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 @@ -39935,7 +39935,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 @@ -39998,7 +39998,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 @@ -45557,7 +45557,7 @@ "hd_id31531891\n" "help.text" msgid "Condition list entries" -msgstr "" +msgstr "Entrades de la llista de condicions" #. udAbc #: 05120000.xhp @@ -48625,7 +48625,7 @@ "tit\n" "help.text" msgid "Freeze Cells" -msgstr "" +msgstr "Congela les cel·les" #. U6FYG #: 07090100.xhp @@ -48652,7 +48652,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 @@ -48665,13 +48665,12 @@ #. AgxXS #: 12010000.xhp -#, fuzzy msgctxt "" "12010000.xhp\n" "hd_id3157909\n" "help.text" msgid "Define Range" -msgstr "GA Defineix l'interval" +msgstr "Defineix l'interval" #. 8zFH5 #: 12010000.xhp @@ -52743,7 +52742,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 @@ -62455,13 +62454,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 @@ -62594,13 +62592,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 @@ -69828,7 +69825,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 @@ -71613,13 +71610,12 @@ #. cMChc #: statistics_anova.xhp -#, fuzzy msgctxt "" "statistics_anova.xhp\n" "hd_id1000060\n" "help.text" msgid "Analysis of Variance (ANOVA)" -msgstr "Anàlisi de Variància (ANOVA)" +msgstr "Anàlisi de variància (ANOVA)" #. oSUDa #: statistics_anova.xhp @@ -72375,13 +72371,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 @@ -73629,23 +73624,21 @@ #. XqyMa #: statistics_test_f.xhp -#, fuzzy msgctxt "" "statistics_test_f.xhp\n" "par_id1003310\n" "help.text" msgid "The following table shows the F-Test for the data series above:" -msgstr "La taula següent mostra el F-Test per a la sèrie de dades anterior" +msgstr "La taula següent mostra la prova F de la sèrie de dades anterior:" #. git3T #: statistics_test_f.xhp -#, fuzzy msgctxt "" "statistics_test_f.xhp\n" "par_id1003320\n" "help.text" msgid "Ftest" -msgstr "Ftest" +msgstr "Prova F" #. WsA4s #: statistics_test_f.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/02.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/02.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-01-13 19:38+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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-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.5.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/04.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/04.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/04.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/04.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+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 10: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: LibreOffice\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" #. qPZBx #: 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.5.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-12 00:35+0000\n" -"Last-Translator: AssumptaAn \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2023-03-13 17: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" @@ -2589,7 +2589,7 @@ "par_id7099826\n" "help.text" msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference." -msgstr "Si arrossegueu el quadre de l'extrem superior dret de la cel·la activa per seleccionar un interval de cel·les, $[officename] insereix automàticament les referències corresponents a les cel·les adjacents. Per consegüent, el nom del full té un símbol \"$\" al davant per designar-lo com a referència absoluta." +msgstr "Si arrossegueu el quadre de l'extrem inferior dret de la cel·la activa per a seleccionar un interval de cel·les, el $[officename] insereix automàticament les referències corresponents a les cel·les adjacents. Per consegüent, el nom del full té un símbol «$» al davant per a designar-lo com a referència absoluta." #. hmeJR #: cellreferences.xhp @@ -4155,7 +4155,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»." #. sHgcT #: currency_format.xhp @@ -7170,7 +7170,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.5.1~rc2/translations/source/ca/helpcontent2/source/text/scalc.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/scalc.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/scalc.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/scalc.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-07 10:32+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" @@ -258,7 +258,7 @@ "hd_id241636195404363\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentaris" #. 2QmH5 #: main0103.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/schart/01.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/schart/01.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/schart/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/schart/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-21 16:54+0000\n" +"PO-Revision-Date: 2023-03-08 09:32+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1551858787.000000\n" @@ -4959,7 +4959,7 @@ "par_id841665496617023\n" "help.text" msgid "Uncheck the option Show data table." -msgstr "" +msgstr "Desmarqueu l'opció Mostra la taula de dades." #. W8sr5 #: data_table.xhp @@ -4995,7 +4995,7 @@ "par_id571665497168086\n" "help.text" msgid "Format properties of the data table:" -msgstr "" +msgstr "Propietats del format de la taula de dades:" #. 5tT7C #: data_table.xhp @@ -5031,7 +5031,7 @@ "par_id681665497198016\n" "help.text" msgid "Show or hide internal column borders." -msgstr "" +msgstr "Mostra o amaga les vores de les columnes internes." #. 8ZYS2 #: data_table.xhp @@ -5049,7 +5049,7 @@ "par_id681665497198017\n" "help.text" msgid "Show or hide borders around the table." -msgstr "" +msgstr "Mostra o amaga les vores al voltant de la taula." #. YvKdx #: data_table.xhp @@ -7623,7 +7623,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.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-05 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" @@ -51,7 +51,7 @@ "par_id761668777629023\n" "help.text" msgid "Click the Help button to open the help page associated with the currently open dialog." -msgstr "" +msgstr "Feu clic al botó Ajuda per a obrir la pàgina d'ajuda associada amb el diàleg obert actualment." #. WptWZ #: 00000001.xhp @@ -11529,13 +11529,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 @@ -12794,7 +12793,7 @@ "par_id671653364659217\n" "help.text" msgid "Right-click on a selected object - choose Anchor." -msgstr "" +msgstr "Feu clic dret a l'objecte seleccionat i trieu Ancoratge." #. nazhG #: 00040501.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-21 09:33+0000\n" +"PO-Revision-Date: 2023-03-08 15: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" @@ -2706,7 +2706,7 @@ "hd_id3152996\n" "help.text" msgid "File type" -msgstr "" +msgstr "Tipus de fitxer" #. sA2Ea #: 01060002.xhp @@ -2715,7 +2715,7 @@ "hd_id3145744\n" "help.text" msgid "Save with password" -msgstr "" +msgstr "Desa amb contrasenya" #. zyazT #: 01060002.xhp @@ -2724,7 +2724,7 @@ "hd_id3148539\n" "help.text" msgid "Save" -msgstr "" +msgstr "Desa" #. 4uxaW #: 01060002.xhp @@ -4237,7 +4237,7 @@ "hd_id3145119\n" "help.text" msgid "Assign" -msgstr "" +msgstr "Assigna" #. 7XELF #: 01110101.xhp @@ -11690,7 +11690,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 "permet adjuntar URL a àrees específiques anomenades punts d'accés en un gràfic o en un grup de gràfics. Un mapa d'imatge és un grup d'un o més punts d'accés." +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." #. qyFGR #: 02220000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared/02.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-27 11:24+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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.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" #. eJywq #: 01170000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-20 11:43+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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" @@ -6612,7 +6612,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Ignora el camp (no l'importis)" #. LEJDn #: csv_params.xhp @@ -6621,7 +6621,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Anglès (EUA)" #. wLth6 #: csv_params.xhp @@ -7494,7 +7494,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 @@ -9121,7 +9121,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 @@ -27020,7 +27020,7 @@ "par_id431607690468509\n" "help.text" msgid "Extensions Icon" -msgstr "" +msgstr "Icona Extensions" #. mwqRi #: template_manager.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-12 04: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" @@ -3093,13 +3093,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/shared.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/shared.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-08 10:42+0000\n" +"PO-Revision-Date: 2023-03-05 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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1547842627.000000\n" @@ -24,7 +24,7 @@ "tit\n" "help.text" msgid "Find Bar" -msgstr "" +msgstr "Barra de cerca" #. ZBBdy #: find_toolbar.xhp @@ -33,7 +33,7 @@ "bm_id871641583188415\n" "help.text" msgid "Find toolbar" -msgstr "" +msgstr "barra d'eines Cerca" #. JS8DE #: find_toolbar.xhp @@ -42,7 +42,7 @@ "hd_id701641581066778\n" "help.text" msgid "Find Bar" -msgstr "" +msgstr "Barra Cerca" #. X55wK #: 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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/smath/01.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/smath/01.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/smath/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/smath/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-23 11:27+0000\n" +"PO-Revision-Date: 2023-03-13 17: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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1550235258.000000\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 @@ -10560,7 +10560,7 @@ "par_id3179167\n" "help.text" msgid "p function, Weierstrass p" -msgstr "funció p, p de Weierstrass" +msgstr "funció p, p de Weierstraß" #. tMoW8 #: 03091508.xhp @@ -11767,7 +11767,7 @@ "par_id3156177\n" "help.text" msgid "Weierstrass p" -msgstr "p de Weierstrass" +msgstr "p de Weierstraß" #. Wtjtx #: 03091600.xhp @@ -11776,7 +11776,7 @@ "par_id3155435\n" "help.text" msgid "This icon inserts a Weierstrass p-function symbol. Command for the Commands window: wp" -msgstr "Aquesta icona insereix un símbol per a la funció p de Weierstrass. Ordre per a la finestra d'ordres: wp." +msgstr "Aquesta icona insereix un símbol per a la funció p de Weierstraß. Ordre per a la finestra d'ordres: wp." #. PurGC #: 03091600.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/smath/guide.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/smath/guide.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/smath/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/smath/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-20 11:43+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2023-03-01 23:55+0000\n" +"Last-Translator: Joan Montané \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -240,7 +240,7 @@ "hd_id601641846107898\n" "help.text" msgid "Applying Color to Formula Parts" -msgstr "" +msgstr "Aplicació de color a parts d'una fórmula" #. ckGgG #: color.xhp @@ -258,7 +258,7 @@ "par_id141641846432331\n" "help.text" msgid "The example below creates a formula where a is shown using the default color (black) and b is shown in red." -msgstr "" +msgstr "L'exemple següent crea una fórmula on a es mostra amb el color predeterminat (negre) i b es mostra en vermell." #. QBxDL #: color.xhp @@ -267,7 +267,7 @@ "par_id211641848286949\n" "help.text" msgid "Be aware that the color command only changes the color of the formula part that comes immediately after it. For example, in the formula below only b will be shown in red, whereas c will be shown in black." -msgstr "" +msgstr "Tingueu en compte que l'ordre color només canvia el color de la part de la fórmula que ve immediatament després. Per exemple, a la fórmula de sota només es mostrarà b en vermell, mentre que c es mostrarà en negre." #. hLeFX #: color.xhp @@ -276,7 +276,7 @@ "par_id841641848475043\n" "help.text" msgid "Use braces to apply color to more parts of the formula. In the following example, b and c are shown in red." -msgstr "" +msgstr "Useu claus per a aplicar el color a més parts de la fórmula. En el següent exemple, b i c es mostren en vermell." #. gLttS #: color.xhp @@ -285,7 +285,7 @@ "par_id651641851485699\n" "help.text" msgid "A list with predefined color names is available here." -msgstr "" +msgstr "Aquí hi ha disponible una llista amb noms de colors predefinits." #. gQn7y #: color.xhp @@ -303,7 +303,7 @@ "hd_id831641851472401\n" "help.text" msgid "Using RGB colors" -msgstr "" +msgstr "Ús de colors RGB" #. tj2xF #: color.xhp @@ -312,7 +312,7 @@ "par_id701641851641673\n" "help.text" msgid "Use the command color rgb to apply colors using RGB (Red, Green, Blue) values." -msgstr "" +msgstr "Useu l'ordre color rgb per a aplicar colors usant valors RGB (vermell, verd, blau)." #. eYWCg #: color.xhp @@ -321,7 +321,7 @@ "par_id941641851779414\n" "help.text" msgid "RGB values range between 0 and 255." -msgstr "" +msgstr "Els valors RGB són entre 0 i 255." #. EFXpV #: color.xhp @@ -348,7 +348,7 @@ "par_id271641851832464\n" "help.text" msgid "Use the command color hex to apply colors using the hexadecimal notation." -msgstr "" +msgstr "Useu l'ordre color hex per a aplicar colors usant la notació hexadecimal." #. rPHnc #: color.xhp @@ -357,7 +357,7 @@ "hd_id121641851982125\n" "help.text" msgid "Combining color with other commands" -msgstr "" +msgstr "Combinació de colors amb altres ordres" #. WiZz8 #: color.xhp @@ -375,7 +375,7 @@ "par_id521641852051767\n" "help.text" msgid "The example below writes var in bold blue:" -msgstr "" +msgstr "L'exemple de sota escriu var en blau i negreta:" #. vSVUb #: color.xhp @@ -384,7 +384,7 @@ "par_id21641852173099\n" "help.text" msgid "To change color and font size, use color in combination with size and the desired font size." -msgstr "" +msgstr "Per a canviar el color i la mida de lletra, useu color en combinació amb size i la mida de lletra desitjada." #. wEhmU #: color.xhp @@ -420,7 +420,7 @@ "par_id871641846833413\n" "help.text" msgid "Markup language" -msgstr "" +msgstr "Llenguatge d'etiquetes" #. Qf5tX #: color.xhp @@ -843,7 +843,7 @@ "par_id3150213\n" "help.text" msgid "Choose the command Insert - OLE Object - Formula Object." -msgstr "" +msgstr "Trieu l'ordre Insereix ▸ Objecte OLE ▸ Objecte fórmula." #. aowxC #: keyboard.xhp @@ -861,7 +861,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 "Si voleu usar la interfície del $[officename] Math per a editar una fórmula, trieu l'ordre Insereix ▸ Objecte OLE ▸ Objecte fórmula sense haver seleccionat cap text." #. sEBBM #: keyboard.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-05 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" @@ -7686,7 +7686,7 @@ "par_id7374187\n" "help.text" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Refer using\" list, and then click Insert." -msgstr "" +msgstr "Enumera els camps disponibles per al tipus de camp seleccionat a la llista Tipus. Per a inserir un camp, feu clic al camp, seleccioneu un format a la llista «Refereix usant» i, a continuació, feu clic a Insereix." #. ABxYv #: 04090002.xhp @@ -7704,7 +7704,7 @@ "par_id2171086\n" "help.text" msgid "In the Refer using list, click the format that you want to use." -msgstr "" +msgstr "A la llista Refereix usant, feu clic al format que voleu utilitzar." #. ESKFM #: 04090002.xhp @@ -7713,7 +7713,7 @@ "hd_id3154333\n" "help.text" msgid "Refer using" -msgstr "" +msgstr "Refereix usant" #. hvMHh #: 04090002.xhp @@ -28074,7 +28074,7 @@ "tit\n" "help.text" msgid "Content Control Properties" -msgstr "" +msgstr "Propietats del control al contingut" #. CFqNk #: contentcontrol00.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/02.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/02.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-23 11:27+0000\n" +"PO-Revision-Date: 2023-03-07 10:32+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.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ó." #. mLmDR #: 02110000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/04.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/04.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/04.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/04.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\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: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: 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." #. wrjFD #: 01020000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-15 13:51+0000\n" +"PO-Revision-Date: 2023-03-12 04: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" @@ -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 @@ -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 @@ -13782,7 +13781,7 @@ "par_id3154856\n" "help.text" msgid "In the Refer using list, select the format for the cross-reference. The format specifies the type of information that is displayed as the cross-reference. For example, \"Reference\" inserts the target text, and \"Page\" inserts the page number where the target is located. For footnotes the footnote number is inserted." -msgstr "" +msgstr "A la llista Refereix usant, seleccioneu el format de la referència creuada. El format especifica el tipus d'informació que es mostra com a referència creuada. Per exemple, «Referència» insereix el text de destinació, i «Pàgina» insereix el número de la pàgina on es troba la destinació. En notes al peu, s'insereix el número de la nota al peu." #. kcmB3 #: references.xhp @@ -13863,7 +13862,7 @@ "par_id3150968\n" "help.text" msgid "In the Refer using list, select the format of the cross-reference. The format specifies the type of information that is displayed as the cross-reference. For example, \"Reference\" inserts the caption category and caption text of the object." -msgstr "" +msgstr "A la llista Refereix usant, seleccioneu el format de la referència creuada. El format especifica el tipus d'informació que es mostra com a referència creuada. Per exemple, «Referència» insereix la categoria de la llegenda i el text de llegenda de l'objecte." #. umWdg #: references.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/swriter.po libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/swriter.po --- libreoffice-7.5.1~rc2/translations/source/ca/helpcontent2/source/text/swriter.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/helpcontent2/source/text/swriter.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-20 11:43+0000\n" +"PO-Revision-Date: 2023-03-13 17: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" @@ -213,7 +213,7 @@ "par_id3147352\n" "help.text" msgid "These commands apply to the current document, create a document, open an existing document, or close the application." -msgstr "" +msgstr "Aquestes ordres s'apliquen al document actual, creació d'un document, obertura d'un document existent, o tancament de l'aplicació." #. 6hchv #: main0102.xhp @@ -285,7 +285,7 @@ "par_id941603125587454\n" "help.text" msgid "Shows submenu that gives options to reply to comments from other users, resolve and delete comments." -msgstr "" +msgstr "Mostra el submenú que proporciona opcions per a respondre els comentaris d'altres usuaris, resoldre i suprimir comentaris." #. FDHX2 #: main0102.xhp @@ -303,7 +303,7 @@ "hd_id0914201501170171\n" "help.text" msgid "External Links" -msgstr "" +msgstr "Enllaços externs" #. YAajd #: main0102.xhp @@ -312,7 +312,7 @@ "hd_id0914201502131542\n" "help.text" msgid "OLE Object" -msgstr "" +msgstr "Objecte OLE" #. DhwSa #: main0102.xhp @@ -357,7 +357,7 @@ "par_id3147249\n" "help.text" msgid "This menu contains commands to control the on-screen display of the document, change the user interface and access the sidebar panels." -msgstr "" +msgstr "Aquest menú conté ordres per a controlar la presentació en pantalla del document, canviar la interfície d'usuari i accedir a les barres laterals." #. VDkey #: main0103.xhp @@ -1104,7 +1104,7 @@ "par_idN105D0\n" "help.text" msgid "Opens dialog box for inserting columns." -msgstr "" +msgstr "Obre el diàleg per a inserir columnes." #. ttkBa #: main0110.xhp @@ -1284,7 +1284,7 @@ "hd_id451605990864684\n" "help.text" msgid "Minimal Row Height" -msgstr "" +msgstr "Alçada mínima de fila" #. EF7XB #: main0110.xhp @@ -1329,7 +1329,7 @@ "hd_id671605991381461\n" "help.text" msgid "Minimal Column Width" -msgstr "" +msgstr "Amplada mínima de columna" #. Y4m4U #: main0110.xhp @@ -1437,7 +1437,7 @@ "hd_id711630938569930\n" "help.text" msgid "Header Rows Repeat Across Pages" -msgstr "" +msgstr "Les línies de capçalera es repeteix a les pàgines" #. pV6gM #: main0110.xhp @@ -1594,13 +1594,12 @@ #. RW2Mb #: main0115.xhp -#, fuzzy msgctxt "" "main0115.xhp\n" "par_id451529878529005\n" "help.text" msgid "You can customize the list of styles entries using menu Tools - Customize. Because custom styles belongs to the actual document, remember to store the customized menu in the document scope." -msgstr "Podeu personalitzar la llista d'entrades d'estils utilitzant el menú Eines - Personalitzeu . Com que els estils personalitzats pertanyen al document real recordeu d'emmagatzemar el menú personalitzat en l'àmbit del document." +msgstr "Podeu personalitzar la llista d'entrades d'estils utilitzant el menú Eines ▸ Personalitza. Com que els estils personalitzats pertanyen al document actual, recordeu d'emmagatzemar el menú personalitzat en l'àmbit del document." #. 7kWCz #: main0115.xhp @@ -1717,7 +1716,7 @@ "par_id991529755027118\n" "help.text" msgid "Contains commands for activate form design mode, enable/disable control wizards and insert form controls in your document." -msgstr "" +msgstr "Conté les ordres per a activar el mode de disseny de formularis, activar o desactivar els assistents de control i inserir controls de formulari en el document." #. AdXBE #: main0120.xhp @@ -1919,13 +1918,12 @@ #. 9tEuw #: main0202.xhp -#, fuzzy msgctxt "" "main0202.xhp\n" "par_idN10784\n" "help.text" msgid "left to right icon" -msgstr "GAd'esquerra a dreta icona" +msgstr "icona D'esquerra a dreta" #. Xg9vt #: main0202.xhp @@ -1947,13 +1945,12 @@ #. iE56r #: main0202.xhp -#, fuzzy msgctxt "" "main0202.xhp\n" "par_idN107DF\n" "help.text" msgid "right to left icon" -msgstr "GAde dreta a esquerra icona" +msgstr "icona de dreta a esquerra" #. TMwGp #: main0202.xhp @@ -2182,7 +2179,6 @@ #. do6CG #: main0208.xhp -#, fuzzy msgctxt "" "main0208.xhp\n" "tit\n" @@ -2219,43 +2215,39 @@ #. 922NG #: main0208.xhp -#, fuzzy msgctxt "" "main0208.xhp\n" "par_id8193914\n" "help.text" msgid "Displays the language for the selected text. Click to open a menu where you can choose another language for the selected text or for the current paragraph." -msgstr "GA mostra l'idioma del text seleccionat. Feu clic per obrir un menú on podeu triar una altra llengua per al text seleccionat o per al paràgraf actual." +msgstr "Mostra la llengua del text seleccionat. Feu clic per a obrir un menú on podeu triar una altra llengua per al text seleccionat o per al paràgraf actual." #. ADEdD #: main0208.xhp -#, fuzzy msgctxt "" "main0208.xhp\n" "par_id221603808238822\n" "help.text" msgid "Choose None to exclude the text from spellchecking and hyphenation." -msgstr "Trieu Cap per excloure el text de la verificació ortogràfica i la partició de mots." +msgstr "Trieu Cap per a excloure el text de la verificació ortogràfica i la partició de mots." #. BrkYL #: main0208.xhp -#, fuzzy msgctxt "" "main0208.xhp\n" "par_id691603808343437\n" "help.text" msgid "Choose Reset to Default Language to re-apply the default language for the selection or the paragraph." -msgstr "Trieu Restableix a per a tornar a aplicar l'idioma per defecte per a la selecció o el paràgraf." +msgstr "Trieu Restableix a la llengua predeterminada per a tornar a aplicar la llengua predeterminada per a la selecció o el paràgraf." #. YLVnp #: main0208.xhp -#, fuzzy msgctxt "" "main0208.xhp\n" "par_id291603808357876\n" "help.text" msgid "Choose More to open the character formatting dialog with more options." -msgstr "Trieu Més per obrir el diàleg de formatació de caràcters amb més opcions." +msgstr "Trieu Més per a obrir el diàleg de formatació de caràcters amb més opcions." #. zeCHC #: main0208.xhp @@ -2268,13 +2260,12 @@ #. HYMp2 #: main0208.xhp -#, fuzzy msgctxt "" "main0208.xhp\n" "par_id0821200911015941\n" "help.text" msgid "Click to start digital signature process. You must have a digital certificate to complete the process. See also Digital Signatures." -msgstr "Feu clic per iniciar el procés de signatura digital. Heu de tenir un certificat digital per completar el procés. Vegeu també Signatures digitals ." +msgstr "Feu clic per a iniciar el procés de signatura digital. Heu de tenir un certificat digital per a completar el procés. Vegeu també Signatures digitals ." #. DqFNG #: main0208.xhp @@ -2319,7 +2310,7 @@ "tit\n" "help.text" msgid "Print Preview Bar (Writer)" -msgstr "" +msgstr "Barra de previsualització d'impressió (Writer)" #. fuQ93 #: main0210.xhp @@ -2346,7 +2337,7 @@ "hd_id801649977850317\n" "help.text" msgid "Jump to Specific Page" -msgstr "" +msgstr "Salta a una pàgina específica" #. 4KMx6 #: main0210.xhp @@ -2355,7 +2346,7 @@ "par_id891649977865555\n" "help.text" msgid "To go to a specific page in the Print Preview, type the page number in the entry box, then press Enter." -msgstr "" +msgstr "Per a anar a una pàgina específica en la previsualització d'impressió, escriviu el número de pàgina en el quadre d'entrada, i després nRetorn." #. Qijav #: main0210.xhp @@ -2373,7 +2364,7 @@ "par_id641649334677475\n" "help.text" msgid "Open the Print dialog." -msgstr "" +msgstr "Obre el diàleg d'impressió." #. SiGWE #: main0210.xhp @@ -2382,7 +2373,7 @@ "hd_id581649332297923\n" "help.text" msgid "Close Preview" -msgstr "" +msgstr "Tanca la previsualització" #. JewxS #: main0210.xhp @@ -2391,7 +2382,7 @@ "par_id101649332370147\n" "help.text" msgid "Exit from Print Preview." -msgstr "" +msgstr "Surt de la previsualització d'impressió." #. vrBnP #: main0210.xhp @@ -2400,7 +2391,7 @@ "par_id91649332206811\n" "help.text" msgid "Close Preview Icon" -msgstr "" +msgstr "Icona Tanca la previsualització" #. ZTPfH #: main0210.xhp @@ -2409,7 +2400,7 @@ "par_id661649332206811\n" "help.text" msgid "Close Preview" -msgstr "" +msgstr "Tanca la previsualització" #. WmU6L #: main0213.xhp @@ -2580,7 +2571,7 @@ "tit\n" "help.text" msgid "OLE Object Bar" -msgstr "" +msgstr "Barra Objecte OLE" #. YCkLT #: main0216.xhp @@ -2589,7 +2580,7 @@ "hd_id3150726\n" "help.text" msgid "OLE Object Bar" -msgstr "" +msgstr "Barra Objecte OLE" #. phgBb #: main0216.xhp @@ -2598,7 +2589,7 @@ "par_id3150746\n" "help.text" msgid "The OLE Object bar appears when objects are selected, and contains the most important functions for formatting and positioning objects." -msgstr "" +msgstr "La barra Objecte OLE apareix quan se seleccionen objectes, i conté les funcions més importants per a formatar i posicionar objectes." #. 2gbs5 #: main0216.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-02-13 07:33+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+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" @@ -17684,7 +17684,7 @@ "Label\n" "value.text" msgid "Plain Text" -msgstr "Text" +msgstr "Text sense format" #. rCAZo #: GenericCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.5.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.5.1~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-08 19:47+0100\n" -"PO-Revision-Date: 2022-12-19 14:09+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2023-03-01 07:06+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: 1548164305.000000\n" #. HhMVS @@ -1114,7 +1114,7 @@ "MY_SETTINGS\n" "value.text" msgid "My Settings " -msgstr "Configuració personalitzada " +msgstr "Paràmetres personalitzats " #. GGs5k #: PresentationMinimizer.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/sc/messages.po libreoffice-7.5.2~rc2/translations/source/ca/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/ca/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/sc/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" +"PO-Revision-Date: 2023-03-09 11: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.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 @@ -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 @@ -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 @@ -8909,7 +8909,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ó estàndard basada en tota la població." +msgstr "Calcula la desviació tipus basada en tota la població." #. 4JaDC #: sc/inc/scfuncs.hrc:1823 @@ -8927,7 +8927,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 "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 @@ -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 @@ -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 @@ -17169,19 +17169,19 @@ #: sc/inc/strings.hrc:127 msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1" msgid "Calc A1" -msgstr "Calc A1" +msgstr "A1 del Calc" #. xEQCB #: sc/inc/strings.hrc:128 msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1" msgid "Excel A1" -msgstr "Excel A1" +msgstr "A1 de l'Excel" #. KLkBH #: sc/inc/strings.hrc:129 msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1" msgid "Excel R1C1" -msgstr "Excel R1C1" +msgstr "R1C1 de l'Excel" #. pr4wW #: sc/inc/strings.hrc:130 @@ -17806,7 +17806,7 @@ #: sc/inc/strings.hrc:246 msgctxt "STRID_CALC_STD_DEVIATION" msgid "Standard Deviation" -msgstr "Desviació estàndard" +msgstr "Desviació tipus" #. JTx7f #: sc/inc/strings.hrc:247 @@ -17945,7 +17945,7 @@ #: sc/inc/strings.hrc:270 msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION" msgid "Standard Deviation" -msgstr "Desviació estàndard" +msgstr "Desviació tipus" #. ChwWE #: sc/inc/strings.hrc:271 diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/sd/messages.po libreoffice-7.5.2~rc2/translations/source/ca/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/ca/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/sd/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:12+0100\n" -"PO-Revision-Date: 2023-02-01 09:32+0000\n" +"PO-Revision-Date: 2023-03-18 02: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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562916317.000000\n" #. WDjkB @@ -8381,7 +8381,7 @@ #: sd/uiconfig/simpress/ui/pmsummarypage.ui:250 msgctxt "pmsummarypages|STR_SUMMARY_TITLE" msgid "Choose where to apply the following changes" -msgstr "" +msgstr "Trieu on aplicar els canvis següents" #. LAEo2 #: sd/uiconfig/simpress/ui/presentationdialog.ui:13 diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/starmath/messages.po libreoffice-7.5.2~rc2/translations/source/ca/starmath/messages.po --- libreoffice-7.5.1~rc2/translations/source/ca/starmath/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/starmath/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2023-02-28 22:08+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: 1562916087.000000\n" #. GrDhX @@ -1928,7 +1928,7 @@ #: starmath/inc/strings.hrc:271 msgctxt "RID_WP_HELP" msgid "Weierstrass p" -msgstr "p de Weierstrass" +msgstr "p de Weierstraß" #. f9sfv #: starmath/inc/strings.hrc:272 diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/svx/messages.po libreoffice-7.5.2~rc2/translations/source/ca/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/ca/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/svx/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-02-13 07:33+0000\n" +"PO-Revision-Date: 2023-03-01 07:51+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" @@ -17760,7 +17760,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 "Permet adjuntar URL a àrees específiques anomenades punts d'accés en una imatge o un grup d'imatges. Un mapa d'imatge és un grup d'un o més punts d'accés." +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." #. aHyrG #: svx/uiconfig/ui/imapmenu.ui:12 diff -Nru libreoffice-7.5.1~rc2/translations/source/ca/sw/messages.po libreoffice-7.5.2~rc2/translations/source/ca/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/ca/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ca/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-13 07:33+0000\n" +"PO-Revision-Date: 2023-03-18 02: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" @@ -68,13 +68,13 @@ #: sw/inc/AccessibilityCheckStrings.hrc:24 msgctxt "STR_AVOID_FAKE_FOOTNOTES" msgid "Avoid fake footnotes." -msgstr "Eviteu les notes al peu falses." +msgstr "Eviteu les notes al peu simulades." #. Ux9yR #: sw/inc/AccessibilityCheckStrings.hrc:25 msgctxt "STR_AVOID_FAKE_CAPTIONS" msgid "Avoid fake captions." -msgstr "Eviteu les llegendes falses." +msgstr "Eviteu les llegendes simulades." #. sg2MT #: sw/inc/AccessibilityCheckStrings.hrc:26 @@ -6832,13 +6832,13 @@ #: sw/inc/strings.hrc:814 msgctxt "STR_IDXMRK_EDIT" msgid "Edit Index Entry" -msgstr "Edita entrada d'índex" +msgstr "Edita l'entrada d'índex" #. EHTHH #: sw/inc/strings.hrc:815 msgctxt "STR_IDXMRK_INSERT" msgid "Insert Index Entry" -msgstr "Insereix entrada d'índex" +msgstr "Insereix una entrada d'índex" #. D2gkA #: sw/inc/strings.hrc:816 @@ -8766,7 +8766,7 @@ #: sw/inc/strings.hrc:1190 msgctxt "ST_OUTL" msgid "Headings" -msgstr "Capçaleres" +msgstr "Encapçalaments" #. Cbktp #: sw/inc/strings.hrc:1191 @@ -10628,7 +10628,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 @@ -14947,7 +14947,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:180 msgctxt "fldrefpage|label3" msgid "_Refer using:" -msgstr "_Consulteu utilitzant:" +msgstr "_Refereix usant:" #. bjLoy #: sw/uiconfig/swriter/ui/fldrefpage.ui:225 @@ -14965,7 +14965,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:311 msgctxt "fldrefpage|extended_tip|selecttip" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Refer using\" list, and then click Insert." -msgstr "Llista els camps disponibles per al tipus de camp seleccionat a la llista Tipus. Per inserir un camp, feu clic al camp, seleccioneu un format a la llista \"Consultar utilitzant\" i, a continuació, feu clic a Insereix." +msgstr "Enumera els camps disponibles per al tipus de camp seleccionat a la llista Tipus. Per a inserir un camp, feu clic al camp, seleccioneu un format a la llista «Refereix usant» i, a continuació, feu clic a Insereix." #. BFEfh #: sw/uiconfig/swriter/ui/fldrefpage.ui:356 diff -Nru libreoffice-7.5.1~rc2/translations/source/cs/cui/messages.po libreoffice-7.5.2~rc2/translations/source/cs/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/cs/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/cs/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-13 07:33+0000\n" +"PO-Revision-Date: 2023-02-25 12:45+0000\n" "Last-Translator: Stanislav Horáček \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565905500.000000\n" #. GyY9M @@ -17430,37 +17430,37 @@ #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "Systémový" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "Světlý" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "Tmavý" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "Určuje, zda bude použit systémový režim vzhledu, nebo světlý či tmavý." #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "Režim:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "Vzhled" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 diff -Nru libreoffice-7.5.1~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-08 19:46+0100\n" -"PO-Revision-Date: 2023-01-08 16:13+0000\n" +"PO-Revision-Date: 2023-02-23 09:07+0000\n" "Last-Translator: Stanislav Horáček \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1559927186.000000\n" @@ -19023,7 +19023,7 @@ "par_id3166458\n" "help.text" msgid "Columns is the number of columns by which the reference was corrected to the left (negative value) or to the right. Use 0 to stay in the same column" -msgstr "Řádky je počet řádků, o který má být odkaz posunut nahoru (záporná hodnota) nebo dolů. Chcete-li zůstat na stejném řádku, použijte 0." +msgstr "Sloupce je počet sloupců, o který má být odkaz posunut doleva (záporná hodnota) nebo doprava. Chcete-li zůstat ve stejném sloupci, použijte 0." #. K2dos #: 04060109.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/de/cui/messages.po libreoffice-7.5.2~rc2/translations/source/de/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/de/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-19 19:03+0000\n" +"PO-Revision-Date: 2023-03-03 12:22+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566197858.000000\n" #. GyY9M @@ -17432,37 +17432,37 @@ #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "System" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "Hell" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "Dunkel" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "Legt fest, ob dem Darstellungsmodus des Systems gefolgt beziehungsweise dieses Dunkel oder Hell überschrieben werden soll." #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "Modus:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "Aussehen" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 diff -Nru libreoffice-7.5.1~rc2/translations/source/de/filter/source/config/fragments/filters.po libreoffice-7.5.2~rc2/translations/source/de/filter/source/config/fragments/filters.po --- libreoffice-7.5.1~rc2/translations/source/de/filter/source/config/fragments/filters.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/filter/source/config/fragments/filters.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2022-10-21 14:17+0000\n" +"PO-Revision-Date: 2023-03-19 05:33+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559618281.000000\n" #. FR4Ff @@ -994,7 +994,7 @@ "UIName\n" "value.text" msgid "Rich Text Format (Calc)" -msgstr "Rich Text Format (Calc)" +msgstr "Rich Text-Format (Calc)" #. gSCsm #: SVGZ___Compressed_Scalable_Vector_Graphics.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/sbasic/python.po libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/sbasic/python.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/python.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-05 06:41+0000\n" +"PO-Revision-Date: 2023-03-19 15:34+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -230,7 +230,7 @@ "N0340\n" "help.text" msgid "%PRODUCTNAME Basic macros can be personal, shared, or embedded in documents. In order to execute them, Python run time needs to be provided with Basic macro locations. Implementing the com.sun.star.script.provider.XScriptProvider interface allows the retrieval of executable scripts:" -msgstr "Grundlegende %PRODUCTNAME Makros können privat, gemeinsam oder in Dokumente eingebettet sein. Um sie auszuführen, muss die Python-Runtime mit Basic-Makro-Positionen versehen werden. Das Implementieren der Schnittstelle com.sun.star.script.provider.XScriptProvider ermöglicht den Abruf von ausführbaren Skripten:" +msgstr "%PRODUCTNAME Basic-Makros können privat, gemeinsam oder in Dokumente eingebettet sein. Um sie auszuführen, muss die Python-Runtime mit Basic-Makro-Positionen versehen werden. Das Implementieren der Schnittstelle com.sun.star.script.provider.XScriptProvider ermöglicht den Abruf von ausführbaren Skripten:" #. w4UAs #: python_2_basic.xhp @@ -248,7 +248,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 @@ -752,7 +752,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.5.1~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po --- libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po 2023-03-24 16:53:38.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-11-22 14:43+0100\n" -"PO-Revision-Date: 2023-02-04 06:43+0000\n" -"Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2023-03-15 10:06+0000\n" +"Last-Translator: Annabelle Wübbelsmann \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -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 @@ -1364,7 +1364,7 @@ "par_id21645217233263\n" "help.text" msgid "Press Shift+CommandCtrl+F9" -msgstr "Drücken Sie BefehlStrg+Umschalt+F9" +msgstr "Drücken SieUmschalt BefehlStrg+F9" #. soEE4 #: 00000406.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.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-12-08 19:46+0100\n" -"PO-Revision-Date: 2023-02-19 17:18+0000\n" -"Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2023-03-22 12:34+0000\n" +"Last-Translator: serval2412 \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -2849,7 +2849,7 @@ "bm_id781654171314500\n" "help.text" msgid "Go to sheet jump; to given sheet sheet; go to directly sheet; search and go to" -msgstr "" +msgstr "Zu TabelleSpringe; Zu bestimmter TabelleTabelle; Gehe direkt zuTabelle; Suchen und gehe zu" #. Ky4LF #: 02220000.xhp @@ -2894,7 +2894,7 @@ "par_id3153975\n" "help.text" msgid "Type some characters contained in the searched sheet name. List of sheets will be limited to the sheet names containing these characters. Search is case-sensitive. If empty, all visible sheets are listed." -msgstr "Tippen Sie ein paar Zeichen ein, die in der gesuchten Tabelle enthalten sind. Die Liste der Tabellen wird auf diejenigen reduziert, die diese Zeichen enthalten. Die Suche beachtet die Groß- / Kleinschreibung. Falls leer, werden alle sichtbaren Tabellen aufgeführt." +msgstr "Tippen Sie ein paar Zeichen ein, die in der gesuchten Tabelle enthalten sind. Die Liste der Tabellen wird auf diejenigen reduziert, die diese Zeichen enthalten. Die Suche beachtet die Groß-/Kleinschreibung. Falls leer, werden alle sichtbaren Tabellen aufgeführt." #. aCw4F #: 02220000.xhp @@ -10985,7 +10985,7 @@ "tit\n" "help.text" msgid "Mathematical Functions" -msgstr "Kategorie Mathematik" +msgstr "Mathematische Funktionen" #. MfxvG #: 04060106.xhp @@ -11003,7 +11003,7 @@ "hd_id3147124\n" "help.text" msgid "Mathematical Functions" -msgstr "" +msgstr "Mathematische Funktionen" #. UNxJE #: 04060106.xhp @@ -12884,7 +12884,7 @@ "hd_id561641930400206\n" "help.text" msgid "TRUNC" -msgstr "" +msgstr "KÜRZEN" #. MQVNf #: 04060106.xhp @@ -14153,7 +14153,7 @@ "par_id8347422\n" "help.text" msgid "SUMIF supports the reference concatenation operator (~) only in the Range parameter, and only if the optional SumRange parameter is not given." -msgstr "" +msgstr "SUMMEWENN unterstützt den Verkettungsoperator (~) nur für Bereiche im Parameter „Bereich“ und nur, wenn der optionale Parameter „Summenbereich“ nicht angegeben wird." #. uazzL #: 04060106.xhp @@ -15287,7 +15287,7 @@ "par_id91590242400917\n" "help.text" msgid "Returns an non-volatile integer random number between integers Bottom and Top (both inclusive). A non-volatile function is not recalculated at new input events or pressing F9. However, the function is recalculated when pressing F9 with the cursor on the cell containing the function, when opening the file, when using the Recalculate Hard command (Shift+CommandCtrl+F9) and when Top or Bottom are recalculated." -msgstr "" +msgstr "Gibt eine nichtflüchtige ganzzahlige Zufallszahl zwischen den ganzen Zahlen Kleinste_Zahl und Größte_Zahl (beide einschließlich) zurück. Eine nichtflüchtige Funktion wird bei neuen Eingabeereignissen oder Drücken von F9 nicht neu berechnet. Die Funktion wird jedoch neu berechnet, wenn F9 mit dem Cursor auf der Zelle, welche die Funktion enthält, beim Öffnen der Datei gedrückt wird, wenn der Befehl Unbedingte Neuberechnung (Umschalt+BefehlStrg+F9) verwendet wird und wenn Größe_Zahl oder Kleinste_Zahl neu berechnet werden." #. AngvN #: 04060106.xhp @@ -15440,7 +15440,7 @@ "par_id271590239748534\n" "help.text" msgid "This function produces a non-volatile random number on input. A non-volatile function is not recalculated at new input events. The function does not recalculate when pressing F9, except when the cursor is on the cell containing the function or using the Recalculate Hard command (Shift+CommandCtrl+F9). The function is recalculated when opening the file." -msgstr "" +msgstr "Diese Funktion erzeugt bei der Eingabe eine nichtflüchtige Zufallszahl. Eine nichtflüchtige Funktion wird bei neuen Eingabeereignissen nicht neu berechnet. Die Funktion wird nicht neu berechnet, wenn F9 gedrückt wird, außer wenn sich der Cursor auf der Zelle befindet, welche die Funktion enthält, oder wenn der Befehl Unbedingte Neuberechnung (Shift+BefehlStrg+F9) verwendet wird. Beim Öffnen der Datei wird die Funktion neu berechnet." #. sCwno #: 04060106.xhp @@ -15602,7 +15602,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" #. NJc9B #: 04060107.xhp @@ -15611,7 +15611,7 @@ "hd_id651668200191409\n" "help.text" msgid "Implicit intersection of array formulas" -msgstr "" +msgstr "Impliziter Schnittpunkt von Matrixformeln" #. M2BM4 #: 04060107.xhp @@ -15620,7 +15620,7 @@ "par_id3152876\n" "help.text" msgid "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. This formula is also known as \"implicit intersection\" of array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:" -msgstr "" +msgstr "Sie können auch eine \"normale\" Formel erstellen, in der der Referenzbereich, beispielsweise die Parameter, eine Matrixformel angibt. Diese Formel wird auch als \"implizite Schnittpunkt\" der Matrixformel bezeichnet. Das Ergebnis ergibt sich aus dem Schnittpunkt des Referenzbereichs und der Zeilen oder Spalten, in denen sich die Formel befindet. Wenn es keinen Schnittpunkt gibt oder wenn der Bereich am Schnittpunkt mehrere Zeilen oder Spalten umfasst, wird der Fehler #WERT! angezeigt. Das folgende Beispiel veranschaulicht dieses Konzept:" #. Et4mZ #: 04060107.xhp @@ -15629,7 +15629,7 @@ "par_id631668200233375\n" "help.text" msgid "In the table above, place the array formula in D1:" -msgstr "" +msgstr "In der oben stehenden Tabelle geben Sie die folgende Matrixformel in D1 ein:" #. Fb5iF #: 04060107.xhp @@ -15638,7 +15638,7 @@ "par_id641668200266239\n" "help.text" msgid "Cells D1, D2, D3 have values 107, 195, 105 respectively." -msgstr "" +msgstr "Die Zellen D1, D2 und D3 haben jeweils die Werte 107, 195 und 105." #. EpsqN #: 04060107.xhp @@ -15647,7 +15647,7 @@ "par_id231668200272420\n" "help.text" msgid "Insert the formula below in E2, do not enter as array formula." -msgstr "" +msgstr "Geben Sie die folgende Formel in E2 ein (Nicht als Matrixformel)." #. PhpAa #: 04060107.xhp @@ -15656,7 +15656,7 @@ "par_id681668200283910\n" "help.text" msgid "Cells E1 and E3 are empty, Cell E2 has value 195. This is the implicit intersection of array formulas." -msgstr "" +msgstr "Die Zellen E1 und E3 sind leer, Zelle E2 enthält den Wert 195. Dies ist der implizite Schnittpunkt von Matrixformeln." #. KdBwt #: 04060107.xhp @@ -15665,7 +15665,7 @@ "par_id161668200288651\n" "help.text" msgid "Insert formula below in E4, as in E2." -msgstr "" +msgstr "Geben Sie die folgende Formel wie in E2 in E4 ein." #. G8xZf #: 04060107.xhp @@ -15674,7 +15674,7 @@ "par_id711668200299613\n" "help.text" msgid "Cell E4 display #VALUE!. Row 4 is out of the range A1:A3 of the formula." -msgstr "" +msgstr "Die Zelle E4 zeigt den Fehlerwert #WERT! an. Zeile 4 ist außerhalb des Bereichs A1:A3 von der Formel." #. EcJu6 #: 04060107.xhp @@ -17699,7 +17699,7 @@ "tit\n" "help.text" msgid "Spreadsheet Functions" -msgstr "Funktionen für Tabellen" +msgstr "Tabellenfunktionen" #. WoHfE #: 04060109.xhp @@ -17717,7 +17717,7 @@ "hd_id3148522\n" "help.text" msgid "Spreadsheet Functions" -msgstr "Funktionen für Tabellen" +msgstr "Tabellenfunktionen" #. BceQk #: 04060109.xhp @@ -19238,7 +19238,7 @@ "par_id1670450904\n" "help.text" msgid "The STYLE function should not be used without compelling reason, its purpose is the use with asynchronous Add-In functions to visually notify about the availability of a result. In almost all other cases using conditional formatting instead is a better choice." -msgstr "" +msgstr "Die Funktion VORLAGE sollte nicht ohne zwingenden Grund verwendet werden. Ihr Zweck ist die Verwendung mit asynchronen Add-In-Funktionen, um visuell über die Verfügbarkeit eines Ergebnisses zu informieren. In fast allen anderen Fällen ist die Verwendung von bedingter Formatierung die bessere Wahl." #. gU3TE #: 04060109.xhp @@ -20156,7 +20156,7 @@ "par_id401624454547945\n" "help.text" msgid "Be aware that Calc's AutoCorrect function may modify double quotation marks. AutoCorrect should not change the double quotation marks within formula cells but may change those used in non-formula cells containing text. For example, if you copy a string that is surrounded by some other form of typographical double quotation marks, such as the left double quotation mark (U+201C) and the right double quotation mark (U+201D), and then paste into a formula cell, an error may result. Open the Double Quotes area of the Tools - AutoCorrect Options - Localized Options dialog to set the characters used to automatically correct the start and end typographical double quotation marks. Uncheck the Replace toggle button to disable the feature." -msgstr "" +msgstr "Beachten Sie, dass die AutoKorrektur von Calc doppelte Anführungszeichen ändern kann. Die AutoKorrektur sollte die doppelten Anführungszeichen in Zellen mit Formeln nicht ändern, kann jedoch diejenigen ändern, die in Zellen ohne Formeln mit Text verwendet werden. Wenn Sie beispielsweise eine Zeichenfolge kopieren, die von einer anderen Form typografischer doppelter Anführungszeichen umgeben ist, beispielsweise das linke doppelte Anführungszeichen (U+201C) und das rechte doppelte Anführungszeichen (U+201D), und dies in eine Zelle mit Formeln einfügen, kann ein Fehler auftreten. Öffnen Sie den Dialog Extras – AutoKorrektur-Optionen… – Register: Gebietsschemaabhängige Optionen und deaktivieren Sie im Bereich Doppelte Anführungszeichen das Markierfeld Ersetzen, um die Zeichen, die verwendet werden, um die typografischen doppelten Anführungszeichen am Anfang und am Ende automatisch zu korrigieren, auszuschalten." #. rdzbS #: 04060110.xhp @@ -20597,7 +20597,7 @@ "par_id3156361\n" "help.text" msgid "Converts text that represents a number in a numeral system with the given base radix to a positive integer. The radix must be in the range 2 to 36. Spaces and tabs are ignored. The Text field is not case-sensitive." -msgstr "" +msgstr "Konvertiert Text, der eine Zahl in einem Zahlensystem mit der angegebenen Zahlenbasis darstellt, in eine positive ganze Zahl. Die Basis muss im Bereich von 2 bis 36 liegen. Leerzeichen und Tabulatoren werden ignoriert. Beim Feld Text wird die Groß-/Kleinschreibung nicht beachtet." #. Nt52d #: 04060110.xhp @@ -20669,7 +20669,7 @@ "par_id421655560837244\n" "help.text" msgid "BASE" -msgstr "" +msgstr "BASIS" #. NwJnR #: 04060110.xhp @@ -20696,7 +20696,7 @@ "par_id3153049\n" "help.text" msgid "Converts a number to a string representing the amount in the currency format, rounded to a specified decimal places, using the decimal separator that corresponds to the current locale setting. In the Value field enter the number to be converted. Optionally, you may enter the number of decimal places in the Decimals field. If no value is specified, all numbers in currency format will be displayed with two decimal places." -msgstr "" +msgstr "Konvertiert eine Zahl in eine Zeichenfolge, die den Betrag im Währungsformat darstellt, gerundet auf eine bestimmte Dezimalstelle, wobei das Dezimaltrennzeichen verwendet wird, das der aktuellen Gebietsschemaeinstellung entspricht. Geben Sie im Feld Wert die umzuwandelnde Zahl ein. Optional können Sie im Feld Dezimalstellen die Anzahl der Nachkommastellen eingeben. Wenn kein Wert angegeben ist, werden alle Zahlen im Währungsformat mit zwei Dezimalstellen angezeigt." #. FEDsN #: 04060110.xhp @@ -45077,7 +45077,7 @@ "par_id3163710\n" "help.text" msgid "Use Conditional Formatting to define range-based conditions that determine which cell style will be applied to each cell in a given range based on its contents. The cell style corresponding to the first condition that evaluates to true is applied. Cell styles applied through Conditional Formatting override cell styles applied manually using the Formatting Bar or the Styles sidebar." -msgstr "" +msgstr "Verwenden Sie Bedingte Formatierung, um bereichsbasierte Bedingungen zu festzulegen, die bestimmen, welche Zellvorlage auf jede Zelle in einem bestimmten Bereich basierend auf ihrem Inhalt angewendet wird. Die Zellvorlage, die der ersten Bedingung entspricht, die zu true ausgewertet wird, wird angewendet. Zellvorlagen, die durch bedingte Formatierung angewendet wurden, überschreiben Zellvorlagen, die manuell mithilfe der Symbolleiste Formatierungen oder der Seitenleiste Formatvorlagen angewendet wurden." #. 2GWTv #: 05120000.xhp @@ -45095,7 +45095,7 @@ "par_id431642031216368\n" "help.text" msgid "Conditional formats do not overwrite cell styles and direct formatting applied manually. They remain saved as cell properties and are applied when the cell matches no conditions or when you remove all conditional formats." -msgstr "" +msgstr "Bedingte Formatierungen überschreiben keine Zellvorlagen und direkte Formatierungen, die manuell angewendet wurden. Sie bleiben als Zelleneigenschaften gespeichert und werden angewendet, wenn die Zelle keine Bedingungen erfüllt oder wenn Sie alle bedingten Formatierungen entfernen." #. AMXCn #: 05120000.xhp @@ -45113,7 +45113,7 @@ "hd_id961662926287139\n" "help.text" msgid "Cell range" -msgstr "" +msgstr "Zellbereich" #. Gv4oU #: 05120000.xhp @@ -45122,7 +45122,7 @@ "hd_id431662926282555\n" "help.text" msgid "Range" -msgstr "" +msgstr "Bereich" #. BoUXF #: 05120000.xhp @@ -45131,7 +45131,7 @@ "par_id31494138\n" "help.text" msgid "Defines the range of cells concerned by the conditional formatting. Click on the Shrink button to minimize the dialog box. Click again on the button to come back to the dialog box once the range is selected." -msgstr "" +msgstr "Legt den Zellbereich fest, der von der bedingten Formatierung betroffen ist. Klicken Sie auf die Schaltfläche Verkleinern, um den Dialog zu minimieren. Klicken Sie erneut auf die Schaltfläche, um zum Dialog zurückzukehren, sobald der Bereich ausgewählt ist." #. NvgCF #: 05120000.xhp @@ -45203,7 +45203,7 @@ "hd_id71662926011736\n" "help.text" msgid "Add" -msgstr "" +msgstr "Hinzufügen" #. NiRqU #: 05120000.xhp @@ -45212,7 +45212,7 @@ "par_id721662926016039\n" "help.text" msgid "Adds the condition to the condition list." -msgstr "" +msgstr "Fügt die Bedingung zur Liste „Bedingungen“ hinzu." #. EXu3U #: 05120000.xhp @@ -45221,7 +45221,7 @@ "hd_id401662926020291\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Löschen" #. njCNL #: 05120000.xhp @@ -45230,7 +45230,7 @@ "par_id301662926026944\n" "help.text" msgid "Deletes the condition from the condition list." -msgstr "" +msgstr "Löscht eine Bedingung aus der Liste „Bedingungen“." #. ZSEod #: 05120000.xhp @@ -45239,7 +45239,7 @@ "hd_id31531891\n" "help.text" msgid "Condition list entries" -msgstr "" +msgstr "Einträge in der Liste Bedingungen" #. udAbc #: 05120000.xhp @@ -45248,7 +45248,7 @@ "par_id31494132\n" "help.text" msgid "Specify if conditional formatting is dependent on one of the entry listed on the drop down box." -msgstr "" +msgstr "Legt fest, ob die bedingte Formatierung von einem der Einträge abhängig ist, die im Dropdown-Feld aufgelistet sind." #. WsjTp #: 05120000.xhp @@ -45257,7 +45257,7 @@ "hd_id431662938949798\n" "help.text" msgid "Apply Style" -msgstr "" +msgstr "Vorlage anwenden" #. ZEYCC #: 05120000.xhp @@ -45266,7 +45266,7 @@ "par_id971662939043786\n" "help.text" msgid "Select the cell style to apply when the condition is verified. Select New Style to open the Cell Style dialog and define the style properties." -msgstr "" +msgstr "Wählen Sie die Zellvorlage aus, welche angewendet werden soll, wenn die Bedingung zu trifft. Wählen Sie Neue Vorlage…, um den Dialog Zellvorlagen zu öffnen und legen Sie die Eigenschaften der Zellvorlage fest." #. CHbab #: 05120100.xhp @@ -45275,7 +45275,7 @@ "tit\n" "help.text" msgid "Conditional Formatting - Cell value is" -msgstr "" +msgstr "Bedingte Formatierung – Zellwert" #. YBgJ6 #: 05120100.xhp @@ -45284,7 +45284,7 @@ "hd_id431662935550205\n" "help.text" msgid "Condition - Cell value is" -msgstr "" +msgstr "Bedingte Formatierung – Zellwert" #. RtY8f #: 05120100.xhp @@ -45293,7 +45293,7 @@ "par_id11662915615351\n" "help.text" msgid "Applies a cell style on the cell or cell range controlled by the condition set in the drop down list. The formatting is applied to each cell individually and the condition may depend on other cells values of the selected range." -msgstr "" +msgstr "Wendet eine Zellvorlage auf die Zelle oder den Zellbereich an, die durch die in der Dropdown-Liste festgelegte Bedingung gesteuert wird. Die Formatierung wird auf jede Zelle einzeln angewendet, und die Bedingung kann von anderen Zellwerten des ausgewählten Bereichs abhängen." #. fUCE7 #: 05120100.xhp @@ -45302,7 +45302,7 @@ "hd_id951665406076405\n" "help.text" msgid "Conditions for Text and Numbers" -msgstr "" +msgstr "Bedingungen für Text und Zahlen" #. fkuaH #: 05120100.xhp @@ -45311,7 +45311,7 @@ "par_id181662913907279\n" "help.text" msgid "Condition" -msgstr "" +msgstr "Bedingung" #. Yd3xQ #: 05120100.xhp @@ -45320,7 +45320,7 @@ "par_id941662913907280\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschreibung" #. nP5Ym #: 05120100.xhp @@ -45329,7 +45329,7 @@ "par_id31662913907282\n" "help.text" msgid "is equal to" -msgstr "" +msgstr "ist gleich" #. bYfTW #: 05120100.xhp @@ -45338,7 +45338,7 @@ "par_id881662913907284\n" "help.text" msgid "The cell value equals the user defined value in text box in the right. Use text inside quotes if you compare text values." -msgstr "" +msgstr "Der Zellwert ist gleich dem benutzerdefinierten Wert im rechten Textfeld. Verwenden Sie Text in Anführungszeichen, wenn Sie Textwerte vergleichen." #. Pbje6 #: 05120100.xhp @@ -45347,7 +45347,7 @@ "par_id831662914760085\n" "help.text" msgid "is not equal to" -msgstr "" +msgstr "ist ungleich" #. T8x2N #: 05120100.xhp @@ -45356,7 +45356,7 @@ "par_id301662914760087\n" "help.text" msgid "The cell value is not equal (different) to the user defined value in the text box in the right. Use text inside quotes if you compare text values." -msgstr "" +msgstr "Der Zellwert ist nicht gleich (anders) als der benutzerdefinierte Wert im rechten Textfeld. Verwenden Sie Text in Anführungszeichen, wenn Sie Textwerte vergleichen." #. uEArp #: 05120100.xhp @@ -45365,7 +45365,7 @@ "par_id151662920861587\n" "help.text" msgid "begins with" -msgstr "" +msgstr "beginnt mit" #. SrP9B #: 05120100.xhp @@ -45374,7 +45374,7 @@ "par_id341662920861588\n" "help.text" msgid "The cell contents begins with the text or number defined in the text box on the right." -msgstr "" +msgstr "Der Zellinhalt beginnt mit dem Text oder der Zahl, der bzw. die im rechten Textfeld festgelegt ist." #. v76zE #: 05120100.xhp @@ -45383,7 +45383,7 @@ "par_id361662922600585\n" "help.text" msgid "ends with" -msgstr "" +msgstr "endet mit" #. Ag7VY #: 05120100.xhp @@ -45392,7 +45392,7 @@ "par_id801662922600586\n" "help.text" msgid "The cell contents ends with the text or number defined in the right text box." -msgstr "" +msgstr "Der Zellinhalt endet mit dem Text oder der Zahl, der beziehungsweise die im rechten Textfeld festgelegt ist." #. kDJVK #: 05120100.xhp @@ -45401,7 +45401,7 @@ "par_id151662922939292\n" "help.text" msgid "contains" -msgstr "" +msgstr "enthält" #. b4MWb #: 05120100.xhp @@ -45410,7 +45410,7 @@ "par_id251662922939293\n" "help.text" msgid "The cell contents contains the text or number defined in the right text box." -msgstr "" +msgstr "Der Zellinhalt enthält den Text oder die Zahl, der beziehungsweise die im rechten Textfeld festgelegt ist." #. ugaZe #: 05120100.xhp @@ -45419,7 +45419,7 @@ "par_id291662923021542\n" "help.text" msgid "does not contain" -msgstr "" +msgstr "enthält nicht" #. fc4Zs #: 05120100.xhp @@ -45428,7 +45428,7 @@ "par_id541662923021543\n" "help.text" msgid "The cell contents does not contain the text or number defined in the text box on the right." -msgstr "" +msgstr "Der Zellinhalt enthält nicht den Text oder die Zahl, der beziehungsweise die im rechten Textfeld festgelegt ist." #. yF6EV #: 05120100.xhp @@ -45437,7 +45437,7 @@ "par_id801662922586796\n" "help.text" msgid "The condition applies to the internal text conversion of the cell contents. Numeric values are compared with their equivalent text representation. Numeric cell formats (currency, scientific, user-defined ... ) are not considered for comparisons." -msgstr "" +msgstr "Die Bedingung gilt für die interne Textkonvertierung der Zellinhalte. Numerische Werte werden mit ihrer gleichwertigen Textdarstellung verglichen. Numerische Zellformate (Währung, wissenschaftlich, benutzerdefiniert, …) werden für Vergleiche nicht berücksichtigt." #. YGARy #: 05120100.xhp @@ -45446,7 +45446,7 @@ "hd_id111665406111372\n" "help.text" msgid "Conditions on Numbers only" -msgstr "" +msgstr "Bedingungen nur für Zahlen" #. kszJm #: 05120100.xhp @@ -45455,7 +45455,7 @@ "par_id991665406132471\n" "help.text" msgid "Condition" -msgstr "" +msgstr "Bedingung" #. EeCxc #: 05120100.xhp @@ -45464,7 +45464,7 @@ "par_id191665406132471\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschreibung" #. ziYCE #: 05120100.xhp @@ -45473,7 +45473,7 @@ "par_id271662914239763\n" "help.text" msgid "is less than" -msgstr "" +msgstr "ist kleiner als" #. BdnvW #: 05120100.xhp @@ -45482,7 +45482,7 @@ "par_id501662914239764\n" "help.text" msgid "The cell value is strictly less than the user defined value in the text box in the right." -msgstr "" +msgstr "Der Zellwert ist kleiner als der festgelegte Wert im rechten Textfeld." #. Zyiqi #: 05120100.xhp @@ -45491,7 +45491,7 @@ "par_id701662914433053\n" "help.text" msgid "is greater than" -msgstr "" +msgstr "ist größer als" #. PCZug #: 05120100.xhp @@ -45500,7 +45500,7 @@ "par_id461662914433054\n" "help.text" msgid "The cell value is strictly greater than the user defined value in the text box in the right." -msgstr "" +msgstr "Der Zellwert ist größer als der festgelegte Wert im rechten Textfeld." #. zTBff #: 05120100.xhp @@ -45509,7 +45509,7 @@ "par_id421662914480517\n" "help.text" msgid "is less than or equal to" -msgstr "" +msgstr "ist kleiner oder gleich" #. Cy2T9 #: 05120100.xhp @@ -45518,7 +45518,7 @@ "par_id631662914480518\n" "help.text" msgid "The cell value is less than or equal to the user defined value in the text box in the right." -msgstr "" +msgstr "Der Zellwert ist gleich oder kleiner als der festgelegte Wert im rechten Textfeld." #. cFMZa #: 05120100.xhp @@ -45527,7 +45527,7 @@ "par_id651662914713102\n" "help.text" msgid "is greater than or equal to" -msgstr "" +msgstr "ist größer oder gleich" #. YG9FG #: 05120100.xhp @@ -45536,7 +45536,7 @@ "par_id251662914713103\n" "help.text" msgid "The cell value is greater than or equal to the user defined value in the text box in the right." -msgstr "" +msgstr "Der Zellwert ist gleich oder größer als der festgelegte Wert im rechten Textfeld." #. B6eGh #: 05120100.xhp @@ -45545,7 +45545,7 @@ "par_id81662914901503\n" "help.text" msgid "is between" -msgstr "" +msgstr "ist zwischen" #. ZmHDH #: 05120100.xhp @@ -45554,7 +45554,7 @@ "par_id21662914901504\n" "help.text" msgid "The cell value is between the two values defined in the text boxes on the right - lower and upper values - including the boundary values themselves." -msgstr "" +msgstr "Der Zellwert liegt zwischen den beiden Werten, die in den rechten Textfeldern festgelegt sind – niedrigster und höchster Wert – einschließlich dieser beiden Grenzwerte selbst." #. PGH34 #: 05120100.xhp @@ -45563,7 +45563,7 @@ "par_id411662915178872\n" "help.text" msgid "is not between" -msgstr "" +msgstr "ist nicht zwischen" #. dECpd #: 05120100.xhp @@ -45572,7 +45572,7 @@ "par_id861662915178873\n" "help.text" msgid "The cell value is not between the two values defined in the text boxes on the right - lower and upper values - including the boundary values themselves." -msgstr "" +msgstr "Der Zellwert liegt nicht zwischen den beiden Werten, die in den rechten Textfeldern festgelegt sind – niedrigster und höchster Wert – einschließlich dieser beiden Grenzwerte selbst." #. zqVSC #: 05120100.xhp @@ -45581,7 +45581,7 @@ "par_id731662915275926\n" "help.text" msgid "is duplicate" -msgstr "" +msgstr "ist mehrmals vorhanden" #. 4DKbK #: 05120100.xhp @@ -45590,7 +45590,7 @@ "par_id881662915275927\n" "help.text" msgid "The cell and at least one other cell in the range have equal contents." -msgstr "" +msgstr "Die Zelle und mindestens eine weitere Zelle im Bereich haben den gleichen Inhalt." #. UC2gL #: 05120100.xhp @@ -45599,7 +45599,7 @@ "par_id381662915857686\n" "help.text" msgid "is not duplicate" -msgstr "" +msgstr "ist einmal vorhanden" #. ZBUgm #: 05120100.xhp @@ -45608,7 +45608,7 @@ "par_id341662915857687\n" "help.text" msgid "The cell contents is unique in the range." -msgstr "" +msgstr "Der Zellinhalt ist einmalig im Bereich." #. c8Bkp #: 05120100.xhp @@ -45617,7 +45617,7 @@ "par_id1001662915996409\n" "help.text" msgid "is in top N elements" -msgstr "" +msgstr "ist unter den größten N Elementen" #. pDAGV #: 05120100.xhp @@ -45626,7 +45626,7 @@ "par_id571662915996410\n" "help.text" msgid "The cell value is between the maximum value in the range and the Nth greater element of the same. Enter the value of N in the text box on the right." -msgstr "" +msgstr "Der Zellwert liegt zwischen dem Maximalwert im Bereich und den N-ten größten gleichen Elementen. Geben Sie den Wert von N in das rechte Textfeld ein." #. V4FnF #: 05120100.xhp @@ -45635,7 +45635,7 @@ "par_id341662916338175\n" "help.text" msgid "is in bottom N elements" -msgstr "" +msgstr "ist unter den kleinsten N Elementen" #. UDdhD #: 05120100.xhp @@ -45644,7 +45644,7 @@ "par_id11662916338177\n" "help.text" msgid "The cell value is between the minimum value in the range and the Nth lower element of the same. Enter the value of N in the text box on the right." -msgstr "" +msgstr "Der Zellwert liegt zwischen dem Minimalwert im Bereich und den kleinsten N-ten gleichen Elementen. Geben Sie den Wert von N in das rechte Textfeld ein." #. a9GoR #: 05120100.xhp @@ -45653,7 +45653,7 @@ "par_id181662916407095\n" "help.text" msgid "is in top N percent" -msgstr "" +msgstr "ist unter den oberen N Prozent" #. rgUnx #: 05120100.xhp @@ -45662,7 +45662,7 @@ "par_id911662916407097\n" "help.text" msgid "The cell range index value is in the top N percent of the number of cells in the range. For example, in a 20 cells range and N equals 20, the style is applied to the 4 last cells of the range. Enter the value of N in the text box on the right." -msgstr "" +msgstr "Der Zellbereichsindexwert ist unter den oberen N Prozent von der Anzahl der Zellen im Bereich. Beispiel: In einem Bereich von 20 Zellen und N gleich 20 wird die Zellvorlage auf die letzten 4 Zellen des Bereichs angewendet. Geben Sie den Wert von N in das rechte Textfeld ein." #. kfDTU #: 05120100.xhp @@ -45671,7 +45671,7 @@ "par_id421662917285432\n" "help.text" msgid "is in bottom N percent" -msgstr "" +msgstr "ist unter den unteren N Prozent" #. pphGh #: 05120100.xhp @@ -45680,7 +45680,7 @@ "par_id111662917285433\n" "help.text" msgid "The cell range index value is in the bottom N percent of the number of cells in the range. For example, in a 20 cells range and N equals 20, the style is applied to the 4 first cells of the range. Enter the value of N in the text box on the right." -msgstr "" +msgstr "Der Zellbereichsindexwert ist unter den unteren N Prozent von der Anzahl der Zellen im Bereich. Beispiel: In einem Bereich von 20 Zellen und N gleich 20 wird die Zellvorlage auf die ersten 4 Zellen des Bereichs angewendet. Geben Sie den Wert von N in das rechte Textfeld ein." #. W6QVL #: 05120100.xhp @@ -45689,7 +45689,7 @@ "par_id861662917382735\n" "help.text" msgid "is above average" -msgstr "" +msgstr "ist überdurchschnittlich" #. YM3iz #: 05120100.xhp @@ -45698,7 +45698,7 @@ "par_id811662917382736\n" "help.text" msgid "The cell value is strictly greater than the average of the cell range values." -msgstr "" +msgstr "Der Zellwert ist größer als der Mittelwert der Werte im Zellbereich." #. tByUr #: 05120100.xhp @@ -45707,7 +45707,7 @@ "par_id701665407334603\n" "help.text" msgid "See note below." -msgstr "" +msgstr "Siehe Hinweis unten." #. AAKPP #: 05120100.xhp @@ -45716,7 +45716,7 @@ "par_id421662919561954\n" "help.text" msgid "is below average" -msgstr "" +msgstr "ist unterdurchschnittlich" #. DAPwV #: 05120100.xhp @@ -45725,7 +45725,7 @@ "par_id661662919561956\n" "help.text" msgid "The cell value is strictly less than the average of the cell range values." -msgstr "" +msgstr "Der Zellwert ist kleiner als der Mittelwert der Werte im Zellbereich." #. 5cN4q #: 05120100.xhp @@ -45734,7 +45734,7 @@ "par_id831662919693474\n" "help.text" msgid "is above or equal average" -msgstr "" +msgstr "ist überdurchschnittlich oder gleich" #. dk8XB #: 05120100.xhp @@ -45743,7 +45743,7 @@ "par_id71662919693475\n" "help.text" msgid "The cell value is greater or equal than the average of the cell range values." -msgstr "" +msgstr "Der Zellwert ist gleich oder größer als der Durchschnitt der Werte im Zellbereich." #. HuZ9i #: 05120100.xhp @@ -45752,7 +45752,7 @@ "par_id521662919771410\n" "help.text" msgid "is below or equal average" -msgstr "" +msgstr "ist unterdurchschnittlich oder gleich" #. GRFFh #: 05120100.xhp @@ -45761,7 +45761,7 @@ "par_id131662919771411\n" "help.text" msgid "The cell value is less or equal than the average of the cell range values." -msgstr "" +msgstr "Der Zellwert ist gleich oder kleiner als der Durchschnitt der Werte im Zellbereich." #. R6uQc #: 05120100.xhp @@ -45770,7 +45770,7 @@ "hd_id301665406258582\n" "help.text" msgid "Conditions on Errors in Cells." -msgstr "" +msgstr "Bedingungen für Fehler in Zellen" #. PBCMe #: 05120100.xhp @@ -45779,7 +45779,7 @@ "par_id451665406273943\n" "help.text" msgid "Condition" -msgstr "" +msgstr "Bedingung" #. 3BdfG #: 05120100.xhp @@ -45788,7 +45788,7 @@ "par_id71665406273943\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beschreibung" #. vFFDn #: 05120100.xhp @@ -45797,7 +45797,7 @@ "par_id451662919849856\n" "help.text" msgid "is error" -msgstr "" +msgstr "ist ein Fehler" #. qKYm2 #: 05120100.xhp @@ -45806,7 +45806,7 @@ "par_id911662919849857\n" "help.text" msgid "The cell is in the error condition defined in the text box on the right. See List of Calc errors." -msgstr "" +msgstr "Die Zelle befindet sich in der Fehlerbedingung, die im rechten Textfeld festgelegt ist. Siehe Liste der Fehlercodes in Calc." #. uUxWk #: 05120100.xhp @@ -45815,7 +45815,7 @@ "par_id961662920774180\n" "help.text" msgid "is not error" -msgstr "" +msgstr "ist kein Fehler" #. wYckz #: 05120100.xhp @@ -45824,7 +45824,7 @@ "par_id381662920774181\n" "help.text" msgid "The cell is not in the error condition defined in the text box on the right. See List of Calc errors" -msgstr "" +msgstr "Die Zelle befindet sich nicht in der Fehlerbedingung, die im rechten Textfeld festgelegt ist. Siehe Liste der Fehlercodes in Calc." #. DAG5B #: 05120100.xhp @@ -45833,7 +45833,7 @@ "par_id61662920733334\n" "help.text" msgid "A cell that references another cell with an error condition is not in error itself." -msgstr "" +msgstr "Eine Zelle, die auf eine andere Zelle mit einer Fehlerbedingung verweist, ist selbst nicht fehlerhaft." #. 9ycFs #: 05120100.xhp @@ -45842,7 +45842,7 @@ "par_id471665407993996\n" "help.text" msgid "" -msgstr "" +msgstr "" #. 4zHYR #: 05120200.xhp @@ -45851,7 +45851,7 @@ "tit\n" "help.text" msgid "Conditional Formatting - Formula is" -msgstr "" +msgstr "Bedingte Formatierung – Formel ist" #. go5b8 #: 05120200.xhp @@ -45860,7 +45860,7 @@ "hd_id471662936567369\n" "help.text" msgid "Condition - Formula is" -msgstr "" +msgstr "Bedingung – Formel ist" #. WwqGv #: 05120200.xhp @@ -45869,7 +45869,7 @@ "par_id31494139\n" "help.text" msgid "Applies the selected style to the cell when the formula expression in the text box in the right is not zero." -msgstr "" +msgstr "Wendet die ausgewählte Zellvorlage auf die Zelle an, wenn der Formelausdruck im rechten Textfeld nicht Null ist." #. S3dcs #: 05120200.xhp @@ -45878,7 +45878,7 @@ "par_id1001662932287796\n" "help.text" msgid "The formula is expressed similar to a test condition evaluating to TRUE or FALSE." -msgstr "" +msgstr "Die Formel wird ähnlich wie eine Testbedingung ausgedrückt, die WAHR oder FALSCH ergibt." #. dAQYf #: 05120200.xhp @@ -45887,7 +45887,7 @@ "par_id111662936728630\n" "help.text" msgid "For example, if C29 has a conditional formatting which formula is B1>=(DATE(2015;5;4)+TIME(18;0;0)) - a logical expression that evaluates true or false - the style applied to C29 depends on B1 contents." -msgstr "" +msgstr "Beispiel: Wenn die Zelle C29 eine bedingte Formatierung \"Formel ist\" mit B1>=(DATUM(2015;5;4)+ZEIT(18;0;0)) – ein logischer Ausdruck, der wahr oder falsch ergibt – hat, wird die Zellvorlage auf die Zelle C29 abhängig vom Inhalt der Zelle B1 angewendet." #. PydFB #: 05120200.xhp @@ -45896,7 +45896,7 @@ "par_id471665407993996\n" "help.text" msgid "" -msgstr "" +msgstr "" #. PJRcV #: 05120300.xhp @@ -45905,7 +45905,7 @@ "tit\n" "help.text" msgid "Conditional Formatting - Date is" -msgstr "" +msgstr "Bedingte Formatierung – Datum ist" #. 5GUiU #: 05120300.xhp @@ -45914,7 +45914,7 @@ "hd_id321662936831682\n" "help.text" msgid "Condition - Date is" -msgstr "" +msgstr "Bedingung – Datum ist" #. eZ8g9 #: 05120300.xhp @@ -45923,7 +45923,7 @@ "par_id31662934883939\n" "help.text" msgid "Applies the selected style to the cell when the cell contents is formatted as date and the condition is one of the available date interval in the dropdown list." -msgstr "" +msgstr "Wendet die ausgewählte Zellvorlage auf die Zelle an, wenn der Zellinhalt als Datum formatiert ist und die Bedingung eine der verfügbaren Datumsspannen in der Dropdown-Liste erfüllt." #. FuPW5 #: 05120300.xhp @@ -45932,7 +45932,7 @@ "par_id231662933568615\n" "help.text" msgid "Today: applies the cell style if the cell date contents is today." -msgstr "" +msgstr "Heute: Wendet die Zellvorlage an, wenn der Zellinhalt das Datum von heute ist." #. Jp3xf #: 05120300.xhp @@ -45941,7 +45941,7 @@ "par_id891662933647849\n" "help.text" msgid "Yesterday: applies the cell style if the cell date contents is yesterday." -msgstr "" +msgstr "Gestern: Wendet die Zellvorlage an, wenn der Zellinhalt das Datum von gestern ist." #. kGKdd #: 05120300.xhp @@ -45950,7 +45950,7 @@ "par_id701662933702962\n" "help.text" msgid "Tomorrow: applies the cell style if the cell date contents is tomorrow." -msgstr "" +msgstr "Morgen: Wendet die Zellvorlage an, wenn der Zellinhalt das Datum von morgen ist." #. qiPQc #: 05120300.xhp @@ -45959,7 +45959,7 @@ "par_id291662933755624\n" "help.text" msgid "Last 7 days: applies the cell style if the cell date contents is in the last 7 calendar days." -msgstr "" +msgstr "Letzte 7 Tage: Wendet die Zellvorlage an, wenn der Datumsinhalt der Zelle in den letzten 7 Kalendertagen liegt." #. ReAps #: 05120300.xhp @@ -45968,7 +45968,7 @@ "par_id151662933849611\n" "help.text" msgid "This week, Last week and Next week: applies the cell style if the cell date contents is in this week, last week and next week respectively. The start and end of the week is locale dependent." -msgstr "" +msgstr "Diese Woche, letzte Woche und nächste Woche: Wendet die Zellvorlage an, wenn sich das Datum des Zellinhalts in dieser Woche, der letzten Woche beziehungsweise der nächsten Woche befindet. Der Beginn und das Ende der Woche sind abhängig vom Gebietsschema." #. 6bfmv #: 05120300.xhp @@ -45977,7 +45977,7 @@ "par_id421662934429482\n" "help.text" msgid "This month, Last month and Next month: applies the cell style if the cell date contents is in this month, last month and next month respectively." -msgstr "" +msgstr "Diesen Monat, letzten Monat und nächsten Monat: Wendet die Zellvorlage an, wenn sich das Datum des Zellinhalts in diesem Monat, im letzten Monat beziehungsweise im nächsten Monat befindet." #. xduEr #: 05120300.xhp @@ -45986,7 +45986,7 @@ "par_id461662934605639\n" "help.text" msgid "This year, Last year and Next year: applies the cell style if the cell date contents is in this year, last year and next year respectively." -msgstr "" +msgstr "Dieses Jahr, Letztes Jahr und Nächstes Jahr: Wendet die Zellvorlage an, wenn sich das Datum des Zellinhalts in diesen Jahr, letzten Jahr bzw. nächsten Jahr befindet." #. jqWLy #: 05120300.xhp @@ -45995,7 +45995,7 @@ "par_id471665407993996\n" "help.text" msgid "" -msgstr "" +msgstr "" #. ZANZR #: 05120400.xhp @@ -46004,7 +46004,7 @@ "tit\n" "help.text" msgid "Conditional Formatting - All cells" -msgstr "" +msgstr "Bedingte Formatierung – Alle Zellen" #. 2J3Dw #: 05120400.xhp @@ -46013,7 +46013,7 @@ "hd_id861662937013389\n" "help.text" msgid "Condition - All cells" -msgstr "" +msgstr "Bedingung – Alle Zellen" #. Bstud #: 05120400.xhp @@ -46022,7 +46022,7 @@ "par_id31662915586650\n" "help.text" msgid "Applies the conditional formatting to the set of cells defined in the selected range. The formatting is applied based on the contents of the whole range." -msgstr "" +msgstr "Wendet die bedingte Formatierung auf die Gruppe von Zellen an, die im ausgewählten Bereich festgelegt sind. Die Formatierung wird basierend auf dem Inhalt des gesamten Bereichs angewendet." #. EzAUv #: 05120400.xhp @@ -46031,7 +46031,7 @@ "hd_id3147394\n" "help.text" msgid "Color Scale" -msgstr "" +msgstr "Farbbalken" #. VvAiE #: 05120400.xhp @@ -46040,7 +46040,7 @@ "par_id3155602\n" "help.text" msgid "Applies a color scale to a range consisting of displaying a bicolor or tricolor gradient on this range depending on the value of each cell." -msgstr "" +msgstr "Wendet einen Farbbalken auf einen Bereich an, der aus der Anzeige eines zweifarbigen oder dreifarbigen Farbverlaufs, abhängig vom Wert jeder Zelle, in diesem Bereich besteht." #. S9Btk #: 05120400.xhp @@ -46049,7 +46049,7 @@ "hd_id541663598275609\n" "help.text" msgid "Conditions" -msgstr "" +msgstr "Bedingungen" #. zip59 #: 05120400.xhp @@ -46058,7 +46058,7 @@ "par_id231663598294535\n" "help.text" msgid "The calculation of the color scale depends on 2 or 3 conditions, defined as follows:" -msgstr "" +msgstr "Die Berechnung des Farbbalkens hängt von 2 oder 3 Bedingungen ab, die wie folgt festgelegt werden können:" #. XKMSV #: 05120400.xhp @@ -46067,7 +46067,7 @@ "par_id701864449697771\n" "help.text" msgid "Min (Max): calculates using the minimum (maximum) values in the range." -msgstr "" +msgstr "Min (Max): Berechnet anhand der minimalen (maximalen) Werte im Bereich." #. eGYev #: 05120400.xhp @@ -46076,7 +46076,7 @@ "par_id321663440728295\n" "help.text" msgid "Value: a fixed value. Enter the value in the text box." -msgstr "" +msgstr "Wert: Ein fester Wert. Geben Sie den Wert in das Textfeld ein." #. DZxAs #: 05120400.xhp @@ -46085,7 +46085,7 @@ "par_id611663440697270\n" "help.text" msgid "Percentile: A percentile is each of the 99 values which divide the sorted data in 100 equal parts, so that each part represents 1/100 of the sample population. A percentile return the value for a data series going from the smallest to the largest value in a set of data. For P = 25, the percentile means the first quartile. P = 50 is also the MEDIAN of the data set. Enter the percentile value in the text box. Valid values are from 0 to 100." -msgstr "" +msgstr "Prozentual: Ein Perzentil ist jeder der 99 Werte, die die sortierten Daten in 100 gleiche Teile teilen, so dass jeder Teil 1/100 der Stichproben-Grundgesamtheit darstellt. Ein Perzentil gibt den Wert für eine Datenreihe zurück, die vom kleinsten zum größten Wert in einem Datensatz geht. Für P = 25 bedeutet das Perzentil das erste Quartil. P = 50 ist auch der Median des Datensatzes. Geben Sie den Perzentilwert in das Textfeld ein. Gültige Werte liegen zwischen 0 und 100." #. zwwLa #: 05120400.xhp @@ -46094,7 +46094,7 @@ "par_id211663440834104\n" "help.text" msgid "Percent: a fixed value representing the percentage of the minimum (maximum) of the length defined by minimum and maximum values in the range. A minimum of 10% selects the values below 10% of the segment [Min,Max]. A maximum of 80% select values above 80% of the segment [Min,Max]. Valid values are from 0 (zero) to 100. Do not enter a percent (%) sign." -msgstr "" +msgstr "Prozent: Ein fester Wert, der den Prozentsatz des Minimums (Maximums) der Länge darstellt, festgelegt durch Minimal- und Maximalwerte im Bereich. Ein Minimum von 10 % wählt die Werte unter 10 % des Bereichs (Min,Max). Ein Maximum von 80% wählt die Werte über 80 % des Bereichs (Min,Max). Gültige Werte liegen zwischen 0 (Null) und 100. Geben Sie kein Prozentzeichen (%) ein." #. nF8iD #: 05120400.xhp @@ -46103,7 +46103,7 @@ "par_id961663440848168\n" "help.text" msgid "Formula: A formula expression starting with the equal sign (=) that calculates a numeric value. Values can be numbers, dates or time. Enter the formula expression in the text box." -msgstr "" +msgstr "Formel: Ein Formelausdruck, der mit dem Gleichheitszeichen (=) beginnt und einen numerischen Wert berechnet. Werte können Zahlen, Datum oder Uhrzeit sein. Geben Sie den Formelausdruck in das Textfeld ein." #. YGTzE #: 05120400.xhp @@ -46112,7 +46112,7 @@ "par_id991609782427459\n" "help.text" msgid "Data Bar" -msgstr "" +msgstr "Datenbalken" #. ZEyNr #: 05120400.xhp @@ -46121,7 +46121,7 @@ "par_id41609780964157\n" "help.text" msgid "Data bar option will fill the cell with solid or gradient color corresponding to the numeric value in the cell." -msgstr "" +msgstr "Die Option Datenbalken füllt die Zelle mit einer Vollton- oder Farbverlaufsfarbe, die dem numerischen Wert in der Zelle entspricht." #. WHWWc #: 05120400.xhp @@ -46130,7 +46130,7 @@ "hd_id631663449553346\n" "help.text" msgid "Conditions" -msgstr "" +msgstr "Bedingungen" #. CENjM #: 05120400.xhp @@ -46139,7 +46139,7 @@ "par_id931609781970981\n" "help.text" msgid "The calculation of the bar area fill is based on the conditions below:" -msgstr "" +msgstr "Die Berechnung des Füllbereichs der Datenbalken basiert auf den folgenden Bedingungen:" #. DzwrN #: 05120400.xhp @@ -46148,7 +46148,7 @@ "par_id281663449673792\n" "help.text" msgid "Automatic: calculates using the minimum and maximum values in the range." -msgstr "" +msgstr "Automatisch: Berechnet anhand der Minimal- und Maximalwerte im Bereich." #. 9aPGW #: 05120400.xhp @@ -46157,7 +46157,7 @@ "par_id701663449697771\n" "help.text" msgid "Min (Max): calculates using the minimum (maximum) values in the range." -msgstr "" +msgstr "Min (Max): Berechnet anhand der minimalen (maximalen) Werte im Bereich." #. Yst5U #: 05120400.xhp @@ -46166,7 +46166,7 @@ "par_id281609781729359\n" "help.text" msgid "More Options" -msgstr "" +msgstr "Weitere Optionen" #. wB7B5 #: 05120400.xhp @@ -46175,7 +46175,7 @@ "par_id501663454998977\n" "help.text" msgid "The Data Bar dialog opens to add details on the display of data bars." -msgstr "" +msgstr "Der Dialog \"Datenbalken\" wird geöffnet, um Details zur Anzeige von Datenbalken hinzuzufügen." #. Xi84x #: 05120400.xhp @@ -46184,7 +46184,7 @@ "hd_id221663453502042\n" "help.text" msgid "Entry values" -msgstr "" +msgstr "Eingabewerte" #. j4CZx #: 05120400.xhp @@ -46193,7 +46193,7 @@ "par_id891663453681870\n" "help.text" msgid "Same as the conditions above." -msgstr "" +msgstr "Wie die oben genannten Bedingungen." #. qYC9D #: 05120400.xhp @@ -46202,7 +46202,7 @@ "hd_id511663453530293\n" "help.text" msgid "Bar Colors" -msgstr "" +msgstr "Balkenfarben" #. 3WvU9 #: 05120400.xhp @@ -46211,7 +46211,7 @@ "par_id371663453564807\n" "help.text" msgid "Choose the color for positive and negative values." -msgstr "" +msgstr "Wählen Sie die Farbe für positive und negative Werte." #. F7ADR #: 05120400.xhp @@ -46220,7 +46220,7 @@ "hd_id891663453607961\n" "help.text" msgid "Fill" -msgstr "" +msgstr "Füllung" #. NK7yv #: 05120400.xhp @@ -46229,7 +46229,7 @@ "par_id671663453639829\n" "help.text" msgid "Gradient: set a color scale between the color of positive (negative) values and white." -msgstr "" +msgstr "Farbverlauf: Legt einen Farbverlauf zwischen der Farbe positiver (negativer) Werte und Weiß fest." #. UsHFm #: 05120400.xhp @@ -46238,7 +46238,7 @@ "par_id551663453647462\n" "help.text" msgid "Color: use the positive (negative) color for the entire data bar, no fade out gradient." -msgstr "" +msgstr "Farbe: Legt die positive (negative) Farbe für den gesamten Datenbalken fest, ohne Ausblendungsverlauf." #. 3XDGX #: 05120400.xhp @@ -46247,7 +46247,7 @@ "hd_id701663453750779\n" "help.text" msgid "Axis" -msgstr "" +msgstr "Achse" #. SCFQf #: 05120400.xhp @@ -46256,7 +46256,7 @@ "par_id691663453763746\n" "help.text" msgid "Set the position of the vertical axis for the data bar. Values are" -msgstr "" +msgstr "Legt die Position der vertikalen Achse für den Datenbalken fest. Werte sind" #. 7mCxG #: 05120400.xhp @@ -46265,7 +46265,7 @@ "par_id381663453792294\n" "help.text" msgid "Automatic: position the vertical axis in the middle of the maximum and minimum values." -msgstr "" +msgstr "Automatisch: Positioniert die vertikale Achse in der Mitte der Minimal- und Maximalwerte." #. u9oCp #: 05120400.xhp @@ -46274,7 +46274,7 @@ "par_id791663453800602\n" "help.text" msgid "Middle: set the vertical axis in the middle of the column." -msgstr "" +msgstr "Mitte: Legt die vertikale Achse in der Mitte der Spalte fest." #. NGqHG #: 05120400.xhp @@ -46283,7 +46283,7 @@ "par_id461663453808288\n" "help.text" msgid "None: do not display a vertical axis." -msgstr "" +msgstr "Keine: Es wird keine vertikale Achse angezeigt." #. MbcW9 #: 05120400.xhp @@ -46292,7 +46292,7 @@ "hd_id511663453851599\n" "help.text" msgid "Bar Lengths" -msgstr "" +msgstr "Balkenlängen" #. EcZWp #: 05120400.xhp @@ -46301,7 +46301,7 @@ "par_id601663453865023\n" "help.text" msgid "Sets the minimum (maximum) length of the data bars, as a percentage of the column width." -msgstr "" +msgstr "Legt die minimale (maximale) Länge der Datenbalken als Prozentsatz der Spaltenbreite fest." #. 6iAs7 #: 05120400.xhp @@ -46310,7 +46310,7 @@ "hd_id211663453914830\n" "help.text" msgid "Display bars only" -msgstr "" +msgstr "Nur Balken anzeigen" #. zAE3C #: 05120400.xhp @@ -46319,7 +46319,7 @@ "par_id561663453936590\n" "help.text" msgid "Do not display values in the cell, only the data bars." -msgstr "" +msgstr "Es werden keine Werte in der Zelle angezeigt, sondern nur die Datenbalken." #. 3ywDD #: 05120400.xhp @@ -46328,7 +46328,7 @@ "hd_id3153709\n" "help.text" msgid "Icon Set" -msgstr "" +msgstr "Symbolsatz" #. RjnfG #: 05120400.xhp @@ -46337,7 +46337,7 @@ "par_id3153764\n" "help.text" msgid "Add an icon to the cell based on the value relative to the specified thresholds. Several icon sets are available." -msgstr "" +msgstr "Fügen Sie der Zelle basierend auf dem Wert relativ zu den angegebenen Schwellwerten ein Symbol hinzu. Mehrere Symbolsätze sind verfügbar." #. 5EFt7 #: 05120400.xhp @@ -46346,7 +46346,7 @@ "hd_id191663440362309\n" "help.text" msgid "Available Icon Sets" -msgstr "" +msgstr "Verfügbare Symbolsätze" #. 8cgd9 #: 05120400.xhp @@ -46355,7 +46355,7 @@ "par_id31494140\n" "help.text" msgid "3, 4 or 5 - arrows" -msgstr "" +msgstr "3, 4 oder 5 – Pfeile" #. Aoquj #: 05120400.xhp @@ -46364,7 +46364,7 @@ "par_id91663429174806\n" "help.text" msgid "Color arrow up Color arrow slightly up Color arrow same Color arrow slightly down Color arrow down" -msgstr "" +msgstr "Symbol für Farbiger Pfeil nach obenSymbol für Farbiger Pfeil leicht nach obenSymbol für Farbiger Pfeil gleichbleibendSymbol für Farbiger Pfeil leicht nach untenSymbol für Farbiger Pfeil nach unten" #. PxAE7 #: 05120400.xhp @@ -46373,7 +46373,7 @@ "par_id31494141\n" "help.text" msgid "3, 4 or 5 - gray arrows" -msgstr "" +msgstr "3, 4 oder 5 – graue Pfeile" #. 2Fk3v #: 05120400.xhp @@ -46382,7 +46382,7 @@ "par_id91661429174806\n" "help.text" msgid "Gray arrow up Gray arrow slightly up Gray arrow same Gray arrow slightly down Gray arrow down" -msgstr "" +msgstr "Symbol für Grauer Pfeil nach obenSymbol für Grauer Pfeil leicht nach obenSymbol für Grauer Pfeil gleichbleibendSymbol für Grauer Pfeil leicht nach untenSymbol für Grauer Pfeil nach unten" #. jA8Sa #: 05120400.xhp @@ -46391,7 +46391,7 @@ "par_id31494142\n" "help.text" msgid "3 - flags" -msgstr "" +msgstr "3 – Flaggen" #. Bi9Tr #: 05120400.xhp @@ -46400,7 +46400,7 @@ "par_id101663433624185\n" "help.text" msgid "Yellow flag Red flag Green flag" -msgstr "" +msgstr "Symbol für Gelbe FlaggeSymbol für Rote FlaggeSymbol für Grüne Flagge" #. FCb5V #: 05120400.xhp @@ -46409,7 +46409,7 @@ "par_id31494143\n" "help.text" msgid "3 - traffic lights 1 and 2 (two different designs)" -msgstr "" +msgstr "3 – Ampeln 1 und 2 (zwei verschiedene Sätze)" #. LugGg #: 05120400.xhp @@ -46418,7 +46418,7 @@ "par_id721663433917655\n" "help.text" msgid "Yellow traffic light 1 Red traffic light 1 Green traffic light 1" -msgstr "" +msgstr "Symbol für Gelbe Ampel 1Symbol für Rote Ampel 1Symbol für Grüne Ampel 1" #. EBREt #: 05120400.xhp @@ -46427,7 +46427,7 @@ "par_id501663433925207\n" "help.text" msgid "Yellow traffic light 2 Red traffic light 2 Green traffic light 2" -msgstr "" +msgstr "Symbol für Gelbe Ampel 2Symbol für Rote Ampel 2Symbol für Grüne Ampel 2" #. itKqQ #: 05120400.xhp @@ -46436,7 +46436,7 @@ "par_id701663438522480\n" "help.text" msgid "3 - Smileys 1 and 2" -msgstr "" +msgstr "3 – Smileys 1 und 2 (zwei verschiedene Sätze)" #. GoDfk #: 05120400.xhp @@ -46445,7 +46445,7 @@ "par_id991663438568052\n" "help.text" msgid "Yellow positive smiley Yellow neutral smiley Yellow negative smiley" -msgstr "" +msgstr "Symbol für Gelben positiven SmileySymbol für Gelben neutralen SmileySymbol für Gelben negativen Smiley" #. ABksa #: 05120400.xhp @@ -46454,7 +46454,7 @@ "par_id991663438966721\n" "help.text" msgid "Green positive smiley Yellow neutral smiley Red negative smiley" -msgstr "" +msgstr "Symbol für Grünen positiven SmileySymbol für Gelben neutralen SmileySymbol für Roten negativen Smiley" #. QdJxa #: 05120400.xhp @@ -46463,7 +46463,7 @@ "par_id31494144\n" "help.text" msgid "3 - symbols" -msgstr "" +msgstr "3 – Symbole" #. 3DDFG #: 05120400.xhp @@ -46472,7 +46472,7 @@ "par_id421663434453517\n" "help.text" msgid "Shape triangle Shape diamond Shape circle" -msgstr "" +msgstr "Symbol für DreieckSymbol für RauteSymbol für Kreis" #. ndFCp #: 05120400.xhp @@ -46481,7 +46481,7 @@ "par_id961663439450424\n" "help.text" msgid "Exclamation mark Cross Check mark" -msgstr "" +msgstr "Symbol für AusrufezeichenSymbol für KreuzSymbol für Häkchen" #. BQAHC #: 05120400.xhp @@ -46490,7 +46490,7 @@ "par_id1001663439805133\n" "help.text" msgid "Empty star Half star Full star" -msgstr "" +msgstr "Symbol für Leeren SternSymbol für Halben SternSymbol für Vollen Stern" #. dEQvx #: 05120400.xhp @@ -46499,7 +46499,7 @@ "par_id171663440020964\n" "help.text" msgid "Triangle up Same Triangle down" -msgstr "" +msgstr "Symbol für Dreieck nach obenSymbol für GleichbleibendSymbol für Dreieck nach unten" #. MtGvd #: 05120400.xhp @@ -46508,7 +46508,7 @@ "par_id31494145\n" "help.text" msgid "4 - circles from red to black" -msgstr "" +msgstr "4 – Kreise von Rot nach Schwarz" #. C9BEU #: 05120400.xhp @@ -46517,7 +46517,7 @@ "par_id481663434995022\n" "help.text" msgid "Dark red Light red Light gray Dark gray" -msgstr "" +msgstr "Symbol für DunkelrotSymbol für HellrotSymbol für HellgrauSymbol für Dunkelgrau" #. AuYQx #: 05120400.xhp @@ -46526,7 +46526,7 @@ "par_id31494146\n" "help.text" msgid "4 or 5 - ratings" -msgstr "" +msgstr "4 oder 5 – Bewertungen" #. 8WLQP #: 05120400.xhp @@ -46535,7 +46535,7 @@ "par_id631663435728155\n" "help.text" msgid "Empty bars One quarters bars Half bars Three quarters bars Full bars" -msgstr "" +msgstr "Symbol für Keinen BalkenSymbol für Einen BalkenSymbol für Zwei BalkenSymbol für Drei BalkenSymbol für Vier Balken" #. FdJYa #: 05120400.xhp @@ -46544,7 +46544,7 @@ "par_id31494147\n" "help.text" msgid "5 - quarters" -msgstr "" +msgstr "5 – Viertel" #. Db9xw #: 05120400.xhp @@ -46553,7 +46553,7 @@ "par_id741663436015689\n" "help.text" msgid "Empty One quarter Half Three quarters Full" -msgstr "" +msgstr "Symbol für Kein ViertelSymbol für Ein ViertelSymbol für Zwei ViertelSymbol für Drei ViertelSymbol für Vier Viertel" #. 4Gyqu #: 05120400.xhp @@ -46562,7 +46562,7 @@ "par_id821663436639070\n" "help.text" msgid "5 - boxes" -msgstr "" +msgstr "5 – Quadrate" #. QqwRQ #: 05120400.xhp @@ -46571,7 +46571,7 @@ "par_id811663438472751\n" "help.text" msgid "Empty One quarter Half Three quarters Full" -msgstr "" +msgstr "Symbol für Kein QuadratSymbol für Ein QuadratSymbol für Zwei QuadrateSymbol für Drei QuadrateSymbol für Vier Quadrate" #. pB8zZ #: 05120400.xhp @@ -46580,7 +46580,7 @@ "hd_id621663440395987\n" "help.text" msgid "Conditions for thresholds" -msgstr "" +msgstr "Bedingungen für Schwellwerte" #. 7BkCL #: 05120400.xhp @@ -46589,7 +46589,7 @@ "par_id3153765\n" "help.text" msgid "Conditions to set the thresholds for each icon can be specified as follows" -msgstr "" +msgstr "Die Bedingungen der Schwellwerte für jedes Symbol können wie folgt festgelegt werden:" #. qxbFT #: 05120400.xhp @@ -46598,7 +46598,7 @@ "par_id471665407993996\n" "help.text" msgid "" -msgstr "" +msgstr "" #. DdaUm #: 05120400.xhp @@ -46607,7 +46607,7 @@ "par_id3155606\n" "help.text" msgid "How to use Icon Set Conditional Formatting page in TDF Wiki." -msgstr "" +msgstr "Seite So verwenden Sie die „Bedingte Formatierung für Symbolsatz“ im TDF-Wiki" #. s9tpC #: 05120400.xhp @@ -46616,7 +46616,7 @@ "par_id651663598549283\n" "help.text" msgid "How to apply a Color Scale Conditional Formatting page in TDF Wiki." -msgstr "" +msgstr "Seite So verwenden Sie die „Bedingte Formatierung für Farbbalken“ im TDF-Wiki" #. AiUSf #: 05120500.xhp @@ -46625,7 +46625,7 @@ "tit\n" "help.text" msgid "Conditional Formatting - Manage Conditions" -msgstr "" +msgstr "Bedingte Formatierung – Bedingungen verwalten" #. a66Es #: 05120500.xhp @@ -46634,7 +46634,7 @@ "hd_id391662937414401\n" "help.text" msgid "Manage Conditions" -msgstr "" +msgstr "Bedingungen verwalten" #. SdPis #: 05120500.xhp @@ -46643,7 +46643,7 @@ "par_id3155906\n" "help.text" msgid "Manage all the conditional formatting defined in the spreadsheet." -msgstr "" +msgstr "Verwaltet alle in der Tabelle festgelegten bedingten Formatierungen." #. rMivF #: 05120500.xhp @@ -46652,7 +46652,7 @@ "par_id3155907\n" "help.text" msgid "The Manage Conditional Formatting dialog is where you can add, edit or delete one or several conditional formattings." -msgstr "" +msgstr "Im Dialog Bedingte Formatierung verwalten können Sie eine oder mehrere bedingte Formatierungen hinzufügen, ändern oder entfernen." #. rFGM7 #: 05120500.xhp @@ -46661,7 +46661,7 @@ "par_id3155909\n" "help.text" msgid "The Conditional Formats list displays the active conditional formatting rules set in the current spreadsheet. Only the first rule for each cell range is listed, even if there are multiple rules defined for a given range." -msgstr "" +msgstr "In der Liste Bedingte Formatierung werden die festgelegten Regeln für die bedingte Formatierung der aktuellen Tabelle angezeigt. Es wird nur die erste Regel für jeden Zellbereich angezeigt, auch wenn mehrere Regeln für den Zellbereich festgelegt sind." #. dEeLT #: 05120500.xhp @@ -46670,7 +46670,7 @@ "par_id3155908\n" "help.text" msgid "If you have defined a conditional formatting on a cell range and you try now to define a new conditional formatting on a part of this range, a warning message will be displayed, asking if you want to edit the existing conditional formatting (on the whole range) or define a new conditional formatting overlapping it (on the selected range)." -msgstr "" +msgstr "Wenn Sie eine bedingte Formatierung für einen Zellbereich festgelegt haben und nun versuchen, eine neue bedingte Formatierung für einen Teil dieses Bereichs hinzuzufügen, wird eine Warnmeldung angezeigt, in der Sie gefragt werden, ob Sie die vorhandene bedingte Formatierung bearbeiten (für den gesamten Bereich) oder eine neue bedingte Formatierung hinzufügen möchten, welche die bestehende überlappt (für den ausgewählten Bereich)." #. MpYLG #: 05120500.xhp @@ -46679,7 +46679,7 @@ "par_id471665407993996\n" "help.text" msgid "" -msgstr "" +msgstr "" #. GXZBY #: 06020000.xhp @@ -48110,7 +48110,7 @@ "par_id641645233417894\n" "help.text" msgid "Recalculation options" -msgstr "" +msgstr "Optionen für Neuberechnung" #. CWRgk #: 06130000.xhp @@ -53942,7 +53942,7 @@ "par_id541642018071800\n" "help.text" msgid "%PRODUCTNAME Calc, just like most other spreadsheet software, uses floating-point math capabilities available on hardware. Given that most contemporary hardware uses binary floating-point arithmetic with limited precision defined in IEEE 754 standard, many decimal numbers - including as simple as 0.1 - cannot be precisely represented in %PRODUCTNAME Calc (which uses 64-bit double-precision numbers internally)." -msgstr "" +msgstr "%PRODUCTNAME Calc verwendet, genau wie die meisten anderen Tabellenkalkulationsprogramme, Fließkomma-Rechenfunktionen, die auf Hardware verfügbar sind. Angesichts der Tatsache, dass die meisten modernen Geräte binäre Fließkommaarithmetik mit begrenzter Genauigkeit verwenden, die im IEEE 754-Standard definiert ist, können viele Dezimalzahlen – einschließlich so einfacher wie 0,1 – in %PRODUCTNAME Calc (das intern 64-Bit-Zahlen mit doppelter Genauigkeit verwendet) nicht genau dargestellt werden." #. mdFJq #: calculation_accuracy.xhp @@ -53951,7 +53951,7 @@ "par_id191642019423811\n" "help.text" msgid "Calculations with those numbers necessarily results in rounding errors, and those accumulate with every calculation." -msgstr "" +msgstr "Berechnungen mit diesen Zahlen führen zwangsläufig zu Rundungsfehlern, und diese häufen sich bei jeder Berechnung an." #. LnjTN #: calculation_accuracy.xhp @@ -53960,7 +53960,7 @@ "par_id221642019437175\n" "help.text" msgid "This is not a bug, but is expected and currently unavoidable without using complex calculations in software, which would incur inappropriate performance penalties, and thus is out of question. Users need to account for that, and use rounding and comparisons with machine epsilon (or unit roundoff) as necessary." -msgstr "" +msgstr "Dies ist kein Fehler, sondern beabsichtigt und derzeit unvermeidbar, ohne dass komplexe Berechnungen in der Software verwendet werden, die unangemessene Leistungseinbußen nach sich ziehen würden, und steht daher außer Frage. Benutzer müssen dies berücksichtigen und bei Bedarf Rundungen und Vergleiche mit Maschinengenauigkeit (oder Einheitenrundung) verwenden." #. ncGy5 #: calculation_accuracy.xhp @@ -55688,7 +55688,7 @@ "hd_id701645222861113\n" "help.text" msgid "Formula to value" -msgstr "" +msgstr "Formel in Wert umwandeln" #. CATpt #: formula2value.xhp @@ -57362,7 +57362,7 @@ "par_id631586642933797\n" "help.text" msgid "This function calculates identical results to the ISO.CEILING function." -msgstr "" +msgstr "Diese Funktion berechnet identische Ergebnisse wie die Funktion ISO.OBERGRENZE." #. BASfr #: func_ceiling.xhp @@ -57650,7 +57650,7 @@ "par_id821586214265060\n" "help.text" msgid "This function calculates identical results to the CEILING.PRECISE function." -msgstr "" +msgstr "Diese Funktion berechnet identische Ergebnisse wie die Funktion OBERGRENZE.GENAU." #. GRocX #: func_ceiling.xhp @@ -58064,7 +58064,7 @@ "par_id481620428685029\n" "help.text" msgid "Below are the unit measurement groups supported by the CONVERT function. Be aware that conversions can only happen between units that belong to the same group." -msgstr "" +msgstr "Nachfolgend sind die Gruppen der Maßeinheiten aufgeführt, die von der Funktion UMRECHNEN unterstützt werden. Beachten Sie, dass Umrechnungen nur zwischen Einheiten erfolgen können, die zur selben Gruppe gehören." #. hGonG #: func_convert.xhp @@ -65246,7 +65246,7 @@ "par_id211542232209275\n" "help.text" msgid "Expression: A text representing the regular expression, using ICU regular expressions. If there is no match and Replacement is not given, #N/A is returned." -msgstr "" +msgstr "Ausdruck: Ein Text, der den regulären Ausdruck darstellt, unter Verwendung von regulären ICU-Ausdrücken. Wenn es keine Übereinstimmung gibt und kein Ersetzung angegeben ist, wird #NV zurückgegeben." #. ZBTYi #: func_regex.xhp @@ -65588,7 +65588,7 @@ "hd_id601641846107898\n" "help.text" msgid "ROUNDDOWN function" -msgstr "" +msgstr "Funktion ABRUNDEN" #. dFaB6 #: func_rounddown.xhp @@ -65606,7 +65606,7 @@ "par_id701642530512560\n" "help.text" msgid "This function is equivalent to the TRUNC function." -msgstr "" +msgstr "Diese Funktion entspricht der Funktion KÜRZEN." #. soLKp #: func_rounddown.xhp @@ -65714,7 +65714,7 @@ "hd_id351519154702177\n" "help.text" msgid "ROUNDSIG" -msgstr "" +msgstr "RUNDENSIG" #. jJKBA #: func_roundsig.xhp @@ -66830,7 +66830,7 @@ "hd_id601641846107898\n" "help.text" msgid "TRUNC function" -msgstr "" +msgstr "Funktion Kürzen" #. dkTrh #: func_trunc.xhp @@ -66848,7 +66848,7 @@ "par_id701642530512560\n" "help.text" msgid "This function is equivalent to the ROUNDDOWN function." -msgstr "" +msgstr "Diese Funktion entspricht der Funktion ABRUNDEN." #. oZAWU #: func_trunc.xhp @@ -68747,7 +68747,7 @@ "hd_id611645217532285\n" "help.text" msgid "Recalculate Hard" -msgstr "" +msgstr "Unbedingte Neuberechnung" #. gCAFM #: recalculate_hard.xhp @@ -68765,7 +68765,7 @@ "par_id361645227084327\n" "help.text" msgid "The Recalculate Hard command forces recalculation of all formula cells of the spreadsheet document, including explicit non-volatile functions, even if no new input event exist. Examples of explicit non-volatile functions are RAND.NV and RANDBETWEEN.NV." -msgstr "" +msgstr "Der Befehl Unbedingte Neuberechnung erzwingt die Neuberechnung aller Formelzellen des Tabellendokuments, einschließlich expliziter nichtflüchtiger Funktionen, selbst wenn kein neues Eingabeereignis vorhanden ist. Beispiele für explizite nichtflüchtige Funktionen sind UFALLSZAHL.NV und ZUFALLSBEREICH.NV." #. t5LiZ #: shared_spreadsheet.xhp @@ -68792,7 +68792,7 @@ "hd_id461647272004705\n" "help.text" msgid "Share Spreadsheet" -msgstr "" +msgstr "Tabellendokumente teilen" #. KZGLG #: shared_spreadsheet.xhp @@ -69170,7 +69170,7 @@ "par_id271589981559367\n" "help.text" msgid "Wiki page on solvers and their algorithms" -msgstr "" +msgstr "Englische Wiki-Seite zu Solvern und deren Algorithmen" #. akxrP #: solver_options.xhp @@ -69305,7 +69305,7 @@ "par_id271589981559367\n" "help.text" msgid "Wiki page on non-linear solvers and their algorithms" -msgstr "" +msgstr "Englische Wiki-Seite zu nichtlinearen Solvern und deren Algorithmen" #. A843R #: solver_options_algo.xhp @@ -69350,7 +69350,7 @@ "par_id931590164412542\n" "help.text" msgid "DEPS consists of two independent algorithms: Differential Evolution and Particle Swarm Optimization. Both are especially suited for numerical problems, such as nonlinear optimization, and are complementary to each other in that they even out each other’s shortcomings." -msgstr "" +msgstr "DEPS besteht aus zwei unabhängigen Algorithmen: Differentielle Entwicklung und Partikelschwarmoptimierung. Beide eignen sich besonders für numerische Probleme wie die nichtlineare Optimierung und ergänzen sich gegenseitig, indem sie die Mängel des anderen ausgleichen." #. EFbzc #: solver_options_algo.xhp @@ -69881,7 +69881,7 @@ "par_id271589981559367\n" "help.text" msgid "Wiki page on non-linear solvers and their algorithms" -msgstr "" +msgstr "Englische Wiki-Seite zu Solvern und deren Algorithmen" #. D2nCR #: solver_options_algo.xhp @@ -69917,7 +69917,7 @@ "hd_id721654173263812\n" "help.text" msgid "Sparklines" -msgstr "" +msgstr "Sparklines" #. wUPfH #: sparklines.xhp @@ -69944,7 +69944,7 @@ "par_id761654173486733\n" "help.text" msgid "Choose Insert - Sparkline." -msgstr "" +msgstr "Wählen Sie Einfügen – Sparkline einfügen…" #. 6ivXp #: sparklines.xhp @@ -70079,7 +70079,7 @@ "par_id21654177035348\n" "help.text" msgid "Right-to-left: check to have the sparklines show the data in reverse order." -msgstr "" +msgstr "Rechts-nach-links: Aktivieren Sie diese Option, um die Daten der Sparklines in umgekehrter Reihenfolge anzuzeigen." #. FhUrj #: sparklines.xhp @@ -70214,7 +70214,7 @@ "par_id801654192214865\n" "help.text" msgid "Developer blog post on sparklines" -msgstr "" +msgstr "Blogbeitrag des Entwicklers zu Sparklines" #. Q6isn #: stat_data.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 05:38+0000\n" +"PO-Revision-Date: 2023-03-19 15:34+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -1580,7 +1580,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." #. ZNvtX #: calc_series.xhp @@ -13406,7 +13406,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 beziehungsweiseUmschalt+ BefehlStrg +Tabulator, um sich rückwärts durch die Namen zu bewegen." #. j7cYG #: value_with_name.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/sdatabase.po libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/sdatabase.po --- libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/sdatabase.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/sdatabase.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 17:18+0000\n" +"PO-Revision-Date: 2023-03-19 15:33+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -8275,7 +8275,7 @@ "par_id621668004638253\n" "help.text" msgid "Specify the connection string to the selected database." -msgstr "" +msgstr "Geben Sie die Verbindungszeichenfolge zur ausgewählten Datenbank an." #. BEfX5 #: dabawiz02connection.xhp @@ -12046,7 +12046,7 @@ "tit\n" "help.text" msgid "Insert Fields" -msgstr "" +msgstr "Felder einfügen" #. DiU2a #: rep_insertfield.xhp @@ -12154,7 +12154,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 "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 @@ -12163,7 +12163,7 @@ "par_id991540874901837\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Beschriftungsfeld hinzufügen" #. pSksR #: rep_insertfield.xhp @@ -12172,7 +12172,7 @@ "par_id121542664874655\n" "help.text" msgid "Add Label Field icon on the toolbar." -msgstr "" +msgstr "Symbol „Beschriftungsfeld hinzufügen“ in der Symbolleiste." #. VjpkA #: rep_insertfield.xhp @@ -12181,7 +12181,7 @@ "hd_id251540563929787\n" "help.text" msgid "Sorting fields names" -msgstr "" +msgstr "Feldnamen sortieren" #. ENcuK #: rep_insertfield.xhp @@ -12190,7 +12190,7 @@ "par_id651540564204840\n" "help.text" msgid "Sort Ascending icon" -msgstr "" +msgstr "Symbol für Aufsteigend sortieren" #. EfMFi #: rep_insertfield.xhp @@ -12199,7 +12199,7 @@ "par_id401540563992665\n" "help.text" msgid "Sort names ascending." -msgstr "" +msgstr "Sortiert Namen aufsteigend." #. rJE3c #: rep_insertfield.xhp @@ -12208,7 +12208,7 @@ "par_id811540564184191\n" "help.text" msgid "Sort Descending icon" -msgstr "" +msgstr "Symbol für Absteigend sortieren" #. BEcwL #: rep_insertfield.xhp @@ -12217,7 +12217,7 @@ "par_id401540563942665\n" "help.text" msgid "Sort names descending," -msgstr "" +msgstr "Sortiert Namen absteigend." #. RVvGD #: rep_insertfield.xhp @@ -12226,7 +12226,7 @@ "par_id851540564212907\n" "help.text" msgid "Undo sorting icon" -msgstr "" +msgstr "Symbol für Ursprüngliche Sortierung wiederherstellen" #. DVAm8 #: rep_insertfield.xhp @@ -12235,7 +12235,7 @@ "par_id401540533942665\n" "help.text" msgid "Restore original sorting" -msgstr "" +msgstr "Stellt die ursprüngliche Sortierung wieder her." #. gCECo #: rep_main.xhp @@ -12244,7 +12244,7 @@ "tit\n" "help.text" msgid "Report Builder" -msgstr "" +msgstr "Berichtdesigner" #. Yyb28 #: rep_main.xhp @@ -12262,7 +12262,7 @@ "hd_id8773155\n" "help.text" msgid "Report Builder" -msgstr "" +msgstr "Berichtdesigner" #. tcUx2 #: rep_main.xhp @@ -12271,7 +12271,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 "Der Berichtdesigner ist ein Werkzeug, mit dem Sie Ihre eigenen Datenbankberichte erstellen können. Im Unterschied zum Berichtsassistenten können Sie mithilfe des Berichtdesigners den Bericht den eigenen Wünschen entsprechend entwerfen. Der erzeugte Bericht ist ein Writer-Dokument, welches Sie ebenfalls bearbeiten können." #. kCCcM #: rep_main.xhp @@ -12280,7 +12280,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 "Um den Berichtdesigner zu verwenden, muss eine „Java-Laufzeitumgebungen (JRE)“ installiert sein und diese in %PRODUCTNAME ausgewählt sein." #. MUFG8 #: rep_main.xhp @@ -12289,7 +12289,7 @@ "hd_id556047\n" "help.text" msgid "To install the JRE software" -msgstr "" +msgstr "So installieren Sie die JRE" #. CTy58 #: rep_main.xhp @@ -12298,7 +12298,7 @@ "par_id4515823\n" "help.text" msgid "The Report Builder requires an installed Java Runtime Environment (JRE)." -msgstr "" +msgstr "Der Berichtdesigner erfordert eine installierte „Java-Laufzeitumgebung (JRE)“." #. t42Ud #: rep_main.xhp @@ -12307,7 +12307,7 @@ "par_id4044312\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced." -msgstr "" +msgstr "Wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME – Erweitert." #. bGABC #: rep_main.xhp @@ -12316,7 +12316,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 "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 @@ -12325,7 +12325,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 "Wenn auf Ihrem System eine aktuelle JRE-Version gefunden wird, sehen Sie einen Eintrag in der Liste." #. 87xW7 #: rep_main.xhp @@ -12334,7 +12334,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 "Aktivieren Sie das Optionsfeld vor dem Eintrag, um diese JRE-Version für die Nutzung in %PRODUCTNAME auszuwählen." #. KmqC6 #: rep_main.xhp @@ -12343,7 +12343,7 @@ "par_id7730033\n" "help.text" msgid "Ensure that Use a Java runtime environment is enabled." -msgstr "" +msgstr "Stellen Sie sicher, dass Java-Laufzeitumgebung verwenden aktiviert ist." #. oeX8D #: rep_main.xhp @@ -12352,7 +12352,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 "Wenn auf Ihrem System keine JRE-Version gefunden wird, öffnen Sie Ihren Webbrowser und laden Sie die JRE-Software von http://www.java.com herunter. Installieren Sie die JRE-Software. Starten Sie dann %PRODUCTNAME neu und öffnen Sie erneut %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME – Erweitert." #. 87hJD #: rep_main.xhp @@ -12361,7 +12361,7 @@ "hd_id9759514\n" "help.text" msgid "To open the Report Builder" -msgstr "" +msgstr "Um den Berichtdesigner zu öffnen" #. TxLZj #: rep_main.xhp @@ -12370,7 +12370,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 "Öffnen Sie eine Base-Datei oder erstellen Sie eine neue Datenbank. Die Datenbank muss mindestens eine Tabelle mit mindestens einem Datenfeld und einem Primärschlüsselfeld enthalten." #. NiuEf #: rep_main.xhp @@ -12379,7 +12379,7 @@ "par_id7050691\n" "help.text" msgid "Click the Reports icon in the Base window, then choose Create Report in Design View." -msgstr "" +msgstr "Klicken Sie im Base-Fenster auf das Symbol »Berichte – Bericht in der Entwurfsansicht erstellen…«." #. u7db8 #: rep_main.xhp @@ -12388,7 +12388,7 @@ "par_id7118747\n" "help.text" msgid "The Report Builder window opens." -msgstr "" +msgstr "Das Fenster Berichtdesigner wird geöffnet." #. eC7Ku #: rep_main.xhp @@ -12397,7 +12397,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 "Der Berichtdesigner ist in drei Teile gegliedert. Oben sehen Sie das Menü, darunter die Symbolleisten." #. FZucS #: rep_main.xhp @@ -12406,7 +12406,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 "Rechts sehen Sie den Bereich „Eigenschaften“ mit den Werten der Eigenschaften des aktuell ausgewählten Objekts." #. 9iUTs #: rep_main.xhp @@ -12415,7 +12415,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 "Der linke Teil des Fensters zeigt den eigentlichen Berichtdesigner. Der Berichtdesigner ist zunächst von oben nach unten in drei Abschnitte unterteilt:" #. bpA2e #: rep_main.xhp @@ -12424,7 +12424,7 @@ "par_id5022125\n" "help.text" msgid "Page Header - drag control fields with fixed text into the Page Header area" -msgstr "" +msgstr "Seitenkopf – Ziehen Sie Steuerelemente mit festem Text in den Seitenkopfbereich" #. TcX6C #: rep_main.xhp @@ -12433,7 +12433,7 @@ "par_id6844386\n" "help.text" msgid "Detail - drag and drop database fields into the Detail area" -msgstr "" +msgstr "Detail – Ziehen Sie Datenbankfelder in den Detailbereich und legen Sie sie dort ab" #. k3qgL #: rep_main.xhp @@ -12442,7 +12442,7 @@ "par_id7018646\n" "help.text" msgid "Page Footer - drag control fields with fixed text into the Page Footer area" -msgstr "" +msgstr "Seitenfuß – Ziehen Sie Steuerelemente mit festem Text in den Seitenfußbereich" #. GbMdT #: rep_main.xhp @@ -12451,7 +12451,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 "Um einen zusätzlichen Berichtskopf und Berichtsfuß einzufügen, wählen Sie Bearbeiten – Berichtskopf/-fuß einfügen. Diese Bereiche enthalten Text, der am Anfang und am Ende des gesamten Berichts erscheint." #. cvEuz #: rep_main.xhp @@ -12460,7 +12460,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 "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 @@ -12469,7 +12469,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 "Datenbankfelder fügen Sie per Ziehen-und-ablegen in den Detailbereich ein. Siehe Abschnitt „Einfügen von Feldern in den Bericht“ weiter unten." #. 3dx6B #: rep_main.xhp @@ -12478,7 +12478,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 "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 @@ -12487,7 +12487,7 @@ "par_id7479476\n" "help.text" msgid "To connect the report to a database table" -msgstr "" +msgstr "Zum Verbinden des Berichts mit einer Datenbanktabelle" #. TuFVF #: rep_main.xhp @@ -12496,7 +12496,7 @@ "par_id2218390\n" "help.text" msgid "Move the mouse to the Properties view. You see two tab pages General and Data." -msgstr "" +msgstr "Bewegen Sie die Maus auf die Ansicht Eigenschaften. Sie sehen zwei Register: „Allgemein“ und „Daten“." #. WdBn9 #: rep_main.xhp @@ -12505,7 +12505,7 @@ "par_id7771538\n" "help.text" msgid "On the Data tab page, click Content to open the combo box." -msgstr "" +msgstr "Klicken Sie im Register „Daten“ auf „Inhalt“, um das Kombinationsfeld zu öffnen." #. UKbEt #: rep_main.xhp @@ -12514,7 +12514,7 @@ "par_id366527\n" "help.text" msgid "Select the table for that you want to create the report." -msgstr "" +msgstr "Wählen Sie die Tabelle aus, für die Sie den Bericht erstellen möchten." #. NzJzg #: rep_main.xhp @@ -12523,7 +12523,7 @@ "par_id7996459\n" "help.text" msgid "After selecting the table, press the Tab key to leave the Content box." -msgstr "" +msgstr "Nachdem Sie die Tabelle ausgewählt haben, drücken Sie die Tabulatortaste, um das Inhaltsfeld zu verlassen." #. vw4gh #: rep_main.xhp @@ -12532,7 +12532,7 @@ "par_id2531815\n" "help.text" msgid "The Add fields to report window opens automatically and shows all fields of the selected table." -msgstr "" +msgstr "Das Fenster Felder zum Bericht hinzufügen öffnet sich automatisch und zeigt alle Felder der ausgewählten Tabelle an." #. vsFKB #: rep_main.xhp @@ -12541,7 +12541,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 "Wählen Sie zwei oder mehr Objekte aus und klicken Sie auf dieses Symbol, um die Objekte am linken Rand des Bereichs auszurichten." #. BqG3G #: rep_main.xhp @@ -12550,7 +12550,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 "Wählen Sie zwei oder mehr Objekte aus und klicken Sie auf dieses Symbol, um die Objekte am rechten Rand des Bereichs auszurichten." #. UcCYH #: rep_main.xhp @@ -12559,7 +12559,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 "Wählen Sie zwei oder mehr Objekte aus und klicken Sie auf dieses Symbol, um die Objekte am oberen Rand des Bereichs auszurichten." #. gDxeY #: rep_main.xhp @@ -12568,7 +12568,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 "Wählen Sie zwei oder mehr Objekte aus und klicken Sie auf dieses Symbol, um die Objekte am unteren Rand des Bereichs auszurichten." #. nNfGG #: rep_main.xhp @@ -12577,7 +12577,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 "Wählen Sie zwei oder mehr Objekte aus und klicken Sie auf dieses Symbol, um die Größe der Objekte auf die kleinste Breite zu ändern." #. GuD9F #: rep_main.xhp @@ -12586,7 +12586,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 "Wählen Sie zwei oder mehr Objekte aus und klicken Sie auf dieses Symbol, um die Größe der Objekte auf die kleinste Höhe zu ändern." #. NAFEu #: rep_main.xhp @@ -12595,7 +12595,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 "Wählen Sie zwei oder mehr Objekte aus und klicken Sie auf dieses Symbol, um die Größe der Objekte auf die größte Breite zu ändern." #. ssdFE #: rep_main.xhp @@ -12604,7 +12604,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 "Wählen Sie zwei oder mehr Objekte aus und klicken Sie auf dieses Symbol, um die Größe der Objekte auf die größte Höhe zu ändern." #. yLQm4 #: rep_main.xhp @@ -12613,7 +12613,7 @@ "par_id9611499\n" "help.text" msgid "Inserts a horizontal line to the current area." -msgstr "" +msgstr "Fügt eine horizontale Linie in den aktuellen Bereich ein." #. XVFTm #: rep_main.xhp @@ -12622,7 +12622,7 @@ "par_id6765953\n" "help.text" msgid "Inserts a vertical line to the current area." -msgstr "" +msgstr "Fügt eine vertikale Linie im aktuellen Bereich ein." #. 5gYXB #: rep_main.xhp @@ -12631,7 +12631,7 @@ "par_id0409200922242612\n" "help.text" msgid "Shrinks the selected section to remove top and bottom empty space." -msgstr "" +msgstr "Verkleinert den ausgewählten Abschnitt, um den oberen und unteren Leerraum zu entfernen." #. K9bij #: rep_main.xhp @@ -12640,7 +12640,7 @@ "par_id0409200922242617\n" "help.text" msgid "Shrinks the selected section to remove top empty space." -msgstr "" +msgstr "Verkleinert den ausgewählten Abschnitt, um den oberen leeren Bereich zu entfernen." #. S4vSt #: rep_main.xhp @@ -12649,7 +12649,7 @@ "par_id0409200922242661\n" "help.text" msgid "Shrinks the selected section to remove bottom empty space." -msgstr "" +msgstr "Verkleinert den ausgewählten Abschnitt, um den unteren Leerraum zu entfernen." #. bFTYS #: rep_main.xhp @@ -12658,7 +12658,7 @@ "par_id1511581\n" "help.text" msgid "After inserting fields in the Detail view, the report is ready for execution." -msgstr "" +msgstr "Nach dem Einfügen von Feldern in der Detailansicht ist der Report zur Ausführung bereit." #. j9t2k #: rep_main.xhp @@ -12667,7 +12667,7 @@ "par_id4881740\n" "help.text" msgid "To execute a report" -msgstr "" +msgstr "Um einen Bericht auszuführen" #. FtAeF #: rep_main.xhp @@ -12676,7 +12676,7 @@ "par_id8286385\n" "help.text" msgid "Click the Execute Report icon on the toolbar." -msgstr "" +msgstr "Klicken Sie in der Symbolleiste auf das Symbol »Bericht ausführen«." #. QxSrq #: rep_main.xhp @@ -12685,7 +12685,7 @@ "par_id341642784887818\n" "help.text" msgid "Execute Report icon" -msgstr "" +msgstr "Symbol für Bericht ausführen" #. FRApC #: rep_main.xhp @@ -12694,7 +12694,7 @@ "par_id71642784887822\n" "help.text" msgid "Execute Report icon" -msgstr "" +msgstr "Symbol »Bericht ausführen«" #. EbwoS #: rep_main.xhp @@ -12703,7 +12703,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 "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 @@ -12712,7 +12712,7 @@ "par_id2485122\n" "help.text" msgid "If the database contents did change, execute the report again to update the result report." -msgstr "" +msgstr "Wenn sich der Datenbankinhalt geändert hat, führen Sie den Bericht erneut aus, um den Ergebnisbericht zu aktualisieren." #. XrBwB #: rep_main.xhp @@ -12721,7 +12721,7 @@ "hd_id8746910\n" "help.text" msgid "To edit a report" -msgstr "" +msgstr "So bearbeiten Sie einen Bericht" #. GinFd #: rep_main.xhp @@ -12730,7 +12730,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 "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 @@ -12739,7 +12739,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 "Das Writer-Dokument wird schreibgeschützt geöffnet. Um das Writer-Dokument zu bearbeiten, klicken Sie in der Informationsleiste auf Dokument bearbeiten oder wählen Sie Bearbeiten – Bearbeitungsmodus." #. G2dAA #: rep_main.xhp @@ -12748,7 +12748,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 "Wenn Sie die Ansicht Berichtdesigner bearbeiten möchten, können Sie einige ihrer Eigenschaften ändern." #. XYvED #: rep_main.xhp @@ -12757,7 +12757,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 "Klicken Sie in den Detailbereich. Ändern Sie dann im Fenster Eigenschaften einige Eigenschaften, beispielsweise die Hintergrundfarbe." #. YbHaF #: rep_main.xhp @@ -12766,7 +12766,7 @@ "par_id9869380\n" "help.text" msgid "After finishing, click the Execute Report icon to create a new report." -msgstr "" +msgstr "Klicken Sie nach Abschluss auf das Symbol „Bericht ausführen“, um einen neuen Bericht zu erstellen." #. h2c39 #: rep_main.xhp @@ -12775,7 +12775,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 "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 @@ -12784,7 +12784,7 @@ "par_id2676168\n" "help.text" msgid "Sorting the report" -msgstr "" +msgstr "Bericht sortieren" #. Cg7RE #: rep_main.xhp @@ -13054,7 +13054,7 @@ "par_id9449446\n" "help.text" msgid "Functions can be entered using a syntax as specified by the OpenFormula proposal." -msgstr "" +msgstr "Funktionen können mit einer Syntax eingegeben werden, wie sie im Vorschlag OpenFormula angegeben ist." #. N9UtL #: rep_navigator.xhp @@ -13063,7 +13063,7 @@ "par_id4095583\n" "help.text" msgid "See Wiki page about Base for some more help regarding the functions in a report." -msgstr "" +msgstr "Weitere Hilfe zu den Funktionen in einem Bericht finden Sie auf der Wiki-Seite über Base." #. 2spAx #: rep_navigator.xhp @@ -13396,7 +13396,7 @@ "par_id3587145\n" "help.text" msgid "The Add fields to report window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose View - Add Field." -msgstr "" +msgstr "Das Fenster Felder zum Bericht hinzufügen wird automatisch angezeigt, wenn Sie eine Tabelle im Inhaltsfeld ausgewählt haben und dieses Feld verlassen. Sie können auch auf das Symbol »Feld hinzufügen« in der Symbolleiste klicken oder Ansicht – Feld hinzufügen… auswählen." #. 5BJS6 #: rep_prop.xhp @@ -14629,7 +14629,7 @@ "par_idN10548\n" "help.text" msgid "Database Form Toolbar" -msgstr "" +msgstr "Symbolleiste Datenbankformular" #. Ndnbt #: toolbar_form.xhp @@ -14782,7 +14782,7 @@ "par_idN10548\n" "help.text" msgid "Database Query Toolbar" -msgstr "" +msgstr "Symbolleiste Datenbankabfrage" #. bj47W #: toolbar_query.xhp @@ -14962,7 +14962,7 @@ "par_idN10548\n" "help.text" msgid "Database Report Toolbar" -msgstr "" +msgstr "Symbolleiste Datenbankbericht" #. TaKok #: toolbar_report.xhp @@ -15142,7 +15142,7 @@ "par_idN10548\n" "help.text" msgid "Database Table Toolbar" -msgstr "" +msgstr "Symbolleiste Datenbanktabellen" #. Y57HF #: toolbar_table.xhp @@ -15268,7 +15268,7 @@ "par_id991642853830973\n" "help.text" msgid "Icon Sort Ascending" -msgstr "" +msgstr "Symbol für Aufsteigend sortieren" #. aRGCA #: toolbar_table.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 17:18+0000\n" -"Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" +"Last-Translator: Sophia Schröder \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -10067,7 +10067,7 @@ "par_id3156426\n" "help.text" msgid "Open Optimize Size dropdown menu from Table bar, click" -msgstr "" +msgstr "Öffnen Sie die Dropdown-Liste Größe optimieren in der Symbolleiste Tabelle und klicken Sie auf" #. GHptw #: 00040500.xhp @@ -10076,7 +10076,7 @@ "par_id481655731478873\n" "help.text" msgid "Open Optimize Size dropdown menu from Table bar, click" -msgstr "" +msgstr "Öffnen Sie die Dropdown-Liste Größe optimieren in der Symbolleiste Tabelle und klicken Sie auf" #. LNCUB #: 00040500.xhp @@ -10094,7 +10094,7 @@ "par_id151655731003155\n" "help.text" msgid "Choose Format - Table - Minimal Row Height." -msgstr "" +msgstr "Wählen Sie Format – Tabelle –Minimale Zeilenhöhe." #. CZ6Az #: 00040500.xhp @@ -10103,7 +10103,7 @@ "par_id451655738489793\n" "help.text" msgid "Select rows in table, right-click, choose Size - Minimal Row Height." -msgstr "" +msgstr "Wählen Sie mehrere Zeilen in der Tabelle aus, klicken Sie mit rechts und wählen Sie Größe – Minimale Zeilenhöhe." #. UEWjA #: 00040500.xhp @@ -10112,7 +10112,7 @@ "par_id751654222949632\n" "help.text" msgid "Minimal Row Height Icon" -msgstr "" +msgstr "Symbol für Minimale Zeilenhöhe" #. kp47D #: 00040500.xhp @@ -10121,7 +10121,7 @@ "par_id961654222949632\n" "help.text" msgid "Minimal Row Height" -msgstr "" +msgstr "Minimale Zeilenhöhe" #. NN4r3 #: 00040500.xhp @@ -10130,7 +10130,7 @@ "par_id3155536\n" "help.text" msgid "Choose Table - Size - Optimal Row Height." -msgstr "" +msgstr "Wählen Sie Tabelle – Größe – Optimale Zeilenhöhe." #. pCsAR #: 00040500.xhp @@ -10139,7 +10139,7 @@ "par_id621655731074115\n" "help.text" msgid "Choose Format - Table - Optimal Row Height." -msgstr "" +msgstr "Wählen Sie Format – Tabelle – Optimale Zeilenhöhe." #. zLApF #: 00040500.xhp @@ -10148,7 +10148,7 @@ "par_id741655738425233\n" "help.text" msgid "Select rows in table, right-click, choose Size - Optimal Row Height." -msgstr "" +msgstr "Wählen Sie mehrere Zeilen in der Tabelle aus, klicken Sie mit rechts und wählen Sie Größe – Optimale Zeilenhöhe." #. U2ETB #: 00040500.xhp @@ -10157,7 +10157,7 @@ "par_id3145222\n" "help.text" msgid "Icon Optimal Row Height" -msgstr "" +msgstr "Symbol für Optimale Zeilenhöhe" #. meaVC #: 00040500.xhp @@ -10166,7 +10166,7 @@ "par_id3153545\n" "help.text" msgid "Optimal Row Height" -msgstr "" +msgstr "Optimale Zeilenhöhe" #. zvEoa #: 00040500.xhp @@ -10175,7 +10175,7 @@ "par_id3153569\n" "help.text" msgid "Choose Table - Size - Distribute Rows Evenly." -msgstr "" +msgstr "Wählen Sie Tabelle – Größe – Zeilen gleichmäßig verteilen." #. vVi3q #: 00040500.xhp @@ -10184,7 +10184,7 @@ "par_id701655731168178\n" "help.text" msgid "Choose Format - Table - Distribute Rows Evenly." -msgstr "" +msgstr "Wählen Sie Format – Tabelle – Zeilen gleichmäßig verteilen." #. ZFAHG #: 00040500.xhp @@ -10193,7 +10193,7 @@ "par_id801655738379330\n" "help.text" msgid "Select rows in table, right-click, choose Size - Distribute Rows Evenly." -msgstr "" +msgstr "Wählen Sie mehrere Zeilen in der Tabelle aus, klicken Sie mit rechts und wählen Sie Größe – Zeilen gleichmäßig verteilen." #. aALKw #: 00040500.xhp @@ -10202,7 +10202,7 @@ "par_id3145297\n" "help.text" msgid "Icon Distribute Rows Evenly" -msgstr "" +msgstr "Symbol für Zeilen gleichmäßig verteilen" #. tgSLB #: 00040500.xhp @@ -10211,7 +10211,7 @@ "par_id3153206\n" "help.text" msgid "Distribute Rows Evenly" -msgstr "" +msgstr "Zeilen gleichmäßig verteilen" #. 8znyd #: 00040500.xhp @@ -10220,7 +10220,7 @@ "par_id51654220677297\n" "help.text" msgid "Choose Table - Size - Minimal Column Width." -msgstr "" +msgstr "Wählen Sie Tabelle – Größe – Minimale Spaltenbreite." #. EFZvU #: 00040500.xhp @@ -10229,7 +10229,7 @@ "par_id691655731247050\n" "help.text" msgid "Choose Format - Table - Minimal Column Width." -msgstr "" +msgstr "Wählen Sie Format – Tabelle – Minimale Spaltenbreite." #. bqVXT #: 00040500.xhp @@ -10238,7 +10238,7 @@ "par_id941655738180090\n" "help.text" msgid "Select columns in table, right-click, choose Size - Minimal Column Width." -msgstr "" +msgstr "Wählen Sie mehrere Spalten in der Tabelle aus, klicken Sie mit rechts und wählen Sie Größe – Minimale Spaltenbreite." #. UvZy2 #: 00040500.xhp @@ -10247,7 +10247,7 @@ "par_id11654222599271\n" "help.text" msgid "Minimal Column Width Icon" -msgstr "" +msgstr "Symbol für Minimale Spaltenbreite" #. 4Vw5o #: 00040500.xhp @@ -10256,7 +10256,7 @@ "par_id161654222599272\n" "help.text" msgid "Minimal Column Width" -msgstr "" +msgstr "Minimale Spaltenbreite" #. pNAs2 #: 00040500.xhp @@ -10265,7 +10265,7 @@ "par_id3154752\n" "help.text" msgid "Choose Table - Size - Optimal Column Width." -msgstr "" +msgstr "Wählen Sie Tabelle – Größe – Optimale Spaltenbreite." #. RnQAg #: 00040500.xhp @@ -10274,7 +10274,7 @@ "par_id471655731343905\n" "help.text" msgid "Choose Format - Table - Optimal Column Width." -msgstr "" +msgstr "Wählen Sie Format – Tabelle – Optimale Spaltenbreite." #. hphNu #: 00040500.xhp @@ -10283,7 +10283,7 @@ "par_id701655738103242\n" "help.text" msgid "Select columns in table, right-click, choose Size - Optimal Column Width." -msgstr "" +msgstr "Wählen Sie mehrere Spalten in der Tabelle aus, klicken Sie mit rechts und wählen Sie Größe – Optimale Spaltenbreite." #. C6MQK #: 00040500.xhp @@ -10292,7 +10292,7 @@ "par_id3157881\n" "help.text" msgid "Icon Optimal Column Width" -msgstr "" +msgstr "Symbol für Optimale Spaltenbreite" #. c9tX3 #: 00040500.xhp @@ -10301,7 +10301,7 @@ "par_id3150524\n" "help.text" msgid "Optimal Column Width" -msgstr "" +msgstr "Optimale Spaltenbreite" #. ow3LU #: 00040500.xhp @@ -10310,7 +10310,7 @@ "par_id3159219\n" "help.text" msgid "Choose Table - Size - Distribute Columns Evenly." -msgstr "" +msgstr "Wählen Sie Tabelle – Größe – Spalten gleichmäßig verteilen." #. zFDHf #: 00040500.xhp @@ -10319,7 +10319,7 @@ "par_id991655731434331\n" "help.text" msgid "Choose Format - Table - Distribute Columns Evenly." -msgstr "" +msgstr "Wählen Sie Format – Tabelle – Spalten gleichmäßig verteilen." #. LGcd8 #: 00040500.xhp @@ -10328,7 +10328,7 @@ "par_id151654212978990\n" "help.text" msgid "Select columns in table, right-click, choose Size - Distribute Columns Evenly." -msgstr "" +msgstr "Wählen Sie mehrere Spalten in der Tabelle aus, klicken Sie mit rechts und wählen Sie Größe – Spalten gleichmäßig verteilen." #. 7hd74 #: 00040500.xhp @@ -10337,7 +10337,7 @@ "par_id3145179\n" "help.text" msgid "Icon Distribute Columns Evenly" -msgstr "" +msgstr "Symbol für Spalten gleichmäßig verteilen" #. m2sdA #: 00040500.xhp @@ -10346,7 +10346,7 @@ "par_id3151364\n" "help.text" msgid "Distribute Columns Evenly" -msgstr "" +msgstr "Spalten gleichmäßig verteilen" #. yUJ5g #: 00040500.xhp @@ -10463,7 +10463,7 @@ "par_id3156306\n" "help.text" msgid "Menu Format - Page Style - Header/Footer - Edit button (spreadsheets)." -msgstr "" +msgstr "Wählen Sie Menü Format – Seitenvorlage… – Register: Kopfzeile/Fußzeile – Schaltfläche: Bearbeiten… (Tabellendokumente)." #. f7aHb #: 00040500.xhp @@ -10490,7 +10490,7 @@ "par_id3159176\n" "help.text" msgid "Menu Format - Page Style - Header/Footer - Edit button (spreadsheets)." -msgstr "" +msgstr "Wählen Sie Menü Format – Seitenvorlage… – Register: Kopfzeile/Fußzeile – Schaltfläche: Bearbeiten… (Tabellendokumente)." #. PGTCS #: 00040500.xhp @@ -10517,7 +10517,7 @@ "par_id3151385\n" "help.text" msgid "Menu Format - Page Style - Header/Footer - Edit button (spreadsheets)." -msgstr "" +msgstr "Wählen Sie Menü Format – Seitenvorlage… – Register: Kopfzeile/Fußzeile – Schaltfläche: Bearbeiten… (Tabellendokumente)." #. cExz7 #: 00040500.xhp @@ -10778,7 +10778,7 @@ "par_id3159130\n" "help.text" msgid "Menu Format - Page Style - Border - Padding." -msgstr "" +msgstr "Wählen Sie Menü Format – Seitenvorlage… – Register: Umrandung – Bereich: Innenabstand." #. PGrMv #: 00040500.xhp @@ -10823,7 +10823,7 @@ "par_id3151321\n" "help.text" msgid "Choose Format - Page Style - Background tab." -msgstr "" +msgstr "Wählen Sie Format – Seitenvorlage… – Register: Hintergrund." #. XSpZK #: 00040500.xhp @@ -10832,7 +10832,7 @@ "par_id3154510\n" "help.text" msgid "Choose Format - Page Style - Header - More button." -msgstr "" +msgstr "Wählen Sie Format – Seitenvorlage… – Register: Kopfzeile – Schaltfläche: Zusätze…." #. BRTp2 #: 00040500.xhp @@ -10841,7 +10841,7 @@ "par_id3159110\n" "help.text" msgid "Choose Format - Page Style - Footer - More button." -msgstr "" +msgstr "Wählen Sie Format – Seitenvorlage… – Register: Fußzeile – Schaltfläche: Zusätze…." #. RKBDo #: 00040500.xhp @@ -10904,7 +10904,7 @@ "par_id3146788\n" "help.text" msgid "Choose Format - Page Style - Organizer tab." -msgstr "" +msgstr "Wählen Sie Format – Seitenvorlage… – Register: Verwalten." #. Y2ck5 #: 00040500.xhp @@ -10976,7 +10976,7 @@ "par_id731601602622257\n" "help.text" msgid "Choose Format - Page Style - Page tab." -msgstr "" +msgstr "Wählen Sie Format – Seitenvorlage… – Register: Seite." #. gMqXo #: 00040500.xhp @@ -11021,7 +11021,7 @@ "par_id3155515\n" "help.text" msgid "Choose Format - Page Style - Header tab." -msgstr "" +msgstr "Wählen Sie Format – Seitenvorlage… – Register: Kopfzeile." #. jZj9w #: 00040500.xhp @@ -11039,7 +11039,7 @@ "par_id3145618\n" "help.text" msgid "Choose Format - Page Style - Footer tab." -msgstr "" +msgstr "Wählen Sie Format – Seitenvorlage… – Register: Fußzeile." #. 5gs5x #: 00040500.xhp @@ -12983,7 +12983,7 @@ "par_id771592156369992\n" "help.text" msgid "Choose Format - Page Style - Background tab" -msgstr "" +msgstr "Wählen Sie Format – Seitenvorlage… – Register: Hintergrund." #. NP4xZ #: 00040502.xhp @@ -15359,7 +15359,7 @@ "par_id3149281\n" "help.text" msgid "Choose Edit - External Links." -msgstr "" +msgstr "Wählen Sie Bearbeiten – Externe Verknüpfungen…." #. xSMBV #: edit_menu.xhp @@ -15368,7 +15368,7 @@ "par_id3159339\n" "help.text" msgid "Choose Edit - External Links - Modify (DDE links only)." -msgstr "" +msgstr "Wählen Sie Bearbeiten – Externe Verknüpfungen… – Schaltfläche: Ändern… (nur DDE-Verknüpfungen)." #. bgzTi #: edit_menu.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/shared/04.po libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/shared/04.po --- libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/shared/04.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/shared/04.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 17:18+0000\n" +"PO-Revision-Date: 2023-03-19 15:33+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 17:18+0000\n" +"PO-Revision-Date: 2023-03-12 07:41+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -12533,7 +12533,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.5.1~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.5.1~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-02 12:19+0000\n" +"PO-Revision-Date: 2023-03-19 15:33+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.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.5.1~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-02-19 19:03+0000\n" +"PO-Revision-Date: 2023-03-19 05:33+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1394,7 +1394,7 @@ "Label\n" "value.text" msgid "Conditional Formatting: Color Scale" -msgstr "Bedingte Formatierung: Farbskala" +msgstr "Bedingte Formatierung: Farbbalken" #. bkSZz #: CalcCommands.xcu @@ -32696,7 +32696,7 @@ "PopupLabel\n" "value.text" msgid "~More Options..." -msgstr "~Inhalte einfügen…" +msgstr "~Weitere Optionen…" #. V36RP #: WriterCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/de/reportdesign/messages.po libreoffice-7.5.2~rc2/translations/source/de/reportdesign/messages.po --- libreoffice-7.5.1~rc2/translations/source/de/reportdesign/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/reportdesign/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 13:11+0000\n" +"PO-Revision-Date: 2023-03-19 05:33+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.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.5.1~rc2/translations/source/de/sc/messages.po libreoffice-7.5.2~rc2/translations/source/de/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/de/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/sc/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-19 19:03+0000\n" +"PO-Revision-Date: 2023-03-19 05:33+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19633,7 +19633,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 @@ -20011,13 +20011,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 @@ -20071,7 +20071,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/de/scp2/source/writer.po libreoffice-7.5.2~rc2/translations/source/de/scp2/source/writer.po --- libreoffice-7.5.1~rc2/translations/source/de/scp2/source/writer.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/scp2/source/writer.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-10-21 14:17+0000\n" -"Last-Translator: Annabelle Wübbelsmann \n" -"Language-Team: German \n" +"PO-Revision-Date: 2023-03-19 05:33+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.12.2\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.5.1~rc2/translations/source/de/sw/messages.po libreoffice-7.5.2~rc2/translations/source/de/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/de/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/de/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-19 19:03+0000\n" +"PO-Revision-Date: 2023-03-04 13:32+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11804,7 +11804,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/dsb/helpcontent2/source/text/shared/00.po libreoffice-7.5.2~rc2/translations/source/dsb/helpcontent2/source/text/shared/00.po --- libreoffice-7.5.1~rc2/translations/source/dsb/helpcontent2/source/text/shared/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/dsb/helpcontent2/source/text/shared/00.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-12 13:31+0000\n" +"PO-Revision-Date: 2023-03-22 12: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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. 3B8ZN #: 00000001.xhp @@ -1606,7 +1606,7 @@ "hd_id161521663319917\n" "help.text" msgid "Open file with example:" -msgstr "" +msgstr "Dataju z pśikładom wócyniś:" #. yACEn #: 00000004.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/dsb/helpcontent2/source/text/simpress/02.po libreoffice-7.5.2~rc2/translations/source/dsb/helpcontent2/source/text/simpress/02.po --- libreoffice-7.5.1~rc2/translations/source/dsb/helpcontent2/source/text/simpress/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/dsb/helpcontent2/source/text/simpress/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-22 14:12+0000\n" +"PO-Revision-Date: 2023-03-07 10:32+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" #. AiACn #: 04010000.xhp @@ -4900,7 +4900,7 @@ "par_id3148407\n" "help.text" msgid "If you want the dimension line to be the same length as the side of a nearby object, hold down the CommandCtrl key while dragging. To constrain the dimension line to 45 degrees, hold down the Shift key while dragging." -msgstr "Jolic měrjeńska linija ma samsku dłujkośc ako bok susednego objekta měś, źaržćo tastu cmd ⌘Strg tłoconu, mjaztym až śěgaśo. Aby měrjeńsku liniju na 45 stopnjow wobgranicował, źaržćo tastu Umsch (⇧) tłoconu, mjaztym až śěgaśo." +msgstr "Jolic měrjeńska linija ma samsku dłujkosć ako bok susednego objekta měś, źaržćo tastu cmd ⌘Strg tłoconu, mjaztym až śěgaśo. Aby měrjeńsku liniju na 45 stopnjow wobgranicował, źaržćo tastu Umsch (⇧) tłoconu, mjaztym až śěgaśo." #. GfFUQ #: 10120000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/dsb/helpcontent2/source/text/smath/01.po libreoffice-7.5.2~rc2/translations/source/dsb/helpcontent2/source/text/smath/01.po --- libreoffice-7.5.1~rc2/translations/source/dsb/helpcontent2/source/text/smath/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/dsb/helpcontent2/source/text/smath/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 19:05+0000\n" +"PO-Revision-Date: 2023-02-28 22:04+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" @@ -3694,7 +3694,7 @@ "par_id3150592\n" "help.text" msgid "To insert ceiling brackets, type lceilrceil directly in the Commands window." -msgstr "lceilrceil direktnje do wokna Pśikaze." +msgstr "Aby spinki narownańskeje funkcije zasajźił, zapódajśo lceilrceil direktnje do wokna Pśikaze." #. uDM92 #: 03090500.xhp @@ -4018,7 +4018,7 @@ "par_id3153573\n" "help.text" msgid "Inserts a placeholder with a circle over it. You can also type circle in the Commands window." -msgstr "Zasajźujo zastupujucy symbol z krejzom nad nim. Móžośo teke circle do wokna Pśikazr zapódaś." +msgstr "Zasajźujo zastupujucy symbol z krejzom nad nim. Móžośo teke circle do wokna Pśikaze zapódaś." #. uDb7K #: 03090600.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/dsb/sc/messages.po libreoffice-7.5.2~rc2/translations/source/dsb/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/dsb/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/dsb/sc/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-02 06:38+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: 1565009164.000000\n" #. kBovX @@ -20535,7 +20535,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:416 msgctxt "consolidatedialog|ftdataarea" msgid "_Source data ranges:" -msgstr "Wo_bcerki žrědłowych datow:" +msgstr "Wo_bceŕk žrědłowych datow:" #. VZzRg #: sc/uiconfig/scalc/ui/consolidatedialog.ui:430 diff -Nru libreoffice-7.5.1~rc2/translations/source/dsb/sw/messages.po libreoffice-7.5.2~rc2/translations/source/dsb/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/dsb/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/dsb/sw/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-21 15:34+0000\n" +"PO-Revision-Date: 2023-03-10 12: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: 1562269173.000000\n" #. v3oJv @@ -11872,7 +11872,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 @@ -22964,7 +22964,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/el/cui/messages.po libreoffice-7.5.2~rc2/translations/source/el/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/el/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/el/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" +"PO-Revision-Date: 2023-03-18 02:34+0000\n" "Last-Translator: Dimitris Spingos \n" -"Language-Team: Greek \n" +"Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-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: 1562571180.000000\n" #. GyY9M @@ -12025,7 +12025,7 @@ #: cui/uiconfig/ui/langtoolconfigpage.ui:191 msgctxt "langtoolconfigpage|urldesc" msgid "Please use the base URL, i.e., without “/check” at the end." -msgstr "" +msgstr "Χρησιμοποιήστε τη βασική διεύθυνση URL, δηλαδή χωρίς \"/check\" στο τέλος." #. 77oav #: cui/uiconfig/ui/langtoolconfigpage.ui:211 @@ -17430,37 +17430,37 @@ #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "Σύστημα" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "Φωτεινό" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "Σκούρο" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "Καθορίζει εάν θα ακολουθήσει την κατάσταση εμφάνισης του συστήματος ή θα παρακάμψει το σκούρο ή φωτεινό." #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "Κατάσταση:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "Εμφάνιση" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 diff -Nru libreoffice-7.5.1~rc2/translations/source/el/dictionaries/th_TH.po libreoffice-7.5.2~rc2/translations/source/el/dictionaries/th_TH.po --- libreoffice-7.5.1~rc2/translations/source/el/dictionaries/th_TH.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/el/dictionaries/th_TH.po 2023-03-24 16:53:38.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: 2022-12-07 13:11+0100\n" -"PO-Revision-Date: 2013-05-23 23:06+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-03-03 12:22+0000\n" +"Last-Translator: Dimitris Spingos \n" +"Language-Team: Greek \n" "Language: el\n" "MIME-Version: 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: 1369350416.000000\n" #. GkzWs @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Thai spelling dictionary and hyphenation rules" -msgstr "" +msgstr "Ταϊλανδικό ορθογραφικό λεξικό και κανόνες συλλαβισμού" diff -Nru libreoffice-7.5.1~rc2/translations/source/es/basctl/messages.po libreoffice-7.5.2~rc2/translations/source/es/basctl/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/basctl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/basctl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-03-15 14: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" "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 @@ -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.5.1~rc2/translations/source/es/chart2/messages.po libreoffice-7.5.2~rc2/translations/source/es/chart2/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/chart2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/chart2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:43+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" +"PO-Revision-Date: 2023-03-05 08: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: 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 @@ -1709,7 +1709,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 @@ -2507,7 +2507,7 @@ #: chart2/uiconfig/ui/sidebarerrorbar.ui:66 msgctxt "sidebarerrorbar|comboboxtext_type" msgid "Standard deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. qUL78 #: chart2/uiconfig/ui/sidebarerrorbar.ui:67 @@ -4193,7 +4193,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.5.1~rc2/translations/source/es/cui/messages.po libreoffice-7.5.2~rc2/translations/source/es/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-09 11: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" @@ -7438,7 +7438,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:303 msgctxt "extended tip | redRadiobutton" msgid "Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "Establece el componente rojo modificable en el control deslizante de color vertical y los componentes verde y azul en el campo selector de color bidimensional. Los valores permitidos son de 0 a 255." +msgstr "Establece el componente rojo modificable en el control deslizante vertical, así como los componentes verde y azul modificables en el campo bidimensional de selección de color. Se permiten valores entre 0 y 255." #. TkTSB #: cui/uiconfig/ui/colorpickerdialog.ui:314 @@ -7450,7 +7450,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:323 msgctxt "extended tip | greenRadiobutton" msgid "Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "Establece el componente verde modificable en el control deslizante de color vertical y los componentes rojo y azul en el campo selector de color bidimensional. Los valores permitidos son de 0 a 255." +msgstr "Establece el componente verde modificable en el control deslizante vertical, así como los componentes rojo y azul modificables en el campo bidimensional de selección de color. Se permiten valores entre 0 y 255." #. 5FGfv #: cui/uiconfig/ui/colorpickerdialog.ui:334 @@ -7462,7 +7462,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:343 msgctxt "extended tip | blueRadiobutton" msgid "Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "Establece el componente azul modificable en el control deslizante de color vertical y los componentes verde y rojo en el campo selector de color bidimensional. Los valores permitidos son de 0 a 255." +msgstr "Establece el componente azul modificable en el control deslizante vertical, así como los componentes verde y rojo modificables en el campo bidimensional de selección de color. Se permiten valores entre 0 y 255." #. c5MTh #: cui/uiconfig/ui/colorpickerdialog.ui:362 @@ -11157,7 +11157,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 @@ -15785,7 +15785,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 @@ -19537,7 +19537,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/dbaccess/messages.po libreoffice-7.5.2~rc2/translations/source/es/dbaccess/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/dbaccess/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/dbaccess/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-25 13:48+0100\n" -"PO-Revision-Date: 2022-11-02 09:22+0000\n" +"PO-Revision-Date: 2023-03-21 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: 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 @@ -2330,7 +2330,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/desktop/messages.po libreoffice-7.5.2~rc2/translations/source/es/desktop/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/desktop/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/desktop/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2022-10-21 14:17+0000\n" +"PO-Revision-Date: 2023-03-06 12: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.5.1~rc2/translations/source/es/filter/messages.po libreoffice-7.5.2~rc2/translations/source/es/filter/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/filter/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/filter/messages.po 2023-03-24 16:53:38.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-12-07 13:11+0100\n" -"PO-Revision-Date: 2023-02-13 16:31+0000\n" +"PO-Revision-Date: 2023-03-13 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" @@ -1235,19 +1235,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.5.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/guide.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-23 11:28+0000\n" +"PO-Revision-Date: 2023-03-22 12: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: 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.5.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/python.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/python.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/python.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-27 11:24+0000\n" +"PO-Revision-Date: 2023-03-02 08: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: 1565287211.000000\n" #. naSFZ @@ -743,7 +743,7 @@ "N0578\n" "help.text" msgid "Console.log(\"INFO\", \"Document events are being logged\", True)" -msgstr "" +msgstr "Console.log(\"INFO\", \"Se están registrando los eventos del documento\", True)" #. jnyCD #: python_document_events.xhp @@ -752,7 +752,7 @@ "N0580\n" "help.text" msgid "def sleep(self, *args): # OnUnload at the latest (optional)" -msgstr "" +msgstr "def sleep(self, *args): # OnUnload hasta el final (opcional)" #. QiSAD #: python_document_events.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.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: 2023-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-22 12: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" @@ -3220,7 +3220,7 @@ "par_id541619006255653\n" "help.text" msgid "StarDesktop object represents %PRODUCTNAME Start Center." -msgstr "El objeto StarDesktop representa el centro de inicio de %PRODUCTNAME." +msgstr "El objeto StarDesktop representa el centro de bienvenida de %PRODUCTNAME." #. vXq8C #: sf_basic.xhp @@ -9898,7 +9898,7 @@ "par_id891600788076190\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. 5FdAQ #: sf_datasheet.xhp @@ -9970,7 +9970,7 @@ "par_id21600788076758\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. faBy9 #: sf_datasheet.xhp @@ -10015,7 +10015,7 @@ "par_id531600789141795\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. TSNA5 #: sf_datasheet.xhp @@ -21202,7 +21202,7 @@ "par_id621623370871360\n" "help.text" msgid "Note that the previous example opens %PRODUCTNAME start center. If you want to open a specific component, for instance Writer, you can add the --writer flag to the command, as follows." -msgstr "Observe que el ejemplo anterior abre el centro de inicio de %PRODUCTNAME. Si quiere abrir un componente en concreto, como por ejemplo Writer, puede añadir la opción --writer a la orden, como se ejemplifica a continuación:" +msgstr "Observe que el ejemplo anterior abre el centro de bienvenida de %PRODUCTNAME. Si quiere abrir un componente en concreto, como por ejemplo Writer, puede añadir la opción --writer a la orden, como se ejemplifica a continuación:" #. cVRuV #: sf_intro.xhp @@ -21751,7 +21751,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 @@ -31597,7 +31597,7 @@ "par_id271656446258396\n" "help.text" msgid "Read the instructions in AssertLike for more information on the assumptions of this method." -msgstr "" +msgstr "Lea las instrucciones sobre AssertLike para obtener más información sobre los supuestos de este método." #. C9GJn #: sf_unittest.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-21 09:34+0000\n" +"PO-Revision-Date: 2023-03-07 10: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" @@ -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 @@ -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ático en forma de entero Long (largo) que consiste de componentes rojo, verde y azul, según la fórmula de colores de VBA." #. 2XAYm #: 03010306.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.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-12-08 19:46+0100\n" -"PO-Revision-Date: 2023-02-21 09:33+0000\n" +"PO-Revision-Date: 2023-03-24 13: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" @@ -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 @@ -5624,7 +5624,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 @@ -5696,7 +5696,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 @@ -14147,7 +14147,7 @@ "par_id3152083\n" "help.text" msgid "SumRange is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed." -msgstr "IntervaloDeSuma es el área a partir de la cual se suman los valores. Si este parámetro no se ha indicado, se suman los valores de Intervalo." +msgstr "Intervalo de suma es el intervalo a partir del cual se suman los valores. Si este parámetro no se ha indicado, se suman los valores de Intervalo." #. iGKyo #: 04060106.xhp @@ -14156,7 +14156,7 @@ "par_id8347422\n" "help.text" msgid "SUMIF supports the reference concatenation operator (~) only in the Range parameter, and only if the optional SumRange parameter is not given." -msgstr "" +msgstr "SUMAR.SI admite el operador de concatenación de referencia (~) solo en el parámetro Intervalo, y solo si no se proporciona el parámetro opcional Intervalo de suma." #. uazzL #: 04060106.xhp @@ -17045,7 +17045,7 @@ "par_id3158204\n" "help.text" msgid "E3 and F3: The standard error of the slope value." -msgstr "E3 y F3: El error estándar del valor de la pendiente." +msgstr "E3 y F3: el error estándar del valor de la pendiente." #. NAdrZ #: 04060107.xhp @@ -17099,7 +17099,7 @@ "par_id3145915\n" "help.text" msgid "F5: The degrees of freedom from the variance analysis." -msgstr "F5: Los grados de libertad del análisis de varianza." +msgstr "F5: los grados de libertad del análisis de varianza." #. jx7yp #: 04060107.xhp @@ -34325,7 +34325,7 @@ "par_id2952981\n" "help.text" msgid "Calculates the values of the left tail of the F distribution." -msgstr "Calcula los valores del caudal izquierdo de la distribución F." +msgstr "Calcula los valores del lateral izquierdo de la distribución F." #. kNsgP #: 04060182.xhp @@ -35081,7 +35081,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 @@ -35198,7 +35198,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." #. nAPgU #: 04060182.xhp @@ -35270,7 +35270,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 @@ -39149,7 +39149,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 @@ -39167,7 +39167,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 "Realiza una estimación de la desviación típica a partir de una muestra." #. 2b5hp #: 04060185.xhp @@ -39176,7 +39176,7 @@ "par_id3149946\n" "help.text" msgid "STDEV()" -msgstr "DESVIACIÓN ESTÁNDAR " +msgstr "DESVEST()" #. H3V9F #: 04060185.xhp @@ -39194,7 +39194,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 @@ -39221,7 +39221,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 @@ -39275,7 +39275,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 @@ -39284,7 +39284,7 @@ "par_id3154392\n" "help.text" msgid "STDEVP()" -msgstr "DESVIACIÓN ESTÁNDAR P" +msgstr "DESVESTP()" #. ADXhB #: 04060185.xhp @@ -39374,7 +39374,7 @@ "par_id2854392\n" "help.text" msgid "STDEV.S()" -msgstr "DESVIACIÓN ESTÁNDAR.S" +msgstr "DESVEST.M()" #. fPUck #: 04060185.xhp @@ -39392,7 +39392,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 @@ -39419,7 +39419,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 @@ -39977,7 +39977,7 @@ "par_id3154070\n" "help.text" msgid "Number is the probability associated with the two-tailed t-distribution." -msgstr "Número es la probabilidad asociada con la distribución t de dos colas." +msgstr "Número es la probabilidad asociada con la distribución t bilateral." #. upYXw #: 04060185.xhp @@ -42767,7 +42767,7 @@ "par_id3147397\n" "help.text" msgid "Select the table or the data range that you want to insert. If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and OK button will remain inactive" -msgstr "Seleccione la tabla o el rango de datos que desea introducir. Si el documento de Calc o Exel seleccionado no contiene ningún rango con nombre, no se puede insertar los datos de la hoja de cálculo y OKpermanecerá inactivo." +msgstr "Seleccione la tabla o el intervalo de datos que quiere insertar. Si el documento de Calc o Excel seleccionado no contiene ningún intervalo con nombre, no es posible insertar los datos de la hoja de cálculo y el botón Aceptar permanece inactivo." #. PVMSv #: 04090000.xhp @@ -47735,7 +47735,7 @@ "par_id661619430257262\n" "help.text" msgid "Select protected cells: mark this checkbox to allow you to select protected cells. When the checkbox is unmarked, you cannot select protected cells, the cursor cannot enter in a protected range." -msgstr "Seleccione las celdas protegidasmarque esta casilla para poder seleccionar las celdas protegidas. Cuando la casilla no está marcada, no puede seleccionar celdas protegidas, el cursor no puede entrar en un rango protegido." +msgstr "Seleccionar celdas protegidas: active esta casilla para poder seleccionar las celdas protegidas. Cuando la casilla está desactivada, no se permite seleccionar las celdas protegidas; el cursor no puede entrar en un intervalo protegido." #. UqBRQ #: 06060100.xhp @@ -47872,7 +47872,7 @@ "par_id3150301\n" "help.text" msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles." -msgstr "Si una hoja está protegida, no es posible modificar ni borrar los estilos de celda." +msgstr "Si una hoja está protegida, no es posible modificar ni eliminar los estilos de celda." #. WEsxm #: 06060100.xhp @@ -47881,7 +47881,7 @@ "par_id3154656\n" "help.text" msgid "A protected sheet or cell range can no longer be modified until this protection is disabled, with the exceptions of the settings for columns and row of the Tools - Protect Sheet dialog. To disable the protection, choose the Tools - Protect Sheet command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the Remove Protection dialog opens, where you must enter the password." -msgstr "Una hoja o un rango de celdas protegidas no pueden modificarse hasta que se desactive esta protección, con las excepciones de la configuración de las columnas y la fila delHerramientas - Proteger hojacuadro de dialogo. Para desactivar la protección, elija la opciónHerramientas - Proteger hojaorden. Si no se ha establecido ninguna contraseña, la protección de la hoja se desactiva inmediatamente. Si la hoja estaba protegida con contraseña, laquitar protecciónse abre el cuadro de dialogo, donde debe introducir la contraseña." +msgstr "Con la salvedad de las opciones relativas a las columnas y filas en el cuadro de diálogo Herramientas ▸ Proteger hoja, no es posible modificar una hoja protegida o un intervalo de celdas protegido mientras no se desactive esta protección. Para anular la protección, diríjase a la orden Herramientas ▸ Proteger hoja. Si no se había configurado ninguna contraseña, la protección quedará desactivada de manera inmediata. Si la protección incluía una contraseña, el cuadro de diálogo Quitar protección le solicitará introducirla." #. scXrG #: 06060100.xhp @@ -48268,7 +48268,7 @@ "tit\n" "help.text" msgid "Freeze Rows and Columns" -msgstr "Congelar filas y columnas" +msgstr "Inmovilizar filas y columnas" #. hvdv5 #: 07090000.xhp @@ -48277,7 +48277,7 @@ "hd_id3150517\n" "help.text" msgid "Freeze Rows and Columns" -msgstr "Congelar filas y columnas" +msgstr "Inmovilizar filas y columnas" #. XjvVY #: 07090000.xhp @@ -48295,7 +48295,7 @@ "tit\n" "help.text" msgid "Freeze Cells" -msgstr "Congelar celdas" +msgstr "Inmovilizar celdas" #. U6FYG #: 07090100.xhp @@ -48313,7 +48313,7 @@ "hd_id961612313262512\n" "help.text" msgid "Freeze Cells" -msgstr "Congelar celdas" +msgstr "Inmovilizar celdas" #. sWGWB #: 07090100.xhp @@ -48322,7 +48322,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 @@ -48331,7 +48331,7 @@ "tit\n" "help.text" msgid "Define Database Range" -msgstr "Definir área de base de datos" +msgstr "Definir intervalo de base de datos" #. AgxXS #: 12010000.xhp @@ -48340,7 +48340,7 @@ "hd_id3157909\n" "help.text" msgid "Define Range" -msgstr "Definir el intervalo" +msgstr "Definir intervalo" #. 8zFH5 #: 12010000.xhp @@ -49267,7 +49267,7 @@ "par_id31621544435954\n" "help.text" msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column." -msgstr "Muestre las filas del rango de celdas en orden ascendente, basándose en los valores de las celdas de la columna actual." +msgstr "Muestra las filas del intervalo de celdas en orden ascendente, basándose en los valores de las celdas de la columna actual." #. 6Q8nn #: 12040100.xhp @@ -49285,7 +49285,7 @@ "par_id861621544431393\n" "help.text" msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column." -msgstr "Muestra las filas del rango de celdas en orden descendente, basándose en los valores de las celdas de la columna actual." +msgstr "Muestra las filas del intervalo de celdas en orden descendente, basándose en los valores de las celdas de la columna actual." #. sHhH3 #: 12040100.xhp @@ -49303,7 +49303,7 @@ "par_id341621544426925\n" "help.text" msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown." -msgstr "Muestra las 10 filas del rango de celdas que contienen los valores más grandes en las celdas de la columna actual. Si estos valores son únicos, no se verán más de 10 filas, pero si los valores no son únicos, es posible que se muestren más de 10 filas." +msgstr "Muestra las 10 filas del intervalo de celdas que contienen los valores más grandes en las celdas de la columna actual. Si estos valores son únicos, no se verán más de 10 filas, pero si los valores no son únicos, es posible que se muestren más de 10 filas." #. 4oiCy #: 12040100.xhp @@ -49357,7 +49357,7 @@ "par_id691621544414646\n" "help.text" msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected." -msgstr "Muestra sólo las filas del rango de celdas para las que el color del texto de la celda en la columna actual coincide con el color seleccionado." +msgstr "Muestra solo las filas del intervalo de celdas en las que el color del texto de la celda en la columna actual coincide con el color seleccionado." #. pdme8 #: 12040100.xhp @@ -49375,7 +49375,7 @@ "par_id491621544410605\n" "help.text" msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected." -msgstr "Muestra solo las filas del rango de celdas para las que el color de fondo de la celda en la columna actual coincide con el color seleccionado." +msgstr "Muestra solo las filas del intervalo de celdas en las que el color de fondo de la celda en la columna actual coincide con el color seleccionado." #. wCDB5 #: 12040100.xhp @@ -51436,7 +51436,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 @@ -51454,7 +51454,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 @@ -52399,7 +52399,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 @@ -52426,7 +52426,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 @@ -52903,7 +52903,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 @@ -52957,7 +52957,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 @@ -53497,7 +53497,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 @@ -54118,7 +54118,7 @@ "par_id301616845402409\n" "help.text" msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the value highlighting feature." -msgstr "Esta función ignora cualquier texto o celda vacía dentro de un rango de datos. Si sospecha que los resultados de esta función son erróneos, busque texto en los rangos de datos. Para resaltar el contenido del texto en un rango de datos, utilice la función resalto de valores." +msgstr "Esta función ignora cualquier texto o celda vacía dentro de un intervalo de datos. Si sospecha que los resultados de esta función son erróneos, busque texto en los intervalos de datos. Para resaltar el contenido del texto en un intervalo de datos, utilice la funcionalidad de resalte de valores." #. GAPGX #: common_func_workdaysintl.xhp @@ -55081,7 +55081,7 @@ "par_id101585468691583\n" "help.text" msgid "Range1 – required argument. It is a range of cells, a name of a named range, or a label of a column or a row, to which the corresponding criterion is to be applied." -msgstr "Rango 1 – argumento requerido. Es un rango de celdas, un nombre de un rango con nombre, o una etiqueta de una columna o una fila, a la que se aplicará el criterio correspondiente." +msgstr "Intervalo 1: argumento requerido. Es un intervalo de celdas, el nombre de un intervalo con nombre o la etiqueta de una columna o una fila a que se aplicará el criterio correspondiente." #. 45WHz #: ex_data_stat_func.xhp @@ -61795,7 +61795,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 @@ -61921,7 +61921,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 @@ -65476,7 +65476,7 @@ "par_id541542230672101\n" "help.text" msgid "Converts a number into a Roman numeral. The value range must be between 0 and 3999. A simplification mode can be specified in the range from 0 to 4." -msgstr "Convierte un número en un número romano. El rango de valores debe estar entre 0 y 3999. Se puede especificar un modo de simplificación en el rango de 0 a 4." +msgstr "Convierte un número en un número romano. El intervalo de valores debe estar entre 0 y 3999. Se puede especificar un modo de simplificación en el intervalo de 0 a 4." #. tRsoC #: func_roman.xhp @@ -66115,7 +66115,7 @@ "par_id931636109030406\n" "help.text" msgid "=SUM(A1:E10) calculates the sum of all cells in the A1 to E10 cell range." -msgstr "=SUMAcalcula la suma de todas las celdas en el rango de celdas A1 a E10." +msgstr "=SUMA(A1:E10) calcula la suma de todas las celdas en el intervalo de celdas A1-E10." #. 3FkJs #: func_sum.xhp @@ -68842,7 +68842,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 @@ -68878,7 +68878,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 @@ -69139,7 +69139,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 @@ -69814,7 +69814,7 @@ "par_id421589961907788\n" "help.text" msgid "Epsilon level. Valid values are in range 0 (very tight) to 3 (very loose). Epsilon is the tolerance for rounding values to zero." -msgstr "Nivel Epsilon. Los valores válidos están en el rango de 0 (muy ajustado) a 3 (muy flexible). Epsilon es la tolerancia para redondear los valores a cero." +msgstr "Nivel de épsilon. Los valores válidos se comprenden entre 0 (muy ajustado) y 3 (muy flexible). Épsilon es la tolerancia para redondear los valores a cero." #. rtCLo #: solver_options_algo.xhp @@ -70516,7 +70516,7 @@ "bm_id02001\n" "help.text" msgid "Analysis toolpack;analysis of varianceAnalysis toolpack;ANOVAanalysis of variance;Analysis toolpackANOVA;Analysis toolpackData statistics;analysis of varianceData statistics;ANOVA" -msgstr "Paquete de herramientas de análisis; análisis de varianzaPaquete de herramientas de análisis;ANOVAanálisis de varianza;Paquete de herramientas de análisisANOVA;Paquete de herramientas de análisisEstadísticas de datos; análisis de varianzaEstadísticas de datos;ANOVA" +msgstr "herramientas de análisis;análisis de varianzaherramientas de análisis;ANOVAanálisis de varianza;herramientas de análisisANOVA;herramientas de análisisestadísticas de datos;análisis de varianzaestadísticas de datos;ANOVA" #. cMChc #: statistics_anova.xhp @@ -70525,7 +70525,7 @@ "hd_id1000060\n" "help.text" msgid "Analysis of Variance (ANOVA)" -msgstr "Análisis de Varianza (ANOVA)" +msgstr "Análisis de varianza (ANOVA)" #. oSUDa #: statistics_anova.xhp @@ -70813,7 +70813,7 @@ "bm_id1464278\n" "help.text" msgid "Analysis toolpack;correlationcorrelation;Analysis toolpackData statistics;correlation" -msgstr "Paquete de herramientas de análisis; correlacióncorrelación;Paquete de herramientas de análisisEstadísticas de datos;correlación" +msgstr "herramientas de análisis;correlacióncorrelación;herramientas de análisisestadísticas de datos;correlación" #. HyBpH #: statistics_correlation.xhp @@ -70966,7 +70966,7 @@ "bm_id2964278\n" "help.text" msgid "Analysis toolpack;covariancecovariance;Analysis toolpackData statistics;covariance" -msgstr "Paquete de herramientas de análisis; covarianzacovarianza;Paquete de herramientas de análisisEstadísticas de datos; covarianza" +msgstr "herramientas de análisis;covarianzacovarianza;herramientas de análisisestadísticas de datos;covarianza" #. RS5xC #: statistics_covariance.xhp @@ -71101,7 +71101,7 @@ "bm_id01001\n" "help.text" msgid "Analysis toolpack;descriptive statisticsdescriptive statistics;Analysis toolpackData statistics;descriptive statistics" -msgstr "Paquete de herramientas de análisis; estadísticas descriptivasestadísticas descriptivas; paquete de herramientas de análisisEstadísticas de datos; estadísticas descriptivas" +msgstr "herramientas de análisis;estadísticas descriptivasestadísticas descriptivas;herramientas de análisisestadísticas de datos;estadísticas descriptivas" #. 5FQb4 #: statistics_descriptive.xhp @@ -71137,7 +71137,7 @@ "par_id1000660\n" "help.text" msgid "The Descriptive Statistics analysis tool generates a report of univariate statistics for data in the input range, providing information about the central tendency and variability of your data." -msgstr "La herramienta de análisis de estadísticas descriptivas genera un informe de estadísticas univariadas para los datos en el rango de entrada, proporcionando información sobre la tendencia central y la variabilidad de sus datos." +msgstr "La herramienta de análisis de estadísticas descriptivas genera un informe de estadísticas univariadas para los datos en el intervalo de entrada, proporcionando información sobre la tendencia central y la variabilidad de sus datos." #. 6Shyn #: statistics_descriptive.xhp @@ -71236,7 +71236,7 @@ "par_id1000920\n" "help.text" msgid "Standard Deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. JqtpV #: statistics_descriptive.xhp @@ -71335,7 +71335,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 @@ -71380,9 +71380,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 @@ -71490,7 +71488,7 @@ "par_id741556228390897\n" "help.text" msgid "Input Range is a 2 x N or N x 2 range representing an array of complex number to be transformed, where N is the length of the array. The array represents the real and imaginary parts of the data." -msgstr "El rango de entrada es un rango de 2 x N o N x 2 que representa una matriz de números complejos que se van a transformar, donde N es la longitud de la matriz. La matriz representa las partes real e imaginaria de los datos." +msgstr "El intervalo de entrada es un área de 2 × N o N × 2 que representa una matriz de números complejos que se van a transformar, donde N es la longitud de la matriz. La matriz representa las partes real e imaginaria de los datos." #. GqXZr #: statistics_fourier.xhp @@ -71760,7 +71758,7 @@ "bm_id2764278\n" "help.text" msgid "Analysis toolpack;regression analysisregression analysis;Analysis toolpackData statistics;regression analysisConfidence level;regression analysisregression analysis;linearregression analysis;powerregression analysis;logarithmic" -msgstr "Paquete de herramientas de análisis; análisis de regresiónanálisis de regresión; paquete de herramientas de análisisEstadísticas de datos; análisis de regresiónNivel de confianza; análisis de regresiónanálisis de regresión; linealanálisis de regresión; potenciaanálisis de regresión;logarítmico" +msgstr "herramientas de análisis;análisis de regresiónanálisis de regresión;herramientas de análisisestadísticas de datos;análisis de regresiónnivel de confianza;análisis de regresiónanálisis de regresión;linealanálisis de regresión;potenciaanálisis de regresión;logarítmico" #. PUyBc #: statistics_regression.xhp @@ -72012,7 +72010,7 @@ "bm_id2764278\n" "help.text" msgid "Analysis toolpack;samplingsampling;Analysis toolpackData statistics;sampling" -msgstr "Paquete de herramientas de análisis; muestreomuestreo;Paquete de herramientas de análisisEstadísticas de datos; muestreo" +msgstr "herramientas de análisis;muestreomuestreo;herramientas de análisisestadísticas de datos;muestreo" #. xpPzu #: statistics_sampling.xhp @@ -72156,7 +72154,7 @@ "par_id481623249667345\n" "help.text" msgid "Picks lines in a pace defined by Period." -msgstr "Elige líneas a un ritmo definido porperíodo" +msgstr "Elige filas a una cadencia definida por Período" #. jM46a #: statistics_sampling.xhp @@ -72174,7 +72172,7 @@ "par_id621623249692296\n" "help.text" msgid "The number of lines to skip periodically when sampling. The Period is limited to the population size." -msgstr "El número de líneas que se saltan periódicamente al muestrear. losperiodo se limita al tamaño de la población." +msgstr "La cantidad de filas que se saltan periódicamente al muestrear. ElPeríodo se limita al tamaño de la población." #. NjytZ #: statistics_sampling.xhp @@ -72210,7 +72208,7 @@ "bm_id05004\n" "help.text" msgid "Analysis toolpack;Chi-square testChi-square test;Analysis toolpackData statistics;Chi-square test" -msgstr "Paquete de herramientas de análisis; prueba de chi-cuadradoPrueba de chi-cuadrado; paquete de herramientas de análisisEstadísticas de datos; prueba de chi-cuadrado" +msgstr "herramientas de análisis; prueba de la ji al cuadradoprueba de la ji al cuadrado;herramientas de análisisestadísticas de datos;prueba de la ji al cuadrado" #. 5paJF #: statistics_test_chisqr.xhp @@ -72327,7 +72325,7 @@ "bm_id05002\n" "help.text" msgid "Analysis toolpack;F-testF-test;Analysis toolpackData statistics;F-test" -msgstr "Paquete de herramientas de análisis; prueba Fprueba F; Paquete de herramientas de análisisEstadísticas de datos; prueba F" +msgstr "herramientas de análisis;prueba Fprueba F;herramientas de análisisestadísticas de datos;prueba F" #. UTG4f #: statistics_test_f.xhp @@ -72426,7 +72424,7 @@ "par_id1003310\n" "help.text" msgid "The following table shows the F-Test for the data series above:" -msgstr "La siguiente tabla muestra losPrueba Fpara la serie de datos anterior:" +msgstr "La tabla siguiente tabla muestra la prueba F de la serie de datos anterior:" #. git3T #: statistics_test_f.xhp @@ -72516,7 +72514,7 @@ "par_id1003510\n" "help.text" msgid "P (F<=f) right-tail" -msgstr "P (F<=f) cola- derecha" +msgstr "P (F<=f) lateral derecho" #. FVAJa #: statistics_test_f.xhp @@ -72525,7 +72523,7 @@ "par_id1003530\n" "help.text" msgid "F Critical right-tail" -msgstr "F Crítico cola- derecha" +msgstr "F crítico lateral derecho" #. zBzCY #: statistics_test_f.xhp @@ -72534,7 +72532,7 @@ "par_id1003550\n" "help.text" msgid "P (F<=f) left-tail" -msgstr "P (F<=f) cola- izquierda" +msgstr "P (F<=f) lateral izquierdo" #. LA56M #: statistics_test_f.xhp @@ -72543,7 +72541,7 @@ "par_id1003570\n" "help.text" msgid "F Critical left-tail" -msgstr "F Critico cola izquierda" +msgstr "F crítico lateral izquierdo" #. 9ZNSy #: statistics_test_f.xhp @@ -72552,7 +72550,7 @@ "par_id1003590\n" "help.text" msgid "P two-tail" -msgstr "P dos colas" +msgstr "P bilateral" #. dQ4WA #: statistics_test_f.xhp @@ -72561,7 +72559,7 @@ "par_id1003610\n" "help.text" msgid "F Critical two-tail" -msgstr "F crítico dos -colas" +msgstr "F crítico bilateral" #. jMBzo #: statistics_test_t.xhp @@ -72579,7 +72577,7 @@ "bm_id05001\n" "help.text" msgid "Analysis toolpack;t-testAnalysis toolpack;paired t-testt-test;Analysis toolpackpaired t-test;Analysis toolpackData statistics;paired t-test" -msgstr "Paquete de herramientas de análisis; prueba t Paquete de herramientas de análisis; prueba t pareadaprueba t; paquete de herramientas de análisisprueba t emparejada; paquete de herramientas de análisisEstadísticas de datos; prueba t pareada" +msgstr "herramientas de análisis;prueba therramientas de análisis;prueba t pareadaprueba t;herramientas de análisisprueba t pareada;herramientas de análisisestadísticas de datos;prueba t pareada" #. GEv5d #: statistics_test_t.xhp @@ -72822,7 +72820,7 @@ "par_id1003200\n" "help.text" msgid "P (T<=t) two-tail" -msgstr "P (T<=t) cola-dos" +msgstr "P (T<=t) bilateral" #. kh5E7 #: statistics_test_t.xhp @@ -72831,7 +72829,7 @@ "par_id1003220\n" "help.text" msgid "t Critical two-tail" -msgstr "t Crítica cola-dos" +msgstr "t crítico bilateral" #. QA9fL #: statistics_test_z.xhp @@ -72849,7 +72847,7 @@ "bm_id05003\n" "help.text" msgid "Analysis toolpack;Z-testZ-test;Analysis toolpackData statistics;Z-test" -msgstr "Paquete de herramientas de análisis; prueba ZPrueba Z; paquete de herramientas de análisisEstadísticas de datos; prueba Z" +msgstr "herramientas de análisis;prueba Zprueba Z;herramientas de análisisestadísticas de datos;prueba Z" #. Z5iqi #: statistics_test_z.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-12 00:35+0000\n" +"PO-Revision-Date: 2023-03-13 17: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" @@ -4154,7 +4154,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»." #. sHgcT #: currency_format.xhp @@ -7169,7 +7169,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 @@ -8420,7 +8420,7 @@ "par_id8040406\n" "help.text" msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area." -msgstr "En el modo insertar, si mueve celdas en una misma fila (es decir, horizontalmente), después de insertarlas, todas las celdas se desplazarán a la izquierda para rellenar el rango de origen." +msgstr "En el modo de inserción, si mueve celdas de una misma fila (solo de forma horizontal), después de insertarlas, todas las celdas se desplazarán a la izquierda para rellenar el área de origen." #. LEvkD #: move_dragdrop.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/scalc.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/scalc.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/scalc.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/scalc.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-23 11:28+0000\n" +"PO-Revision-Date: 2023-03-07 10: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: 1548565117.000000\n" #. ZxQeC @@ -257,7 +257,7 @@ "hd_id241636195404363\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentarios" #. 2QmH5 #: main0103.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/schart/01.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/schart/01.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-08 10:41+0000\n" +"PO-Revision-Date: 2023-03-08 09: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: 1550207897.000000\n" #. DsZFP @@ -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 @@ -4955,7 +4955,7 @@ "par_id841665496617023\n" "help.text" msgid "Uncheck the option Show data table." -msgstr "" +msgstr "Desmarque la opción Mostrar tabla de datos." #. W8sr5 #: data_table.xhp @@ -4991,7 +4991,7 @@ "par_id571665497168086\n" "help.text" msgid "Format properties of the data table:" -msgstr "" +msgstr "Propiedades de formato de la tabla de datos:" #. 5tT7C #: data_table.xhp @@ -5027,7 +5027,7 @@ "par_id681665497198016\n" "help.text" msgid "Show or hide internal column borders." -msgstr "" +msgstr "Mostrar u ocultar los bordes de las columnas internas." #. 8ZYS2 #: data_table.xhp @@ -5045,7 +5045,7 @@ "par_id681665497198017\n" "help.text" msgid "Show or hide borders around the table." -msgstr "" +msgstr "Mostrar u ocultar los bordes alrededor de la tabla." #. YvKdx #: data_table.xhp @@ -5918,7 +5918,7 @@ "par_id0526200906040162\n" "help.text" msgid "The data series dialog for a bubble chart has an entry to define the data range for the Bubble Sizes." -msgstr "El diálogo de series de datos para un gráfico de burbuja posee una entrada para definir el rango de datos para los tamaños de Burbujas." +msgstr "El cuadro de diálogo Serie de datos de un gráfico de burbuja posee una entrada para definir el intervalo de datos para los tamaños de las burbujas." #. bPGHe #: type_column_bar.xhp @@ -6152,7 +6152,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 "Las columnas de la izquierda (o las filas superiores) del rango de datos seleccionados proporcionan los datos que son mostrados como objetos de Columnas. Las otras columnas o filas del rango de datos proporcionan los datos para las objetos de Líneas. Usted puede cambiar esta sesión en el diálogo de Serie de datos." +msgstr "Las columnas más a la izquierda (o las superiores) del intervalo de datos seleccionado proporcionan los datos que se muestran como objetos de Columnas. Las otras columnas o filas del intervalo de datos proporcionan los datos para las objetos de Filas. Puede cambiar esta asignación en el cuadro de diálogo Serie de datos." #. dMYwd #: type_column_line.xhp @@ -7619,7 +7619,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 @@ -8816,7 +8816,7 @@ "par_id9651478\n" "help.text" msgid "On this page of the Chart Wizard you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here." -msgstr "En esta página del Asistente para gráficos puede cambiar el rango de cada una de las series de datos de forma independiente, incluidas sus etiquetas. También puede cambiar el rango de las categorías. Puede cambiar en primer lugar el rango de datos en la página Rango de datos y luego borrar las series de datos que no necesite o agregar series de datos desde otras celdas." +msgstr "En esta página del Asistente para gráficos puede cambiar el intervalo de cada una de las series de datos de forma independiente, incluidas sus etiquetas. También puede cambiar el intervalo de las categorías. Puede cambiar en primer lugar el intervalo de datos en la página Intervalo de datos y luego quitar las series de datos que no necesite o añadir series de datos desde otras celdas." #. 4Gjfd #: wiz_data_series.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/sdatabase.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/sdatabase.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/sdatabase.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/sdatabase.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-15 13:51+0000\n" +"PO-Revision-Date: 2023-03-24 13: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" @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/00.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/00.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-21 09:34+0000\n" +"PO-Revision-Date: 2023-03-17 19: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" @@ -2813,7 +2813,7 @@ "hd_id551604189872115\n" "help.text" msgid "Page line-spacing (register-true)" -msgstr "" +msgstr "Conformidad de registro" #. yspD9 #: 00000005.xhp @@ -11408,7 +11408,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 @@ -12587,7 +12587,7 @@ "par_id671653364659217\n" "help.text" msgid "Right-click on a selected object - choose Anchor." -msgstr "" +msgstr "Pulse con el botón secundario del ratón en un objeto y elija Anclaje." #. nazhG #: 00040501.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-21 09:34+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -2255,7 +2255,7 @@ "par_id151513629855154\n" "help.text" msgid "Click the Remote Files button in the Start Center." -msgstr "Pulse en el botón Archivos remotos del Centro de inicio." +msgstr "Pulse en el botón Archivos remotos del Centro de bienvenida." #. HP9o5 #: 01020001.xhp @@ -2696,7 +2696,7 @@ "hd_id3152996\n" "help.text" msgid "File type" -msgstr "" +msgstr "Tipo de archivo" #. sA2Ea #: 01060002.xhp @@ -2705,7 +2705,7 @@ "hd_id3145744\n" "help.text" msgid "Save with password" -msgstr "" +msgstr "Guardar con contraseña" #. zyazT #: 01060002.xhp @@ -2714,7 +2714,7 @@ "hd_id3148539\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. 4uxaW #: 01060002.xhp @@ -3425,7 +3425,7 @@ "hd_id3149182\n" "help.text" msgid "Modified" -msgstr "" +msgstr "Modificado el" #. g5sGH #: 01100200.xhp @@ -3560,7 +3560,7 @@ "hd_id3154810\n" "help.text" msgid "Apply User Data" -msgstr "Utilizar datos de usuario" +msgstr "Aplicar datos de identidad" #. EPUeH #: 01100200.xhp @@ -51026,7 +51026,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/02.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-24 13: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" @@ -1067,7 +1067,7 @@ "par_id3149981\n" "help.text" msgid "Icon Combo Box" -msgstr "" +msgstr "Icono Cuadro combinado" #. eJywq #: 01170000.xhp @@ -3947,7 +3947,7 @@ "par_id3154610\n" "help.text" msgid "Note that the list entries entered here are only incorporated into the form if, on the Data tab under List Content Type, the option \"Value List\" is selected." -msgstr "Tenga en cuenta que las entradas de la lista escritas aquí sólo se incorporan al formulario si, en la pestaña Datos, se selecciona la opción \"Lista de valores\" como Tipo del contenido de lista." +msgstr "Tenga en cuenta que las entradas de la lista escritas aquí solamente se incorporan al formulario si, en la pestaña Datos, se selecciona la opción «Lista de valores» como Tipo de contenido de lista." #. j7Ywy #: 01170101.xhp @@ -13694,7 +13694,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 @@ -13721,7 +13721,7 @@ "hd_id3151110\n" "help.text" msgid "File type" -msgstr "Tipo" +msgstr "Tipo de archivo" #. et8Zs #: 09070400.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-27 11:24+0000\n" +"PO-Revision-Date: 2023-03-24 13: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: 1564411282.000000\n" #. hCAzG @@ -50,7 +50,7 @@ "par_id3153527\n" "help.text" msgid "Guides you through creating business and personal letters, faxes, agendas, and more." -msgstr "" +msgstr "Facilita la creación de cartas personales y comerciales, faxes, memorándums, órdenes del día, presentaciones, entre otros documentos." #. dAcHA #: 01000000.xhp @@ -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 @@ -7970,4 +7970,4 @@ "par_id3149549\n" "help.text" msgid "Opens the Templates: Address Book Assignment dialog." -msgstr "Abre el diálogo Plantilla: Asignación de libreta de direcciones." +msgstr "Abre el cuadro de diálogo Plantillas: asignación de libreta de direcciones." diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-15 13:51+0000\n" +"PO-Revision-Date: 2023-03-24 13: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" @@ -2759,7 +2759,7 @@ "par_id150820161816032923\n" "help.text" msgid "Click on the Remote Files button in the Start Center." -msgstr "Pulse en el icono Archivos remotos del Centro de inicio." +msgstr "Pulse en el icono Archivos remotos del centro de bienvenida." #. aCU44 #: cmis-remote-files-setup.xhp @@ -3209,7 +3209,7 @@ "par_id170820161605414687\n" "help.text" msgid "Click the Remote Files button the Start Center" -msgstr "Pulse en el botón Archivos remotos del Centro de inicio" +msgstr "Pulse en el botón Archivos remotos del centro de bienvenida" #. nAisF #: cmis-remote-files.xhp @@ -6566,7 +6566,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Ignorar campo (no importar)" #. LEJDn #: csv_params.xhp @@ -6575,7 +6575,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Inglés (EE. UU.)" #. wLth6 #: csv_params.xhp @@ -7448,7 +7448,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 @@ -10436,7 +10436,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." #. 72XGZ #: doc_autosave.xhp @@ -25079,7 +25079,7 @@ "par_id215247284938\n" "help.text" msgid "Using without any arguments opens the start center." -msgstr "El uso sin ningún parámetro abre el centro de inicio." +msgstr "El uso sin ningún parámetro abre el centro de bienvenida." #. WEuAN #: start_parameters.xhp @@ -26456,7 +26456,7 @@ "par_id041620170723497279\n" "help.text" msgid "Press the Templates button in the Start Center." -msgstr "Pulse en el botón Plantillas del Centro de inicio." +msgstr "Pulse en el botón Plantillas del centro de bienvenida." #. oRLxn #: template_manager.xhp @@ -26465,7 +26465,7 @@ "par_id041620170723509119\n" "help.text" msgid "Select any template type from the Templates button of the Start Center." -msgstr "Seleccione cualquier tipo de plantilla desde el botón Plantillas del Centro de inicio." +msgstr "Seleccione cualquier tipo de plantilla desde el botón Plantillas del centro de bienvenida." #. 4HkCP #: template_manager.xhp @@ -26771,7 +26771,7 @@ "par_id431607690468509\n" "help.text" msgid "Extensions Icon" -msgstr "" +msgstr "Icono Extensiones" #. mwqRi #: template_manager.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-12 00:35+0000\n" +"PO-Revision-Date: 2023-03-15 10:06+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" @@ -896,7 +896,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 @@ -2624,7 +2624,7 @@ "par_id3153727\n" "help.text" msgid "Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "Establece el componente rojo modificable en el control deslizante vertical, así como los componentes verde y azul modificables en el campo bidimensional de selección de color. Se permiten valores entre 0 y 255." #. G5BRr #: 01010501.xhp @@ -2651,7 +2651,7 @@ "par_id3153728\n" "help.text" msgid "Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "Establece el componente verde modificable en el control deslizante vertical, así como los componentes rojo y azul modificables en el campo bidimensional de selección de color. Se permiten valores entre 0 y 255." #. NauiA #: 01010501.xhp @@ -2678,7 +2678,7 @@ "par_id3153729\n" "help.text" msgid "Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "Establece el componente azul modificable en el control deslizante vertical, así como los componentes verde y rojo modificables en el campo bidimensional de selección de color. Se permiten valores entre 0 y 255." #. EHQDG #: 01010501.xhp @@ -3083,7 +3083,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 @@ -6242,7 +6242,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/smath/01.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/smath/01.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-27 11:28+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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: 1559526082.000000\n" #. QmNGE @@ -10373,7 +10373,7 @@ "par_id3179167\n" "help.text" msgid "p function, Weierstrass p" -msgstr "función p, p de Weierstrass" +msgstr "función p, p de Weierstraß" #. tMoW8 #: 03091508.xhp @@ -11570,7 +11570,7 @@ "par_id3156177\n" "help.text" msgid "Weierstrass p" -msgstr "p de Weierstrass" +msgstr "p de Weierstraß" #. Wtjtx #: 03091600.xhp @@ -11579,7 +11579,7 @@ "par_id3155435\n" "help.text" msgid "This icon inserts a Weierstrass p-function symbol. Command for the Commands window: wp" -msgstr "Este icono inserta el símbolo de una función p de Weierstrass. Orden para el cuadro Órdenes: wp" +msgstr "Este icono inserta el símbolo de una función p de Weierstraß. Orden para el cuadro Órdenes: wp" #. PurGC #: 03091600.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/smath/guide.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/smath/guide.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/smath/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/smath/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-10-22 12:14+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\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" #. vAkzZ #: brackets.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -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 @@ -27933,7 +27933,7 @@ "tit\n" "help.text" msgid "Content Control Properties" -msgstr "" +msgstr "Propiedades del control de contenido" #. CFqNk #: contentcontrol00.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-12 00:35+0000\n" +"PO-Revision-Date: 2023-03-07 10: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" @@ -3650,7 +3650,7 @@ "par_id3151133\n" "help.text" msgid "On Tools bar, click" -msgstr "" +msgstr "En la barra Herramientas, pulse en" #. CBw5G #: 18130000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/swriter/04.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/swriter/04.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/swriter/04.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/swriter/04.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-10-22 12:14+0000\n" -"Last-Translator: Daniela Rosales Espino \n" -"Language-Team: Spanish \n" +"PO-Revision-Date: 2023-03-08 09: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" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1529889107.000000\n" #. brcGC @@ -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.5.1~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-23 11:27+0000\n" +"PO-Revision-Date: 2023-03-14 15:26+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: 1566235756.000000\n" #. XAt2Y @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/swriter.po libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/swriter.po --- libreoffice-7.5.1~rc2/translations/source/es/helpcontent2/source/text/swriter.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/helpcontent2/source/text/swriter.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-20 11:43+0000\n" +"PO-Revision-Date: 2023-03-12 04: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" @@ -1067,7 +1067,7 @@ "par_id531605976347665\n" "help.text" msgid "Inserts a column before the column where the cursor is currently placed." -msgstr "" +msgstr "Inserta una columna antes de la columna donde se encuentra actualmente el cursor." #. UE3RA #: main0110.xhp @@ -1085,7 +1085,7 @@ "par_id731605976350615\n" "help.text" msgid "Inserts a column after the column where the cursor is currently placed." -msgstr "" +msgstr "Inserta una columna después de la columna donde se encuentra actualmente el cursor." #. GM6FW #: main0110.xhp @@ -1283,7 +1283,7 @@ "hd_id451605990864684\n" "help.text" msgid "Minimal Row Height" -msgstr "" +msgstr "Altura mínima de fila" #. EF7XB #: main0110.xhp @@ -2309,7 +2309,7 @@ "tit\n" "help.text" msgid "Print Preview Bar (Writer)" -msgstr "" +msgstr "Barra Previsualizar impresión (Writer)" #. fuQ93 #: main0210.xhp @@ -2336,7 +2336,7 @@ "hd_id801649977850317\n" "help.text" msgid "Jump to Specific Page" -msgstr "" +msgstr "Ir a una página específica" #. 4KMx6 #: main0210.xhp @@ -2345,7 +2345,7 @@ "par_id891649977865555\n" "help.text" msgid "To go to a specific page in the Print Preview, type the page number in the entry box, then press Enter." -msgstr "" +msgstr "Para ir a una página específica en la previsualización de impresión, escriba el número de la página en el campo de texto y, a continuación, presione Intro." #. Qijav #: main0210.xhp @@ -2390,7 +2390,7 @@ "par_id91649332206811\n" "help.text" msgid "Close Preview Icon" -msgstr "" +msgstr "Icono Cerrar previsualización" #. ZTPfH #: main0210.xhp @@ -2399,7 +2399,7 @@ "par_id661649332206811\n" "help.text" msgid "Close Preview" -msgstr "" +msgstr "Cerrar previsualización" #. WmU6L #: main0213.xhp @@ -2471,7 +2471,7 @@ "tit\n" "help.text" msgid "Frame Bar" -msgstr "Barra de marco" +msgstr "Barra Marco" #. bXUUZ #: main0215.xhp @@ -2480,7 +2480,7 @@ "hd_id3154251\n" "help.text" msgid "Frame Bar" -msgstr "Barra de marco" +msgstr "Barra Marco" #. BfA2A #: main0215.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-02-15 14:24+0000\n" +"PO-Revision-Date: 2023-03-13 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" @@ -2264,7 +2264,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes" -msgstr "Mostrar cambios" +msgstr "Mostrar control de cambios" #. Cs6vq #: CalcCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/es/sc/messages.po libreoffice-7.5.2~rc2/translations/source/es/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/sc/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-15 14:24+0000\n" +"PO-Revision-Date: 2023-03-09 11: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" @@ -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 @@ -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 @@ -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 @@ -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 "Calcula 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 @@ -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 @@ -13002,7 +13002,7 @@ #: 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 @@ -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 @@ -17807,7 +17807,7 @@ #: sc/inc/strings.hrc:246 msgctxt "STRID_CALC_STD_DEVIATION" msgid "Standard Deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. JTx7f #: sc/inc/strings.hrc:247 @@ -17946,7 +17946,7 @@ #: sc/inc/strings.hrc:270 msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION" msgid "Standard Deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. ChwWE #: sc/inc/strings.hrc:271 @@ -22945,7 +22945,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 @@ -28051,7 +28051,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 @@ -28063,7 +28063,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 @@ -32983,7 +32983,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/scaddins/messages.po libreoffice-7.5.2~rc2/translations/source/es/scaddins/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/scaddins/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/scaddins/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-14 14:36+0100\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" +"PO-Revision-Date: 2023-03-18 02: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: 1512860287.000000\n" #. i8Y7Z @@ -454,7 +454,7 @@ #: scaddins/inc/analysis.hrc:151 msgctxt "ANALYSIS_Randbetween" msgid "The largest integer that can be returned" -msgstr "" +msgstr "El entero más grande que se puede devolver" #. 8CDCk #: scaddins/inc/analysis.hrc:156 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/scp2/source/draw.po libreoffice-7.5.2~rc2/translations/source/es/scp2/source/draw.po --- libreoffice-7.5.1~rc2/translations/source/es/scp2/source/draw.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/scp2/source/draw.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2021-02-17 15:02+0000\n" +"PO-Revision-Date: 2023-03-15 14: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: 1509389753.000000\n" #. txsAG @@ -392,4 +392,4 @@ "STR_REG_VAL_PDF\n" "LngText.text" msgid "PDF (Portable Document Format)" -msgstr "" +msgstr "PDF (formato de documento portátil)" diff -Nru libreoffice-7.5.1~rc2/translations/source/es/sd/messages.po libreoffice-7.5.2~rc2/translations/source/es/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/sd/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:12+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563809077.000000\n" #. WDjkB @@ -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 @@ -3854,7 +3854,7 @@ #: sd/uiconfig/sdraw/ui/navigatorcontextmenu.ui:12 msgctxt "navigatorcontextmenu|STR_RENAME" msgid "Rename..." -msgstr "" +msgstr "Cambiar nombre…" #. V3FWt #: sd/uiconfig/sdraw/ui/notebookbar.ui:3162 @@ -6342,7 +6342,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 @@ -8381,13 +8381,13 @@ #: sd/uiconfig/simpress/ui/pmsummarypage.ui:194 msgctxt "pmsummarypage|STR_ESTIMATED_FILESIZE" msgid "Estimated new file size:" -msgstr "" +msgstr "Tamaño estimado del archivo nuevo:" #. Ubstx #: sd/uiconfig/simpress/ui/pmsummarypage.ui:250 msgctxt "pmsummarypages|STR_SUMMARY_TITLE" msgid "Choose where to apply the following changes" -msgstr "" +msgstr "Elija dónde aplicar los cambios siguientes" #. LAEo2 #: sd/uiconfig/simpress/ui/presentationdialog.ui:13 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/sfx2/messages.po libreoffice-7.5.2~rc2/translations/source/es/sfx2/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/sfx2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/sfx2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-01-09 03:14+0000\n" +"PO-Revision-Date: 2023-03-08 23: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: 1562302714.000000\n" #. bHbFE @@ -3329,7 +3329,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 @@ -3347,7 +3347,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/starmath/messages.po libreoffice-7.5.2~rc2/translations/source/es/starmath/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/starmath/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/starmath/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: 1562321435.000000\n" #. GrDhX @@ -1928,7 +1928,7 @@ #: starmath/inc/strings.hrc:271 msgctxt "RID_WP_HELP" msgid "Weierstrass p" -msgstr "p de Weierstrass" +msgstr "p de Weierstraß" #. f9sfv #: starmath/inc/strings.hrc:272 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/sw/messages.po libreoffice-7.5.2~rc2/translations/source/es/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-22 14:22+0000\n" +"PO-Revision-Date: 2023-03-18 02: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" @@ -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 @@ -68,13 +68,13 @@ #: sw/inc/AccessibilityCheckStrings.hrc:24 msgctxt "STR_AVOID_FAKE_FOOTNOTES" msgid "Avoid fake footnotes." -msgstr "Evite las notas al pie falsas." +msgstr "Evite las notas al pie simuladas." #. Ux9yR #: sw/inc/AccessibilityCheckStrings.hrc:25 msgctxt "STR_AVOID_FAKE_CAPTIONS" msgid "Avoid fake captions." -msgstr "Evite las leyendas falsas." +msgstr "Evite las leyendas simuladas." #. sg2MT #: sw/inc/AccessibilityCheckStrings.hrc:26 @@ -1394,25 +1394,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 @@ -1424,25 +1424,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 @@ -8460,13 +8460,13 @@ #: sw/inc/strings.hrc:1138 msgctxt "STR_REGISTER_ON" msgid "Page line-spacing" -msgstr "" +msgstr "Conformidad de registro" #. Cui3U #: sw/inc/strings.hrc:1139 msgctxt "STR_REGISTER_OFF" msgid "Not page line-spacing" -msgstr "" +msgstr "Sin conformidad de registro" #. 4RL9X #: sw/inc/strings.hrc:1140 @@ -9367,7 +9367,7 @@ #: sw/inc/strings.hrc:1295 msgctxt "STR_PAGES_TWO_CONJUNCTION" msgid "and" -msgstr "" +msgstr "y" #. 3DpEx #: sw/inc/strings.hrc:1296 @@ -9379,43 +9379,43 @@ #: sw/inc/strings.hrc:1297 msgctxt "STR_PAGE_COUNT_EXTENDED" msgid "Page %1 of %2 [Page %3]" -msgstr "" +msgstr "Página %1 de %2 [p. %3]" #. gqFYf #: sw/inc/strings.hrc:1298 msgctxt "STR_PAGES_COUNT" msgid "Pages %1 - %2 of %3" -msgstr "" +msgstr "Páginas %1-%2 de %3" #. BqLqv #: sw/inc/strings.hrc:1299 msgctxt "STR_PAGES_COUNT_EXTENDED" msgid "Pages %1 - %2 of %3 [Pages %4 - %5]" -msgstr "" +msgstr "Páginas %1-%2 de %3 [pp. %4-%5]" #. FjgDc #: sw/inc/strings.hrc:1300 msgctxt "STR_PAGE_COUNT_CUSTOM" msgid "Page %1 (%2) of %3" -msgstr "" +msgstr "Página %1 (%2) de %3" #. jBinK #: sw/inc/strings.hrc:1301 msgctxt "STR_PAGE_COUNT_CUSTOM_EXTENDED" msgid "Page %1 (%2) of %3 [Page %4 (%5)]" -msgstr "" +msgstr "Página %1 (%2) de %3 [p. %4 (%5)]" #. 5EAe9 #: sw/inc/strings.hrc:1302 msgctxt "STR_PAGES_COUNT_CUSTOM" msgid "Pages %1 - %2 (%3 - %4) of %5" -msgstr "" +msgstr "Páginas %1-%2 (%3-%4) de %5" #. 6pfhH #: sw/inc/strings.hrc:1303 msgctxt "STR_PAGES_COUNT_CUSTOM_EXTENDED" msgid "Pages %1 - %2 (%3 - %4) of %5 [Pages %6 - %7 (%8 - %9)]" -msgstr "" +msgstr "Páginas %1-%2 (%3-%4) de %5 [pp. %6-%7 (%8-%9)]" #. a7tDc #: sw/inc/strings.hrc:1304 @@ -10628,7 +10628,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 @@ -12146,7 +12146,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 @@ -15535,7 +15535,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 @@ -23136,7 +23136,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:287 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 @@ -23172,7 +23172,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 @@ -23202,7 +23202,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 @@ -29978,7 +29978,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.5.1~rc2/translations/source/es/swext/mediawiki/help.po libreoffice-7.5.2~rc2/translations/source/es/swext/mediawiki/help.po --- libreoffice-7.5.1~rc2/translations/source/es/swext/mediawiki/help.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/swext/mediawiki/help.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: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.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.5.1~rc2/translations/source/es/vcl/messages.po libreoffice-7.5.2~rc2/translations/source/es/vcl/messages.po --- libreoffice-7.5.1~rc2/translations/source/es/vcl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/vcl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" -"Last-Translator: Francisco.ruiz \n" -"Language-Team: Spanish \n" +"PO-Revision-Date: 2023-03-05 08: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: 1564675121.000000\n" #. k5jTM @@ -1873,6 +1873,8 @@ "You can open it read only and\n" "receive a notification if ready." msgstr "" +"Puede abrirlo en modo de solo lectura y\n" +"recibir una notificación cuando esté preparado." #. nFBTF #: vcl/uiconfig/ui/openlockedquerybox.ui:142 diff -Nru libreoffice-7.5.1~rc2/translations/source/es/wizards/source/resources.po libreoffice-7.5.2~rc2/translations/source/es/wizards/source/resources.po --- libreoffice-7.5.1~rc2/translations/source/es/wizards/source/resources.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/es/wizards/source/resources.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 14:06+0100\n" -"PO-Revision-Date: 2022-12-19 14:08+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 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 diff -Nru libreoffice-7.5.1~rc2/translations/source/eu/cui/messages.po libreoffice-7.5.2~rc2/translations/source/eu/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/eu/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/eu/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-10 10:31+0000\n" +"PO-Revision-Date: 2023-02-25 12:45+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565776659.000000\n" #. GyY9M @@ -17430,37 +17430,37 @@ #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "Sistema" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "Argia" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "Iluna" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "Sistemaren itxurari kasu egingo zaion ala modu argia edo iluna gainjarriko den adierazten du." #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "Modua:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "Itxura" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 diff -Nru libreoffice-7.5.1~rc2/translations/source/fi/basctl/messages.po libreoffice-7.5.2~rc2/translations/source/fi/basctl/messages.po --- libreoffice-7.5.1~rc2/translations/source/fi/basctl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fi/basctl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 12:04+0000\n" +"PO-Revision-Date: 2023-03-08 23:34+0000\n" "Last-Translator: Tuomas Hietala \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.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 @@ -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.5.1~rc2/translations/source/fi/cui/messages.po libreoffice-7.5.2~rc2/translations/source/fi/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/fi/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fi/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-23 13:34+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" @@ -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,19 +2249,19 @@ #: 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 @@ -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 @@ -3241,7 +3241,7 @@ #: cui/inc/tipoftheday.hrc:225 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:226 @@ -3253,7 +3253,7 @@ #: cui/inc/tipoftheday.hrc:227 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:228 @@ -3283,7 +3283,7 @@ #: cui/inc/tipoftheday.hrc:232 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:233 @@ -3295,7 +3295,7 @@ #: cui/inc/tipoftheday.hrc:234 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:235 @@ -3344,7 +3344,7 @@ #: cui/inc/tipoftheday.hrc:242 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 @@ -3452,7 +3452,7 @@ #: cui/inc/tipoftheday.hrc:259 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 @@ -3490,7 +3490,7 @@ #: cui/inc/tipoftheday.hrc:265 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:266 @@ -21816,7 +21816,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.5.1~rc2/translations/source/fi/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/fi/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/fi/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fi/extensions/messages.po 2023-03-24 16:53:38.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-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-02-03 15:34+0000\n" +"PO-Revision-Date: 2023-03-08 23:34+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" @@ -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.5.1~rc2/translations/source/fi/helpcontent2/source/text/smath/guide.po libreoffice-7.5.2~rc2/translations/source/fi/helpcontent2/source/text/smath/guide.po --- libreoffice-7.5.1~rc2/translations/source/fi/helpcontent2/source/text/smath/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fi/helpcontent2/source/text/smath/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-12 14:11+0000\n" +"PO-Revision-Date: 2023-03-09 11:58+0000\n" "Last-Translator: Tuomas Hietala \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.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.5.1~rc2/translations/source/fi/sc/messages.po libreoffice-7.5.2~rc2/translations/source/fi/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/fi/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fi/sc/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-21 15:34+0000\n" +"PO-Revision-Date: 2023-03-14 12:32+0000\n" "Last-Translator: Tuomas Hietala \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565038740.000000\n" #. kBovX @@ -18232,6 +18232,7 @@ #. KuttF #: sc/inc/strings.hrc:320 +#, 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.5.1~rc2/translations/source/fi/sfx2/messages.po libreoffice-7.5.2~rc2/translations/source/fi/sfx2/messages.po --- libreoffice-7.5.1~rc2/translations/source/fi/sfx2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fi/sfx2/messages.po 2023-03-24 16:53:38.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: 2023-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-07 08:34+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" @@ -5165,7 +5165,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 @@ -5273,7 +5273,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.5.1~rc2/translations/source/fi/sw/messages.po libreoffice-7.5.2~rc2/translations/source/fi/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/fi/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fi/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-03-08 23:34+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" @@ -9681,7 +9681,7 @@ #: sw/inc/strings.hrc:1350 msgctxt "STR_AUTOMARK_TYPE" msgid "Selection file for the alphabetical index (*.sdi)" -msgstr "Aakkostetun hakemiston (*.sdi) luontitiedosto" +msgstr "Aakkosellisen hakemiston (*.sdi) valintatiedosto" #. Rvcdk #. ----------------------------------------------------------------------- diff -Nru libreoffice-7.5.1~rc2/translations/source/fr/cui/messages.po libreoffice-7.5.2~rc2/translations/source/fr/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/fr/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fr/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-10 10:31+0000\n" +"PO-Revision-Date: 2023-03-04 13:32+0000\n" "Last-Translator: Jean-Baptiste Faure \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562576624.000000\n" #. GyY9M @@ -17430,37 +17430,37 @@ #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "Système" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "Clair" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "Sombre" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "Spécifie s'il faut suivre le mode d'apparence du système ou remplacer Sombre ou Clair." #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "Mode :" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "Apparence" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 @@ -18375,7 +18375,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:218 msgctxt "patterntabpage|label5" msgid "Foreground Color:" -msgstr "Couleur de premier plan" +msgstr "Couleur de premier plan :" #. EkYFZ #: cui/uiconfig/ui/patterntabpage.ui:242 diff -Nru libreoffice-7.5.1~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.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: 2023-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-02-07 07:36+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: sophie \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15440,7 +15440,7 @@ "par_id401621450898070\n" "help.text" msgid "The SF_Exception service is similar to the VBA Err object." -msgstr "" +msgstr "Le service SF_Exception est similaire à l'objet VBA Err." #. vpB42 #: sf_exception.xhp @@ -15449,7 +15449,7 @@ "par_id361621450908874\n" "help.text" msgid "The Number property identifies the error." -msgstr "" +msgstr "La propriété Number identifie l'erreur." #. TnWpD #: sf_exception.xhp @@ -15458,7 +15458,7 @@ "par_id861621450910254\n" "help.text" msgid "Use the Raise method to interrupt processing. The RaiseWarning method can be used to trap an anomaly without interrupting the macro execution." -msgstr "" +msgstr "Utilisez la méthode Raise pour interrompre le traitement. La méthode RaiseWarning peut être utilisée pour intercepter une anomalie sans interrompre l'exécution de la macro." #. CpxKC #: sf_exception.xhp @@ -15467,7 +15467,7 @@ "par_id621587225732733\n" "help.text" msgid "Errors and warnings raised with the Exception service are stored in memory and can be retrieved using the Console method." -msgstr "" +msgstr "Les erreurs et les avertissements générés avec le service Exception sont stockés en mémoire et peuvent être récupérés à l'aide de la méthode Console." #. ioDzp #: sf_exception.xhp @@ -15476,7 +15476,7 @@ "par_id411587141146677\n" "help.text" msgid "The Exception service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in Calc user defined functions (UDF) or during events processing." -msgstr "" +msgstr "La console de service Exception stocke les événements, les valeurs des variables et les informations sur les erreurs. Utilisez la console lorsque l'IDE de base n'est pas facilement accessible, par exemple dans les fonctions définies par l'utilisateur (UDF) de Calc ou lors du traitement d'événements." #. NrY9C #: sf_exception.xhp @@ -15485,7 +15485,7 @@ "par_id251621034725811\n" "help.text" msgid "Use the DebugPrint method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window." -msgstr "" +msgstr "Utilisez la méthode DebugPrint pour ajouter toute information pertinente à la console. Les entrées de la console peuvent être copiées dans un fichier texte ou visualisées dans une fenêtre de dialogue." #. 9AW2i #: sf_exception.xhp @@ -15494,7 +15494,7 @@ "par_id111587141158495\n" "help.text" msgid "When an error occurs, an application macro may:" -msgstr "" +msgstr "Lorsqu'une erreur se produit, une macro d'application peut :" #. hxxxr #: sf_exception.xhp @@ -15503,7 +15503,7 @@ "par_id451587141202844\n" "help.text" msgid "Report the error in the Exception console" -msgstr "" +msgstr "Signaler l'erreur dans la console Exception" #. N9X2f #: sf_exception.xhp @@ -15512,7 +15512,7 @@ "par_id751587141235313\n" "help.text" msgid "Inform the user about the error using either a standard message or a custom message" -msgstr "" +msgstr "Informer l'utilisateur de l'erreur à l'aide d'un message standard ou d'un message personnalisé" #. C3NMD #: sf_exception.xhp @@ -15521,7 +15521,7 @@ "par_id931587141260777\n" "help.text" msgid "Optionally stop its execution" -msgstr "" +msgstr "Arrêter éventuellement son exécution" #. vFJRL #: sf_exception.xhp @@ -15530,7 +15530,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 "Dans les scripts Python, le service Exception est principalement utilisé à des fins de débogage. Des méthodes telles que DebugPrint, Console et DebugDisplay sont utiles pour imprimer rapidement des messages, enregistrer des données et ouvrir la fenêtre de la console à partir d'un script Python." #. VAaLU #: sf_exception.xhp @@ -15539,7 +15539,7 @@ "par_id211621035276160\n" "help.text" msgid "Not all methods and properties are available for Python scripts since the Python language already has a comprehensive exception handling system." -msgstr "" +msgstr "Toutes les méthodes et propriétés ne sont pas disponibles pour les scripts Python car le langage Python dispose déjà d'un système complet de gestion des exceptions." #. yQzKr #: sf_exception.xhp @@ -15548,7 +15548,7 @@ "hd_id201586594659135\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "Invocation du service" #. T8o7G #: sf_exception.xhp @@ -15557,7 +15557,7 @@ "par_id161610652161795\n" "help.text" msgid "The following examples show three different approaches to call the method Raise. All other methods can be executed in a similar fashion." -msgstr "" +msgstr "Les exemples suivants montrent trois approches différentes pour appeler la méthode Raise. Toutes les autres méthodes peuvent être exécutées de la même manière." #. tGmaZ #: sf_exception.xhp @@ -15566,7 +15566,7 @@ "par_id901621036227048\n" "help.text" msgid "The code snippet below creates an instance of the Exception service, logs a message and displays the Console window." -msgstr "" +msgstr "L'extrait de code ci-dessous crée une instance du service Exception, consigne un message et affiche la fenêtre Console." #. HABsh #: sf_exception.xhp @@ -15575,7 +15575,7 @@ "hd_id651584978211886\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Propriétés" #. JDNi6 #: sf_exception.xhp @@ -15584,7 +15584,7 @@ "par_id911621036526404\n" "help.text" msgid "The properties listed below are only available for Basic scripts." -msgstr "" +msgstr "Les propriétés listées ci-dessous ne sont disponibles que pour les scripts Basic." #. s3E9G #: sf_exception.xhp @@ -15593,7 +15593,7 @@ "par_id271584978211792\n" "help.text" msgid "Name" -msgstr "" +msgstr "Nom" #. b96rE #: sf_exception.xhp @@ -15602,7 +15602,7 @@ "par_id241584978211550\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "En lecture seule" #. TkMLa #: sf_exception.xhp @@ -15611,7 +15611,7 @@ "par_id621584978211403\n" "help.text" msgid "Description" -msgstr "" +msgstr "Description" #. tJZkJ #: sf_exception.xhp @@ -15620,7 +15620,7 @@ "par_id71584978715562\n" "help.text" msgid "No" -msgstr "" +msgstr "Non" #. RyJkE #: sf_exception.xhp @@ -15629,7 +15629,7 @@ "par_id581584978715701\n" "help.text" msgid "The error message text." -msgstr "" +msgstr "Le texte du message d'erreur." #. Wcy7s #: sf_exception.xhp @@ -15638,7 +15638,7 @@ "par_id241610652688334\n" "help.text" msgid "Default value is \"\" or a string containing the Basic run-time error message." -msgstr "" +msgstr "La valeur par défaut est \"\" ou une chaîne contenant le message d'erreur d'exécution Basic." #. BT7GF #: sf_exception.xhp @@ -15647,7 +15647,7 @@ "par_id211584978211383\n" "help.text" msgid "No" -msgstr "" +msgstr "Non" #. AnFVG #: sf_exception.xhp @@ -15656,7 +15656,7 @@ "par_id691584978211774\n" "help.text" msgid "The code of the error. It can be a numeric value or text." -msgstr "" +msgstr "Le code de l'erreur. Il peut s'agir d'une valeur numérique ou de texte." #. dCADC #: sf_exception.xhp @@ -15665,7 +15665,7 @@ "par_id151610652632828\n" "help.text" msgid "Default value is 0 or the numeric value corresponding to the Basic run-time error code." -msgstr "" +msgstr "La valeur par défaut est 0 ou la valeur numérique correspondant au code d'erreur d'exécution Basic." #. uLE2Q #: sf_exception.xhp @@ -15674,7 +15674,7 @@ "par_id671584978666689\n" "help.text" msgid "No" -msgstr "" +msgstr "Non" #. G3q2n #: sf_exception.xhp @@ -15683,7 +15683,7 @@ "par_id951584978666296\n" "help.text" msgid "The location in the code where the error occurred. It can be a numeric value or text." -msgstr "" +msgstr "L'emplacement dans le code où l'erreur s'est produite. Il peut s'agir d'une valeur numérique ou de texte." #. kBXGC #: sf_exception.xhp @@ -15692,7 +15692,7 @@ "par_id681610652723345\n" "help.text" msgid "Default value is 0 or the code line number for a standard Basic run-time error." -msgstr "" +msgstr "La valeur par défaut est 0 ou le numéro de ligne de code pour une erreur d'exécution Basic" #. mnFGS #: sf_exception.xhp @@ -15701,7 +15701,7 @@ "par_id461584978880380\n" "help.text" msgid "Raising or clearing an Exception resets its properties." -msgstr "" +msgstr "Lever ou effacer une Exception réinitialise ses propriétés." #. ssXEB #: sf_exception.xhp @@ -15710,7 +15710,7 @@ "par_id881608131596153\n" "help.text" msgid "List of Methods in the Exception Service" -msgstr "" +msgstr "Liste des méthodes dans le service Exception" #. CDgEM #: sf_exception.xhp @@ -15719,7 +15719,7 @@ "par_id271579683706571\n" "help.text" msgid "Resets the current error status and clears the SF_Exception properties." -msgstr "" +msgstr "Réinitialise l'état d'erreur actuel et efface les propriétés SF_Exception." #. 7jFLi #: sf_exception.xhp @@ -15728,7 +15728,7 @@ "par_id701610654263121\n" "help.text" msgid "The following example shows how to catch a division-by-zero exception, whose error code is 11." -msgstr "" +msgstr "L'exemple suivant montre comment intercepter une exception de division par zéro, dont le code d'erreur est 11." #. JhADn #: sf_exception.xhp @@ -15737,7 +15737,7 @@ "bas_id51587215508130\n" "help.text" msgid "'If division by zero, ignore the error" -msgstr "" +msgstr "'Si division par zéro, ignorer l'erreur" #. DHZ5A #: sf_exception.xhp @@ -15746,7 +15746,7 @@ "par_id201610654368082\n" "help.text" msgid "For a complete list of Basic run-time error codes, refer to Debugging a Basic Program." -msgstr "" +msgstr "Pour une liste complète des codes d'erreur d'exécution Basic, reportez-vous à Débogage d'un programme Basic." #. efEEX #: sf_exception.xhp @@ -15755,7 +15755,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 "Affiche les messages de la console dans une boîte de dialogue modale ou non modale. Dans les deux modes, tous les messages passés émis par une méthode DebugPrint() ou résultant d'une exception sont affichés. En mode non modal, les entrées suivantes sont ajoutées automatiquement." #. KKgdp #: sf_exception.xhp @@ -15764,7 +15764,7 @@ "par_id161598718286205\n" "help.text" msgid "If the console is already open, when non-modal, it is brought to the front." -msgstr "" +msgstr "Si la console est déjà ouverte, lorsqu'elle est non modale, elle est amenée au premier plan." #. ypzYc #: sf_exception.xhp @@ -15773,7 +15773,7 @@ "par_id801598718629151\n" "help.text" msgid "A modal console can only be closed by the user. A non-modal console can either be closed by the user or upon macro termination." -msgstr "" +msgstr "Une console modale ne peut être fermée que par l'utilisateur. Une console non modale peut être fermée par l'utilisateur ou lors de l'arrêt de la macro." #. HUgnb #: sf_exception.xhp @@ -15782,7 +15782,7 @@ "par_id511598718179819\n" "help.text" msgid "modal: Determine if the console window is modal (True) or non-modal (False). Default value is True." -msgstr "" +msgstr "modal : détermine si la fenêtre de la console est modale (True) ou non modale (False). La valeur par défaut est True." #. xu6FA #: sf_exception.xhp @@ -15791,7 +15791,7 @@ "par_id641587215098903\n" "help.text" msgid "Clears the console keeping an optional number of recent messages. If the console is activated in non-modal mode, it is refreshed." -msgstr "" +msgstr "Efface la console en conservant un nombre facultatif de messages récents. Si la console est activée en mode non modal, elle est rafraîchie." #. SE7ei #: sf_exception.xhp @@ -15800,7 +15800,7 @@ "par_id351587215098527\n" "help.text" msgid "keep: The number of recent messages to be kept. Default value is 0." -msgstr "" +msgstr "keep : le nombre de messages récents à conserver. La valeur par défaut est 0." #. GLEVv #: sf_exception.xhp @@ -15809,7 +15809,7 @@ "par_id521610655023824\n" "help.text" msgid "The following example clears the console keeping the 10 most recent messages." -msgstr "" +msgstr "L'exemple suivant efface la console en conservant les 10 messages les plus récents." #. 4LD2d #: sf_exception.xhp @@ -15818,7 +15818,7 @@ "par_id281587218077400\n" "help.text" msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns True if successful." -msgstr "" +msgstr "Exporte le contenu de la console dans un fichier texte. Si le fichier existe déjà et que la console n'est pas vide, il sera écrasé sans avertissement. Renvoie True en cas de succès." #. cAusu #: sf_exception.xhp @@ -15827,7 +15827,7 @@ "par_id851587218077862\n" "help.text" msgid "filename: The name of the text file the console should be dumped into. The name is expressed according to the current FileNaming property of the SF_FileSystem service. By default, URL notation and the native operating system's format are both admitted." -msgstr "" +msgstr "filename : le nom du fichier texte dans lequel la console doit être copiée. Le nom est exprimé en fonction de la propriété FileNaming actuelle du service SF_FileSystem. Par défaut, la notation d'URL et le format du système d'exploitation natif sont tous deux admis." #. F3tVM #: sf_exception.xhp @@ -15836,7 +15836,7 @@ "par_id701621043185177\n" "help.text" msgid "Concatenates all the arguments into a single human-readable string and displays it in a MsgBox with an Information icon and an OK button." -msgstr "" +msgstr "Concatène tous les arguments en une seule chaîne lisible par l'homme et l'affiche dans une MsgBox avec une icône d'information et un bouton OK." #. KaGM6 #: sf_exception.xhp @@ -15845,7 +15845,7 @@ "par_id791621097689492\n" "help.text" msgid "The final string is also added to the Console." -msgstr "" +msgstr "La chaîne finale est également ajoutée à la console." #. QhRgF #: sf_exception.xhp @@ -15854,7 +15854,7 @@ "par_id481587218636884\n" "help.text" msgid "arg0[, arg1, ...]: Any number of arguments of any type." -msgstr "" +msgstr "arg0[, arg1, ...] : n'importe quel nombre d'arguments de n'importe quel type." #. 2qser #: sf_exception.xhp @@ -15863,7 +15863,7 @@ "par_id281587218637490\n" "help.text" msgid "Assembles all the given arguments into a single human-readable string and adds it as a new entry in the console." -msgstr "" +msgstr "Assemble tous les arguments donnés en une seule chaîne lisible par l'homme et l'ajoute en tant que nouvelle entrée dans la console." #. mUSEP #: sf_exception.xhp @@ -15872,7 +15872,7 @@ "par_id481587218637988\n" "help.text" msgid "arg0[, arg1, ...]: Any number of arguments of any type." -msgstr "" +msgstr "arg0[, arg1, ...] : n'importe quel nombre d'arguments de n'importe quel type." #. sCSES #: sf_exception.xhp @@ -15881,7 +15881,7 @@ "par_id111621624672183\n" "help.text" msgid "Displays the list of arguments in a readable form in the platform console. Arguments are separated by a TAB character (simulated by spaces)." -msgstr "" +msgstr "Affiche la liste des arguments sous une forme lisible dans la console de la plateforme. Les arguments sont séparés par un caractère TAB (simulé par des espaces)." #. ujSFu #: sf_exception.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/fr/helpcontent2/source/text/shared/01.po libreoffice-7.5.2~rc2/translations/source/fr/helpcontent2/source/text/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/fr/helpcontent2/source/text/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fr/helpcontent2/source/text/shared/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-23 11:27+0000\n" -"Last-Translator: sophie \n" -"Language-Team: French \n" +"PO-Revision-Date: 2023-03-03 11:34+0000\n" +"Last-Translator: jumbo444 \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562148554.000000\n" @@ -20805,7 +20805,7 @@ "par_id1308201617965331455818\n" "help.text" msgid "[NatNum12 YYYY=title year,D=capitalize ordinal]D\" of \"MMMM, YYYY" -msgstr "[NatNum12 AAAA=title year,J=capitalize ordinal]J\" \"MMMM, AAAA" +msgstr "[NatNum12 AAAA=title,J=capitalize ordinal]J\" \"MMMM, AAAA" #. JCU7s #: 05020301.xhp @@ -20814,7 +20814,7 @@ "par_id13082016075331121119\n" "help.text" msgid "Spell out as a date in format \"First of May, Nineteen Ninety-nine\"" -msgstr "Épeler une date au format \"Premier mai, mille neuf cent quatre-vingt-dix-neuf\"" +msgstr "Épeler une date au format \"Premier mai, Mille Neuf Cent Quatre-Vingt-Dix-Neuf\"" #. 6hJmz #: 05020301.xhp @@ -20877,7 +20877,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 "Si la valeur est en dehors des limites pour les format sélectionné, le code d'erreur suivant est affiché :" +msgstr "Si la valeur est en dehors des limites pour le format sélectionné, le code d'erreur suivant est affiché :" #. pSG47 #: 05020400.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/fur/cui/messages.po libreoffice-7.5.2~rc2/translations/source/fur/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/fur/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fur/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2021-09-05 11:21+0000\n" +"PO-Revision-Date: 2023-03-06 12: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 @@ -1742,7 +1742,7 @@ #: cui/inc/strings.hrc:321 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:322 @@ -2103,31 +2103,31 @@ #: cui/inc/strings.hrc:391 msgctxt "RID_SVXSTR_ADDITIONS_DICTIONARY" msgid "Extensions: Dictionary" -msgstr "" +msgstr "Estensions: dizionari" #. MEZpu #: cui/inc/strings.hrc:392 msgctxt "RID_SVXSTR_ADDITIONS_GALLERY" msgid "Extensions: Gallery" -msgstr "" +msgstr "Estensions: galarie" #. R8obE #: cui/inc/strings.hrc:393 msgctxt "RID_SVXSTR_ADDITIONS_ICONS" msgid "Extensions: Icons" -msgstr "" +msgstr "Estensions: iconis" #. AqGWn #: cui/inc/strings.hrc:394 msgctxt "RID_SVXSTR_ADDITIONS_PALETTES" msgid "Extensions: Color Palette" -msgstr "" +msgstr "Estensions: palete dai colôrs" #. mncuJ #: cui/inc/strings.hrc:395 msgctxt "RID_SVXSTR_ADDITIONS_TEMPLATES" msgid "Extensions: Templates" -msgstr "" +msgstr "Estensions: modei" #. KTtQE #: cui/inc/strings.hrc:397 @@ -2139,31 +2139,31 @@ #: cui/inc/strings.hrc:399 msgctxt "RID_SVXSTR_OLE_INSERT" msgid "Inserting OLE object..." -msgstr "" +msgstr "Daûr a inserî l'ogjet OLE..." #. QMiCF #: cui/inc/strings.hrc:401 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:402 msgctxt "RID_CUISTR_ZIPFAIL" msgid "Creation of ZIP file failed." -msgstr "" +msgstr "Creazion dal file ZIP falide." #. 9QSQr #: cui/inc/strings.hrc:403 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'!" #. RAA72 #: cui/inc/strings.hrc:405 msgctxt "RID_LANGUAGETOOL_LEAVE_EMPTY" msgid "Leave this field empty to use the free version" -msgstr "" +msgstr "Lasse vueit chest cjamp par doprâ la version gratuite" #. 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.5.1~rc2/translations/source/fur/dictionaries/es.po libreoffice-7.5.2~rc2/translations/source/fur/dictionaries/es.po --- libreoffice-7.5.1~rc2/translations/source/fur/dictionaries/es.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/fur/dictionaries/es.po 2023-03-24 16:53:38.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 12: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.5.1~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared.po libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,9 +4,9 @@ "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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-17 18:33+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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" @@ -22811,7 +22811,7 @@ "par_id3155764\n" "help.text" msgid "sVar =sVar & \" Label 2\"" -msgstr "sVar =sVar & \" Label 2\"" +msgstr "sVar =sVar & \" Etiqueta 2\"" #. vPMtX #: 03090400.xhp @@ -24098,7 +24098,7 @@ "par_id3149561\n" "help.text" msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the Sub call." -msgstr "Sae inmediatamente do procedemento Función. A execución do programa continúa coa declaración que segue a chamada á Función." +msgstr "Sae inmediatamente do procedemento. A execución do programa continúa coa declaración que segue a chamada a Sub." #. UFcUy #: 03090412.xhp @@ -25043,7 +25043,7 @@ "par_id3150358\n" "help.text" msgid "This function always rounds the fractional part of a number to the nearest integer." -msgstr "This function always rounds the fractional part of a number to the nearest integer." +msgstr "Esta función arredonda sempre a parte fraccional dun número para o enteiro máis próximo." #. Eowon #: 03100700.xhp @@ -25448,7 +25448,7 @@ "par_id3150486\n" "help.text" msgid "Run-time error." -msgstr "Run-time error." +msgstr "Erro en tempo de execución." #. SfQUa #: 03101000.xhp @@ -31119,7 +31119,7 @@ "par_id3153526\n" "help.text" msgid "Text: Any string expression that you want to return the rightmost characters of." -msgstr "Expresión: Calquera cadea ou expresión numérica que queiras converter." +msgstr "Texto: Calquera cadea da que se desexe devolver os caracteres máis á dereita." #. NwQkG #: 03120307.xhp @@ -32073,7 +32073,7 @@ "hd_id3154940\n" "help.text" msgid "Return value" -msgstr "Return value" +msgstr "Valor de retorno" #. DEruh #: 03120403.xhp @@ -32172,7 +32172,7 @@ "par_id3145609\n" "help.text" msgid "Text1: The string expression that you want to search." -msgstr "Expresión: Calquera cadea ou expresión numérica que queiras converter." +msgstr "Texto1: A expresión de cadea que se desexa buscar." #. iJw6x #: 03120411.xhp @@ -32181,7 +32181,7 @@ "par_id3147559\n" "help.text" msgid "Text2: The string expression that you want to search for." -msgstr "Expresión: Calquera cadea ou expresión numérica que queiras converter." +msgstr "Texto2: A expresión da cadea que se desexa buscar." #. eREDf #: 03120411.xhp @@ -32622,7 +32622,7 @@ "par_id3156214\n" "help.text" msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\"" -msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\"" +msgstr "MsgBox \"\" & lTick & \" tics\" ,0,\"A pausa durou\"" #. V5MGd #: 03130600.xhp @@ -32784,7 +32784,7 @@ "par_id3154938\n" "help.text" msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\"" -msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\"" +msgstr "MsgBox \"\" & lTick & \" ticks\" ,0,\"A pausa durou\"" #. 9oSXN #: 03130700.xhp @@ -33054,7 +33054,7 @@ "par_id3153061\n" "help.text" msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\"" -msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\"" +msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Tamaño dos píxeles\"" #. BBCjC #: 03131400.xhp @@ -33063,7 +33063,7 @@ "tit\n" "help.text" msgid "TwipsPerPixelY Function" -msgstr "Función TwipsPerPixelY " +msgstr "Función TwipsPerPixelY" #. DJkHn #: 03131400.xhp @@ -33135,7 +33135,7 @@ "par_id3154142\n" "help.text" msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\"" -msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\"" +msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Tamaño dos píxeles\"" #. hTiJw #: 03131500.xhp @@ -40614,7 +40614,7 @@ "N0036\n" "help.text" msgid "Usage:" -msgstr "Uso: " +msgstr "Uso:" #. vA2jL #: enum.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/scalc/guide.po libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/scalc/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/scalc/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-09-09 14:35+0000\n" +"PO-Revision-Date: 2023-03-10 18: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: 1548194305.000000\n" #. NXy6S @@ -77,7 +77,7 @@ "par_id3155443\n" "help.text" msgid "Automatically finding labels is a legacy feature and deactivated by default as it can produce nondeterministic behavior depending on actual document content. To turn this function on, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate and mark the Automatically find column and row labels check box." -msgstr "" +msgstr "Atopar etiquetas automaticamente é un recurso herdado e está desactivado por omisión, pois pode producir un comportamento non determinístico dependendo do contido real do documento. Para activar esta función, escolla %PRODUCTNAME - PreferenciasFerramentas - Opcións - Calc do %PRODUCTNAME - Calcular e marque a opción Atopar automaticamente etiquetas das columnas e das filas." #. Q9Nee #: address_auto.xhp @@ -86,7 +86,7 @@ "par_id3155444\n" "help.text" msgid "Using defined labels instead is always possible and behaves similar but in a defined way." -msgstr "" +msgstr "No canto diso, sempre é posíbel empregar etiquetas definidas e o comportamento é semellante mais de maneira definida." #. ZuesG #: address_auto.xhp @@ -95,7 +95,7 @@ "par_id3149210\n" "help.text" msgid "If you enter a label name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must double it, for example, 'Harry''s Bar'." -msgstr "" +msgstr "Se vostede introduce un nome de etiqueta na fórmula, arrodee o nome de aspas simples ('). Se un nome ten unha aspa simple, haino de duplicar, por rexemplo, 'O'Cuberto'." #. EXFye #: auto_off.xhp @@ -1886,7 +1886,7 @@ "par_id2011780\n" "help.text" msgid "Select the area where you want to input values. Now you can start to input values from the cursor position in the selected area. Press the Tab key to advance to the next cell or Shift + Tab to move backward. At the edges of the selected area the tab key jumps inside the selected area. You will not leave the selected area." -msgstr "" +msgstr "Seleccione a área na que desexe introducir valores. Pode comezar a introducir valores na área seleccionada desde a posición do cursor. Prema na tecla Tab para avanzar para a cela seguinte ou Maiús + Tab para recuar. Nos bordos da área seleccionada, a tecla de tabulación salta para dentro da área seleccionada. Non sae da área seleccionada." #. HbCtq #: cell_enter.xhp @@ -1904,7 +1904,7 @@ "par_id3232520\n" "help.text" msgid "Select the area from B3 to E7. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area." -msgstr "" +msgstr "Seleccione a área de B3 a E7. Agora B3 agarda que introduza algo. Prema Tab para avanzar para a cela seguinte dentro da área seleccionada." #. pbEDF #: cell_enter.xhp @@ -2075,7 +2075,7 @@ "par_idN106C0\n" "help.text" msgid "To protect the cells from being changed, viewed or printed according to your settings in the Format - Cells dialog, choose Tools - Protect Sheet." -msgstr "" +msgstr "Para evitar que as celas sexan cambiadas, vistas ou impresas conforme se configurou na caixa de diálogo Formatar - Celas, escolla Ferramentas - Protexer folla." #. doYSo #: cell_protect.xhp @@ -2291,7 +2291,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 @@ -2606,7 +2606,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 @@ -2624,7 +2624,7 @@ "hd_id3150441\n" "help.text" msgid "Referencing URLs" -msgstr "" +msgstr "Referenciar URL" #. VHDGU #: cellreferences_url.xhp @@ -2651,7 +2651,7 @@ "par_id3145384\n" "help.text" msgid "Choose Sheet - External Links. The External Data dialog appears." -msgstr "" +msgstr "Escolla Folla - Ligazón externos. Aparece a caixa de diálogo Datos externos." #. EQzxX #: cellreferences_url.xhp @@ -2678,7 +2678,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 @@ -2687,7 +2687,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 @@ -2696,7 +2696,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." #. tapEk #: cellreferences_url.xhp @@ -2705,7 +2705,7 @@ "par_id3159204\n" "help.text" msgid "Under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General you can choose to have the update, when opened, automatically carried out either always, upon request or never. The update can be started manually in the dialog under Edit - Links." -msgstr "" +msgstr "En %PRODUCTNAME - PreferenciasFerramentas - Opcións - Calc do %PRODUCTNAME - Xeral pódese escoller que a actualización se produza automaticamente ao abrir sempre, ao solicitalo ou nunca. É posíbel iniciar a actualización manualmente na caixa de diálogo de Editar- Ligazóns." #. 4DFzJ #: cellstyle_by_formula.xhp @@ -2714,7 +2714,7 @@ "tit\n" "help.text" msgid "Assigning Formats by Formula" -msgstr "" +msgstr "Asignar formatos por fórmula" #. ewC9e #: cellstyle_by_formula.xhp @@ -2723,7 +2723,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" #. x3HG2 #: cellstyle_by_formula.xhp @@ -2732,7 +2732,7 @@ "hd_id3145673\n" "help.text" msgid "Assigning Formats by Formula" -msgstr "" +msgstr "Asignar formatos por fórmula" #. EzSnh #: cellstyle_by_formula.xhp @@ -2741,7 +2741,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 @@ -2750,7 +2750,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 @@ -2759,7 +2759,7 @@ "par_id3149456\n" "help.text" msgid "Select all the desired cells." -msgstr "" +msgstr "Seleccione todas as celas desexadas." #. FyUDd #: cellstyle_by_formula.xhp @@ -2768,7 +2768,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 @@ -2777,7 +2777,7 @@ "par_id3150767\n" "help.text" msgid "For the Find term, enter: .*" -msgstr "" +msgstr "No termo Atopar, introduza: .*" #. EN8wF #: cellstyle_by_formula.xhp @@ -2786,7 +2786,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 @@ -2795,7 +2795,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 @@ -2804,7 +2804,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." #. iF62Y #: cellstyle_by_formula.xhp @@ -2813,7 +2813,7 @@ "par_id3149262\n" "help.text" msgid "Mark the fields Regular expressions and Current selection only. Click Find All." -msgstr "" +msgstr "Marque os campos Expresións regulares e Só selección actual. Prema en Atopar todo." #. A3CBV #: cellstyle_by_formula.xhp @@ -2822,7 +2822,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 @@ -2831,7 +2831,7 @@ "par_id3147127\n" "help.text" msgid "Click Replace all." -msgstr "" +msgstr "Prema en Substituír todo." #. smBjq #: cellstyle_conditional.xhp @@ -2840,7 +2840,7 @@ "tit\n" "help.text" msgid "Applying Conditional Formatting" -msgstr "" +msgstr "Aplicar formato condicional" #. 3TV3y #: cellstyle_conditional.xhp @@ -2849,7 +2849,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" #. WX8sY #: cellstyle_conditional.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/sdatabase.po libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/sdatabase.po --- libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/sdatabase.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/sdatabase.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-09-09 14:36+0000\n" -"Last-Translator: Xosé \n" -"Language-Team: Galician \n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" +"Last-Translator: Parodper \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" #. ugSgG #: 02000000.xhp @@ -2164,7 +2164,7 @@ "par_id3150572\n" "help.text" msgid "Outer Join Escape Sequence: {oj outer-join}" -msgstr "" +msgstr "Secuencia de escape do Outer Join: {oj outer-join}" #. mWG9p #: 02010100.xhp @@ -2290,7 +2290,7 @@ "par_id3149523\n" "help.text" msgid "To query Yes/No fields, use the following syntax for dBASE tables:" -msgstr "Para consultar en campos Si/Non empregue a sintaxe seguinte para táboas de dBASE:" +msgstr "Para consultar campos de Si/Non empregue a sintaxe seguinte para táboas de dBASE:" #. A4Uh7 #: 02010100.xhp @@ -2326,7 +2326,7 @@ "par_id3156092\n" "help.text" msgid "Yes" -msgstr "Sí" +msgstr "Si" #. p9WTn #: 02010100.xhp @@ -2344,7 +2344,7 @@ "par_id3151265\n" "help.text" msgid "=1 returns all records where the Yes/No field has the status \"Yes\" or \"On\" (selected in black)," -msgstr "=1 devolve os rexistros nos que o campo Si/Non ten o estado «Si» ou «Activado» (seleccionados en negro)," +msgstr "=1 devolve todos os rexistros nos que o campo Si/Non ten o estado de «Si» ou «Activado» (seleccionado en negro)," #. 3P4ZB #: 02010100.xhp @@ -2371,7 +2371,7 @@ "par_id3155331\n" "help.text" msgid "=0 returns all records for which the Yes/No field has the status \"No\" or \"Off\" (no selection)." -msgstr "=0 devolve os rexistros nos que o campo Si/Non ten o estado «Non» ou «Desactivado» (sen selección)." +msgstr "=0 devolve todos os rexistros nos que o campo de Si/Non ten o estado «Non» ou «Desactivado» (sen selección)." #. 9KXzK #: 02010100.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/shared/01.po libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/shared/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-12 13:30+0000\n" -"Last-Translator: serval2412 \n" -"Language-Team: Galician \n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" +"Last-Translator: Xosé \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: 1565277872.000000\n" #. 3u8hR @@ -10166,7 +10166,7 @@ "tit\n" "help.text" msgid "Text Format (Search)" -msgstr "Text Format (Search)" +msgstr "Formato de texto (Buscar)" #. EoG9A #: 02100300.xhp @@ -10175,7 +10175,7 @@ "hd_id3154840\n" "help.text" msgid "Text Format (Search)" -msgstr "Text Format (Search)" +msgstr "Formato de texto (Buscar)" #. GjncJ #: 02100300.xhp @@ -26258,7 +26258,7 @@ "bm_id3150756\n" "help.text" msgid "characters;underliningunderlining;characters" -msgstr "characters;underliningunderlining;characters" +msgstr "caracteres;subliñadosubliñado;caracteres" #. gjiBs #: 05110300.xhp @@ -37958,7 +37958,7 @@ "par_id3146137\n" "help.text" msgid "AutoCorrect" -msgstr "AutoCorrect" +msgstr "Corrección automática" #. AdAHF #: 06040100.xhp @@ -41828,7 +41828,7 @@ "par_idN1057F\n" "help.text" msgid "%PRODUCTNAME Basic" -msgstr "%PRODUCTNAME Basic" +msgstr "Basic do %PRODUCTNAME" #. tCkr3 #: 06130200.xhp @@ -43997,7 +43997,7 @@ "par_id3152425\n" "help.text" msgid "Extensible Markup Language" -msgstr "Extensible Markup Language" +msgstr "Linguaxe de Marcas Extensíbel (Extensible Markup Language)" #. tK4YF #: 06150000.xhp @@ -44015,7 +44015,7 @@ "par_id3145071\n" "help.text" msgid "Extensible Stylesheet Language" -msgstr "Extensible Stylesheet Language" +msgstr "Linguaxe de folla de estilos extensíbel (Extensible Stylesheet Language)" #. dqnWY #: 06150000.xhp @@ -44816,7 +44816,7 @@ "bm_id3155757\n" "help.text" msgid "converting;Hangul/HanjaHangul/Hanja" -msgstr "converting;Hangul/HanjaHangul/Hanja" +msgstr "converter;Hangul/HanjaHangul/Hanja" #. UWHfh #: 06200000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/shared/guide.po libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/shared/guide.po --- libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/shared/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/shared/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2022-09-09 14:36+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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: 1563724207.000000\n" #. iharT @@ -20390,7 +20390,7 @@ "par_id3147620\n" "help.text" msgid "$[officename] Writer" -msgstr "$[officename] Writer" +msgstr "Writer do $[officename]" #. CHeZC #: ms_user.xhp @@ -20408,7 +20408,7 @@ "par_id3149580\n" "help.text" msgid "$[officename] Calc" -msgstr "$[officename] Calc" +msgstr "Calc do $[officename]" #. NMiBM #: ms_user.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.5.1~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,9 +4,9 @@ "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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-17 18:33+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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" @@ -140,7 +140,7 @@ "hd_id3153188\n" "help.text" msgid "%PRODUCTNAME Writer" -msgstr "%PRODUCTNAME Writer" +msgstr "Writer do %PRODUCTNAME" #. vNkTY #: 01000000.xhp @@ -149,7 +149,7 @@ "hd_id3150104\n" "help.text" msgid "%PRODUCTNAME Writer/Web" -msgstr "%PRODUCTNAME Writer/Web" +msgstr "Writer/Web do %PRODUCTNAME" #. FCjgZ #: 01000000.xhp @@ -158,7 +158,7 @@ "hd_id3154918\n" "help.text" msgid "%PRODUCTNAME Calc" -msgstr "%PRODUCTNAME Calc" +msgstr "Calc do %PRODUCTNAME" #. dQVTm #: 01000000.xhp @@ -167,7 +167,7 @@ "hd_id3153142\n" "help.text" msgid "%PRODUCTNAME Impress" -msgstr "%PRODUCTNAME Impress" +msgstr "Impress do %PRODUCTNAME" #. e8D4o #: 01000000.xhp @@ -176,7 +176,7 @@ "hd_id3147434\n" "help.text" msgid "%PRODUCTNAME Draw" -msgstr "%PRODUCTNAME Draw" +msgstr "Draw do %PRODUCTNAME" #. P5AqS #: 01000000.xhp @@ -185,7 +185,7 @@ "hd_id3154732\n" "help.text" msgid "%PRODUCTNAME Math" -msgstr "%PRODUCTNAME Math" +msgstr "Math do %PRODUCTNAME" #. Cur9t #: 01000000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:44+0100\n" -"PO-Revision-Date: 2022-12-02 14:42+0000\n" +"PO-Revision-Date: 2023-03-08 23: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: 1566398018.000000\n" #. W5ukN @@ -28536,7 +28536,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.5.1~rc2/translations/source/gl/sc/messages.po libreoffice-7.5.2~rc2/translations/source/gl/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/gl/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gl/sc/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-01 09:33+0000\n" +"PO-Revision-Date: 2023-03-10 12:33+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: 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 diff -Nru libreoffice-7.5.1~rc2/translations/source/gl/svtools/messages.po libreoffice-7.5.2~rc2/translations/source/gl/svtools/messages.po --- libreoffice-7.5.1~rc2/translations/source/gl/svtools/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gl/svtools/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-12 12:04+0000\n" +"PO-Revision-Date: 2023-03-23 13: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: 1559330420.000000\n" #. fLdeV @@ -903,13 +903,13 @@ #: include/svtools/strings.hrc:198 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:199 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:200 diff -Nru libreoffice-7.5.1~rc2/translations/source/gl/sw/messages.po libreoffice-7.5.2~rc2/translations/source/gl/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/gl/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gl/sw/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-12 12:04+0000\n" +"PO-Revision-Date: 2023-03-08 23: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: 1562578065.000000\n" #. v3oJv @@ -12386,7 +12386,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 @@ -12452,7 +12452,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 @@ -28922,7 +28922,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.5.1~rc2/translations/source/gug/helpcontent2/source/text/sbasic/guide.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/sbasic/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-23 11:28+0000\n" +"PO-Revision-Date: 2023-03-22 12: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: 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.5.1~rc2/translations/source/gug/helpcontent2/source/text/sbasic/python.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/sbasic/python.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/python.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-27 11:24+0000\n" +"PO-Revision-Date: 2023-03-02 08: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: 1565287211.000000\n" #. naSFZ @@ -743,7 +743,7 @@ "N0578\n" "help.text" msgid "Console.log(\"INFO\", \"Document events are being logged\", True)" -msgstr "" +msgstr "Console.log(\"INFO\", \"Se están registrando los eventos del documento\", True)" #. jnyCD #: python_document_events.xhp @@ -752,7 +752,7 @@ "N0580\n" "help.text" msgid "def sleep(self, *args): # OnUnload at the latest (optional)" -msgstr "" +msgstr "def sleep(self, *args): # OnUnload hasta el final (opcional)" #. QiSAD #: python_document_events.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.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: 2023-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-22 12: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" @@ -3220,7 +3220,7 @@ "par_id541619006255653\n" "help.text" msgid "StarDesktop object represents %PRODUCTNAME Start Center." -msgstr "El objeto StarDesktop representa el centro de inicio de %PRODUCTNAME." +msgstr "El objeto StarDesktop representa el centro de bienvenida de %PRODUCTNAME." #. vXq8C #: sf_basic.xhp @@ -9898,7 +9898,7 @@ "par_id891600788076190\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. 5FdAQ #: sf_datasheet.xhp @@ -9970,7 +9970,7 @@ "par_id21600788076758\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. faBy9 #: sf_datasheet.xhp @@ -10015,7 +10015,7 @@ "par_id531600789141795\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. TSNA5 #: sf_datasheet.xhp @@ -21202,7 +21202,7 @@ "par_id621623370871360\n" "help.text" msgid "Note that the previous example opens %PRODUCTNAME start center. If you want to open a specific component, for instance Writer, you can add the --writer flag to the command, as follows." -msgstr "Observe que el ejemplo anterior abre el centro de inicio de %PRODUCTNAME. Si quiere abrir un componente en concreto, como por ejemplo Writer, puede añadir la opción --writer a la orden, como se ejemplifica a continuación:" +msgstr "Observe que el ejemplo anterior abre el centro de bienvenida de %PRODUCTNAME. Si quiere abrir un componente en concreto, como por ejemplo Writer, puede añadir la opción --writer a la orden, como se ejemplifica a continuación:" #. cVRuV #: sf_intro.xhp @@ -21751,7 +21751,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 @@ -31597,7 +31597,7 @@ "par_id271656446258396\n" "help.text" msgid "Read the instructions in AssertLike for more information on the assumptions of this method." -msgstr "" +msgstr "Lea las instrucciones sobre AssertLike para obtener más información sobre los supuestos de este método." #. C9GJn #: sf_unittest.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-21 09:34+0000\n" +"PO-Revision-Date: 2023-03-07 10: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" @@ -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 @@ -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ático en forma de entero Long (largo) que consiste de componentes rojo, verde y azul, según la fórmula de colores de VBA." #. 2XAYm #: 03010306.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.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-12-08 19:46+0100\n" -"PO-Revision-Date: 2023-02-21 09:33+0000\n" +"PO-Revision-Date: 2023-03-24 13: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" @@ -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 @@ -5624,7 +5624,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 @@ -5696,7 +5696,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 @@ -14147,7 +14147,7 @@ "par_id3152083\n" "help.text" msgid "SumRange is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed." -msgstr "IntervaloDeSuma es el área a partir de la cual se suman los valores. Si este parámetro no se ha indicado, se suman los valores de Intervalo." +msgstr "Intervalo de suma es el intervalo a partir del cual se suman los valores. Si este parámetro no se ha indicado, se suman los valores de Intervalo." #. iGKyo #: 04060106.xhp @@ -14156,7 +14156,7 @@ "par_id8347422\n" "help.text" msgid "SUMIF supports the reference concatenation operator (~) only in the Range parameter, and only if the optional SumRange parameter is not given." -msgstr "" +msgstr "SUMAR.SI admite el operador de concatenación de referencia (~) solo en el parámetro Intervalo, y solo si no se proporciona el parámetro opcional Intervalo de suma." #. uazzL #: 04060106.xhp @@ -17045,7 +17045,7 @@ "par_id3158204\n" "help.text" msgid "E3 and F3: The standard error of the slope value." -msgstr "E3 y F3: El error estándar del valor de la pendiente." +msgstr "E3 y F3: el error estándar del valor de la pendiente." #. NAdrZ #: 04060107.xhp @@ -17099,7 +17099,7 @@ "par_id3145915\n" "help.text" msgid "F5: The degrees of freedom from the variance analysis." -msgstr "F5: Los grados de libertad del análisis de varianza." +msgstr "F5: los grados de libertad del análisis de varianza." #. jx7yp #: 04060107.xhp @@ -34325,7 +34325,7 @@ "par_id2952981\n" "help.text" msgid "Calculates the values of the left tail of the F distribution." -msgstr "Calcula los valores del caudal izquierdo de la distribución F." +msgstr "Calcula los valores del lateral izquierdo de la distribución F." #. kNsgP #: 04060182.xhp @@ -35081,7 +35081,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 @@ -35198,7 +35198,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." #. nAPgU #: 04060182.xhp @@ -35270,7 +35270,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 @@ -39149,7 +39149,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 @@ -39167,7 +39167,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 "Realiza una estimación de la desviación típica a partir de una muestra." #. 2b5hp #: 04060185.xhp @@ -39176,7 +39176,7 @@ "par_id3149946\n" "help.text" msgid "STDEV()" -msgstr "DESVIACIÓN ESTÁNDAR " +msgstr "DESVEST()" #. H3V9F #: 04060185.xhp @@ -39194,7 +39194,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 @@ -39221,7 +39221,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 @@ -39275,7 +39275,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 @@ -39284,7 +39284,7 @@ "par_id3154392\n" "help.text" msgid "STDEVP()" -msgstr "DESVIACIÓN ESTÁNDAR P" +msgstr "DESVESTP()" #. ADXhB #: 04060185.xhp @@ -39374,7 +39374,7 @@ "par_id2854392\n" "help.text" msgid "STDEV.S()" -msgstr "DESVIACIÓN ESTÁNDAR.S" +msgstr "DESVEST.M()" #. fPUck #: 04060185.xhp @@ -39392,7 +39392,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 @@ -39419,7 +39419,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 @@ -39977,7 +39977,7 @@ "par_id3154070\n" "help.text" msgid "Number is the probability associated with the two-tailed t-distribution." -msgstr "Número es la probabilidad asociada con la distribución t de dos colas." +msgstr "Número es la probabilidad asociada con la distribución t bilateral." #. upYXw #: 04060185.xhp @@ -42767,7 +42767,7 @@ "par_id3147397\n" "help.text" msgid "Select the table or the data range that you want to insert. If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and OK button will remain inactive" -msgstr "Seleccione la tabla o el rango de datos que desea introducir. Si el documento de Calc o Exel seleccionado no contiene ningún rango con nombre, no se puede insertar los datos de la hoja de cálculo y OKpermanecerá inactivo." +msgstr "Seleccione la tabla o el intervalo de datos que quiere insertar. Si el documento de Calc o Excel seleccionado no contiene ningún intervalo con nombre, no es posible insertar los datos de la hoja de cálculo y el botón Aceptar permanece inactivo." #. PVMSv #: 04090000.xhp @@ -47735,7 +47735,7 @@ "par_id661619430257262\n" "help.text" msgid "Select protected cells: mark this checkbox to allow you to select protected cells. When the checkbox is unmarked, you cannot select protected cells, the cursor cannot enter in a protected range." -msgstr "Seleccione las celdas protegidasmarque esta casilla para poder seleccionar las celdas protegidas. Cuando la casilla no está marcada, no puede seleccionar celdas protegidas, el cursor no puede entrar en un rango protegido." +msgstr "Seleccionar celdas protegidas: active esta casilla para poder seleccionar las celdas protegidas. Cuando la casilla está desactivada, no se permite seleccionar las celdas protegidas; el cursor no puede entrar en un intervalo protegido." #. UqBRQ #: 06060100.xhp @@ -47872,7 +47872,7 @@ "par_id3150301\n" "help.text" msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles." -msgstr "Si una hoja está protegida, no es posible modificar ni borrar los estilos de celda." +msgstr "Si una hoja está protegida, no es posible modificar ni eliminar los estilos de celda." #. WEsxm #: 06060100.xhp @@ -47881,7 +47881,7 @@ "par_id3154656\n" "help.text" msgid "A protected sheet or cell range can no longer be modified until this protection is disabled, with the exceptions of the settings for columns and row of the Tools - Protect Sheet dialog. To disable the protection, choose the Tools - Protect Sheet command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the Remove Protection dialog opens, where you must enter the password." -msgstr "Una hoja o un rango de celdas protegidas no pueden modificarse hasta que se desactive esta protección, con las excepciones de la configuración de las columnas y la fila delHerramientas - Proteger hojacuadro de dialogo. Para desactivar la protección, elija la opciónHerramientas - Proteger hojaorden. Si no se ha establecido ninguna contraseña, la protección de la hoja se desactiva inmediatamente. Si la hoja estaba protegida con contraseña, laquitar protecciónse abre el cuadro de dialogo, donde debe introducir la contraseña." +msgstr "Con la salvedad de las opciones relativas a las columnas y filas en el cuadro de diálogo Herramientas ▸ Proteger hoja, no es posible modificar una hoja protegida o un intervalo de celdas protegido mientras no se desactive esta protección. Para anular la protección, diríjase a la orden Herramientas ▸ Proteger hoja. Si no se había configurado ninguna contraseña, la protección quedará desactivada de manera inmediata. Si la protección incluía una contraseña, el cuadro de diálogo Quitar protección le solicitará introducirla." #. scXrG #: 06060100.xhp @@ -48268,7 +48268,7 @@ "tit\n" "help.text" msgid "Freeze Rows and Columns" -msgstr "Congelar filas y columnas" +msgstr "Inmovilizar filas y columnas" #. hvdv5 #: 07090000.xhp @@ -48277,7 +48277,7 @@ "hd_id3150517\n" "help.text" msgid "Freeze Rows and Columns" -msgstr "Congelar filas y columnas" +msgstr "Inmovilizar filas y columnas" #. XjvVY #: 07090000.xhp @@ -48295,7 +48295,7 @@ "tit\n" "help.text" msgid "Freeze Cells" -msgstr "Congelar celdas" +msgstr "Inmovilizar celdas" #. U6FYG #: 07090100.xhp @@ -48313,7 +48313,7 @@ "hd_id961612313262512\n" "help.text" msgid "Freeze Cells" -msgstr "Congelar celdas" +msgstr "Inmovilizar celdas" #. sWGWB #: 07090100.xhp @@ -48322,7 +48322,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 @@ -48331,7 +48331,7 @@ "tit\n" "help.text" msgid "Define Database Range" -msgstr "Definir área de base de datos" +msgstr "Definir intervalo de base de datos" #. AgxXS #: 12010000.xhp @@ -48340,7 +48340,7 @@ "hd_id3157909\n" "help.text" msgid "Define Range" -msgstr "Definir el intervalo" +msgstr "Definir intervalo" #. 8zFH5 #: 12010000.xhp @@ -49267,7 +49267,7 @@ "par_id31621544435954\n" "help.text" msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column." -msgstr "Muestre las filas del rango de celdas en orden ascendente, basándose en los valores de las celdas de la columna actual." +msgstr "Muestra las filas del intervalo de celdas en orden ascendente, basándose en los valores de las celdas de la columna actual." #. 6Q8nn #: 12040100.xhp @@ -49285,7 +49285,7 @@ "par_id861621544431393\n" "help.text" msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column." -msgstr "Muestra las filas del rango de celdas en orden descendente, basándose en los valores de las celdas de la columna actual." +msgstr "Muestra las filas del intervalo de celdas en orden descendente, basándose en los valores de las celdas de la columna actual." #. sHhH3 #: 12040100.xhp @@ -49303,7 +49303,7 @@ "par_id341621544426925\n" "help.text" msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown." -msgstr "Muestra las 10 filas del rango de celdas que contienen los valores más grandes en las celdas de la columna actual. Si estos valores son únicos, no se verán más de 10 filas, pero si los valores no son únicos, es posible que se muestren más de 10 filas." +msgstr "Muestra las 10 filas del intervalo de celdas que contienen los valores más grandes en las celdas de la columna actual. Si estos valores son únicos, no se verán más de 10 filas, pero si los valores no son únicos, es posible que se muestren más de 10 filas." #. 4oiCy #: 12040100.xhp @@ -49357,7 +49357,7 @@ "par_id691621544414646\n" "help.text" msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected." -msgstr "Muestra sólo las filas del rango de celdas para las que el color del texto de la celda en la columna actual coincide con el color seleccionado." +msgstr "Muestra solo las filas del intervalo de celdas en las que el color del texto de la celda en la columna actual coincide con el color seleccionado." #. pdme8 #: 12040100.xhp @@ -49375,7 +49375,7 @@ "par_id491621544410605\n" "help.text" msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected." -msgstr "Muestra solo las filas del rango de celdas para las que el color de fondo de la celda en la columna actual coincide con el color seleccionado." +msgstr "Muestra solo las filas del intervalo de celdas en las que el color de fondo de la celda en la columna actual coincide con el color seleccionado." #. wCDB5 #: 12040100.xhp @@ -51436,7 +51436,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 @@ -51454,7 +51454,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 @@ -52399,7 +52399,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 @@ -52426,7 +52426,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 @@ -52903,7 +52903,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 @@ -52957,7 +52957,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 @@ -53497,7 +53497,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 @@ -54118,7 +54118,7 @@ "par_id301616845402409\n" "help.text" msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the value highlighting feature." -msgstr "Esta función ignora cualquier texto o celda vacía dentro de un rango de datos. Si sospecha que los resultados de esta función son erróneos, busque texto en los rangos de datos. Para resaltar el contenido del texto en un rango de datos, utilice la función resalto de valores." +msgstr "Esta función ignora cualquier texto o celda vacía dentro de un intervalo de datos. Si sospecha que los resultados de esta función son erróneos, busque texto en los intervalos de datos. Para resaltar el contenido del texto en un intervalo de datos, utilice la funcionalidad de resalte de valores." #. GAPGX #: common_func_workdaysintl.xhp @@ -55081,7 +55081,7 @@ "par_id101585468691583\n" "help.text" msgid "Range1 – required argument. It is a range of cells, a name of a named range, or a label of a column or a row, to which the corresponding criterion is to be applied." -msgstr "Rango 1 – argumento requerido. Es un rango de celdas, un nombre de un rango con nombre, o una etiqueta de una columna o una fila, a la que se aplicará el criterio correspondiente." +msgstr "Intervalo 1: argumento requerido. Es un intervalo de celdas, el nombre de un intervalo con nombre o la etiqueta de una columna o una fila a que se aplicará el criterio correspondiente." #. 45WHz #: ex_data_stat_func.xhp @@ -61795,7 +61795,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 @@ -61921,7 +61921,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 @@ -65476,7 +65476,7 @@ "par_id541542230672101\n" "help.text" msgid "Converts a number into a Roman numeral. The value range must be between 0 and 3999. A simplification mode can be specified in the range from 0 to 4." -msgstr "Convierte un número en un número romano. El rango de valores debe estar entre 0 y 3999. Se puede especificar un modo de simplificación en el rango de 0 a 4." +msgstr "Convierte un número en un número romano. El intervalo de valores debe estar entre 0 y 3999. Se puede especificar un modo de simplificación en el intervalo de 0 a 4." #. tRsoC #: func_roman.xhp @@ -66115,7 +66115,7 @@ "par_id931636109030406\n" "help.text" msgid "=SUM(A1:E10) calculates the sum of all cells in the A1 to E10 cell range." -msgstr "=SUMAcalcula la suma de todas las celdas en el rango de celdas A1 a E10." +msgstr "=SUMA(A1:E10) calcula la suma de todas las celdas en el intervalo de celdas A1-E10." #. 3FkJs #: func_sum.xhp @@ -68842,7 +68842,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 @@ -68878,7 +68878,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 @@ -69139,7 +69139,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 @@ -69814,7 +69814,7 @@ "par_id421589961907788\n" "help.text" msgid "Epsilon level. Valid values are in range 0 (very tight) to 3 (very loose). Epsilon is the tolerance for rounding values to zero." -msgstr "Nivel Epsilon. Los valores válidos están en el rango de 0 (muy ajustado) a 3 (muy flexible). Epsilon es la tolerancia para redondear los valores a cero." +msgstr "Nivel de épsilon. Los valores válidos se comprenden entre 0 (muy ajustado) y 3 (muy flexible). Épsilon es la tolerancia para redondear los valores a cero." #. rtCLo #: solver_options_algo.xhp @@ -70516,7 +70516,7 @@ "bm_id02001\n" "help.text" msgid "Analysis toolpack;analysis of varianceAnalysis toolpack;ANOVAanalysis of variance;Analysis toolpackANOVA;Analysis toolpackData statistics;analysis of varianceData statistics;ANOVA" -msgstr "Paquete de herramientas de análisis; análisis de varianzaPaquete de herramientas de análisis;ANOVAanálisis de varianza;Paquete de herramientas de análisisANOVA;Paquete de herramientas de análisisEstadísticas de datos; análisis de varianzaEstadísticas de datos;ANOVA" +msgstr "herramientas de análisis;análisis de varianzaherramientas de análisis;ANOVAanálisis de varianza;herramientas de análisisANOVA;herramientas de análisisestadísticas de datos;análisis de varianzaestadísticas de datos;ANOVA" #. cMChc #: statistics_anova.xhp @@ -70525,7 +70525,7 @@ "hd_id1000060\n" "help.text" msgid "Analysis of Variance (ANOVA)" -msgstr "Análisis de Varianza (ANOVA)" +msgstr "Análisis de varianza (ANOVA)" #. oSUDa #: statistics_anova.xhp @@ -70813,7 +70813,7 @@ "bm_id1464278\n" "help.text" msgid "Analysis toolpack;correlationcorrelation;Analysis toolpackData statistics;correlation" -msgstr "Paquete de herramientas de análisis; correlacióncorrelación;Paquete de herramientas de análisisEstadísticas de datos;correlación" +msgstr "herramientas de análisis;correlacióncorrelación;herramientas de análisisestadísticas de datos;correlación" #. HyBpH #: statistics_correlation.xhp @@ -70966,7 +70966,7 @@ "bm_id2964278\n" "help.text" msgid "Analysis toolpack;covariancecovariance;Analysis toolpackData statistics;covariance" -msgstr "Paquete de herramientas de análisis; covarianzacovarianza;Paquete de herramientas de análisisEstadísticas de datos; covarianza" +msgstr "herramientas de análisis;covarianzacovarianza;herramientas de análisisestadísticas de datos;covarianza" #. RS5xC #: statistics_covariance.xhp @@ -71101,7 +71101,7 @@ "bm_id01001\n" "help.text" msgid "Analysis toolpack;descriptive statisticsdescriptive statistics;Analysis toolpackData statistics;descriptive statistics" -msgstr "Paquete de herramientas de análisis; estadísticas descriptivasestadísticas descriptivas; paquete de herramientas de análisisEstadísticas de datos; estadísticas descriptivas" +msgstr "herramientas de análisis;estadísticas descriptivasestadísticas descriptivas;herramientas de análisisestadísticas de datos;estadísticas descriptivas" #. 5FQb4 #: statistics_descriptive.xhp @@ -71137,7 +71137,7 @@ "par_id1000660\n" "help.text" msgid "The Descriptive Statistics analysis tool generates a report of univariate statistics for data in the input range, providing information about the central tendency and variability of your data." -msgstr "La herramienta de análisis de estadísticas descriptivas genera un informe de estadísticas univariadas para los datos en el rango de entrada, proporcionando información sobre la tendencia central y la variabilidad de sus datos." +msgstr "La herramienta de análisis de estadísticas descriptivas genera un informe de estadísticas univariadas para los datos en el intervalo de entrada, proporcionando información sobre la tendencia central y la variabilidad de sus datos." #. 6Shyn #: statistics_descriptive.xhp @@ -71236,7 +71236,7 @@ "par_id1000920\n" "help.text" msgid "Standard Deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. JqtpV #: statistics_descriptive.xhp @@ -71335,7 +71335,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 @@ -71380,9 +71380,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 @@ -71490,7 +71488,7 @@ "par_id741556228390897\n" "help.text" msgid "Input Range is a 2 x N or N x 2 range representing an array of complex number to be transformed, where N is the length of the array. The array represents the real and imaginary parts of the data." -msgstr "El rango de entrada es un rango de 2 x N o N x 2 que representa una matriz de números complejos que se van a transformar, donde N es la longitud de la matriz. La matriz representa las partes real e imaginaria de los datos." +msgstr "El intervalo de entrada es un área de 2 × N o N × 2 que representa una matriz de números complejos que se van a transformar, donde N es la longitud de la matriz. La matriz representa las partes real e imaginaria de los datos." #. GqXZr #: statistics_fourier.xhp @@ -71760,7 +71758,7 @@ "bm_id2764278\n" "help.text" msgid "Analysis toolpack;regression analysisregression analysis;Analysis toolpackData statistics;regression analysisConfidence level;regression analysisregression analysis;linearregression analysis;powerregression analysis;logarithmic" -msgstr "Paquete de herramientas de análisis; análisis de regresiónanálisis de regresión; paquete de herramientas de análisisEstadísticas de datos; análisis de regresiónNivel de confianza; análisis de regresiónanálisis de regresión; linealanálisis de regresión; potenciaanálisis de regresión;logarítmico" +msgstr "herramientas de análisis;análisis de regresiónanálisis de regresión;herramientas de análisisestadísticas de datos;análisis de regresiónnivel de confianza;análisis de regresiónanálisis de regresión;linealanálisis de regresión;potenciaanálisis de regresión;logarítmico" #. PUyBc #: statistics_regression.xhp @@ -72012,7 +72010,7 @@ "bm_id2764278\n" "help.text" msgid "Analysis toolpack;samplingsampling;Analysis toolpackData statistics;sampling" -msgstr "Paquete de herramientas de análisis; muestreomuestreo;Paquete de herramientas de análisisEstadísticas de datos; muestreo" +msgstr "herramientas de análisis;muestreomuestreo;herramientas de análisisestadísticas de datos;muestreo" #. xpPzu #: statistics_sampling.xhp @@ -72156,7 +72154,7 @@ "par_id481623249667345\n" "help.text" msgid "Picks lines in a pace defined by Period." -msgstr "Elige líneas a un ritmo definido porperíodo" +msgstr "Elige filas a una cadencia definida por Período" #. jM46a #: statistics_sampling.xhp @@ -72174,7 +72172,7 @@ "par_id621623249692296\n" "help.text" msgid "The number of lines to skip periodically when sampling. The Period is limited to the population size." -msgstr "El número de líneas que se saltan periódicamente al muestrear. losperiodo se limita al tamaño de la población." +msgstr "La cantidad de filas que se saltan periódicamente al muestrear. ElPeríodo se limita al tamaño de la población." #. NjytZ #: statistics_sampling.xhp @@ -72210,7 +72208,7 @@ "bm_id05004\n" "help.text" msgid "Analysis toolpack;Chi-square testChi-square test;Analysis toolpackData statistics;Chi-square test" -msgstr "Paquete de herramientas de análisis; prueba de chi-cuadradoPrueba de chi-cuadrado; paquete de herramientas de análisisEstadísticas de datos; prueba de chi-cuadrado" +msgstr "herramientas de análisis; prueba de la ji al cuadradoprueba de la ji al cuadrado;herramientas de análisisestadísticas de datos;prueba de la ji al cuadrado" #. 5paJF #: statistics_test_chisqr.xhp @@ -72327,7 +72325,7 @@ "bm_id05002\n" "help.text" msgid "Analysis toolpack;F-testF-test;Analysis toolpackData statistics;F-test" -msgstr "Paquete de herramientas de análisis; prueba Fprueba F; Paquete de herramientas de análisisEstadísticas de datos; prueba F" +msgstr "herramientas de análisis;prueba Fprueba F;herramientas de análisisestadísticas de datos;prueba F" #. UTG4f #: statistics_test_f.xhp @@ -72426,7 +72424,7 @@ "par_id1003310\n" "help.text" msgid "The following table shows the F-Test for the data series above:" -msgstr "La siguiente tabla muestra losPrueba Fpara la serie de datos anterior:" +msgstr "La tabla siguiente tabla muestra la prueba F de la serie de datos anterior:" #. git3T #: statistics_test_f.xhp @@ -72516,7 +72514,7 @@ "par_id1003510\n" "help.text" msgid "P (F<=f) right-tail" -msgstr "P (F<=f) cola- derecha" +msgstr "P (F<=f) lateral derecho" #. FVAJa #: statistics_test_f.xhp @@ -72525,7 +72523,7 @@ "par_id1003530\n" "help.text" msgid "F Critical right-tail" -msgstr "F Crítico cola- derecha" +msgstr "F crítico lateral derecho" #. zBzCY #: statistics_test_f.xhp @@ -72534,7 +72532,7 @@ "par_id1003550\n" "help.text" msgid "P (F<=f) left-tail" -msgstr "P (F<=f) cola- izquierda" +msgstr "P (F<=f) lateral izquierdo" #. LA56M #: statistics_test_f.xhp @@ -72543,7 +72541,7 @@ "par_id1003570\n" "help.text" msgid "F Critical left-tail" -msgstr "F Critico cola izquierda" +msgstr "F crítico lateral izquierdo" #. 9ZNSy #: statistics_test_f.xhp @@ -72552,7 +72550,7 @@ "par_id1003590\n" "help.text" msgid "P two-tail" -msgstr "P dos colas" +msgstr "P bilateral" #. dQ4WA #: statistics_test_f.xhp @@ -72561,7 +72559,7 @@ "par_id1003610\n" "help.text" msgid "F Critical two-tail" -msgstr "F crítico dos -colas" +msgstr "F crítico bilateral" #. jMBzo #: statistics_test_t.xhp @@ -72579,7 +72577,7 @@ "bm_id05001\n" "help.text" msgid "Analysis toolpack;t-testAnalysis toolpack;paired t-testt-test;Analysis toolpackpaired t-test;Analysis toolpackData statistics;paired t-test" -msgstr "Paquete de herramientas de análisis; prueba t Paquete de herramientas de análisis; prueba t pareadaprueba t; paquete de herramientas de análisisprueba t emparejada; paquete de herramientas de análisisEstadísticas de datos; prueba t pareada" +msgstr "herramientas de análisis;prueba therramientas de análisis;prueba t pareadaprueba t;herramientas de análisisprueba t pareada;herramientas de análisisestadísticas de datos;prueba t pareada" #. GEv5d #: statistics_test_t.xhp @@ -72822,7 +72820,7 @@ "par_id1003200\n" "help.text" msgid "P (T<=t) two-tail" -msgstr "P (T<=t) cola-dos" +msgstr "P (T<=t) bilateral" #. kh5E7 #: statistics_test_t.xhp @@ -72831,7 +72829,7 @@ "par_id1003220\n" "help.text" msgid "t Critical two-tail" -msgstr "t Crítica cola-dos" +msgstr "t crítico bilateral" #. QA9fL #: statistics_test_z.xhp @@ -72849,7 +72847,7 @@ "bm_id05003\n" "help.text" msgid "Analysis toolpack;Z-testZ-test;Analysis toolpackData statistics;Z-test" -msgstr "Paquete de herramientas de análisis; prueba ZPrueba Z; paquete de herramientas de análisisEstadísticas de datos; prueba Z" +msgstr "herramientas de análisis;prueba Zprueba Z;herramientas de análisisestadísticas de datos;prueba Z" #. Z5iqi #: statistics_test_z.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/scalc/guide.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/scalc/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/scalc/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-12 00:35+0000\n" +"PO-Revision-Date: 2023-03-13 17: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" @@ -4154,7 +4154,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»." #. sHgcT #: currency_format.xhp @@ -7169,7 +7169,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 @@ -8420,7 +8420,7 @@ "par_id8040406\n" "help.text" msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area." -msgstr "En el modo insertar, si mueve celdas en una misma fila (es decir, horizontalmente), después de insertarlas, todas las celdas se desplazarán a la izquierda para rellenar el rango de origen." +msgstr "En el modo de inserción, si mueve celdas de una misma fila (solo de forma horizontal), después de insertarlas, todas las celdas se desplazarán a la izquierda para rellenar el área de origen." #. LEvkD #: move_dragdrop.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/scalc.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/scalc.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/scalc.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/scalc.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-23 11:28+0000\n" +"PO-Revision-Date: 2023-03-07 10: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: 1548565117.000000\n" #. ZxQeC @@ -257,7 +257,7 @@ "hd_id241636195404363\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentarios" #. 2QmH5 #: main0103.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/schart/01.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/schart/01.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/schart/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/schart/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-08 10:41+0000\n" +"PO-Revision-Date: 2023-03-08 09: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: 1550207897.000000\n" #. DsZFP @@ -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 @@ -4955,7 +4955,7 @@ "par_id841665496617023\n" "help.text" msgid "Uncheck the option Show data table." -msgstr "" +msgstr "Desmarque la opción Mostrar tabla de datos." #. W8sr5 #: data_table.xhp @@ -4991,7 +4991,7 @@ "par_id571665497168086\n" "help.text" msgid "Format properties of the data table:" -msgstr "" +msgstr "Propiedades de formato de la tabla de datos:" #. 5tT7C #: data_table.xhp @@ -5027,7 +5027,7 @@ "par_id681665497198016\n" "help.text" msgid "Show or hide internal column borders." -msgstr "" +msgstr "Mostrar u ocultar los bordes de las columnas internas." #. 8ZYS2 #: data_table.xhp @@ -5045,7 +5045,7 @@ "par_id681665497198017\n" "help.text" msgid "Show or hide borders around the table." -msgstr "" +msgstr "Mostrar u ocultar los bordes alrededor de la tabla." #. YvKdx #: data_table.xhp @@ -5918,7 +5918,7 @@ "par_id0526200906040162\n" "help.text" msgid "The data series dialog for a bubble chart has an entry to define the data range for the Bubble Sizes." -msgstr "El diálogo de series de datos para un gráfico de burbuja posee una entrada para definir el rango de datos para los tamaños de Burbujas." +msgstr "El cuadro de diálogo Serie de datos de un gráfico de burbuja posee una entrada para definir el intervalo de datos para los tamaños de las burbujas." #. bPGHe #: type_column_bar.xhp @@ -6152,7 +6152,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 "Las columnas de la izquierda (o las filas superiores) del rango de datos seleccionados proporcionan los datos que son mostrados como objetos de Columnas. Las otras columnas o filas del rango de datos proporcionan los datos para las objetos de Líneas. Usted puede cambiar esta sesión en el diálogo de Serie de datos." +msgstr "Las columnas más a la izquierda (o las superiores) del intervalo de datos seleccionado proporcionan los datos que se muestran como objetos de Columnas. Las otras columnas o filas del intervalo de datos proporcionan los datos para las objetos de Filas. Puede cambiar esta asignación en el cuadro de diálogo Serie de datos." #. dMYwd #: type_column_line.xhp @@ -7619,7 +7619,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 @@ -8816,7 +8816,7 @@ "par_id9651478\n" "help.text" msgid "On this page of the Chart Wizard you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here." -msgstr "En esta página del Asistente para gráficos puede cambiar el rango de cada una de las series de datos de forma independiente, incluidas sus etiquetas. También puede cambiar el rango de las categorías. Puede cambiar en primer lugar el rango de datos en la página Rango de datos y luego borrar las series de datos que no necesite o agregar series de datos desde otras celdas." +msgstr "En esta página del Asistente para gráficos puede cambiar el intervalo de cada una de las series de datos de forma independiente, incluidas sus etiquetas. También puede cambiar el intervalo de las categorías. Puede cambiar en primer lugar el intervalo de datos en la página Intervalo de datos y luego quitar las series de datos que no necesite o añadir series de datos desde otras celdas." #. 4Gjfd #: wiz_data_series.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/sdatabase.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/sdatabase.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/sdatabase.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/sdatabase.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-15 13:51+0000\n" +"PO-Revision-Date: 2023-03-24 13: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" @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/00.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/00.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/00.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-21 09:34+0000\n" +"PO-Revision-Date: 2023-03-17 19: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" @@ -2813,7 +2813,7 @@ "hd_id551604189872115\n" "help.text" msgid "Page line-spacing (register-true)" -msgstr "" +msgstr "Conformidad de registro" #. yspD9 #: 00000005.xhp @@ -11408,7 +11408,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 @@ -12587,7 +12587,7 @@ "par_id671653364659217\n" "help.text" msgid "Right-click on a selected object - choose Anchor." -msgstr "" +msgstr "Pulse con el botón secundario del ratón en un objeto y elija Anclaje." #. nazhG #: 00040501.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/01.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-21 09:34+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -2255,7 +2255,7 @@ "par_id151513629855154\n" "help.text" msgid "Click the Remote Files button in the Start Center." -msgstr "Pulse en el botón Archivos remotos del Centro de inicio." +msgstr "Pulse en el botón Archivos remotos del Centro de bienvenida." #. HP9o5 #: 01020001.xhp @@ -2696,7 +2696,7 @@ "hd_id3152996\n" "help.text" msgid "File type" -msgstr "" +msgstr "Tipo de archivo" #. sA2Ea #: 01060002.xhp @@ -2705,7 +2705,7 @@ "hd_id3145744\n" "help.text" msgid "Save with password" -msgstr "" +msgstr "Guardar con contraseña" #. zyazT #: 01060002.xhp @@ -2714,7 +2714,7 @@ "hd_id3148539\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. 4uxaW #: 01060002.xhp @@ -3425,7 +3425,7 @@ "hd_id3149182\n" "help.text" msgid "Modified" -msgstr "" +msgstr "Modificado el" #. g5sGH #: 01100200.xhp @@ -3560,7 +3560,7 @@ "hd_id3154810\n" "help.text" msgid "Apply User Data" -msgstr "Utilizar datos de usuario" +msgstr "Aplicar datos de identidad" #. EPUeH #: 01100200.xhp @@ -51026,7 +51026,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/02.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/02.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-24 13: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" @@ -1067,7 +1067,7 @@ "par_id3149981\n" "help.text" msgid "Icon Combo Box" -msgstr "" +msgstr "Icono Cuadro combinado" #. eJywq #: 01170000.xhp @@ -3947,7 +3947,7 @@ "par_id3154610\n" "help.text" msgid "Note that the list entries entered here are only incorporated into the form if, on the Data tab under List Content Type, the option \"Value List\" is selected." -msgstr "Tenga en cuenta que las entradas de la lista escritas aquí sólo se incorporan al formulario si, en la pestaña Datos, se selecciona la opción \"Lista de valores\" como Tipo del contenido de lista." +msgstr "Tenga en cuenta que las entradas de la lista escritas aquí solamente se incorporan al formulario si, en la pestaña Datos, se selecciona la opción «Lista de valores» como Tipo de contenido de lista." #. j7Ywy #: 01170101.xhp @@ -13694,7 +13694,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 @@ -13721,7 +13721,7 @@ "hd_id3151110\n" "help.text" msgid "File type" -msgstr "Tipo" +msgstr "Tipo de archivo" #. et8Zs #: 09070400.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/autopi.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/autopi.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/autopi.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-27 11:24+0000\n" +"PO-Revision-Date: 2023-03-24 13: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: 1564411282.000000\n" #. hCAzG @@ -50,7 +50,7 @@ "par_id3153527\n" "help.text" msgid "Guides you through creating business and personal letters, faxes, agendas, and more." -msgstr "" +msgstr "Facilita la creación de cartas personales y comerciales, faxes, memorándums, órdenes del día, presentaciones, entre otros documentos." #. dAcHA #: 01000000.xhp @@ -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 @@ -7970,4 +7970,4 @@ "par_id3149549\n" "help.text" msgid "Opens the Templates: Address Book Assignment dialog." -msgstr "Abre el diálogo Plantilla: Asignación de libreta de direcciones." +msgstr "Abre el cuadro de diálogo Plantillas: asignación de libreta de direcciones." diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/guide.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/guide.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-15 13:51+0000\n" +"PO-Revision-Date: 2023-03-24 13: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" @@ -2759,7 +2759,7 @@ "par_id150820161816032923\n" "help.text" msgid "Click on the Remote Files button in the Start Center." -msgstr "Pulse en el icono Archivos remotos del Centro de inicio." +msgstr "Pulse en el icono Archivos remotos del centro de bienvenida." #. aCU44 #: cmis-remote-files-setup.xhp @@ -3209,7 +3209,7 @@ "par_id170820161605414687\n" "help.text" msgid "Click the Remote Files button the Start Center" -msgstr "Pulse en el botón Archivos remotos del Centro de inicio" +msgstr "Pulse en el botón Archivos remotos del centro de bienvenida" #. nAisF #: cmis-remote-files.xhp @@ -6566,7 +6566,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Ignorar campo (no importar)" #. LEJDn #: csv_params.xhp @@ -6575,7 +6575,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Inglés (EE. UU.)" #. wLth6 #: csv_params.xhp @@ -7448,7 +7448,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 @@ -10436,7 +10436,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." #. 72XGZ #: doc_autosave.xhp @@ -25079,7 +25079,7 @@ "par_id215247284938\n" "help.text" msgid "Using without any arguments opens the start center." -msgstr "El uso sin ningún parámetro abre el centro de inicio." +msgstr "El uso sin ningún parámetro abre el centro de bienvenida." #. WEuAN #: start_parameters.xhp @@ -26456,7 +26456,7 @@ "par_id041620170723497279\n" "help.text" msgid "Press the Templates button in the Start Center." -msgstr "Pulse en el botón Plantillas del Centro de inicio." +msgstr "Pulse en el botón Plantillas del centro de bienvenida." #. oRLxn #: template_manager.xhp @@ -26465,7 +26465,7 @@ "par_id041620170723509119\n" "help.text" msgid "Select any template type from the Templates button of the Start Center." -msgstr "Seleccione cualquier tipo de plantilla desde el botón Plantillas del Centro de inicio." +msgstr "Seleccione cualquier tipo de plantilla desde el botón Plantillas del centro de bienvenida." #. 4HkCP #: template_manager.xhp @@ -26771,7 +26771,7 @@ "par_id431607690468509\n" "help.text" msgid "Extensions Icon" -msgstr "" +msgstr "Icono Extensiones" #. mwqRi #: template_manager.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/optionen.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/shared/optionen.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/shared/optionen.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-12 00:35+0000\n" +"PO-Revision-Date: 2023-03-15 10:06+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" @@ -896,7 +896,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 @@ -2624,7 +2624,7 @@ "par_id3153727\n" "help.text" msgid "Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "Establece el componente rojo modificable en el control deslizante vertical, así como los componentes verde y azul modificables en el campo bidimensional de selección de color. Se permiten valores entre 0 y 255." #. G5BRr #: 01010501.xhp @@ -2651,7 +2651,7 @@ "par_id3153728\n" "help.text" msgid "Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "Establece el componente verde modificable en el control deslizante vertical, así como los componentes rojo y azul modificables en el campo bidimensional de selección de color. Se permiten valores entre 0 y 255." #. NauiA #: 01010501.xhp @@ -2678,7 +2678,7 @@ "par_id3153729\n" "help.text" msgid "Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "" +msgstr "Establece el componente azul modificable en el control deslizante vertical, así como los componentes verde y rojo modificables en el campo bidimensional de selección de color. Se permiten valores entre 0 y 255." #. EHQDG #: 01010501.xhp @@ -3083,7 +3083,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 @@ -6242,7 +6242,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/smath/01.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/smath/01.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/smath/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/smath/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-27 11:28+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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: 1559526082.000000\n" #. QmNGE @@ -10373,7 +10373,7 @@ "par_id3179167\n" "help.text" msgid "p function, Weierstrass p" -msgstr "función p, p de Weierstrass" +msgstr "función p, p de Weierstraß" #. tMoW8 #: 03091508.xhp @@ -11570,7 +11570,7 @@ "par_id3156177\n" "help.text" msgid "Weierstrass p" -msgstr "p de Weierstrass" +msgstr "p de Weierstraß" #. Wtjtx #: 03091600.xhp @@ -11579,7 +11579,7 @@ "par_id3155435\n" "help.text" msgid "This icon inserts a Weierstrass p-function symbol. Command for the Commands window: wp" -msgstr "Este icono inserta el símbolo de una función p de Weierstrass. Orden para el cuadro Órdenes: wp" +msgstr "Este icono inserta el símbolo de una función p de Weierstraß. Orden para el cuadro Órdenes: wp" #. PurGC #: 03091600.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/smath/guide.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/smath/guide.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/smath/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/smath/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-10-22 12:14+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\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" #. vAkzZ #: brackets.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/swriter/01.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/01.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/swriter/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -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 @@ -27933,7 +27933,7 @@ "tit\n" "help.text" msgid "Content Control Properties" -msgstr "" +msgstr "Propiedades del control de contenido" #. CFqNk #: contentcontrol00.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/swriter/02.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/02.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/swriter/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/02.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-12 00:35+0000\n" +"PO-Revision-Date: 2023-03-07 10: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" @@ -3650,7 +3650,7 @@ "par_id3151133\n" "help.text" msgid "On Tools bar, click" -msgstr "" +msgstr "En la barra Herramientas, pulse en" #. CBw5G #: 18130000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/swriter/04.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/04.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/swriter/04.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/04.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-10-22 12:14+0000\n" -"Last-Translator: Daniela Rosales Espino \n" -"Language-Team: Spanish \n" +"PO-Revision-Date: 2023-03-08 09: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" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1529889107.000000\n" #. brcGC @@ -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.5.1~rc2/translations/source/gug/helpcontent2/source/text/swriter/guide.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/swriter/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-23 11:27+0000\n" +"PO-Revision-Date: 2023-03-14 15:26+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: 1566235756.000000\n" #. XAt2Y @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/swriter.po libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/swriter.po --- libreoffice-7.5.1~rc2/translations/source/gug/helpcontent2/source/text/swriter.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/gug/helpcontent2/source/text/swriter.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-20 11:43+0000\n" +"PO-Revision-Date: 2023-03-12 04: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" @@ -1067,7 +1067,7 @@ "par_id531605976347665\n" "help.text" msgid "Inserts a column before the column where the cursor is currently placed." -msgstr "" +msgstr "Inserta una columna antes de la columna donde se encuentra actualmente el cursor." #. UE3RA #: main0110.xhp @@ -1085,7 +1085,7 @@ "par_id731605976350615\n" "help.text" msgid "Inserts a column after the column where the cursor is currently placed." -msgstr "" +msgstr "Inserta una columna después de la columna donde se encuentra actualmente el cursor." #. GM6FW #: main0110.xhp @@ -1283,7 +1283,7 @@ "hd_id451605990864684\n" "help.text" msgid "Minimal Row Height" -msgstr "" +msgstr "Altura mínima de fila" #. EF7XB #: main0110.xhp @@ -2309,7 +2309,7 @@ "tit\n" "help.text" msgid "Print Preview Bar (Writer)" -msgstr "" +msgstr "Barra Previsualizar impresión (Writer)" #. fuQ93 #: main0210.xhp @@ -2336,7 +2336,7 @@ "hd_id801649977850317\n" "help.text" msgid "Jump to Specific Page" -msgstr "" +msgstr "Ir a una página específica" #. 4KMx6 #: main0210.xhp @@ -2345,7 +2345,7 @@ "par_id891649977865555\n" "help.text" msgid "To go to a specific page in the Print Preview, type the page number in the entry box, then press Enter." -msgstr "" +msgstr "Para ir a una página específica en la previsualización de impresión, escriba el número de la página en el campo de texto y, a continuación, presione Intro." #. Qijav #: main0210.xhp @@ -2390,7 +2390,7 @@ "par_id91649332206811\n" "help.text" msgid "Close Preview Icon" -msgstr "" +msgstr "Icono Cerrar previsualización" #. ZTPfH #: main0210.xhp @@ -2399,7 +2399,7 @@ "par_id661649332206811\n" "help.text" msgid "Close Preview" -msgstr "" +msgstr "Cerrar previsualización" #. WmU6L #: main0213.xhp @@ -2471,7 +2471,7 @@ "tit\n" "help.text" msgid "Frame Bar" -msgstr "Barra de marco" +msgstr "Barra Marco" #. bXUUZ #: main0215.xhp @@ -2480,7 +2480,7 @@ "hd_id3154251\n" "help.text" msgid "Frame Bar" -msgstr "Barra de marco" +msgstr "Barra Marco" #. BfA2A #: main0215.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/he/basctl/messages.po libreoffice-7.5.2~rc2/translations/source/he/basctl/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/basctl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/basctl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-03-14 12: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: 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,7 +752,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:425 msgctxt "basicmacrodialog|newlibrary" msgid "New Library" -msgstr "ספריה חדשה" +msgstr "ספרייה חדשה" #. E5rdD #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:432 @@ -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 @@ -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.5.1~rc2/translations/source/he/chart2/messages.po libreoffice-7.5.2~rc2/translations/source/he/chart2/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/chart2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/chart2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:43+0100\n" -"PO-Revision-Date: 2021-03-12 13:12+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 1565245907.000000\n" #. NCRDD @@ -1613,43 +1613,43 @@ #: chart2/uiconfig/ui/dlg_InsertDataTable.ui:8 msgctxt "dlg_InsertDataTable|dlg_InsertDataTable" msgid "Data Table" -msgstr "" +msgstr "טבלת נתונים" #. SBrCL #: chart2/uiconfig/ui/dlg_InsertDataTable.ui:85 msgctxt "dlg_InsertDataTable|horizontalBorderCB" msgid "Show data table" -msgstr "" +msgstr "הצגת טבלת נתונים" #. y4rFB #: chart2/uiconfig/ui/dlg_InsertDataTable.ui:119 msgctxt "dlg_InsertDataTable|horizontalBorderCB" msgid "Show horizontal border" -msgstr "" +msgstr "הצגת גבול אופקי" #. GstZR #: chart2/uiconfig/ui/dlg_InsertDataTable.ui:135 msgctxt "dlg_InsertDataTable|verticalBorderCB" msgid "Show vertical border" -msgstr "" +msgstr "הצגת גבול אנכי" #. KAzDB #: chart2/uiconfig/ui/dlg_InsertDataTable.ui:151 msgctxt "dlg_InsertDataTable|outlineCB" msgid "Show outline" -msgstr "" +msgstr "הצגת מתאר" #. bm6hN #: chart2/uiconfig/ui/dlg_InsertDataTable.ui:167 msgctxt "dlg_InsertDataTable|keysCB" msgid "Show keys" -msgstr "" +msgstr "הצגת מפתחות" #. JpXPi #: chart2/uiconfig/ui/dlg_InsertDataTable.ui:187 msgctxt "dlg_InsertDataTable|dataTablePropertiesLabel" msgid "Data Table Properties" -msgstr "" +msgstr "מאפייני טבלת נתונים" #. 3GUtp #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:28 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/connectivity/messages.po libreoffice-7.5.2~rc2/translations/source/he/connectivity/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/connectivity/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/connectivity/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: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: 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.5.1~rc2/translations/source/he/connectivity/registry/flat/org/openoffice/Office/DataAccess.po libreoffice-7.5.2~rc2/translations/source/he/connectivity/registry/flat/org/openoffice/Office/DataAccess.po --- libreoffice-7.5.1~rc2/translations/source/he/connectivity/registry/flat/org/openoffice/Office/DataAccess.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/connectivity/registry/flat/org/openoffice/Office/DataAccess.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2013-05-23 23:32+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-06 12: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: 1369351951.000000\n" #. P4Paq @@ -24,4 +24,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "Text/CSV" -msgstr "" +msgstr "טקסט/CSV" diff -Nru libreoffice-7.5.1~rc2/translations/source/he/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po libreoffice-7.5.2~rc2/translations/source/he/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po --- libreoffice-7.5.1~rc2/translations/source/he/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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 12: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.5.1~rc2/translations/source/he/cui/messages.po libreoffice-7.5.2~rc2/translations/source/he/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\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: 1565698564.000000\n" #. GyY9M @@ -1654,7 +1654,7 @@ #: cui/inc/strings.hrc:306 msgctxt "RID_SVXSTR_JAVA_START_PARAM" msgid "Edit Parameter" -msgstr "עריכת פרמטר" +msgstr "עריכת משתנה" #. fsbAN #: cui/inc/strings.hrc:308 @@ -1666,25 +1666,25 @@ msgstr "" "ערך לא חוקי!\n" "\n" -"הערך המירבי לכניסה (פורט) הוא 65535.‏" +"הערך המרבי לפתחה (פורט) הוא 65535.‏" #. UCFD6 #: cui/inc/strings.hrc:310 msgctxt "RID_SVXSTR_DESC_GRADIENT" msgid "Please enter a name for the gradient:" -msgstr "יש להזין שם עבור המידרג:‏" +msgstr "נא למלא שם למדרג:‏" #. UDvKR #: cui/inc/strings.hrc:311 msgctxt "RID_SVXSTR_DESC_NEW_BITMAP" msgid "Please enter a name for the bitmap:" -msgstr "יש להזין שם עבור מפת הסיביות:‏" +msgstr "נא למלא שם למפת הסיביות:‏" #. QXqJD #: cui/inc/strings.hrc:312 msgctxt "RID_SVXSTR_DESC_EXT_BITMAP" msgid "Please enter a name for the external bitmap:" -msgstr "יש להזין שם עבור מפת הסיביות החיצונית:‏" +msgstr "נא למלא שם למפת הסיביות החיצונית:‏" #. SrS6X #: cui/inc/strings.hrc:313 @@ -1742,7 +1742,7 @@ #: cui/inc/strings.hrc:321 msgctxt "RID_SVXSTR_DESC_LINEEND" msgid "Please enter a name for the new arrow style:" -msgstr "" +msgstr "נא למלא שם לסגנון החץ החדש:" #. xD9BU #: cui/inc/strings.hrc:322 @@ -2043,7 +2043,7 @@ #: cui/inc/strings.hrc:379 msgctxt "RID_SVXSTR_COMMANDEXPERIMENTAL" msgid "Experimental" -msgstr "" +msgstr "ניסיוני" #. 3FZFt #: cui/inc/strings.hrc:381 @@ -2103,73 +2103,73 @@ #: cui/inc/strings.hrc:391 msgctxt "RID_SVXSTR_ADDITIONS_DICTIONARY" msgid "Extensions: Dictionary" -msgstr "" +msgstr "הרחבות: מילון" #. MEZpu #: cui/inc/strings.hrc:392 msgctxt "RID_SVXSTR_ADDITIONS_GALLERY" msgid "Extensions: Gallery" -msgstr "" +msgstr "הרחבות: גלריה" #. R8obE #: cui/inc/strings.hrc:393 msgctxt "RID_SVXSTR_ADDITIONS_ICONS" msgid "Extensions: Icons" -msgstr "" +msgstr "הרחבות: סמלים" #. AqGWn #: cui/inc/strings.hrc:394 msgctxt "RID_SVXSTR_ADDITIONS_PALETTES" msgid "Extensions: Color Palette" -msgstr "" +msgstr "הרחבות: לוחות צבעים" #. mncuJ #: cui/inc/strings.hrc:395 msgctxt "RID_SVXSTR_ADDITIONS_TEMPLATES" msgid "Extensions: Templates" -msgstr "" +msgstr "הרחבות: תבניות" #. KTtQE #: cui/inc/strings.hrc:397 msgctxt "RID_SVXSTR_UI_APPLYALL" msgid "Apply to %MODULE" -msgstr "החל על מודול %MODULE" +msgstr "החלה על מודול %MODULE" #. Xr3W9 #: cui/inc/strings.hrc:399 msgctxt "RID_SVXSTR_OLE_INSERT" msgid "Inserting OLE object..." -msgstr "" +msgstr "עצם OLE מתווסף…" #. QMiCF #: cui/inc/strings.hrc:401 msgctxt "RID_CUISTR_CLICK_RESULT" msgid "(Click on any test to view its resultant bitmap image)" -msgstr "" +msgstr "(לחיצה על כל אחת מהבדיקות תציג את מפת הסיביות שנוצרה באמצעותה)" #. BT9KG #: cui/inc/strings.hrc:402 msgctxt "RID_CUISTR_ZIPFAIL" msgid "Creation of ZIP file failed." -msgstr "" +msgstr "יצירת קובץ ZIP נכשלה." #. 9QSQr #: cui/inc/strings.hrc:403 msgctxt "RID_CUISTR_SAVED" msgid "The results have been successfully saved in the file 'GraphicTestResults.zip'!" -msgstr "" +msgstr "התוצאות נשמרו בהצלחה בקובץ ‚GraphicTestResults.zip’!" #. RAA72 #: cui/inc/strings.hrc:405 msgctxt "RID_LANGUAGETOOL_LEAVE_EMPTY" msgid "Leave this field empty to use the free version" -msgstr "" +msgstr "יש להשאיר את השדה הזה ריק כדי להשתמש בגרסה החופשית" #. 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 @@ -3551,56 +3551,56 @@ #: cui/inc/tipoftheday.hrc:278 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" -msgstr "" +msgstr "עזרה עבור %PRODUCTNAME" #. NG4jW #: cui/inc/tipoftheday.hrc:279 msgctxt "STR_MORE_LINK" msgid "More info" -msgstr "" +msgstr "מידע נוסף" #. sCREc #: cui/inc/tipoftheday.hrc:280 msgctxt "STR_UNO_LINK" msgid "Run this action now..." -msgstr "" +msgstr "הרצת הפקודה הזאת כעת…" #. P6JME #: cui/inc/tipoftheday.hrc:281 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" -msgstr "" +msgstr "העצה היומית: %CURRENT/%TOTAL" #. C6Dsn #: cui/inc/tipoftheday.hrc:282 msgctxt "STR_CMD" msgid "⌘ Cmd" -msgstr "" +msgstr "‎⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here #: cui/inc/tipoftheday.hrc:283 msgctxt "STR_CTRL" msgid "Ctrl" -msgstr "" +msgstr "Ctrl" #. mZWSR #: cui/inc/tipoftheday.hrc:284 msgctxt "STR_CMD" msgid "Alt" -msgstr "" +msgstr "Alt" #. QtEGa #: cui/inc/tipoftheday.hrc:285 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 @@ -3726,7 +3726,7 @@ #: cui/inc/treeopt.hrc:46 msgctxt "SID_GENERAL_OPTIONS_RES" msgid "Basic IDE" -msgstr "" +msgstr "סביבת פיתוח בייסיק" #. ZS4Sx #: cui/inc/treeopt.hrc:47 @@ -4356,7 +4356,7 @@ #: cui/uiconfig/ui/aboutdialog.ui:301 msgctxt "aboutdialog|lbUI" msgid "User Interface:" -msgstr "" +msgstr "מנשק משתמש:" #. KFo3i #: cui/uiconfig/ui/aboutdialog.ui:348 @@ -4678,7 +4678,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 +4690,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 @@ -4750,73 +4750,73 @@ #: 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 "תווית התקדמות" #. sdUSh #: cui/uiconfig/ui/additionsdialog.ui:126 msgctxt "additionsdialog|ProgressLabel" msgid "Progress label" -msgstr "" +msgstr "תווית התקדמות" #. SYKGE #: cui/uiconfig/ui/additionsdialog.ui:127 msgctxt "additionsdialog|ProgressLabel" msgid "This label shows that the progress of the operations such as loading extensions, not found, etc." -msgstr "" +msgstr "התווית הזאת מציגה התקדמותשל פעילויות כגון טעינת הרחבות, לא נמצא וכן הלאה." #. Gq5Hf #: cui/uiconfig/ui/additionsdialog.ui:188 msgctxt "additionsdialog|searchEntry" msgid "Search entry" -msgstr "" +msgstr "רשומת חיפוש" #. NrZT8 #: cui/uiconfig/ui/additionsdialog.ui:189 @@ -4828,73 +4828,73 @@ #: 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 "הצגת הרחבות נוספות" #. ZFA5D #: cui/uiconfig/ui/additionsfragment.ui:21 msgctxt "additionsDialog|buttonShowMore" msgid "Button \"Show more\"" -msgstr "" +msgstr "כפתור „להציג עוד”" #. i9AoG #: 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 @@ -4918,7 +4918,7 @@ #: cui/uiconfig/ui/agingdialog.ui:179 msgctxt "agingdialog|label1" msgid "Parameters" -msgstr "פרמטרים" +msgstr "משתנים" #. pciJf #: cui/uiconfig/ui/agingdialog.ui:204 @@ -7164,7 +7164,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1639 msgctxt "colorconfigwin|basic" msgid "Basic Syntax Highlighting" -msgstr "הבלטת תחביר בייסיק" +msgstr "הדגשת תחביר בייסיק" #. ERVJA #: cui/uiconfig/ui/colorconfigwin.ui:1692 @@ -7212,25 +7212,25 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1905 msgctxt "colorconfigwin|sql" msgid "SQL Syntax Highlighting" -msgstr "הבלטת תחביר SQL" +msgstr "הדגשת תחביר SQL" #. NcJi8 #: cui/uiconfig/ui/colorconfigwin.ui:1958 msgctxt "colorconfigwin|sgml" msgid "SGML syntax highlighting" -msgstr "הבלטת תחביר ‏‪SGML‏" +msgstr "הדגשת תחביר ‏‪SGML‏" #. uYB5C #: cui/uiconfig/ui/colorconfigwin.ui:1973 msgctxt "colorconfigwin|htmlcomment" msgid "Comment highlighting" -msgstr "הבלטת הערות" +msgstr "הדגשת הערות" #. 82UJf #: cui/uiconfig/ui/colorconfigwin.ui:2006 msgctxt "colorconfigwin|htmlkeyword" msgid "Keyword highlighting" -msgstr "הבלטת מילות מפתח" +msgstr "הדגשת מילות מפתח" #. otYwD #: cui/uiconfig/ui/colorconfigwin.ui:2039 @@ -9924,7 +9924,7 @@ #: 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 @@ -9943,7 +9943,7 @@ #: cui/uiconfig/ui/gradientpage.ui:315 msgctxt "gradientpage|centerft" msgid "Center ( X / Y ):" -msgstr "" +msgstr "מרכז ( X / Y ):" #. mP62s #: cui/uiconfig/ui/gradientpage.ui:339 @@ -9977,10 +9977,9 @@ #. cGXmA #: cui/uiconfig/ui/gradientpage.ui:458 -#, fuzzy msgctxt "gradientpage|angleft" msgid "A_ngle:" -msgstr "זווית" +msgstr "_זווית:" #. fwB6f #: cui/uiconfig/ui/gradientpage.ui:477 @@ -9998,13 +9997,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 @@ -10072,19 +10071,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 @@ -14325,7 +14324,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 @@ -14350,7 +14349,7 @@ #: 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 @@ -15053,7 +15052,7 @@ #: cui/uiconfig/ui/optfontspage.ui:156 msgctxt "optfontspage|screenonly" msgid "Screen only" -msgstr "מסך" +msgstr "מסך בלבד" #. bMguF #: cui/uiconfig/ui/optfontspage.ui:170 @@ -15117,24 +15116,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 @@ -15146,13 +15142,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 @@ -15168,16 +15164,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 @@ -15189,13 +15184,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 @@ -15207,26 +15202,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 @@ -15238,19 +15232,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 @@ -15262,7 +15256,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:307 @@ -15274,7 +15268,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:335 msgctxt "optgeneralpage|quicklaunch" msgid "Load %PRODUCTNAME during system start-up" -msgstr "טעינת ‏‪%PRODUCTNAME‬‏ במהלך עליית המערכת" +msgstr "לטעון את %PRODUCTNAME במהלך עליית המערכת" #. MKruH #: cui/uiconfig/ui/optgeneralpage.ui:349 @@ -15286,31 +15280,31 @@ #: cui/uiconfig/ui/optgeneralpage.ui:367 msgctxt "optgeneralpage|label8" msgid "%PRODUCTNAME Quickstarter" -msgstr "הפעלה מהירה של ‏‪%PRODUCTNAME‏" +msgstr "הפעלה מהירה של %PRODUCTNAME" #. FvigS #: cui/uiconfig/ui/optgeneralpage.ui:394 msgctxt "optgeneralpage|fileassoc" msgid "Windows Default apps" -msgstr "" +msgstr "יישומי ברירת המחדל של Windows" #. 2EWmE #: cui/uiconfig/ui/optgeneralpage.ui:408 msgctxt "optgeneralpage|FileExtCheckCheckbox" msgid "Perform check for default file associations on start-up" -msgstr "" +msgstr "לבצע בדיקות לשיוכי קבצים כברירת מחדל עם ההפעלה" #. fXjVB #: cui/uiconfig/ui/optgeneralpage.ui:426 msgctxt "optgeneralpage|fileassoc" msgid "%PRODUCTNAME File Associations" -msgstr "" +msgstr "שיוכי קבצים של %PRODUCTNAME" #. KyK5F #: cui/uiconfig/ui/optgeneralpage.ui:443 msgctxt "extended_tip | OptGeneralPage" msgid "Specifies the general settings for the office suite." -msgstr "" +msgstr "מציין את ההגדרות הכלליות לחבילת הכלים המשרדיים." #. FsiDE #: cui/uiconfig/ui/opthtmlpage.ui:86 @@ -15322,7 +15316,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 @@ -15334,7 +15328,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 @@ -15346,7 +15340,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 @@ -15358,7 +15352,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 @@ -15370,7 +15364,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 @@ -15382,7 +15376,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 @@ -15394,13 +15388,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 @@ -15412,62 +15406,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 @@ -15497,13 +15490,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 @@ -15796,22 +15789,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 @@ -16897,13 +16889,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 @@ -16913,9 +16905,9 @@ "\n" "Do you want to delete password list and reset master password?" msgstr "" -"ביטול האפשרות לשמירת קבועה של ססמאות, מוחק את רשימת הססמאות השמורות, ומאפסת את הססמה הראשית.\n" +"השבתת הפונקציה לאחסון סיסמאות מוחקת את רשימת הסיסמאות המאוחסנות ומאפסת את הסיסמה הראשית.\n" "\n" -"האם אתה רוצה למחוק את רשימת הססמאות ולאפס את הססמה הראשית?" +"למחוק את רשימת הסיסמאות ולאפס את הסיסמה הראשית?" #. hwg3F #: cui/uiconfig/ui/optsecuritypage.ui:344 @@ -16927,26 +16919,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 @@ -16958,17 +16949,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 "אפשרויות ואזהרות אבטחה" @@ -16977,54 +16967,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 @@ -17036,7 +17021,7 @@ #: cui/uiconfig/ui/optuserpage.ui:141 msgctxt "optuserpage|faxft" msgid "Fa_x/email:" -msgstr "" +msgstr "פ_קס/דוא״ל:" #. ZYaYQ #: cui/uiconfig/ui/optuserpage.ui:167 @@ -17048,7 +17033,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 @@ -17060,7 +17045,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 @@ -17072,7 +17057,7 @@ #: cui/uiconfig/ui/optuserpage.ui:208 msgctxt "extended tip | shortname" msgid "Type your initials." -msgstr "" +msgstr "נא למלא את הראשי התיבות שלך." #. Emfwm #: cui/uiconfig/ui/optuserpage.ui:239 @@ -17084,19 +17069,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 @@ -17108,7 +17093,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 @@ -17120,19 +17105,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 @@ -17144,7 +17129,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 @@ -17156,19 +17141,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 @@ -17180,7 +17165,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 @@ -17192,13 +17177,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 @@ -17210,19 +17195,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 @@ -17234,7 +17219,7 @@ #: cui/uiconfig/ui/optuserpage.ui:545 msgctxt "extended tip | russhortname" msgid "Type your initials." -msgstr "" +msgstr "נא למלא את ראשי התיבות שלך." #. byLGz #: cui/uiconfig/ui/optuserpage.ui:564 @@ -17246,14 +17231,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 @@ -17265,7 +17249,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 @@ -17277,7 +17261,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 @@ -17289,14 +17273,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 @@ -17308,7 +17291,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 @@ -17320,14 +17303,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 @@ -17339,7 +17321,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 @@ -17351,25 +17333,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 @@ -17381,67 +17363,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 @@ -17453,7 +17435,7 @@ #: cui/uiconfig/ui/optviewpage.ui:79 msgctxt "optviewpage|mousepos" msgid "Dialog center" -msgstr "מרכז הדו שיח" +msgstr "מרכז החלונית" #. UHeFm #: cui/uiconfig/ui/optviewpage.ui:80 @@ -17465,7 +17447,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 @@ -17489,7 +17471,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 @@ -17525,14 +17507,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 @@ -17580,7 +17561,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 @@ -17610,7 +17591,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 @@ -17646,7 +17627,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 @@ -17658,7 +17639,7 @@ #: cui/uiconfig/ui/optviewpage.ui:384 msgctxt "optviewpage|label1" msgid "Icon Size" -msgstr "" +msgstr "גודל סמלים" #. 8CiB5 #: cui/uiconfig/ui/optviewpage.ui:418 @@ -17682,61 +17663,61 @@ #: 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 "ערכת סמלים" #. zXaFc #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "מערכת" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "בהירה" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "כהה" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "מציין האם להתחקות אחר מצב התצוגה של המערכת או לדרוס עם כהה או בהיר." #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "מצב:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "תצוגה" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 @@ -17850,7 +17831,7 @@ #: cui/uiconfig/ui/optviewpage.ui:808 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" -msgstr "" +msgstr "הרצת בדיקות גרפיות" #. 872fQ #: cui/uiconfig/ui/pageformatpage.ui:41 @@ -18675,10 +18656,9 @@ #. BvHTn #: cui/uiconfig/ui/patterntabpage.ui:218 -#, fuzzy msgctxt "patterntabpage|label5" msgid "Foreground Color:" -msgstr "צבע רקע" +msgstr "צבע חזית:" #. EkYFZ #: cui/uiconfig/ui/patterntabpage.ui:242 @@ -18688,10 +18668,9 @@ #. S8mpk #: cui/uiconfig/ui/patterntabpage.ui:269 -#, fuzzy msgctxt "patterntabpage|label6" msgid "Background Color:" -msgstr "צבע רקע" +msgstr "צבע רקע:" #. h8fmT #: cui/uiconfig/ui/patterntabpage.ui:293 @@ -18753,19 +18732,19 @@ #: 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 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/dbaccess/messages.po libreoffice-7.5.2~rc2/translations/source/he/dbaccess/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/dbaccess/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/dbaccess/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-25 13:48+0100\n" -"PO-Revision-Date: 2021-01-28 07: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: 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" "משפט זה יעובר למסד הנתונים בעת יצירת הטבלה.‏" @@ -1900,19 +1899,19 @@ #: dbaccess/inc/strings.hrc:333 msgctxt "STR_NAME_OF_ODBC_DATASOURCE" msgid "Name of the ODBC data source" -msgstr "" +msgstr "שם מקור הנתונים מסוג ODBC" #. mGJE9 #: 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 @@ -2268,7 +2267,7 @@ #: dbaccess/inc/strings.hrc:393 msgctxt "STR_ORACLE_DEFAULT" msgid "Default: 1521" -msgstr "בררת מחדל: 1521‏" +msgstr "ברירת מחדל: 1521‏" #. dnAP9 #: dbaccess/inc/strings.hrc:394 @@ -3854,7 +3853,7 @@ #: dbaccess/uiconfig/ui/ldapconnectionpage.ui:125 msgctxt "ldapconnectionpage|portNumDefLabel" msgid "Default: 389" -msgstr "בררת מחדל: 389‏" +msgstr "ברירת מחדל: 389‏" #. zAZYs #: dbaccess/uiconfig/ui/ldapconnectionpage.ui:143 @@ -3995,7 +3994,7 @@ #: dbaccess/uiconfig/ui/mysqlnativesettings.ui:139 msgctxt "mysqlnativesettings|defaultport" msgid "Default: 3306" -msgstr "בררת מחדל: 3306‏" +msgstr "ברירת מחדל: 3306‏" #. MQVfg #: dbaccess/uiconfig/ui/mysqlnativesettings.ui:185 @@ -4752,7 +4751,7 @@ #: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:153 msgctxt "specialjdbcconnectionpage|portNumDefLabel" msgid "Default: 3306" -msgstr "בררת מחדל: 3306‏" +msgstr "ברירת מחדל: 3306‏" #. o9YhU #: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:188 @@ -4969,7 +4968,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.5.1~rc2/translations/source/he/desktop/messages.po libreoffice-7.5.2~rc2/translations/source/he/desktop/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/desktop/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/desktop/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2021-01-26 17:36+0000\n" +"PO-Revision-Date: 2023-03-06 12: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 @@ -923,7 +923,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:162 msgctxt "extensionmanager|search" msgid "Search..." -msgstr "" +msgstr "חיפוש…" #. BAVdg #: desktop/uiconfig/ui/extensionmanager.ui:191 @@ -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.5.1~rc2/translations/source/he/dictionaries/ckb.po libreoffice-7.5.2~rc2/translations/source/he/dictionaries/ckb.po --- libreoffice-7.5.1~rc2/translations/source/he/dictionaries/ckb.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/dictionaries/ckb.po 2023-03-24 16:53:38.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 12: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=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.5.1~rc2/translations/source/he/dictionaries/fa_IR.po libreoffice-7.5.2~rc2/translations/source/he/dictionaries/fa_IR.po --- libreoffice-7.5.1~rc2/translations/source/he/dictionaries/fa_IR.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/dictionaries/fa_IR.po 2023-03-24 16:53:38.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-10-22 14:12+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-06 12: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=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" #. aZkZV #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Lilak, Persian Spell Checking Dictionary" -msgstr "" +msgstr "לילך, מילון בדיקת איות בפרסית" diff -Nru libreoffice-7.5.1~rc2/translations/source/he/dictionaries/pt_BR/dialog.po libreoffice-7.5.2~rc2/translations/source/he/dictionaries/pt_BR/dialog.po --- libreoffice-7.5.1~rc2/translations/source/he/dictionaries/pt_BR/dialog.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/dictionaries/pt_BR/dialog.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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 12: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.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.5.1~rc2/translations/source/he/dictionaries/pt_BR.po libreoffice-7.5.2~rc2/translations/source/he/dictionaries/pt_BR.po --- libreoffice-7.5.1~rc2/translations/source/he/dictionaries/pt_BR.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/dictionaries/pt_BR.po 2023-03-24 16:53:38.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 12: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.5.1~rc2/translations/source/he/dictionaries/th_TH.po libreoffice-7.5.2~rc2/translations/source/he/dictionaries/th_TH.po --- libreoffice-7.5.1~rc2/translations/source/he/dictionaries/th_TH.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/dictionaries/th_TH.po 2023-03-24 16:53:38.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: 2022-12-07 13:11+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 12: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: 1369351989.000000\n" #. GkzWs @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Thai spelling dictionary and hyphenation rules" -msgstr "" +msgstr "מילון איות וכללי מיקוף בתאי" diff -Nru libreoffice-7.5.1~rc2/translations/source/he/editeng/messages.po libreoffice-7.5.2~rc2/translations/source/he/editeng/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/editeng/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/editeng/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-14 14:35+0100\n" -"PO-Revision-Date: 2021-01-26 17:37+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 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 @@ -1590,7 +1590,7 @@ #: include/editeng/editrids.hrc:279 msgctxt "RID_SVXITEMS_FRMDIR_Vert_TOP_RIGHT90" msgid "Text direction right-to-left (vertical, all characters rotated)" -msgstr "" +msgstr "כיוון הטקסט מימין לשמאל (אנכי, כל התווים הפוכים)" #. Z9dAu #: include/editeng/editrids.hrc:280 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/he/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/extensions/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-14 12: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 @@ -4219,13 +4208,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 +4226,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 +4238,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 +4260,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 +4340,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 +4352,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 +4404,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 +4441,6 @@ #. JJkdg #: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:18 -#, fuzzy msgctxt "labelselectiondialog|LabelSelectionDialog" msgid "Label Field Selection" msgstr "בחירת שדה תווית" @@ -4467,10 +4453,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 +4473,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.5.1~rc2/translations/source/he/extras/source/autocorr/emoji.po libreoffice-7.5.2~rc2/translations/source/he/extras/source/autocorr/emoji.po --- libreoffice-7.5.1~rc2/translations/source/he/extras/source/autocorr/emoji.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/extras/source/autocorr/emoji.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-24 14:22+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 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/filter/messages.po libreoffice-7.5.2~rc2/translations/source/he/filter/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/filter/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/filter/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 13:11+0100\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 1516030010.000000\n" #. 5AQgJ @@ -890,7 +890,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:119 msgctxt "pdflinkspage|default" msgid "Default mode" -msgstr "מצב בררת מחדל" +msgstr "מצב ברירת מחדל" #. bcgaz #: filter/uiconfig/ui/pdflinkspage.ui:128 @@ -1502,7 +1502,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:185 msgctxt "pdfviewpage|fitdefault" msgid "_Default" -msgstr "_בררת מחדל" +msgstr "_ברירת מחדל" #. vQNHv #: filter/uiconfig/ui/pdfviewpage.ui:194 @@ -1574,7 +1574,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.5.1~rc2/translations/source/he/filter/source/config/fragments/filters.po libreoffice-7.5.2~rc2/translations/source/he/filter/source/config/fragments/filters.po --- libreoffice-7.5.1~rc2/translations/source/he/filter/source/config/fragments/filters.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/filter/source/config/fragments/filters.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2021-10-27 20:07+0000\n" +"PO-Revision-Date: 2023-03-14 12: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: 1530485562.000000\n" #. FR4Ff @@ -158,7 +158,6 @@ #. ZBGoe #: CorelPresentationExchange.xcu -#, fuzzy msgctxt "" "CorelPresentationExchange.xcu\n" "Corel Presentation Exchange\n" @@ -225,7 +224,7 @@ "UIName\n" "value.text" msgid "EMZ - Compressed Enhanced Metafile" -msgstr "" +msgstr "EMZ - קובץ מטא מורחב דחוס" #. eFNDy #: EPS___Encapsulated_PostScript.xcu @@ -595,29 +594,27 @@ "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 @@ -2232,25 +2229,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/filter/source/config/fragments/internalgraphicfilters.po libreoffice-7.5.2~rc2/translations/source/he/filter/source/config/fragments/internalgraphicfilters.po --- libreoffice-7.5.1~rc2/translations/source/he/filter/source/config/fragments/internalgraphicfilters.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/filter/source/config/fragments/internalgraphicfilters.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2020-03-29 07:55+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: 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 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/forms/messages.po libreoffice-7.5.2~rc2/translations/source/he/forms/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/forms/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/forms/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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.5.1~rc2/translations/source/he/formula/messages.po libreoffice-7.5.2~rc2/translations/source/he/formula/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/formula/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/formula/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 17:45+0100\n" -"PO-Revision-Date: 2021-01-26 17:37+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 1542023483.000000\n" #. YfKFn @@ -2696,7 +2696,7 @@ #: formula/uiconfig/ui/functionpage.ui:45 msgctxt "functionpage|extended_tip|search" msgid "Search for a function name. Also matches function descriptions." -msgstr "" +msgstr "חיפוש אחר שם פונקציה. מחפש גם בתיאורי הפונקציות." #. MbTAL #: formula/uiconfig/ui/functionpage.ui:60 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/fpicker/messages.po libreoffice-7.5.2~rc2/translations/source/he/fpicker/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/fpicker/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/fpicker/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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 12: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.5.1~rc2/translations/source/he/framework/messages.po libreoffice-7.5.2~rc2/translations/source/he/framework/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/framework/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/framework/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: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.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.5.1~rc2/translations/source/he/helpcontent2/source/text/scalc/02.po libreoffice-7.5.2~rc2/translations/source/he/helpcontent2/source/text/scalc/02.po --- libreoffice-7.5.1~rc2/translations/source/he/helpcontent2/source/text/scalc/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/helpcontent2/source/text/scalc/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\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:34+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 @@ -338,7 +338,7 @@ "hd_id3156326\n" "help.text" msgid "Name Box" -msgstr "" +msgstr "תיבת שם" #. bJypW #: 06010000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/he/helpcontent2/source/text/sdatabase.po libreoffice-7.5.2~rc2/translations/source/he/helpcontent2/source/text/sdatabase.po --- libreoffice-7.5.1~rc2/translations/source/he/helpcontent2/source/text/sdatabase.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/helpcontent2/source/text/sdatabase.po 2023-03-24 16:53:38.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-12-07 19:22+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-12 04:34+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.5.1~rc2/translations/source/he/helpcontent2/source/text/smath/06.po libreoffice-7.5.2~rc2/translations/source/he/helpcontent2/source/text/smath/06.po --- libreoffice-7.5.1~rc2/translations/source/he/helpcontent2/source/text/smath/06.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/helpcontent2/source/text/smath/06.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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:34+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.5.1~rc2/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.5.2~rc2/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.5.1~rc2/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-14 12: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 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-7.5.2~rc2/translations/source/he/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-7.5.1~rc2/translations/source/he/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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 12: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.5.1~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:44+0100\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:35+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 "תרשימים זעירים" #. A3aEa #: CalcCommands.xcu @@ -2114,7 +2114,7 @@ "Label\n" "value.text" msgid "Sparkline..." -msgstr "" +msgstr "תרשים זעיר…" #. CoZgJ #: 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 @@ -5784,7 +5784,7 @@ "Label\n" "value.text" msgid "Data Table..." -msgstr "" +msgstr "טבלת נתונים…" #. EfDfA #: ChartCommands.xcu @@ -6554,7 +6554,7 @@ "Label\n" "value.text" msgid "Insert Data Table" -msgstr "" +msgstr "הוספת טבלת נתונים" #. PFPqW #: ChartCommands.xcu @@ -6564,7 +6564,7 @@ "Label\n" "value.text" msgid "Delete Data Table" -msgstr "" +msgstr "מחיקת טבלת נתונים" #. 3wU84 #: ChartCommands.xcu @@ -6774,7 +6774,7 @@ "Label\n" "value.text" msgid "Default Colors for Data Series" -msgstr "צבעי בררת המחדל לסדרת הנתונים" +msgstr "צבעי ברירת המחדל לסדרת הנתונים" #. rgB6S #: ChartCommands.xcu @@ -8104,7 +8104,7 @@ "Label\n" "value.text" msgid "Rename Page..." -msgstr "" +msgstr "שינוי שם עמוד…" #. gCyCR #: DrawImpressCommands.xcu @@ -8114,7 +8114,7 @@ "Label\n" "value.text" msgid "Rename Slide..." -msgstr "" +msgstr "שינוי שם שקופית…" #. EoR9S #: DrawImpressCommands.xcu @@ -8174,7 +8174,7 @@ "Label\n" "value.text" msgid "~Rehearse Timings" -msgstr "תרגול תזמונים" +msgstr "תרגול ת~זמונים" #. vUCFf #: DrawImpressCommands.xcu @@ -8214,7 +8214,7 @@ "Label\n" "value.text" msgid "~Hide Slide" -msgstr "הסתרת שקופית" +msgstr "ה~סתרת שקופית" #. AVpQn #: DrawImpressCommands.xcu @@ -8224,7 +8224,7 @@ "Label\n" "value.text" msgid "Te~xt Attributes..." -msgstr "" +msgstr "מאפייני ~טקסט…" #. GR6Sf #: DrawImpressCommands.xcu @@ -8528,7 +8528,6 @@ #. 5wF48 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:HelplinesVisible\n" @@ -8539,7 +8538,6 @@ #. RC4j5 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:HelplinesFront\n" @@ -8570,7 +8568,6 @@ #. btZfh #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideChangeWindow\n" @@ -8587,7 +8584,7 @@ "Label\n" "value.text" msgid "Master Slides" -msgstr "" +msgstr "שקופיות הורה" #. yFsEC #: DrawImpressCommands.xcu @@ -8641,7 +8638,6 @@ #. 5Ndvi #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:DuplicateSlide\n" @@ -8688,7 +8684,7 @@ "Label\n" "value.text" msgid "~Master Slide" -msgstr "" +msgstr "שקופית הו~רה" #. ffjrk #: DrawImpressCommands.xcu @@ -8698,7 +8694,7 @@ "Label\n" "value.text" msgid "M~aster Notes" -msgstr "" +msgstr "ה~ערות הורה" #. 5jAWW #: DrawImpressCommands.xcu @@ -8768,7 +8764,7 @@ "Label\n" "value.text" msgid "~Slide Number" -msgstr "" +msgstr "מס׳ ~שקופית" #. iE2Ro #: DrawImpressCommands.xcu @@ -8988,7 +8984,7 @@ "Label\n" "value.text" msgid "Format Page" -msgstr "" +msgstr "עיצוב עמוד" #. FbDxM #: DrawImpressCommands.xcu @@ -8998,7 +8994,7 @@ "ContextLabel\n" "value.text" msgid "Page Properties..." -msgstr "" +msgstr "מאפייני עמוד…" #. W6trc #: DrawImpressCommands.xcu @@ -9008,7 +9004,7 @@ "Label\n" "value.text" msgid "Format Slide" -msgstr "" +msgstr "עיצוב שקופית" #. GNR3n #: DrawImpressCommands.xcu @@ -9018,7 +9014,7 @@ "ContextLabel\n" "value.text" msgid "Slide Properties..." -msgstr "" +msgstr "מאפייני שקופית…" #. bhvTx #: DrawImpressCommands.xcu @@ -9048,7 +9044,7 @@ "Label\n" "value.text" msgid "E~xternal Links..." -msgstr "" +msgstr "קישורים ~חיצוניים…" #. pQhVJ #: DrawImpressCommands.xcu @@ -9112,25 +9108,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 @@ -9284,14 +9278,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 @@ -9315,14 +9308,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 @@ -9346,14 +9338,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 @@ -9503,7 +9494,7 @@ "Label\n" "value.text" msgid "Change Slide Master..." -msgstr "" +msgstr "החלפת שקף הורה…" #. 7AUwW #: DrawImpressCommands.xcu @@ -9513,7 +9504,7 @@ "Label\n" "value.text" msgid "Master Page..." -msgstr "" +msgstr "עמוד הורה…" #. RxHFo #: DrawImpressCommands.xcu @@ -9527,25 +9518,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 @@ -9645,7 +9634,7 @@ "Label\n" "value.text" msgid "Scale" -msgstr "" +msgstr "קנה מידה" #. sdUMB #: DrawImpressCommands.xcu @@ -9655,7 +9644,7 @@ "TooltipLabel\n" "value.text" msgid "Scaling at the current document" -msgstr "" +msgstr "שינוי קנה המידה של המסמך הנוכחי" #. hTkgv #: DrawImpressCommands.xcu @@ -9905,7 +9894,7 @@ "Label\n" "value.text" msgid "Redacted Export" -msgstr "" +msgstr "ייצוא ערוך" #. kBC43 #: DrawImpressCommands.xcu @@ -10149,7 +10138,6 @@ #. tSqLW #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:HelplinesUse\n" @@ -10276,7 +10264,7 @@ "Label\n" "value.text" msgid "Master Background" -msgstr "" +msgstr "רקע הורה" #. EP8Aw #: DrawImpressCommands.xcu @@ -10286,18 +10274,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 @@ -10521,7 +10508,6 @@ #. cv8x3 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Popups..uno:SnapLinesMenu\n" @@ -10609,7 +10595,7 @@ "Label\n" "value.text" msgid "S~lide Number..." -msgstr "" +msgstr "מספר ש~קופית…" #. imXpA #: DrawImpressCommands.xcu @@ -10739,7 +10725,7 @@ "Label\n" "value.text" msgid "Distribute Rows Evenly" -msgstr "" +msgstr "פיזור שורות באופן שווה" #. tjGQ2 #: DrawImpressCommands.xcu @@ -10809,7 +10795,7 @@ "Label\n" "value.text" msgid "Delete Table" -msgstr "" +msgstr "מחיקת טבלה" #. Lbfd9 #: DrawImpressCommands.xcu @@ -10979,7 +10965,7 @@ "Label\n" "value.text" msgid "Minimize ~Presentation..." -msgstr "" +msgstr "מ~זעור מצגת…" #. mYRFz #: DrawImpressCommands.xcu @@ -11550,7 +11536,7 @@ "Label\n" "value.text" msgid "Export Redacted PDF (Black)" -msgstr "" +msgstr "ייצוא PDF מצומצם (שחור)" #. r924M #: DrawImpressCommands.xcu @@ -11560,7 +11546,7 @@ "Label\n" "value.text" msgid "Export Redacted PDF (White)" -msgstr "" +msgstr "ייצוא PDF מצומצם (לבן)" #. NErRC #: DrawImpressCommands.xcu @@ -11570,7 +11556,7 @@ "Label\n" "value.text" msgid "Export Preview PDF" -msgstr "" +msgstr "ייצוא PDF לתצוגה מקדימה" #. sBp7W #: DrawImpressCommands.xcu @@ -11650,7 +11636,7 @@ "UIName\n" "value.text" msgid "Connector/Freeform Line" -msgstr "" +msgstr "קו מחבר/חופשי" #. 5F6Qc #: DrawWindowState.xcu @@ -11790,7 +11776,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "עצם‪OLE ‬‏" +msgstr "עצם OLE" #. 3vhCE #: DrawWindowState.xcu @@ -11804,14 +11790,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 @@ -11821,7 +11806,7 @@ "UIName\n" "value.text" msgid "Page Pane (no selection)" -msgstr "חלונית עמודים (ללא בחירה)" +msgstr "סרגל עמודים (ללא בחירה)" #. 5ascH #: DrawWindowState.xcu @@ -11831,7 +11816,7 @@ "UIName\n" "value.text" msgid "Page Master Pane" -msgstr "" +msgstr "סרגל עמודי הורה" #. hMUvt #: DrawWindowState.xcu @@ -11841,7 +11826,7 @@ "UIName\n" "value.text" msgid "Page Master Pane (no selection)" -msgstr "" +msgstr "סרגל עמודי הורה (ללא בחירה)" #. SvG2a #: DrawWindowState.xcu @@ -12001,7 +11986,7 @@ "UIName\n" "value.text" msgid "Redacted Export" -msgstr "" +msgstr "ייצוא עם שינויים" #. GvLVw #: DrawWindowState.xcu @@ -12011,7 +11996,7 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "" +msgstr "עיגולים ואליפסות מיושנים" #. NyiYB #: DrawWindowState.xcu @@ -12141,7 +12126,7 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "" +msgstr "מרובעים ישנים" #. ZcCn9 #: DrawWindowState.xcu @@ -12301,7 +12286,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "תצוגת מאסטר" +msgstr "תצוגת הורה" #. Bcmob #: DrawWindowState.xcu @@ -12331,7 +12316,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "פיזור הבחירה" #. qQQAi #: Effects.xcu @@ -12401,7 +12386,7 @@ "Label\n" "value.text" msgid "Oval Vertical" -msgstr "" +msgstr "אליפסה אנכית" #. ASENz #: Effects.xcu @@ -12671,7 +12656,7 @@ "Label\n" "value.text" msgid "Pinwheel" -msgstr "פרופלור" +msgstr "מדחף" #. hDEjw #: Effects.xcu @@ -12831,7 +12816,7 @@ "Label\n" "value.text" msgid "Glide" -msgstr "לדאות" +msgstr "דאייה" #. Cchas #: Effects.xcu @@ -13651,7 +13636,7 @@ "Label\n" "value.text" msgid "Spiral Out" -msgstr "סילסול החוצה" +msgstr "סלסול החוצה" #. kyPGZ #: Effects.xcu @@ -13801,7 +13786,7 @@ "Label\n" "value.text" msgid "Regular Triangle" -msgstr "" +msgstr "משולש רגיל" #. BUJ28 #: Effects.xcu @@ -14371,7 +14356,7 @@ "Label\n" "value.text" msgid "Fall and fade out" -msgstr "" +msgstr "נפילה ועמעום החוצה" #. cCMGr #: Effects.xcu @@ -14381,7 +14366,7 @@ "Label\n" "value.text" msgid "Fall simulated" -msgstr "" +msgstr "נפילה מדומה" #. BqK9h #: Effects.xcu @@ -14391,7 +14376,7 @@ "Label\n" "value.text" msgid "Shoot right and return" -msgstr "" +msgstr "ירייה ימינה וחזרה" #. DHrg4 #: Effects.xcu @@ -14401,7 +14386,7 @@ "Label\n" "value.text" msgid "Shoot left and return" -msgstr "" +msgstr "ירייה שמאלה וחזרה" #. MZBtm #: Effects.xcu @@ -15021,7 +15006,7 @@ "Label\n" "value.text" msgid "Venetian" -msgstr "" +msgstr "ונציאני" #. 3CeRi #: Effects.xcu @@ -15031,7 +15016,7 @@ "Label\n" "value.text" msgid "3D Venetian" -msgstr "" +msgstr "ונציאני תלת־ממדי" #. ug9XD #: Effects.xcu @@ -15081,7 +15066,7 @@ "Label\n" "value.text" msgid "Uncover" -msgstr "" +msgstr "חשיפה" #. 6y2gN #: Effects.xcu @@ -15175,7 +15160,6 @@ #. Exqsw #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.diagonal-squares\n" @@ -15307,7 +15291,6 @@ #. WKvMA #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.rochade\n" @@ -15318,14 +15301,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 @@ -15369,7 +15351,6 @@ #. CGDxF #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.plain\n" @@ -15380,25 +15361,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 @@ -15408,11 +15387,10 @@ "Label\n" "value.text" msgid "Through White" -msgstr "" +msgstr "מבעד ללבן" #. mFSnT #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.left-right\n" @@ -15433,7 +15411,6 @@ #. CzC7N #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.top-bottom\n" @@ -15594,14 +15571,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 @@ -15611,7 +15587,7 @@ "Label\n" "value.text" msgid "Oval Vertical" -msgstr "" +msgstr "אליפטי אנכי" #. GGsX7 #: Effects.xcu @@ -15635,7 +15611,6 @@ #. L8kxg #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-in\n" @@ -15646,7 +15621,6 @@ #. Bpr6S #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-out\n" @@ -15667,7 +15641,6 @@ #. yot78 #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical-out\n" @@ -15684,7 +15657,7 @@ "Label\n" "value.text" msgid "Clockwise 1 Spoke" -msgstr "" +msgstr "צלע 1 עם כיוון השעון" #. DBeid #: Effects.xcu @@ -15694,7 +15667,7 @@ "Label\n" "value.text" msgid "Clockwise 2 Spokes" -msgstr "" +msgstr "2 צלעות עם כיוון השעון" #. tqfwa #: Effects.xcu @@ -15704,7 +15677,7 @@ "Label\n" "value.text" msgid "Clockwise 3 Spokes" -msgstr "" +msgstr "3 צלעות עם כיוון השעון" #. J6dQT #: Effects.xcu @@ -15714,7 +15687,7 @@ "Label\n" "value.text" msgid "Clockwise 4 Spokes" -msgstr "" +msgstr "4 צלעות עם כיוון השעון" #. itXUE #: Effects.xcu @@ -15724,7 +15697,7 @@ "Label\n" "value.text" msgid "Clockwise 8 Spokes" -msgstr "" +msgstr "8 צלעות עם כיוון השעון" #. 6UJix #: Effects.xcu @@ -15734,7 +15707,7 @@ "Label\n" "value.text" msgid "Counterclockwise 1 Spoke" -msgstr "" +msgstr "צלע 1 נגד כיוון השעון" #. eS9ZY #: Effects.xcu @@ -15744,7 +15717,7 @@ "Label\n" "value.text" msgid "Counterclockwise 2 Spokes" -msgstr "" +msgstr "2 צלעות נגד כיוון השעון" #. vBA4C #: Effects.xcu @@ -15754,7 +15727,7 @@ "Label\n" "value.text" msgid "Counterclockwise 3 Spokes" -msgstr "" +msgstr "3 צלעות נגד כיוון השעון" #. EwATi #: Effects.xcu @@ -15764,7 +15737,7 @@ "Label\n" "value.text" msgid "Counterclockwise 4 Spokes" -msgstr "" +msgstr "4 צלעות נגד כיוון השעון" #. FRtBZ #: Effects.xcu @@ -15774,18 +15747,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 @@ -15795,7 +15767,7 @@ "Label\n" "value.text" msgid "Outside" -msgstr "בחוץ" +msgstr "החוצה" #. BCERK #: Effects.xcu @@ -16219,7 +16191,6 @@ #. GGzmp #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:Polygon\n" @@ -16260,14 +16231,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 @@ -16511,7 +16481,6 @@ #. ma5HR #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FlowChartShapes\n" @@ -16878,7 +16847,7 @@ "Label\n" "value.text" msgid "Prohibited" -msgstr "" +msgstr "אסור" #. yrQG7 #: GenericCommands.xcu @@ -17662,7 +17631,6 @@ #. P5F8H #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:StarShapes.concave-star6\n" @@ -17799,7 +17767,7 @@ "Label\n" "value.text" msgid "Fade Right" -msgstr "עימום ימינה" +msgstr "עמעום ימינה" #. cVN9G #: GenericCommands.xcu @@ -17809,7 +17777,7 @@ "Label\n" "value.text" msgid "Fade Left" -msgstr "עימום שמאלה" +msgstr "עמעום שמאלה" #. GUV9N #: GenericCommands.xcu @@ -17819,7 +17787,7 @@ "Label\n" "value.text" msgid "Fade Up" -msgstr "עימום כלפי מעלה" +msgstr "עמעום למעלה" #. GX9RW #: GenericCommands.xcu @@ -17829,7 +17797,7 @@ "Label\n" "value.text" msgid "Fade Down" -msgstr "עימום כלפי מטה" +msgstr "עמעום למטה" #. GrAdY #: GenericCommands.xcu @@ -17839,7 +17807,7 @@ "Label\n" "value.text" msgid "Slant Up" -msgstr "נטיה לפי מעלה" +msgstr "נטייה למעלה" #. uGLfh #: GenericCommands.xcu @@ -17849,7 +17817,7 @@ "Label\n" "value.text" msgid "Slant Down" -msgstr "נטיה כלפי מטה" +msgstr "נטייה למטה" #. mQF7m #: GenericCommands.xcu @@ -17859,7 +17827,7 @@ "Label\n" "value.text" msgid "Fade Up and Right" -msgstr "עימום כלפי מעלה וימין" +msgstr "עמעום למעלה וימינה" #. nckfA #: GenericCommands.xcu @@ -17869,7 +17837,7 @@ "Label\n" "value.text" msgid "Fade Up and Left" -msgstr "עימום כלפי מעלה ושמאל" +msgstr "עמעום למעלה ושמאלה" #. nYCbv #: GenericCommands.xcu @@ -17879,7 +17847,7 @@ "Label\n" "value.text" msgid "Chevron Up" -msgstr "שברון לפי מעלה" +msgstr "חצים למעלה" #. wcDFf #: GenericCommands.xcu @@ -17889,7 +17857,7 @@ "Label\n" "value.text" msgid "Chevron Down" -msgstr "שברון כלפי מטה" +msgstr "חצים למטה" #. jCyuQ #: GenericCommands.xcu @@ -17989,7 +17957,7 @@ "Label\n" "value.text" msgid "Arch Right (Pour)" -msgstr "קשת ימינית (שופכת)‏" +msgstr "קשת ימנית (שופכת)‏" #. jtHqA #: GenericCommands.xcu @@ -18049,7 +18017,7 @@ "Label\n" "value.text" msgid "~Zoom" -msgstr "מ~רחק מתצוגה" +msgstr "ת~קריב" #. RZ28W #: GenericCommands.xcu @@ -18059,7 +18027,7 @@ "Label\n" "value.text" msgid "~Zoom..." -msgstr "~מרחק מתצוגה..." +msgstr "ת~קריב…" #. xTbFE #: GenericCommands.xcu @@ -18069,7 +18037,7 @@ "Label\n" "value.text" msgid "Spin Button" -msgstr "כפתור סבסוב" +msgstr "כפתור טווח" #. JWEfK #: GenericCommands.xcu @@ -18089,7 +18057,7 @@ "Label\n" "value.text" msgid "Replace with Spin Button" -msgstr "החלפה בכפתור סיבסוב" +msgstr "החלפה בכפתורי טווח" #. X8V6t #: GenericCommands.xcu @@ -18179,7 +18147,7 @@ "Label\n" "value.text" msgid "Select Macro..." -msgstr "" +msgstr "בחירת תסריט מאקרו…" #. EEBZY #: GenericCommands.xcu @@ -18209,7 +18177,7 @@ "Label\n" "value.text" msgid "Increase" -msgstr "" +msgstr "הגדלה" #. DC2Cx #: GenericCommands.xcu @@ -18269,11 +18237,10 @@ "Label\n" "value.text" msgid "Select Module..." -msgstr "" +msgstr "בחירת מודול…" #. R7qZd #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ModuleDialog\n" @@ -18300,7 +18267,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Shadow" -msgstr "" +msgstr "החלפת מצב הצללה" #. c9PFU #: GenericCommands.xcu @@ -18320,7 +18287,7 @@ "Label\n" "value.text" msgid "Outline Font Effect" -msgstr "" +msgstr "אפקט גופן מתאר" #. ND6wH #: GenericCommands.xcu @@ -18330,7 +18297,7 @@ "TooltipLabel\n" "value.text" msgid "Apply outline attribute to font. Not all fonts implement this attribute." -msgstr "" +msgstr "החלת מאפיין מתאר לגופן. לא כל הגופנים מממשים את המאפיין הזה." #. CjLxE #: GenericCommands.xcu @@ -18440,7 +18407,7 @@ "Label\n" "value.text" msgid "Find Values" -msgstr "" +msgstr "איתור ערכים" #. 9rvmc #: GenericCommands.xcu @@ -18450,7 +18417,7 @@ "TooltipLabel\n" "value.text" msgid "Find text in values, to search in formulas use the dialog" -msgstr "" +msgstr "איתור טקסט בערכים, כדי לחפש בנוסחאות יש להשתמש בחלונית" #. NCRsb #: GenericCommands.xcu @@ -18490,7 +18457,7 @@ "Label\n" "value.text" msgid "Search Formatted Display String" -msgstr "" +msgstr "חיפוש במחרוזת תצוגה מעוצבת" #. hoECC #: GenericCommands.xcu @@ -18534,14 +18501,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 @@ -18681,7 +18647,7 @@ "Label\n" "value.text" msgid "Send Default Fax" -msgstr "שליחת פקס בררת מחדל" +msgstr "שליחת פקס ברירת מחדל" #. AAx8f #: GenericCommands.xcu @@ -18721,7 +18687,7 @@ "Label\n" "value.text" msgid "Line Spacing: 1.15" -msgstr "" +msgstr "ריווח שורות: 1.15" #. q8wJt #: GenericCommands.xcu @@ -19005,18 +18971,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" @@ -19403,7 +19367,7 @@ "TooltipLabel\n" "value.text" msgid "Open Templates Manager" -msgstr "" +msgstr "פתיחת מנהל תבניות" #. FFpcG #: GenericCommands.xcu @@ -19518,37 +19482,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 @@ -19878,7 +19839,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Chart" -msgstr "הכנסת תרשים" +msgstr "הוספת תרשים" #. Za7zT #: GenericCommands.xcu @@ -19888,7 +19849,7 @@ "Label\n" "value.text" msgid "Unordered List" -msgstr "" +msgstr "רשימה בלי סדר" #. XoWcu #: GenericCommands.xcu @@ -19898,7 +19859,7 @@ "ContextLabel\n" "value.text" msgid "~Unordered List" -msgstr "" +msgstr "רשימה ~ללא סדר" #. d6G5u #: GenericCommands.xcu @@ -19908,7 +19869,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Unordered List" -msgstr "" +msgstr "החלפת מצב רשימה ללא סדר" #. DFY6X #: GenericCommands.xcu @@ -19918,7 +19879,7 @@ "Label\n" "value.text" msgid "Ordered List" -msgstr "" +msgstr "רשימה מסודרת" #. yMEgE #: GenericCommands.xcu @@ -19928,7 +19889,7 @@ "ContextLabel\n" "value.text" msgid "~Ordered List" -msgstr "" +msgstr "רשימה מ~סודרת" #. oJFRD #: GenericCommands.xcu @@ -19938,7 +19899,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Ordered List" -msgstr "" +msgstr "החלפת מצב רשימה מסודרת" #. jZGY5 #: GenericCommands.xcu @@ -19948,7 +19909,7 @@ "Label\n" "value.text" msgid "Outline Format" -msgstr "" +msgstr "עיצוב מתאר" #. TSDD9 #: GenericCommands.xcu @@ -19958,7 +19919,7 @@ "ContextLabel\n" "value.text" msgid "~Outline Format" -msgstr "" +msgstr "~עיצוב מתאר" #. RMCDt #: GenericCommands.xcu @@ -19968,7 +19929,7 @@ "TooltipLabel\n" "value.text" msgid "Select Outline Format" -msgstr "" +msgstr "בחירת עיצוב מתאר" #. uKMCr #: GenericCommands.xcu @@ -19978,7 +19939,7 @@ "Label\n" "value.text" msgid "A~rea..." -msgstr "שטח...‏" +msgstr "~שטח…" #. H7kng #: GenericCommands.xcu @@ -19988,7 +19949,7 @@ "Label\n" "value.text" msgid "L~ine..." -msgstr "קו...‏" +msgstr "~קו…" #. cAVAA #: GenericCommands.xcu @@ -19998,7 +19959,7 @@ "Label\n" "value.text" msgid "Dimen~sions..." -msgstr "" +msgstr "ממ~דים…" #. TgPVp #: GenericCommands.xcu @@ -20018,7 +19979,7 @@ "Label\n" "value.text" msgid "Ignore" -msgstr "התעלם" +msgstr "התעלמות" #. qgNxD #: GenericCommands.xcu @@ -20028,7 +19989,7 @@ "Label\n" "value.text" msgid "IgnoreAll" -msgstr "התעלם מהכל" +msgstr "התעלמות מהכול" #. Z8CTY #: GenericCommands.xcu @@ -20038,7 +19999,7 @@ "Label\n" "value.text" msgid "Apply Suggestion" -msgstr "החל הצעה" +msgstr "החלת הצעה" #. ucq4M #: GenericCommands.xcu @@ -20108,7 +20069,7 @@ "Label\n" "value.text" msgid "Cycle Case" -msgstr "" +msgstr "החלפת רישיות חזרתית" #. pvCBX #: GenericCommands.xcu @@ -20118,7 +20079,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 @@ -20128,7 +20089,7 @@ "Label\n" "value.text" msgid "H~alf-width" -msgstr "מחצית הרוחב" +msgstr "מ~חצית הרוחב" #. JKFBx #: GenericCommands.xcu @@ -20138,7 +20099,7 @@ "Label\n" "value.text" msgid "Text from File..." -msgstr "טקסט מקובץ..." +msgstr "טקסט מקובץ…" #. YGBc4 #: GenericCommands.xcu @@ -20198,7 +20159,7 @@ "Label\n" "value.text" msgid "~Hiragana" -msgstr "כתב יפני הירגאנה" +msgstr "כתב יפני ~היראגאנה" #. CbRAN #: GenericCommands.xcu @@ -20228,7 +20189,7 @@ "Label\n" "value.text" msgid "~Katakana" -msgstr "כתב יפני קטאקנה" +msgstr "כתב יפני ~קאטאקאנה" #. uTkGG #: GenericCommands.xcu @@ -20238,7 +20199,7 @@ "Label\n" "value.text" msgid "Propert~ies..." -msgstr "מאפיינים...‏" +msgstr "מאפיינים…" #. jKBdE #: GenericCommands.xcu @@ -20258,7 +20219,7 @@ "Label\n" "value.text" msgid "Move Up" -msgstr "" +msgstr "העלאה למעלה" #. J83AS #: GenericCommands.xcu @@ -20268,7 +20229,7 @@ "TooltipLabel\n" "value.text" msgid "Move selected paragraphs up one paragraph" -msgstr "" +msgstr "העלאת הפסקאות הנבחרות למעלה בפסקה אחת" #. GvBYt #: GenericCommands.xcu @@ -20278,7 +20239,7 @@ "Label\n" "value.text" msgid "~New" -msgstr "חדש" +msgstr "~חדש" #. E8Ykn #: GenericCommands.xcu @@ -20288,7 +20249,7 @@ "Label\n" "value.text" msgid "Move Down" -msgstr "" +msgstr "הורדה למטה" #. ZEVXU #: GenericCommands.xcu @@ -20298,7 +20259,7 @@ "TooltipLabel\n" "value.text" msgid "Move selected paragraphs down one paragraph" -msgstr "" +msgstr "הורדת הפסקאות הנבחרות למטה בפסקה אחת" #. KQLPA #: GenericCommands.xcu @@ -20328,7 +20289,7 @@ "TooltipLabel\n" "value.text" msgid "Promote outline level of selected list paragraphs" -msgstr "" +msgstr "קידום רמות המתאר של פסקאות הרשימה הנבחרות" #. 3WakF #: GenericCommands.xcu @@ -20378,7 +20339,7 @@ "Label\n" "value.text" msgid "Demote" -msgstr "הורדה בדרגה" +msgstr "הורדת רמה" #. ZXHAs #: GenericCommands.xcu @@ -20388,18 +20349,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 @@ -20433,14 +20393,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 @@ -20460,7 +20419,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Read Only Mode" -msgstr "הפעל/בטל מצב קריאה בלבד" +msgstr "החלפת מצב קריאה בלבד" #. BuuAR #: GenericCommands.xcu @@ -20470,7 +20429,7 @@ "Label\n" "value.text" msgid "Image Control" -msgstr "בקרת תמונה" +msgstr "פקד תמונה" #. EDfVz #: GenericCommands.xcu @@ -20480,18 +20439,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 @@ -20581,7 +20539,7 @@ "Label\n" "value.text" msgid "Styles Preview" -msgstr "" +msgstr "תצוגה מקדימה של סגנונות" #. Zt2GN #: GenericCommands.xcu @@ -20631,7 +20589,7 @@ "ContextLabel\n" "value.text" msgid "~New Style from Selection" -msgstr "" +msgstr "סגנון חדש מ~בחירה" #. kk8gA #: GenericCommands.xcu @@ -20671,7 +20629,7 @@ "ContextLabel\n" "value.text" msgid "~Update Selected Style" -msgstr "" +msgstr "~עדכון הסגנון הנבחר" #. sgMoW #: GenericCommands.xcu @@ -20781,7 +20739,7 @@ "Label\n" "value.text" msgid "Tree Control" -msgstr "פקד עצי" +msgstr "פקד עץ" #. ncarC #: GenericCommands.xcu @@ -20791,7 +20749,7 @@ "Label\n" "value.text" msgid "Hyperlink Control" -msgstr "" +msgstr "פקד קישור" #. 2rDGb #: GenericCommands.xcu @@ -20811,7 +20769,7 @@ "Label\n" "value.text" msgid "Insert OLE Object" -msgstr "" +msgstr "הוספת עצם OLE" #. gB86r #: GenericCommands.xcu @@ -20821,7 +20779,7 @@ "ContextLabel\n" "value.text" msgid "~OLE Object..." -msgstr "" +msgstr "~עצם OLE…" #. zKjoT #: GenericCommands.xcu @@ -20831,7 +20789,7 @@ "TooltipLabel\n" "value.text" msgid "Open dialog to insert OLE object" -msgstr "" +msgstr "פתיחת חלונית להוספת עצם OLE" #. 6B9a2 #: GenericCommands.xcu @@ -20841,7 +20799,7 @@ "Label\n" "value.text" msgid "Float~ing Frame..." -msgstr "מסגרת צפה..." +msgstr "מסגרת ~צפה…" #. NMhAC #: GenericCommands.xcu @@ -20871,7 +20829,7 @@ "Label\n" "value.text" msgid "~Hide Details" -msgstr "הסתרת פרטים" +msgstr "ה~סתרת פרטים" #. gQ7DC #: GenericCommands.xcu @@ -20891,7 +20849,7 @@ "Label\n" "value.text" msgid "~Show Details" -msgstr "הצגת פרטים" +msgstr "הצגת ~פרטים" #. fe5CC #: GenericCommands.xcu @@ -20901,7 +20859,7 @@ "Label\n" "value.text" msgid "Object Zoom" -msgstr "מרחק מתצוגה לפריט" +msgstr "מרחק מהעצם" #. kpKCn #: GenericCommands.xcu @@ -20921,7 +20879,7 @@ "Label\n" "value.text" msgid "~Group..." -msgstr "קיבוץ...‏" +msgstr "~קיבוץ…" #. nEL3F #: GenericCommands.xcu @@ -20941,7 +20899,7 @@ "Label\n" "value.text" msgid "~Ungroup..." -msgstr "שבירת קיבוץ...‏" +msgstr "~פירוק…" #. emKjD #: GenericCommands.xcu @@ -20961,7 +20919,7 @@ "Label\n" "value.text" msgid "Character Highlighting Color" -msgstr "" +msgstr "צבע הדגשת תווים" #. h68Rw #: GenericCommands.xcu @@ -21001,7 +20959,7 @@ "Label\n" "value.text" msgid "~Hyperlink" -msgstr "" +msgstr "~קישור" #. UgtoL #: GenericCommands.xcu @@ -21011,7 +20969,7 @@ "PopupLabel\n" "value.text" msgid "Edit Hyperlink..." -msgstr "" +msgstr "עריכת קישור…" #. a7D2m #: GenericCommands.xcu @@ -21021,7 +20979,7 @@ "Label\n" "value.text" msgid "Copy Hyperlink Location" -msgstr "" +msgstr "העתקת מיקום קישור" #. EaNDM #: GenericCommands.xcu @@ -21051,7 +21009,7 @@ "Label\n" "value.text" msgid "~Formula Object..." -msgstr "" +msgstr "עצם ~נוסחה…" #. CeBmP #: GenericCommands.xcu @@ -21061,7 +21019,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Formula Object" -msgstr "" +msgstr "הוספת עצם נוסחה" #. 2ykCZ #: GenericCommands.xcu @@ -21071,7 +21029,7 @@ "Label\n" "value.text" msgid "Label field" -msgstr "שדה תוית" +msgstr "שדה תווית" #. xZDu8 #: GenericCommands.xcu @@ -21081,7 +21039,7 @@ "Label\n" "value.text" msgid "OLE Ob~ject" -msgstr "" +msgstr "ע~צם OLE" #. o5DE2 #: GenericCommands.xcu @@ -21091,7 +21049,7 @@ "TooltipLabel\n" "value.text" msgid "Menu for editing or saving OLE objects" -msgstr "" +msgstr "תפריט לעריכת או שמירת עצמי OLE" #. WQPXj #: GenericCommands.xcu @@ -21111,7 +21069,7 @@ "Label\n" "value.text" msgid "~XML Filter Settings..." -msgstr "הגדרות מסנני XML..." +msgstr "הגדרות מ~סנני XML…" #. mPdwa #: GenericCommands.xcu @@ -21141,7 +21099,7 @@ "Label\n" "value.text" msgid "Chinese Conversion..." -msgstr "המרת סינית..." +msgstr "המרת סינית…" #. sGMDt #: GenericCommands.xcu @@ -21171,7 +21129,7 @@ "Label\n" "value.text" msgid "Spin Button" -msgstr "כפתור סבסוב" +msgstr "כפתור טווח" #. eF3sV #: GenericCommands.xcu @@ -21231,7 +21189,7 @@ "Label\n" "value.text" msgid "Preview Dialog" -msgstr "דו־שיח תצוגה מקדימה" +msgstr "חלונית תצוגה מקדימה" #. fNSZd #: GenericCommands.xcu @@ -21271,7 +21229,7 @@ "Label\n" "value.text" msgid "~Edit Template..." -msgstr "" +msgstr "עריכת ~תבנית…" #. 3VmbE #: GenericCommands.xcu @@ -21291,7 +21249,7 @@ "Label\n" "value.text" msgid "Sp~readsheet" -msgstr "גיליון אלקטרוני" +msgstr "~גיליון אלקטרוני" #. XeaYs #: GenericCommands.xcu @@ -21301,7 +21259,7 @@ "Label\n" "value.text" msgid "Insert Mode" -msgstr "מצב הכנסה" +msgstr "מצב הוספה" #. EeCVs #: GenericCommands.xcu @@ -21331,7 +21289,7 @@ "Label\n" "value.text" msgid "~Wizards" -msgstr "אשפים" +msgstr "~אשפים" #. TWpTL #: GenericCommands.xcu @@ -21371,7 +21329,7 @@ "Label\n" "value.text" msgid "~New Window" -msgstr "חלון חדש" +msgstr "~חלון חדש" #. tEa3o #: GenericCommands.xcu @@ -21381,7 +21339,7 @@ "Label\n" "value.text" msgid "~Remove Outline" -msgstr "" +msgstr "ה~סרת מתאר" #. pnDUB #: GenericCommands.xcu @@ -21431,7 +21389,7 @@ "Label\n" "value.text" msgid "F~ull Screen" -msgstr "מסך מלא" +msgstr "מסך מ~לא" #. GQ5D7 #: GenericCommands.xcu @@ -21461,7 +21419,7 @@ "Label\n" "value.text" msgid "~Image" -msgstr "תמונה" +msgstr "~תמונה" #. gX9YM #: GenericCommands.xcu @@ -21471,7 +21429,7 @@ "Label\n" "value.text" msgid "Text B~ox and Shape" -msgstr "" +msgstr "תיבת ~טקסט וצורה" #. zFyfF #: GenericCommands.xcu @@ -21591,7 +21549,7 @@ "Label\n" "value.text" msgid "Table Design..." -msgstr "תכנון טבלאות...‏" +msgstr "תכנון טבלאות…" #. pYFdz #: GenericCommands.xcu @@ -21601,7 +21559,7 @@ "Label\n" "value.text" msgid "~Spelling..." -msgstr "בדיקת איות...‏" +msgstr "~איות…" #. zsXN6 #: GenericCommands.xcu @@ -21611,7 +21569,7 @@ "TooltipLabel\n" "value.text" msgid "Check Spelling" -msgstr "" +msgstr "בדיקת איות" #. tNx33 #: GenericCommands.xcu @@ -21621,7 +21579,7 @@ "Label\n" "value.text" msgid "~Recheck Document..." -msgstr "~בדיקת המסמך מחדש..." +msgstr "~בדיקת המסמך מחדש…" #. uBsma #: GenericCommands.xcu @@ -21651,7 +21609,7 @@ "TooltipLabel\n" "value.text" msgid "Check Spelling" -msgstr "" +msgstr "בדיקת איות" #. HAU9m #: GenericCommands.xcu @@ -21681,7 +21639,7 @@ "Label\n" "value.text" msgid "~Spelling..." -msgstr "בדיקת איות...‏" +msgstr "~איות…" #. LYqTn #: GenericCommands.xcu @@ -21691,7 +21649,7 @@ "Label\n" "value.text" msgid "Draw Functions" -msgstr "" +msgstr "פונקציות ציור" #. 38Vrk #: GenericCommands.xcu @@ -21761,7 +21719,7 @@ "Label\n" "value.text" msgid "New FrameSet" -msgstr "‫FrameSet חדש" +msgstr "קבוצת מסגרות חדשה" #. kqyyx #: GenericCommands.xcu @@ -21771,7 +21729,7 @@ "Label\n" "value.text" msgid "~Thesaurus..." -msgstr "אגרון...‏" +msgstr "~אגרון…" #. XBzpL #: GenericCommands.xcu @@ -21791,7 +21749,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Text Box" -msgstr "" +msgstr "הוספת תיבת טקסט" #. ADqze #: GenericCommands.xcu @@ -21811,7 +21769,7 @@ "Label\n" "value.text" msgid "F~ontwork" -msgstr "עבודת גופנים" +msgstr "עבודת ~גופנים" #. AiLcR #: GenericCommands.xcu @@ -21881,7 +21839,7 @@ "Label\n" "value.text" msgid "Split FrameSet Horizontally" -msgstr "פיצול אופקי של ‏‪FrameSet‏" +msgstr "פיצול אופקי של קבוצת מסגרות" #. rnjzF #: GenericCommands.xcu @@ -21891,7 +21849,7 @@ "Label\n" "value.text" msgid "Split FrameSet Vertically" -msgstr "פיצול אנכי של ‏‪FrameSet‏" +msgstr "פיצול אנכי של קבוצת מסגרות" #. yFCL7 #: GenericCommands.xcu @@ -21901,7 +21859,7 @@ "Label\n" "value.text" msgid "Frame Properties" -msgstr "איפיוני מסגרת" +msgstr "מאפייני מסגרת" #. adBA3 #: GenericCommands.xcu @@ -21941,7 +21899,7 @@ "Label\n" "value.text" msgid "Insert Labels" -msgstr "הכנסת תוויות" +msgstr "הוספת תוויות" #. aUHaf #: GenericCommands.xcu @@ -21961,7 +21919,7 @@ "Label\n" "value.text" msgid "~Bring to Front" -msgstr "קידום לחזית" +msgstr "קידום ל~חזית" #. 7bpa4 #: GenericCommands.xcu @@ -21981,7 +21939,7 @@ "Label\n" "value.text" msgid "HT~ML Source" -msgstr "מקור HTM~L‏" +msgstr "מ~קור HTML" #. UKg78 #: GenericCommands.xcu @@ -22011,7 +21969,7 @@ "Label\n" "value.text" msgid "~Merge" -msgstr "מיזוג" +msgstr "מי~זוג" #. rAjSP #: GenericCommands.xcu @@ -22021,7 +21979,7 @@ "Label\n" "value.text" msgid "Merge Cells" -msgstr "" +msgstr "מיזוג תאים" #. ktF7K #: GenericCommands.xcu @@ -22031,7 +21989,7 @@ "Label\n" "value.text" msgid "Split Cells..." -msgstr "" +msgstr "פיצול תאים…" #. 2gYcx #: GenericCommands.xcu @@ -22041,7 +21999,7 @@ "Label\n" "value.text" msgid "~Subtract" -msgstr "חיסור" +msgstr "~חיסור" #. aJNVZ #: GenericCommands.xcu @@ -22051,7 +22009,7 @@ "Label\n" "value.text" msgid "Equalize ~Width" -msgstr "" +msgstr "~פיזור רוחב שווה" #. N6bdq #: GenericCommands.xcu @@ -22061,7 +22019,7 @@ "Label\n" "value.text" msgid "Equalize ~Height" -msgstr "" +msgstr "פיזור ~גובה שווה" #. WUubN #: GenericCommands.xcu @@ -22081,7 +22039,7 @@ "Label\n" "value.text" msgid "I~ntersect" -msgstr "חיתוך" +msgstr "~חיתוך" #. MHhAC #: GenericCommands.xcu @@ -22101,7 +22059,7 @@ "Label\n" "value.text" msgid "Small capitals" -msgstr "אותיות גדולות קטנות" +msgstr "אותיות גדולות בקטן" #. G9iMq #: GenericCommands.xcu @@ -22111,7 +22069,7 @@ "Label\n" "value.text" msgid "P~aragraph..." -msgstr "פסקה..." +msgstr "~פסקה…" #. 8htud #: GenericCommands.xcu @@ -22141,7 +22099,7 @@ "TooltipLabel\n" "value.text" msgid "Select start and end arrowheads for lines." -msgstr "" +msgstr "בחירת ראשי חץ להתחלה ולסוף הקווים." #. FDhkx #: GenericCommands.xcu @@ -22161,7 +22119,7 @@ "Label\n" "value.text" msgid "~Undo" -msgstr "ביטול פעולה" +msgstr "~ביטול פעולה" #. FhmGD #: GenericCommands.xcu @@ -22191,7 +22149,7 @@ "TooltipLabel\n" "value.text" msgid "Clone Formatting (double click for multi-selection)" -msgstr "שכפול העיצוב (לחיצה כפולה לבחירה מרובה)" +msgstr "שכפול העיצוב (לחיצה כפולה לבחירה מגוונת)" #. Kx4N5 #: GenericCommands.xcu @@ -22241,7 +22199,7 @@ "Label\n" "value.text" msgid "~Paste" -msgstr "הדבקה" +msgstr "ה~דבקה" #. Z5gHF #: GenericCommands.xcu @@ -22271,7 +22229,7 @@ "Label\n" "value.text" msgid "Delete C~ontents..." -msgstr "מחיקת תוכן" +msgstr "מחיקת ~תוכן…" #. tEjpF #: GenericCommands.xcu @@ -22281,7 +22239,7 @@ "Label\n" "value.text" msgid "Rotation Pivot Point X" -msgstr "" +msgstr "נקודת X של ציר סיבוב" #. RDCdG #: GenericCommands.xcu @@ -22291,7 +22249,7 @@ "Label\n" "value.text" msgid "Rotation Pivot Point Y" -msgstr "" +msgstr "נקודת Y של ציר סיבוב" #. BSdvf #: GenericCommands.xcu @@ -22301,7 +22259,7 @@ "Label\n" "value.text" msgid "~Select Source..." -msgstr "בחירת מקור...‏" +msgstr "~בחירת מקור…" #. 2fVit #: GenericCommands.xcu @@ -22311,7 +22269,7 @@ "Label\n" "value.text" msgid "~Request..." -msgstr "דרישה...‏" +msgstr "~בקשה…" #. CWnNe #: GenericCommands.xcu @@ -22321,7 +22279,7 @@ "Label\n" "value.text" msgid "Select ~All" -msgstr "בחירת הכל" +msgstr "בחירה בה~כול" #. hZnKV #: GenericCommands.xcu @@ -22331,7 +22289,7 @@ "Label\n" "value.text" msgid "~Edit Contour..." -msgstr "עריכת קו מתאר...‏" +msgstr "עריכת ~קו מתאר…" #. 8NPaD #: GenericCommands.xcu @@ -22341,7 +22299,7 @@ "Label\n" "value.text" msgid "Select ~All" -msgstr "בחירת הכל" +msgstr "בחירה בה~כול" #. qxfRr #: GenericCommands.xcu @@ -22431,7 +22389,7 @@ "Label\n" "value.text" msgid "FrameSet Spacing" -msgstr "ריווח ‏‪FrameSet‏" +msgstr "ריווח קבוצת מסגרות" #. x9HFM #: GenericCommands.xcu @@ -22461,7 +22419,7 @@ "Label\n" "value.text" msgid "To Document Begin" -msgstr "אל תחילת מסמך" +msgstr "לתחילת המסמך" #. ctFGn #: GenericCommands.xcu @@ -22471,7 +22429,7 @@ "Label\n" "value.text" msgid "To Document End" -msgstr "אל סוף המסמך" +msgstr "לסוף המסמך" #. 86dKG #: GenericCommands.xcu @@ -22481,7 +22439,7 @@ "Label\n" "value.text" msgid "Na~vigator" -msgstr "נווט" +msgstr "מ~נווט" #. CMEjB #: GenericCommands.xcu @@ -22491,7 +22449,7 @@ "TooltipLabel\n" "value.text" msgid "Show Navigator Window" -msgstr "" +msgstr "הצגת חלון מנווט" #. 8FNgW #: GenericCommands.xcu @@ -22501,7 +22459,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "סרגל מחברת" #. KvrFF #: GenericCommands.xcu @@ -22531,7 +22489,7 @@ "Label\n" "value.text" msgid "Interrupt Macro" -msgstr "הפסקת ביצוע מאקרו" +msgstr "הפרעה לריצת מאקרו" #. feLj3 #: GenericCommands.xcu @@ -22571,7 +22529,7 @@ "Label\n" "value.text" msgid "Select Up" -msgstr "בחירה כלפי מעלה" +msgstr "בחירה למעלה" #. eNVoh #: GenericCommands.xcu @@ -23001,7 +22959,7 @@ "Label\n" "value.text" msgid "~Protect..." -msgstr "" +msgstr "ה~גנה…" #. MqDj3 #: GenericCommands.xcu @@ -23011,7 +22969,7 @@ "TooltipLabel\n" "value.text" msgid "Protect Track Changes" -msgstr "" +msgstr "הגנת מעקב שינויים" #. XGBrs #: GenericCommands.xcu @@ -23021,7 +22979,7 @@ "PopupLabel\n" "value.text" msgid "Protect Track Changes" -msgstr "" +msgstr "הגנת מעקב שינויים" #. 7u9EW #: GenericCommands.xcu @@ -23051,7 +23009,7 @@ "TooltipLabel\n" "value.text" msgid "Compare Non-Track Changed Document" -msgstr "" +msgstr "השוואת מסמך עם שינויים לא מעקב" #. 6FC7R #: GenericCommands.xcu @@ -23241,7 +23199,7 @@ "Label\n" "value.text" msgid "Clear" -msgstr "" +msgstr "פינוי" #. AqQCJ #: GenericCommands.xcu @@ -23251,7 +23209,7 @@ "ContextLabel\n" "value.text" msgid "Clear ~Direct Formatting" -msgstr "" +msgstr "פינוי ~עיצוב ישיר" #. knBUW #: GenericCommands.xcu @@ -23261,7 +23219,7 @@ "TooltipLabel\n" "value.text" msgid "Clear Direct Formatting" -msgstr "" +msgstr "פינוי עיצוב ישיר" #. yPMEe #: GenericCommands.xcu @@ -23271,7 +23229,7 @@ "Label\n" "value.text" msgid "Decrease" -msgstr "" +msgstr "הקטנה" #. LmbC7 #: GenericCommands.xcu @@ -23301,7 +23259,7 @@ "Label\n" "value.text" msgid "Increase" -msgstr "" +msgstr "הגדלה" #. gtfBq #: GenericCommands.xcu @@ -23331,7 +23289,7 @@ "Label\n" "value.text" msgid "Curves and Polygons" -msgstr "" +msgstr "עקומות ומצולעים" #. QjB43 #: GenericCommands.xcu @@ -23361,7 +23319,7 @@ "Label\n" "value.text" msgid "Freeform" -msgstr "" +msgstr "צורה חופשית" #. 5AXcR #: GenericCommands.xcu @@ -23371,7 +23329,7 @@ "TooltipLabel\n" "value.text" msgid "Freeform Redaction" -msgstr "" +msgstr "עריכת צורה חופשית" #. a5rCU #: GenericCommands.xcu @@ -23541,7 +23499,7 @@ "Label\n" "value.text" msgid "Automatic Accessibility Checking" -msgstr "" +msgstr "בדיקת נגישות אוטומטית" #. XYGPG #: GenericCommands.xcu @@ -23551,7 +23509,7 @@ "ContextLabel\n" "value.text" msgid "Automatic A~ccessibility Checking" -msgstr "" +msgstr "בדיקת ~נגישות אוטומטית" #. DGCFi #: GenericCommands.xcu @@ -23561,7 +23519,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Automatic Accessibility Checking" -msgstr "" +msgstr "החלפת מצב בדיקת נגישות אוטומטית" #. 4DCmg #: GenericCommands.xcu @@ -23585,14 +23543,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 @@ -23752,7 +23709,7 @@ "Label\n" "value.text" msgid "Export as PDF" -msgstr "" +msgstr "ייצוא כ־PDF" #. YsFV2 #: GenericCommands.xcu @@ -23762,7 +23719,7 @@ "ContextLabel\n" "value.text" msgid "~Export as PDF..." -msgstr "יצוא ~כ־PDF…" +msgstr "יי~צוא ~כ־PDF…" #. FnRm4 #: GenericCommands.xcu @@ -23772,7 +23729,7 @@ "TooltipLabel\n" "value.text" msgid "Export as PDF" -msgstr "יצוא כ־PDF" +msgstr "ייצוא כ־PDF" #. pCD7W #: GenericCommands.xcu @@ -23782,7 +23739,7 @@ "Label\n" "value.text" msgid "Export Directly as PDF" -msgstr "" +msgstr "ייצוא כ־PDF ישירות" #. 8eSWp #: GenericCommands.xcu @@ -23792,7 +23749,7 @@ "ContextLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "יצוא ישיר כ־PDF" +msgstr "ייצוא כ־PDF ישירות" #. JCirv #: GenericCommands.xcu @@ -23802,7 +23759,7 @@ "TooltipLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "יצוא ישיר כ־PDF" +msgstr "ייצוא כ־PDF ישירות" #. LrSFu #: GenericCommands.xcu @@ -23822,7 +23779,7 @@ "ContextLabel\n" "value.text" msgid "Export Directly to PDF as Bitmap" -msgstr "" +msgstr "ייצוא ישירות ל־PDF כמפת סיביות" #. Rn9z9 #: GenericCommands.xcu @@ -23832,7 +23789,7 @@ "TooltipLabel\n" "value.text" msgid "Export Directly to PDF as Bitmap" -msgstr "" +msgstr "ייצוא ישירות ל־PDF כמפת סיביות" #. BYoy3 #: GenericCommands.xcu @@ -23902,7 +23859,7 @@ "Label\n" "value.text" msgid "Redact" -msgstr "" +msgstr "שינוי" #. Ponm7 #: GenericCommands.xcu @@ -23912,7 +23869,7 @@ "ContextLabel\n" "value.text" msgid "Redact" -msgstr "" +msgstr "שינוי" #. bSmGC #: GenericCommands.xcu @@ -23922,7 +23879,7 @@ "TooltipLabel\n" "value.text" msgid "Redact Document" -msgstr "" +msgstr "שינוי מסמך" #. hGiLG #: GenericCommands.xcu @@ -23932,7 +23889,7 @@ "Label\n" "value.text" msgid "Auto-Redact" -msgstr "" +msgstr "שינוי אוטומטי" #. 38NB3 #: GenericCommands.xcu @@ -23942,7 +23899,7 @@ "ContextLabel\n" "value.text" msgid "Auto-Redact" -msgstr "" +msgstr "שינוי אוטומטי" #. kfBEt #: GenericCommands.xcu @@ -23952,7 +23909,7 @@ "TooltipLabel\n" "value.text" msgid "Auto-Redact Document" -msgstr "" +msgstr "שינוי מסמך אוטומטי" #. zvurM #: GenericCommands.xcu @@ -23972,7 +23929,7 @@ "Label\n" "value.text" msgid "~Object Bar" -msgstr "סרגל עצמים" +msgstr "סרגל ~עצמים" #. ycsFJ #: GenericCommands.xcu @@ -23992,7 +23949,7 @@ "Label\n" "value.text" msgid "Main ~Toolbar" -msgstr "סרגל כלים עיקרי" +msgstr "סרגל כלים ~עיקרי" #. ExkAA #: GenericCommands.xcu @@ -24002,7 +23959,7 @@ "Label\n" "value.text" msgid "~Function Bar" -msgstr "סרגל תפקודים" +msgstr "סרגל ~פונקציות" #. u2sU2 #: GenericCommands.xcu @@ -24012,7 +23969,7 @@ "Label\n" "value.text" msgid "Optio~n Bar" -msgstr "סרגל אפשרויות" +msgstr "סרגל ~אפשרויות" #. EoTCn #: GenericCommands.xcu @@ -24042,7 +23999,7 @@ "Label\n" "value.text" msgid "Get ~Involved" -msgstr "" +msgstr "לה~שתתף בעשייה" #. zdGAU #: GenericCommands.xcu @@ -24052,7 +24009,7 @@ "Label\n" "value.text" msgid "~User Guides" -msgstr "" +msgstr "מ~דריכי משתמשים" #. KmdEu #: GenericCommands.xcu @@ -24072,7 +24029,7 @@ "Label\n" "value.text" msgid "What's New" -msgstr "" +msgstr "מה חדש" #. B8Gcc #: GenericCommands.xcu @@ -24082,7 +24039,7 @@ "TooltipLabel\n" "value.text" msgid "Open the release notes for the installed version in the default browser" -msgstr "" +msgstr "פתיחת הערות הגרסה של הגרסה המותקנת בדפדפן ברירת המחדל" #. 77umd #: GenericCommands.xcu @@ -24092,7 +24049,7 @@ "Label\n" "value.text" msgid "License Information" -msgstr "" +msgstr "פרטי רישוי" #. Tg4QT #: GenericCommands.xcu @@ -24102,7 +24059,7 @@ "Label\n" "value.text" msgid "%PRODUCTNAME Credits" -msgstr "" +msgstr "התודות של %PRODUCTNAME" #. 98scE #: GenericCommands.xcu @@ -24112,7 +24069,7 @@ "Label\n" "value.text" msgid "Status ~Bar" -msgstr "סרגל מצב" +msgstr "סרגל מ~צב" #. Gj4dU #: GenericCommands.xcu @@ -24132,7 +24089,7 @@ "Label\n" "value.text" msgid "~Presentation" -msgstr "מצגת" +msgstr "מ~צגת" #. ysAGZ #: GenericCommands.xcu @@ -24142,7 +24099,7 @@ "Label\n" "value.text" msgid "Import BASIC..." -msgstr "" +msgstr "ייבוא BASIC…" #. zCkAf #: GenericCommands.xcu @@ -24152,7 +24109,7 @@ "Label\n" "value.text" msgid "Export BASIC..." -msgstr "" +msgstr "ייצוא BASIC…" #. jA2bd #: GenericCommands.xcu @@ -24162,7 +24119,7 @@ "Label\n" "value.text" msgid "Export Dialog..." -msgstr "" +msgstr "חלונית ייצוא…" #. wcyCu #: GenericCommands.xcu @@ -24172,7 +24129,7 @@ "Label\n" "value.text" msgid "Import Dialog..." -msgstr "" +msgstr "חלונית ייבוא…" #. mkYcT #: GenericCommands.xcu @@ -24232,7 +24189,7 @@ "Label\n" "value.text" msgid "~Basic..." -msgstr "" +msgstr "~Basic…" #. 6NozA #: GenericCommands.xcu @@ -24242,7 +24199,7 @@ "Label\n" "value.text" msgid "Organize ~Dialogs..." -msgstr "סידור תיבות ה~דו־שיח..." +msgstr "סידור ה~חלוניות…" #. jjjAC #: GenericCommands.xcu @@ -24252,7 +24209,7 @@ "Label\n" "value.text" msgid "~Organize Macros" -msgstr "סידור המ~אקרוים" +msgstr "סידור תסריטי המ~אקרו" #. yGrMV #: GenericCommands.xcu @@ -24262,7 +24219,7 @@ "Label\n" "value.text" msgid "R~un Macro..." -msgstr "ה~פעלת מאקרו..." +msgstr "ה~רצת תסריט מאקרו…" #. h7oCG #: GenericCommands.xcu @@ -24292,7 +24249,7 @@ "TooltipLabel\n" "value.text" msgid "Open Clip Art and Media Gallery" -msgstr "" +msgstr "פתיחת אוסף אומנות וגלריית מדיה" #. HAbt5 #: GenericCommands.xcu @@ -24302,7 +24259,7 @@ "Label\n" "value.text" msgid "Find and Rep~lace..." -msgstr "" +msgstr "~איתור והחלפה…" #. B4Dm5 #: GenericCommands.xcu @@ -24452,7 +24409,7 @@ "Label\n" "value.text" msgid "Con~trol Properties..." -msgstr "" +msgstr "מאפייני ~בקרה…" #. TcfRB #: GenericCommands.xcu @@ -25042,7 +24999,7 @@ "Label\n" "value.text" msgid "Refresh document layout" -msgstr "" +msgstr "רענון פריסת מסמך" #. V8JAY #: GenericCommands.xcu @@ -25052,7 +25009,7 @@ "Label\n" "value.text" msgid "Find Record..." -msgstr "מציאת רשומה...‏" +msgstr "איתור רשומה…" #. FKnv9 #: GenericCommands.xcu @@ -25062,7 +25019,7 @@ "Label\n" "value.text" msgid "Form Control Wizards" -msgstr "" +msgstr "אשפי פקדי טפסים" #. sJG6W #: GenericCommands.xcu @@ -25072,7 +25029,7 @@ "ContextLabel\n" "value.text" msgid "Control Wizards" -msgstr "" +msgstr "אשפי פקדים" #. FPifj #: GenericCommands.xcu @@ -25082,7 +25039,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Form Control Wizards" -msgstr "" +msgstr "החלפת מצב אשפי פקדי טפסים" #. GGiUT #: GenericCommands.xcu @@ -25342,7 +25299,7 @@ "Label\n" "value.text" msgid "Toggle Extrusion" -msgstr "" +msgstr "החלפת מצב שיחול" #. iYGim #: GenericCommands.xcu @@ -25472,7 +25429,7 @@ "Label\n" "value.text" msgid "User ~Interface" -msgstr "" +msgstr "מ~נשק משתמש" #. BWJqP #: GenericCommands.xcu @@ -25482,7 +25439,7 @@ "Label\n" "value.text" msgid "User ~Interface..." -msgstr "" +msgstr "מ~נשק משתמש…" #. i8oSn #: GenericCommands.xcu @@ -25492,7 +25449,7 @@ "TooltipLabel\n" "value.text" msgid "Shows a dialog to select the user interface" -msgstr "" +msgstr "מציג חלונית לבחירת מנשק המשתמש" #. uQVBR #: GenericCommands.xcu @@ -25502,7 +25459,7 @@ "Label\n" "value.text" msgid "~Toolbars" -msgstr "סרגלי כלים" +msgstr "סרגלי ~כלים" #. 2DysH #: GenericCommands.xcu @@ -25522,7 +25479,7 @@ "Label\n" "value.text" msgid "Breakpoint Enabled/Disabled" -msgstr "נקודת עצירה פעילה/לא פעילה" +msgstr "נקודת עצירה פעילה/מושבתת" #. V9SKf #: GenericCommands.xcu @@ -25542,7 +25499,7 @@ "Label\n" "value.text" msgid "Digital Signatu~res..." -msgstr "חתימות ~דיגיטליות..." +msgstr "חתימות ~דיגיטליות…" #. CgPg6 #: GenericCommands.xcu @@ -25642,7 +25599,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. XtBAB #: GenericCommands.xcu @@ -25652,7 +25609,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. b2kUa #: GenericCommands.xcu @@ -25662,7 +25619,7 @@ "Label\n" "value.text" msgid "Recent Doc~uments" -msgstr "מסמכים אחרונים" +msgstr "מסמכים~ אחרונים" #. KSiFH #: GenericCommands.xcu @@ -25722,7 +25679,7 @@ "Label\n" "value.text" msgid "Delete Comment Thread" -msgstr "" +msgstr "מחיקת שרשור הערות" #. s3CwY #: GenericCommands.xcu @@ -25732,7 +25689,7 @@ "Label\n" "value.text" msgid "Resolved" -msgstr "" +msgstr "נפתר" #. FPVwa #: GenericCommands.xcu @@ -25742,7 +25699,7 @@ "Label\n" "value.text" msgid "Resolved Thread" -msgstr "" +msgstr "שרשור שנפתר" #. JZHpu #: GenericCommands.xcu @@ -25812,7 +25769,7 @@ "Label\n" "value.text" msgid "Sum" -msgstr "" +msgstr "סכום" #. 7hQeH #: GenericCommands.xcu @@ -25832,7 +25789,7 @@ "Label\n" "value.text" msgid "Text Form Field" -msgstr "" +msgstr "שדה טופס טקסט" #. fAY3H #: GenericCommands.xcu @@ -25842,7 +25799,7 @@ "Label\n" "value.text" msgid "Check Box Form Field" -msgstr "" +msgstr "שדה טופס תיבת בחירה" #. uQxzu #: GenericCommands.xcu @@ -25852,7 +25809,7 @@ "Label\n" "value.text" msgid "Drop-Down Form Field" -msgstr "" +msgstr "שדה טופס בחירה נפתחת" #. yk3Pm #: GenericCommands.xcu @@ -25872,7 +25829,7 @@ "Label\n" "value.text" msgid "Search Commands" -msgstr "" +msgstr "חיפוש פקודות" #. NFhYp #: GenericCommands.xcu @@ -25882,7 +25839,7 @@ "Label\n" "value.text" msgid "Development Tools" -msgstr "" +msgstr "כלי פיתוח" #. qCG9b #: GenericCommands.xcu @@ -25892,7 +25849,7 @@ "Label\n" "value.text" msgid "Lock Toolbars" -msgstr "" +msgstr "נעילת סרגלי כלים" #. cAUZ8 #: GenericCommands.xcu @@ -25902,7 +25859,7 @@ "TooltipLabel\n" "value.text" msgid "Lock or unlock all toolbars" -msgstr "" +msgstr "נעילה או שחרור של כל סרגלי הכלים" #. jLF5j #: GenericCommands.xcu @@ -25932,7 +25889,7 @@ "Label\n" "value.text" msgid "~Help" -msgstr "עזרה" +msgstr "ע~זרה" #. RB5Ch #: GenericCommands.xcu @@ -25942,7 +25899,7 @@ "Label\n" "value.text" msgid "~Insert" -msgstr "" +msgstr "הו~ספה" #. EBfym #: GenericCommands.xcu @@ -25952,7 +25909,7 @@ "Label\n" "value.text" msgid "~Delete" -msgstr "" +msgstr "מ~חיקה" #. ZMsAG #: GenericCommands.xcu @@ -25962,7 +25919,7 @@ "Label\n" "value.text" msgid "Si~ze" -msgstr "" +msgstr "~גודל" #. GhjEq #: GenericCommands.xcu @@ -25972,7 +25929,7 @@ "Label\n" "value.text" msgid "~File" -msgstr "קובץ" +msgstr "~קובץ" #. 6US8G #: GenericCommands.xcu @@ -25982,7 +25939,7 @@ "Label\n" "value.text" msgid "Alig~n Objects" -msgstr "" +msgstr "יי~שור עצמים" #. VK2hz #: GenericCommands.xcu @@ -25992,7 +25949,7 @@ "Label\n" "value.text" msgid "Align Tex~t" -msgstr "" +msgstr "יישור ~טקסט" #. y3E2U #: GenericCommands.xcu @@ -26002,7 +25959,7 @@ "Label\n" "value.text" msgid "~Shapes" -msgstr "צורות" +msgstr "~צורות" #. Mwu8A #: GenericCommands.xcu @@ -26042,7 +25999,7 @@ "Label\n" "value.text" msgid "Character Font Position..." -msgstr "" +msgstr "מיקום גופן תו…" #. fZufx #: GenericCommands.xcu @@ -26052,7 +26009,7 @@ "Label\n" "value.text" msgid "F~ormat" -msgstr "עיצוב" +msgstr "~עיצוב" #. NC4x3 #: GenericCommands.xcu @@ -26062,7 +26019,7 @@ "Label\n" "value.text" msgid "~OLE Object" -msgstr "" +msgstr "~עצם OLE" #. SQ76T #: GenericCommands.xcu @@ -26082,7 +26039,7 @@ "Label\n" "value.text" msgid "~Edit" -msgstr "עריכה" +msgstr "ע~ריכה" #. aKjG2 #: GenericCommands.xcu @@ -26092,7 +26049,7 @@ "Label\n" "value.text" msgid "~Insert" -msgstr "~הוספה" +msgstr "הו~ספה" #. 6Xdhu #: GenericCommands.xcu @@ -26102,7 +26059,7 @@ "Label\n" "value.text" msgid "~Data" -msgstr "" +msgstr "~נתונים" #. gJ4rS #: GenericCommands.xcu @@ -26112,7 +26069,7 @@ "Label\n" "value.text" msgid "Sen~d" -msgstr "שליחה" +msgstr "~שליחה" #. ayDHt #: GenericCommands.xcu @@ -26122,7 +26079,7 @@ "Label\n" "value.text" msgid "T~able" -msgstr "" +msgstr "~טבלה" #. JHiCn #: GenericCommands.xcu @@ -26142,7 +26099,7 @@ "Label\n" "value.text" msgid "~Macros" -msgstr "פקודות מאקרו" +msgstr "ת~סריטי מאקרו" #. MwNhh #: GenericCommands.xcu @@ -26332,7 +26289,7 @@ "Label\n" "value.text" msgid "Rot~ate or Flip" -msgstr "" +msgstr "סיבוב או הי~פוך" #. wxC2C #: GenericCommands.xcu @@ -26342,7 +26299,7 @@ "Label\n" "value.text" msgid "Anchor Menu" -msgstr "" +msgstr "תפריט עוגן" #. oNBG8 #: GenericCommands.xcu @@ -26362,7 +26319,7 @@ "TooltipLabel\n" "value.text" msgid "Select anchor for object" -msgstr "" +msgstr "בחירת עוגן לעצם" #. vBrBs #: GenericCommands.xcu @@ -26372,7 +26329,7 @@ "Label\n" "value.text" msgid "Change View" -msgstr "" +msgstr "החלפת תצוגה" #. zfgMB #: GenericCommands.xcu @@ -26382,7 +26339,7 @@ "ContextLabel\n" "value.text" msgid "View" -msgstr "" +msgstr "תצוגה" #. ZxxTy #: GenericCommands.xcu @@ -26412,7 +26369,7 @@ "ContextLabel\n" "value.text" msgid "Audio or ~Video..." -msgstr "" +msgstr "~שמע או וידאו…" #. jB3GF #: GenericCommands.xcu @@ -26432,7 +26389,7 @@ "Label\n" "value.text" msgid "Table Control" -msgstr "" +msgstr "פקד טבלה" #. 7wECp #: GenericCommands.xcu @@ -26452,7 +26409,7 @@ "Label\n" "value.text" msgid "~Color" -msgstr "צבע" +msgstr "~צבע" #. 4XG4T #: GenericCommands.xcu @@ -26462,7 +26419,7 @@ "Label\n" "value.text" msgid "Insert non-br~eaking hyphen" -msgstr "" +msgstr "הוספת מקף ~לא מפריד" #. FsR94 #: GenericCommands.xcu @@ -26472,7 +26429,7 @@ "Label\n" "value.text" msgid "Insert s~oft Hyphen" -msgstr "" +msgstr "הוספת מקף ~רך" #. B9WX3 #: GenericCommands.xcu @@ -26482,7 +26439,7 @@ "Label\n" "value.text" msgid "Insert ~non-breaking space" -msgstr "" +msgstr "הוספת רווח לא מ~פריד" #. KZXXb #: GenericCommands.xcu @@ -26492,7 +26449,7 @@ "Label\n" "value.text" msgid "Insert N~arrow No-break Space" -msgstr "" +msgstr "הוספת רווח ~צר לא מפריד" #. txaEk #: GenericCommands.xcu @@ -26502,7 +26459,7 @@ "Label\n" "value.text" msgid "No-~width Optional Break" -msgstr "" +msgstr "מפריד ר~שות ללא רוחב" #. Gjgjy #: GenericCommands.xcu @@ -26512,7 +26469,7 @@ "Label\n" "value.text" msgid "Word ~Joiner" -msgstr "" +msgstr "מ~חבר מילים" #. UvwGS #: GenericCommands.xcu @@ -26522,7 +26479,7 @@ "Label\n" "value.text" msgid "~Left-to-right Mark" -msgstr "" +msgstr "סימן ~שמאל-לימין" #. prtF2 #: GenericCommands.xcu @@ -26532,7 +26489,7 @@ "Label\n" "value.text" msgid "~Right-to-left Mark" -msgstr "" +msgstr "סימן ~ימין-לשמאל" #. o6CJp #: GenericCommands.xcu @@ -26542,7 +26499,7 @@ "Label\n" "value.text" msgid "Insert Row" -msgstr "" +msgstr "הוספת שורה" #. 4XPfy #: GenericCommands.xcu @@ -26552,7 +26509,7 @@ "Label\n" "value.text" msgid "Insert Column" -msgstr "" +msgstr "הוספת עמודה" #. LhLtz #: GenericCommands.xcu @@ -26562,7 +26519,7 @@ "Label\n" "value.text" msgid "Delete Columns" -msgstr "" +msgstr "מחיקת עמודות" #. AG4Qy #: GenericCommands.xcu @@ -26572,7 +26529,7 @@ "ContextLabel\n" "value.text" msgid "Delete ~Columns" -msgstr "" +msgstr "מחיקת ~עמודות" #. KxsdA #: GenericCommands.xcu @@ -26582,7 +26539,7 @@ "TooltipLabel\n" "value.text" msgid "Delete selected columns" -msgstr "" +msgstr "מחיקת העמודות הנבחרות" #. VL8Wa #: GenericCommands.xcu @@ -26592,7 +26549,7 @@ "Label\n" "value.text" msgid "Delete Rows" -msgstr "" +msgstr "מחיקת שורות" #. uAPr9 #: GenericCommands.xcu @@ -26602,7 +26559,7 @@ "ContextLabel\n" "value.text" msgid "Delete ~Rows" -msgstr "" +msgstr "מחיקת ~שורות" #. wjm8K #: GenericCommands.xcu @@ -26612,7 +26569,7 @@ "TooltipLabel\n" "value.text" msgid "Delete selected rows" -msgstr "" +msgstr "מחיקת השורות הנבחרות" #. poXFa #: GenericCommands.xcu @@ -26652,7 +26609,7 @@ "PopupLabel\n" "value.text" msgid "Language for Selection" -msgstr "" +msgstr "שפה לבחירה" #. TbazQ #: GenericCommands.xcu @@ -26672,7 +26629,7 @@ "PopupLabel\n" "value.text" msgid "Language for Paragraph" -msgstr "" +msgstr "שפה לפסקה" #. MjBaU #: GenericCommands.xcu @@ -26692,7 +26649,7 @@ "PopupLabel\n" "value.text" msgid "Language for All Text" -msgstr "" +msgstr "שפה לכל הטקסט…" #. 4cXLB #: GenericCommands.xcu @@ -26702,7 +26659,7 @@ "Label\n" "value.text" msgid "More Dictionaries Online..." -msgstr "מילונים נוספים להורדה..." +msgstr "מילונים מקוונים נוספים…" #. J9jVa #: GenericCommands.xcu @@ -26722,7 +26679,7 @@ "Label\n" "value.text" msgid "Basic Macro Organizer..." -msgstr "" +msgstr "מארגן מאקרו בסיסי…" #. ahLAz #: GenericCommands.xcu @@ -26732,7 +26689,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Format..." -msgstr "" +msgstr "שליחה בדוא״ל כ~תבנית Microsoft…" #. BrAfB #: GenericCommands.xcu @@ -26742,7 +26699,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Format..." -msgstr "" +msgstr "שליחה בדוא״ל כ~תבנית OpenDocument…" #. kJNVF #: GenericCommands.xcu @@ -26782,7 +26739,7 @@ "Label\n" "value.text" msgid "Apply document classification" -msgstr "" +msgstr "החלת סיווג מסמך" #. owQR2 #: GenericCommands.xcu @@ -26792,7 +26749,7 @@ "Label\n" "value.text" msgid "Manage Document Classification" -msgstr "" +msgstr "ניהול סיווג מסמך" #. SFcbr #: GenericCommands.xcu @@ -26802,7 +26759,7 @@ "Label\n" "value.text" msgid "Manage Paragraph Classification" -msgstr "" +msgstr "ניהול סיווג פסקה" #. N6XvZ #: GenericCommands.xcu @@ -26842,7 +26799,7 @@ "Label\n" "value.text" msgid "Name..." -msgstr "שם...‏" +msgstr "שם…" #. GCrhD #: GenericCommands.xcu @@ -26852,7 +26809,7 @@ "TooltipLabel\n" "value.text" msgid "Give a label to identify an object" -msgstr "" +msgstr "הצמדת תווית לזיהוי עצם" #. k5bGq #: GenericCommands.xcu @@ -26872,7 +26829,7 @@ "TooltipLabel\n" "value.text" msgid "Add descriptions of non-text content (for accessibility)" -msgstr "" +msgstr "הוספת תיאורים של תוכן שאינו טקסט (לטובת נגישות)" #. YwMhY #: GenericCommands.xcu @@ -26892,7 +26849,7 @@ "Label\n" "value.text" msgid "Navigate" -msgstr "" +msgstr "ניווט" #. 3Bg25 #: GenericCommands.xcu @@ -26902,7 +26859,7 @@ "Label\n" "value.text" msgid "More Breaks" -msgstr "" +msgstr "מעברים נוספים" #. 35wAk #: GenericCommands.xcu @@ -26912,7 +26869,7 @@ "Label\n" "value.text" msgid "Signatu~re Line..." -msgstr "" +msgstr "~שורה לחתימה…" #. azmKp #: GenericCommands.xcu @@ -26922,7 +26879,7 @@ "Label\n" "value.text" msgid "Edit Signature ~Line..." -msgstr "" +msgstr "~עריכת שורה לחתימה…" #. wRPGr #: GenericCommands.xcu @@ -26932,7 +26889,7 @@ "Label\n" "value.text" msgid "~Sign Signature Line..." -msgstr "" +msgstr "חתימה בשורה ל~חתימה…" #. KRKbu #: GenericCommands.xcu @@ -26942,7 +26899,7 @@ "Label\n" "value.text" msgid "QR and ~Barcode..." -msgstr "" +msgstr "QR ו~ברקוד…" #. FCYvB #: GenericCommands.xcu @@ -26952,7 +26909,7 @@ "Label\n" "value.text" msgid "~Edit Barcode..." -msgstr "" +msgstr "~עריכת ברקוד…" #. HhCdv #: GenericCommands.xcu @@ -26962,7 +26919,7 @@ "Label\n" "value.text" msgid "~Additions..." -msgstr "" +msgstr "~תוספות…" #. bFKmR #: GenericCommands.xcu @@ -26972,7 +26929,7 @@ "ContextLabel\n" "value.text" msgid "~Additional Extensions..." -msgstr "" +msgstr "הרחבות ~נוספות…" #. UqjzD #: GenericCommands.xcu @@ -26982,7 +26939,7 @@ "TooltipLabel\n" "value.text" msgid "Additional Extensions" -msgstr "" +msgstr "הרחבות נוספות" #. YpeR4 #: GenericCommands.xcu @@ -26992,7 +26949,7 @@ "Label\n" "value.text" msgid "More Fields" -msgstr "" +msgstr "שדות נוספים" #. xqvRY #: GenericCommands.xcu @@ -27002,7 +26959,7 @@ "Label\n" "value.text" msgid "Regenerate Diagram" -msgstr "" +msgstr "יצירת תרשים מחדש" #. 9MovL #: GenericCommands.xcu @@ -27012,7 +26969,7 @@ "Label\n" "value.text" msgid "Edit Diagram" -msgstr "" +msgstr "עריכת תרשים" #. YbZ74 #: GenericCommands.xcu @@ -27022,7 +26979,7 @@ "Label\n" "value.text" msgid "~Remove Hyperlink" -msgstr "" +msgstr "ה~סרת קישור" #. eD7JU #: GenericCommands.xcu @@ -27032,7 +26989,7 @@ "Label\n" "value.text" msgid "~Open Local Copy" -msgstr "" +msgstr "פתיחת ~עותק מקומי" #. 2YneU #: GenericCommands.xcu @@ -27042,7 +26999,7 @@ "Label\n" "value.text" msgid "~Distribution" -msgstr "" +msgstr "~פיזור" #. 2HWrF #: GenericCommands.xcu @@ -27052,7 +27009,7 @@ "TooltipLabel\n" "value.text" msgid "Select at least three objects to distribute" -msgstr "" +msgstr "יש לבחור לפחות שלושה פריטים לפיזור" #. zEiFi #: GenericCommands.xcu @@ -27062,7 +27019,7 @@ "ContextLabel\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "פיזור בחירה" #. vDkBA #: GenericCommands.xcu @@ -27072,7 +27029,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Left" -msgstr "" +msgstr "פיזור אופקי שמאלה" #. gjrG6 #: GenericCommands.xcu @@ -27082,7 +27039,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Left" -msgstr "" +msgstr "אופקי ~שמאלה" #. BBazW #: GenericCommands.xcu @@ -27092,7 +27049,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Center" -msgstr "" +msgstr "פיזור אופקית למרכז" #. SqFTB #: GenericCommands.xcu @@ -27102,7 +27059,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Center" -msgstr "" +msgstr "מירכוז ~אופקי" #. QXntz #: GenericCommands.xcu @@ -27112,7 +27069,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Spacing" -msgstr "" +msgstr "פיזור ריווח אופקי" #. GQEXJ #: GenericCommands.xcu @@ -27122,7 +27079,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Spacing" -msgstr "" +msgstr "~ריווח אופקי" #. Smk23 #: GenericCommands.xcu @@ -27132,7 +27089,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Right" -msgstr "" +msgstr "פיזור אופקי ימינה" #. SDkHd #: GenericCommands.xcu @@ -27142,7 +27099,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Right" -msgstr "" +msgstr "אופקי י~מינה" #. iJB7y #: GenericCommands.xcu @@ -27152,7 +27109,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Top" -msgstr "" +msgstr "פיזור אנכית למעלה" #. 9wa7z #: GenericCommands.xcu @@ -27162,7 +27119,7 @@ "ContextLabel\n" "value.text" msgid "Vertically ~Top" -msgstr "" +msgstr "אנכית למ~עלה" #. FAkxM #: GenericCommands.xcu @@ -27172,7 +27129,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Center" -msgstr "" +msgstr "פיזור אנכי למרכז" #. PaLDT #: GenericCommands.xcu @@ -27182,7 +27139,7 @@ "ContextLabel\n" "value.text" msgid "Vertically C~enter" -msgstr "" +msgstr "אנכית למ~רכז" #. jwLqM #: GenericCommands.xcu @@ -27192,7 +27149,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Spacing" -msgstr "" +msgstr "פיזור ריווח אנכי" #. 2RAqA #: GenericCommands.xcu @@ -27202,7 +27159,7 @@ "ContextLabel\n" "value.text" msgid "Vertically S~pacing" -msgstr "" +msgstr "ריווח א~נכי" #. ELgnZ #: GenericCommands.xcu @@ -27212,7 +27169,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Bottom" -msgstr "" +msgstr "פיזור אנכי למעלה" #. rankC #: GenericCommands.xcu @@ -27222,7 +27179,7 @@ "ContextLabel\n" "value.text" msgid "Vertically ~Bottom" -msgstr "" +msgstr "אנכי למ~טה" #. PT2x4 #: GenericCommands.xcu @@ -27232,7 +27189,7 @@ "Label\n" "value.text" msgid "Inspect Object" -msgstr "" +msgstr "חקירת עצם" #. WxZYJ #: GenericCommands.xcu @@ -27242,7 +27199,7 @@ "Label\n" "value.text" msgid "Graphic Size Check..." -msgstr "" +msgstr "בדיקת גודל גרפי…" #. ACwaJ #: GenericCommands.xcu @@ -27312,7 +27269,7 @@ "UIName\n" "value.text" msgid "3D Scene (group)" -msgstr "" +msgstr "סצנה תלת ממדי (קבוצה)" #. zoHmr #: ImpressWindowState.xcu @@ -27322,7 +27279,7 @@ "UIName\n" "value.text" msgid "Connector/Freeform Line" -msgstr "" +msgstr "קו מחבר/צורה חופשית" #. qi5Ao #: ImpressWindowState.xcu @@ -27452,7 +27409,7 @@ "UIName\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "סרגל מחברת" #. XA3EP #: ImpressWindowState.xcu @@ -27592,7 +27549,7 @@ "UIName\n" "value.text" msgid "Lines and Arrows" -msgstr "" +msgstr "קווים וחיצים" #. AoqtG #: ImpressWindowState.xcu @@ -27642,7 +27599,7 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "" +msgstr "עיגולים ואליפסות מיושנים" #. NvwkC #: ImpressWindowState.xcu @@ -27762,7 +27719,7 @@ "UIName\n" "value.text" msgid "Curves and Polygons" -msgstr "" +msgstr "עקומים ומצולעים" #. zMESy #: ImpressWindowState.xcu @@ -27772,7 +27729,7 @@ "UIName\n" "value.text" msgid "TSCP Classification" -msgstr "" +msgstr "סיווג TSCP" #. kPyD4 #: ImpressWindowState.xcu @@ -27852,7 +27809,7 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "" +msgstr "מרובעים מיושנים" #. DQRc7 #: ImpressWindowState.xcu @@ -28042,7 +27999,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode)" -msgstr "" +msgstr "רגיל (מצב בודד)" #. SoDWX #: ImpressWindowState.xcu @@ -28052,7 +28009,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "" +msgstr "קיצורי סרגל מחברת" #. Ggdtj #: ImpressWindowState.xcu @@ -28062,7 +28019,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "פיזור הבחירה" #. tpAhh #: MathCommands.xcu @@ -28132,7 +28089,7 @@ "Label\n" "value.text" msgid "~Import Formula..." -msgstr "יבוא נוסחה...‏" +msgstr "ייבוא ~נוסחה…" #. PqBP6 #: MathCommands.xcu @@ -28142,7 +28099,7 @@ "Label\n" "value.text" msgid "Import MathML from Clipboard" -msgstr "" +msgstr "ייבוא MathML מלוח הגזירים" #. km9DF #: MathCommands.xcu @@ -28162,7 +28119,7 @@ "Label\n" "value.text" msgid "Insert Text" -msgstr "הכנסת טקסט" +msgstr "הוספת טקסט" #. rNA8P #: MathCommands.xcu @@ -28172,7 +28129,7 @@ "Label\n" "value.text" msgid "Insert Command" -msgstr "הכנסת פקודה" +msgstr "הוספת פקודה" #. 4AZZK #: MathCommands.xcu @@ -28202,7 +28159,7 @@ "Label\n" "value.text" msgid "Ne~xt Error" -msgstr "השגיאה הבאה" +msgstr "השגיאה ה~באה" #. QGWxj #: MathCommands.xcu @@ -28212,7 +28169,7 @@ "Label\n" "value.text" msgid "Pr~evious Error" -msgstr "השגיאה הקודמת" +msgstr "השגיאה ה~קודמת" #. FEYFG #: MathCommands.xcu @@ -28222,7 +28179,7 @@ "Label\n" "value.text" msgid "~Next Marker" -msgstr "הציון הבא" +msgstr "ה~סמן הבא" #. AyL9u #: MathCommands.xcu @@ -28232,7 +28189,7 @@ "Label\n" "value.text" msgid "Previous ~Marker" -msgstr "הציון הקודם" +msgstr "הס~מן הקודם" #. EoNeT #: MathCommands.xcu @@ -28252,7 +28209,7 @@ "Label\n" "value.text" msgid "Z~oom In" -msgstr "התמקדות פנימה" +msgstr "התק~רבות" #. XYVPg #: MathCommands.xcu @@ -28262,7 +28219,7 @@ "Label\n" "value.text" msgid "Zoo~m Out" -msgstr "התמקדות החוצה" +msgstr "הת~רחקות" #. J3EaC #: MathCommands.xcu @@ -28272,7 +28229,7 @@ "Label\n" "value.text" msgid "U~pdate" -msgstr "עדכון" +msgstr "~עדכון" #. GLcSy #: MathCommands.xcu @@ -28406,14 +28363,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 @@ -28563,7 +28519,7 @@ "ContextLabel\n" "value.text" msgid "~Page..." -msgstr "עמוד..." +msgstr "~עמוד…" #. 9GxFQ #: ReportCommands.xcu @@ -28593,7 +28549,7 @@ "Label\n" "value.text" msgid "~Date and Time..." -msgstr "~תאריך ושעה...‏" +msgstr "~תאריך ושעה…" #. 378wM #: ReportCommands.xcu @@ -28633,7 +28589,7 @@ "Label\n" "value.text" msgid "Gr~id" -msgstr "רשת" +msgstr "~רשת" #. 44sUt #: ReportCommands.xcu @@ -28963,7 +28919,7 @@ "Label\n" "value.text" msgid "Edit Mode" -msgstr "" +msgstr "מצב עריכה" #. GZdEa #: ReportCommands.xcu @@ -29013,7 +28969,7 @@ "Title\n" "value.text" msgid "Style Inspector" -msgstr "" +msgstr "בוחן סגנון" #. GEHrf #: Sidebar.xcu @@ -29133,7 +29089,7 @@ "Title\n" "value.text" msgid "Elements" -msgstr "" +msgstr "רכיבים" #. B4iFE #: Sidebar.xcu @@ -29163,7 +29119,7 @@ "Title\n" "value.text" msgid "Style Inspector" -msgstr "" +msgstr "בוחן סגנון" #. aCGNS #: Sidebar.xcu @@ -29233,7 +29189,7 @@ "Title\n" "value.text" msgid "Effect" -msgstr "" +msgstr "אפקט" #. GBNW2 #: Sidebar.xcu @@ -29273,7 +29229,7 @@ "Title\n" "value.text" msgid "Properties" -msgstr "" +msgstr "מאפיינים" #. VwByE #: Sidebar.xcu @@ -29283,7 +29239,7 @@ "Title\n" "value.text" msgid "Elements" -msgstr "" +msgstr "רכיבים" #. hKwDG #: Sidebar.xcu @@ -29323,7 +29279,7 @@ "Title\n" "value.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. FSj4z #: Sidebar.xcu @@ -29343,7 +29299,7 @@ "Title\n" "value.text" msgid "Page" -msgstr "" +msgstr "עמוד" #. E9FJB #: Sidebar.xcu @@ -29473,7 +29429,7 @@ "Title\n" "value.text" msgid "Lists" -msgstr "" +msgstr "רשימות" #. Y8pTf #: Sidebar.xcu @@ -29553,7 +29509,7 @@ "Title\n" "value.text" msgid "Style Presets" -msgstr "" +msgstr "ערכות עיצוב" #. n3DuN #: Sidebar.xcu @@ -29633,7 +29589,7 @@ "Title\n" "value.text" msgid "Table" -msgstr "" +msgstr "טבלה" #. fEcBG #: Sidebar.xcu @@ -29643,7 +29599,7 @@ "Title\n" "value.text" msgid "Chart Type" -msgstr "" +msgstr "סוג תרשים" #. ERGPP #: Sidebar.xcu @@ -29653,7 +29609,7 @@ "Title\n" "value.text" msgid "Columns" -msgstr "" +msgstr "עמודות" #. CDJWW #: StartModuleWindowState.xcu @@ -29673,7 +29629,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. NJfBH #: ToolbarMode.xcu @@ -29683,7 +29639,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "" +msgstr "סרגל כלים בודד" #. UTzyD #: ToolbarMode.xcu @@ -29703,7 +29659,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "בלשוניות" #. 8Nfyz #: ToolbarMode.xcu @@ -29713,7 +29669,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "" +msgstr "בלשוניות מצומצמות" #. 5CbqL #: ToolbarMode.xcu @@ -29763,7 +29719,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. t8D2m #: ToolbarMode.xcu @@ -29773,7 +29729,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "" +msgstr "סרגל כלים בודד" #. VnDYA #: ToolbarMode.xcu @@ -29793,7 +29749,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "בלשוניות" #. 5bBrj #: ToolbarMode.xcu @@ -29803,7 +29759,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "" +msgstr "בלשוניות מצומצמות" #. EfebG #: ToolbarMode.xcu @@ -29843,7 +29799,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. GDJio #: ToolbarMode.xcu @@ -29853,7 +29809,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "" +msgstr "סרגל כלים בודד" #. 8frgn #: ToolbarMode.xcu @@ -29863,7 +29819,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "בלשוניות" #. DnZxB #: ToolbarMode.xcu @@ -29873,7 +29829,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "" +msgstr "בלשוניות מצומצמות" #. quFBW #: ToolbarMode.xcu @@ -29913,7 +29869,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "" +msgstr "קבוצות לפי הקשר" #. mrACC #: ToolbarMode.xcu @@ -29923,7 +29879,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. D27KE #: ToolbarMode.xcu @@ -29933,7 +29889,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "בלשוניות" #. mGCMC #: ToolbarMode.xcu @@ -29943,7 +29899,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "" +msgstr "בלשוניות מצומצמות" #. nrNaZ #: ToolbarMode.xcu @@ -29973,7 +29929,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. DQTVG #: ToolbarMode.xcu @@ -29983,7 +29939,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. pDAEU #: WriterCommands.xcu @@ -30173,7 +30129,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Endnote" -msgstr "" +msgstr "הוספת הערת סיום" #. jGSZw #: WriterCommands.xcu @@ -30213,7 +30169,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Table of Contents, Index or Bibliography" -msgstr "" +msgstr "הוספת תוכן עניינים, מפתח עניינים או ביבליוגרפיה" #. uTYnH #: WriterCommands.xcu @@ -30223,7 +30179,7 @@ "ContextLabel\n" "value.text" msgid "Table of Contents, ~Index or Bibliography..." -msgstr "" +msgstr "תוכן עניינים, מ~פתח עניינים או ביבליוגרפיה…" #. TuWK6 #: WriterCommands.xcu @@ -30243,7 +30199,7 @@ "Label\n" "value.text" msgid "Toggle Direct Cursor Mode" -msgstr "" +msgstr "החלפת מצב סמן ישיר" #. ADz36 #: WriterCommands.xcu @@ -30253,7 +30209,7 @@ "ContextLabel\n" "value.text" msgid "Direct Cursor Mode" -msgstr "" +msgstr "מצב סמן ישיר" #. bbt6Q #: WriterCommands.xcu @@ -30303,7 +30259,7 @@ "PopupLabel\n" "value.text" msgid "Update Indexes and ~Tables" -msgstr "" +msgstr "עדכון מפתח עניינים ו~טבלאות" #. XPn5o #: WriterCommands.xcu @@ -30313,7 +30269,7 @@ "Label\n" "value.text" msgid "Update Index" -msgstr "" +msgstr "עדכון מפתח עניינים" #. bQdcg #: WriterCommands.xcu @@ -30333,7 +30289,7 @@ "PopupLabel\n" "value.text" msgid "Update ~Index" -msgstr "" +msgstr "עדכון מ~פתח עניינים" #. 3sfQu #: WriterCommands.xcu @@ -30383,7 +30339,7 @@ "Label\n" "value.text" msgid "Reject and Move to Next" -msgstr "" +msgstr "דחייה ומעבר לבא" #. riKrf #: WriterCommands.xcu @@ -30463,7 +30419,7 @@ "Label\n" "value.text" msgid "Accept and Move to Next" -msgstr "" +msgstr "אישור ומעבר לבא" #. ueUPj #: WriterCommands.xcu @@ -30503,7 +30459,7 @@ "PopupLabel\n" "value.text" msgid "Accept All Changes" -msgstr "" +msgstr "אישור כל השינויים" #. kja8B #: WriterCommands.xcu @@ -30553,7 +30509,7 @@ "Label\n" "value.text" msgid "~Links" -msgstr "קישורים" +msgstr "~קישורים" #. gA4ED #: WriterCommands.xcu @@ -30563,7 +30519,7 @@ "PopupLabel\n" "value.text" msgid "Update ~Links" -msgstr "" +msgstr "~עדכון קישורים" #. fQQgY #: WriterCommands.xcu @@ -30573,7 +30529,7 @@ "Label\n" "value.text" msgid "~Record" -msgstr "מעקב" +msgstr "~תיעוד" #. fUFWw #: WriterCommands.xcu @@ -30583,7 +30539,7 @@ "TooltipLabel\n" "value.text" msgid "Record Track Changes" -msgstr "" +msgstr "תיעוד מעקב שינויים" #. uTnAC #: WriterCommands.xcu @@ -30593,7 +30549,7 @@ "Label\n" "value.text" msgid "Track Changes Functions" -msgstr "" +msgstr "פונקציות מעקב שינויים" #. EuyGQ #: WriterCommands.xcu @@ -30603,7 +30559,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes Functions" -msgstr "" +msgstr "הצגת פונקציות מעקב שינויים" #. Qvz6V #: WriterCommands.xcu @@ -30633,7 +30589,7 @@ "Label\n" "value.text" msgid "Show Tracked ~Changes" -msgstr "" +msgstr "הצגת מ~עקב אחר שינויים" #. sMgCx #: WriterCommands.xcu @@ -30643,7 +30599,7 @@ "Label\n" "value.text" msgid "T~ooltips" -msgstr "" +msgstr "~חלוניות עצה" #. EitKc #: WriterCommands.xcu @@ -30653,7 +30609,7 @@ "TooltipLabel\n" "value.text" msgid "Show change authorship in tooltips" -msgstr "" +msgstr "הצגת בעלות שינויים בחלוניות עצה" #. rYNAa #: WriterCommands.xcu @@ -30663,7 +30619,7 @@ "Label\n" "value.text" msgid "Use header/footer menu" -msgstr "" +msgstr "שימוש בתפריט כותרת עליונה/תחתונה" #. 3nEko #: WriterCommands.xcu @@ -30673,7 +30629,7 @@ "TooltipLabel\n" "value.text" msgid "Use the advanced popup menu to create header/footer on the fly" -msgstr "" +msgstr "אפשר להשתמש בתפריט הקופץ המתקדם כדי ליצור כותרת עליונה/תחתונה על הדרך" #. EPnUe #: WriterCommands.xcu @@ -30683,7 +30639,7 @@ "Label\n" "value.text" msgid "Show outline-folding buttons" -msgstr "" +msgstr "הצגת אפשרויות קיפול מתאר" #. 4hvcy #: WriterCommands.xcu @@ -30693,7 +30649,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 "מציג כפתור ליד כותרות ותת־כותרות כדי לסייע בקיפול מתאר. אפילו בלי הכפתור, אפשר לבצע קיפול מתאר במנווט." #. zAgZU #: WriterCommands.xcu @@ -30713,7 +30669,7 @@ "Label\n" "value.text" msgid "Show tracked deletions in margin" -msgstr "" +msgstr "מציג מחיקות במעקב בשול" #. 3GVrG #: WriterCommands.xcu @@ -30733,7 +30689,7 @@ "Label\n" "value.text" msgid "Go t~o Page..." -msgstr "" +msgstr "מ~עבר לעמוד…" #. FFXsF #: WriterCommands.xcu @@ -30793,7 +30749,7 @@ "TooltipLabel\n" "value.text" msgid "Manage Track Changes" -msgstr "" +msgstr "ניהול מעקב שינויים" #. WAKZF #: WriterCommands.xcu @@ -30833,7 +30789,7 @@ "PopupLabel\n" "value.text" msgid "Update ~Charts" -msgstr "" +msgstr "עדכון ת~רשימים" #. 46XYv #: WriterCommands.xcu @@ -30873,7 +30829,7 @@ "Label\n" "value.text" msgid "Set Reminder" -msgstr "" +msgstr "הגדרת תזכורת" #. n2p7v #: WriterCommands.xcu @@ -30883,7 +30839,7 @@ "TooltipLabel\n" "value.text" msgid "Set Reminder" -msgstr "" +msgstr "הגדרת תזכורת" #. g5xTe #: WriterCommands.xcu @@ -30903,7 +30859,7 @@ "Label\n" "value.text" msgid "Insert Paragraph" -msgstr "הכנסת פסקה" +msgstr "הוספת פסקה" #. Bjk5w #: WriterCommands.xcu @@ -30923,7 +30879,7 @@ "Label\n" "value.text" msgid "Insert Column Break" -msgstr "הכנסת מעבר עמודה" +msgstr "הוספת מעבר עמודה" #. 4AobA #: WriterCommands.xcu @@ -30937,14 +30893,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 @@ -30994,7 +30949,7 @@ "Label\n" "value.text" msgid "Cross-~reference..." -msgstr "" +msgstr "הפניה מ~קושרת…" #. uBUDR #: WriterCommands.xcu @@ -31004,7 +30959,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Cross-reference" -msgstr "" +msgstr "הוספת הפניה מקושרת" #. caDb4 #: WriterCommands.xcu @@ -31034,7 +30989,7 @@ "Label\n" "value.text" msgid "Content Controls" -msgstr "" +msgstr "פקדי תוכן" #. isyh9 #: WriterCommands.xcu @@ -31208,14 +31163,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 @@ -31295,7 +31249,7 @@ "Label\n" "value.text" msgid "Show All Changes Inline" -msgstr "" +msgstr "הצגת כל השינויים כחלק מהשורות" #. jVPG7 #: WriterCommands.xcu @@ -31305,7 +31259,7 @@ "ContextLabel\n" "value.text" msgid "All ~Changes Inline" -msgstr "" +msgstr "כל ה~שינויים כחלק מהשורות" #. JQmVz #: WriterCommands.xcu @@ -31315,7 +31269,7 @@ "Label\n" "value.text" msgid "Show Deletions In Margin" -msgstr "" +msgstr "הצגת מחיקות בשוליים" #. Mo6US #: WriterCommands.xcu @@ -31325,7 +31279,7 @@ "ContextLabel\n" "value.text" msgid "~Deletions In Margin" -msgstr "" +msgstr "מ~חיקות בשוליים" #. AcF7X #: WriterCommands.xcu @@ -31335,7 +31289,7 @@ "Label\n" "value.text" msgid "Show Insertions In Margin" -msgstr "" +msgstr "הצגת תוספות בשוליים" #. hCo6p #: WriterCommands.xcu @@ -31345,7 +31299,7 @@ "ContextLabel\n" "value.text" msgid "~Insertions In Margin" -msgstr "" +msgstr "~תוספות בשוליים" #. 7cFXL #: WriterCommands.xcu @@ -31385,7 +31339,7 @@ "Label\n" "value.text" msgid "First Mail Merge Entry" -msgstr "" +msgstr "רשומת מיזוג דואר ראשונה" #. qAzfT #: WriterCommands.xcu @@ -31395,7 +31349,7 @@ "Label\n" "value.text" msgid "Previous Mail Merge Entry" -msgstr "" +msgstr "רשומת מיזוג דואר קודמת" #. AzpgU #: WriterCommands.xcu @@ -31405,7 +31359,7 @@ "Label\n" "value.text" msgid "Current Mail Merge Entry" -msgstr "" +msgstr "רשומת מיזוג דואר נוכחית" #. ZtC2D #: WriterCommands.xcu @@ -31415,7 +31369,7 @@ "Label\n" "value.text" msgid "Next Mail Merge Entry" -msgstr "" +msgstr "רשומת מיזוג דואר באה" #. EwtRf #: WriterCommands.xcu @@ -31425,7 +31379,7 @@ "Label\n" "value.text" msgid "Last Mail Merge Entry" -msgstr "" +msgstr "רשימת מיזוג דואר אחרונה" #. aFEGA #: WriterCommands.xcu @@ -31435,7 +31389,7 @@ "Label\n" "value.text" msgid "Exclude Mail Merge Entry" -msgstr "" +msgstr "החרגת רשומת מיזוג דואר" #. DAC8X #: WriterCommands.xcu @@ -31445,7 +31399,7 @@ "Label\n" "value.text" msgid "Edit Individual Documents" -msgstr "" +msgstr "עריכת מסמכים פרטניים" #. veNqQ #: WriterCommands.xcu @@ -31465,7 +31419,7 @@ "Label\n" "value.text" msgid "Print Merged Documents" -msgstr "" +msgstr "הדפסת מסמכים ממוזגים" #. DWp3J #: WriterCommands.xcu @@ -31475,7 +31429,7 @@ "Label\n" "value.text" msgid "Send Email Messages" -msgstr "" +msgstr "שליחת הודעות דוא״ל" #. 3h8ar #: WriterCommands.xcu @@ -31505,7 +31459,7 @@ "Label\n" "value.text" msgid "~Formula Object..." -msgstr "" +msgstr "עצם ~נוסחה…" #. VaCbZ #: WriterCommands.xcu @@ -31515,7 +31469,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Formula Object" -msgstr "" +msgstr "הוספת עצם נוסחה" #. 4tQrL #: WriterCommands.xcu @@ -31525,7 +31479,7 @@ "Label\n" "value.text" msgid "Text Attributes..." -msgstr "" +msgstr "מאפייני טקסט…" #. 5D2ho #: WriterCommands.xcu @@ -31545,7 +31499,7 @@ "ContextLabel\n" "value.text" msgid "As C~haracter" -msgstr "לתו" +msgstr "כ~תו" #. dapfz #: WriterCommands.xcu @@ -31565,7 +31519,7 @@ "Label\n" "value.text" msgid "OLE Object Insert Menu" -msgstr "" +msgstr "תפריט הוספת עצמי OLE" #. DE4Ca #: WriterCommands.xcu @@ -31575,7 +31529,7 @@ "TooltipLabel\n" "value.text" msgid "Insert OLE Object" -msgstr "" +msgstr "הוספת עצם OLE" #. ESBXG #: WriterCommands.xcu @@ -31685,7 +31639,7 @@ "Label\n" "value.text" msgid "First ~Author" -msgstr "" +msgstr "מ~חבר ראשון" #. FqzAb #: WriterCommands.xcu @@ -31985,7 +31939,7 @@ "Label\n" "value.text" msgid "Rotate 1~80°" -msgstr "" +msgstr "סיבוב 1~80°" #. bF3xx #: WriterCommands.xcu @@ -31995,7 +31949,7 @@ "Label\n" "value.text" msgid "Reset R~otation" -msgstr "" +msgstr "אי~פוס סיבוב" #. p6Ygh #: WriterCommands.xcu @@ -32035,7 +31989,7 @@ "Label\n" "value.text" msgid "Select to End of Word" -msgstr "" +msgstr "בחירה עד סוף המילה" #. bpBoC #: WriterCommands.xcu @@ -32125,7 +32079,7 @@ "Label\n" "value.text" msgid "~Load Styles from Template" -msgstr "" +msgstr "~טעינת סגנונות מתבנית" #. m6dbV #: WriterCommands.xcu @@ -32175,7 +32129,7 @@ "Label\n" "value.text" msgid "Page Columns" -msgstr "" +msgstr "עמודות בעמוד" #. Lk4KG #: WriterCommands.xcu @@ -32195,7 +32149,7 @@ "Label\n" "value.text" msgid "~Page Style..." -msgstr "" +msgstr "~סגנון עמוד…" #. 8aUD6 #: WriterCommands.xcu @@ -32215,7 +32169,7 @@ "Label\n" "value.text" msgid "Translate..." -msgstr "" +msgstr "תרגום…" #. JrZD4 #: WriterCommands.xcu @@ -32365,7 +32319,7 @@ "Label\n" "value.text" msgid "None" -msgstr "" +msgstr "בלי" #. SvFa2 #: WriterCommands.xcu @@ -32375,7 +32329,7 @@ "Label\n" "value.text" msgid "~Parallel" -msgstr "" +msgstr "מ~קביל" #. YFEFD #: WriterCommands.xcu @@ -32385,7 +32339,7 @@ "Label\n" "value.text" msgid "Two Pages Preview" -msgstr "" +msgstr "תצוגת שני עמודים מקדימה" #. G7JBA #: WriterCommands.xcu @@ -32405,7 +32359,7 @@ "Label\n" "value.text" msgid "~Through" -msgstr "" +msgstr "מ~בעד" #. SocUA #: WriterCommands.xcu @@ -32525,7 +32479,7 @@ "PopupLabel\n" "value.text" msgid "Edit F~ields..." -msgstr "" +msgstr "~עריכת שדות…" #. U9LvE #: WriterCommands.xcu @@ -32535,7 +32489,7 @@ "Label\n" "value.text" msgid "E~xternal Links..." -msgstr "" +msgstr "קישורים ~חיצוניים…" #. PCFhM #: WriterCommands.xcu @@ -32575,7 +32529,7 @@ "Label\n" "value.text" msgid "Header Rows Repeat Across Pages" -msgstr "" +msgstr "שורות כותרות חוזרות על פני העמודים" #. xhNkD #: WriterCommands.xcu @@ -32625,7 +32579,7 @@ "TooltipLabel\n" "value.text" msgid "Insert rows above" -msgstr "" +msgstr "הוספת שורות מעל" #. zPPVF #: WriterCommands.xcu @@ -32655,7 +32609,7 @@ "TooltipLabel\n" "value.text" msgid "Insert rows below" -msgstr "" +msgstr "הוספת שורות מתחת" #. bxCPN #: WriterCommands.xcu @@ -32675,7 +32629,7 @@ "Label\n" "value.text" msgid "Insert Columns Before" -msgstr "" +msgstr "הוספת עמודות לפני" #. FSTZ9 #: WriterCommands.xcu @@ -32685,7 +32639,7 @@ "ContextLabel\n" "value.text" msgid "Columns B~efore" -msgstr "" +msgstr "עמודות ל~פני" #. G9zT9 #: WriterCommands.xcu @@ -32695,7 +32649,7 @@ "TooltipLabel\n" "value.text" msgid "Insert columns before" -msgstr "" +msgstr "הוספת עמודות לפני" #. oY3As #: WriterCommands.xcu @@ -32705,7 +32659,7 @@ "Label\n" "value.text" msgid "Insert Columns After" -msgstr "" +msgstr "הוספת עמודות אחרי" #. 9TFB2 #: WriterCommands.xcu @@ -32715,7 +32669,7 @@ "ContextLabel\n" "value.text" msgid "Columns A~fter" -msgstr "" +msgstr "עמודות ~אחרי" #. crDFB #: WriterCommands.xcu @@ -32725,7 +32679,7 @@ "TooltipLabel\n" "value.text" msgid "Insert columns after" -msgstr "" +msgstr "הוספת עמודות אחרי" #. B44pP #: WriterCommands.xcu @@ -32755,7 +32709,7 @@ "Label\n" "value.text" msgid "Paste as Nested Table" -msgstr "" +msgstr "הדבקה הטבלה מקוננת" #. E2BRL #: WriterCommands.xcu @@ -32765,7 +32719,7 @@ "PopupLabel\n" "value.text" msgid "~Nested Table" -msgstr "" +msgstr "טבלה מ~קוננת" #. jWjL7 #: WriterCommands.xcu @@ -32775,7 +32729,7 @@ "Label\n" "value.text" msgid "Paste as Rows Above" -msgstr "" +msgstr "הדבקה כשורות מעל" #. eG4dp #: WriterCommands.xcu @@ -32785,7 +32739,7 @@ "PopupLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "שורות מ~על" #. fmNGn #: WriterCommands.xcu @@ -32795,7 +32749,7 @@ "Label\n" "value.text" msgid "Paste as Columns Before" -msgstr "" +msgstr "הדבקה כשורות לפני" #. kQfFH #: WriterCommands.xcu @@ -32805,7 +32759,7 @@ "PopupLabel\n" "value.text" msgid "Columns ~Before" -msgstr "" +msgstr "עמודות ~לפני" #. RxF66 #: WriterCommands.xcu @@ -32835,7 +32789,7 @@ "TooltipLabel\n" "value.text" msgid "Delete table" -msgstr "" +msgstr "מחיקת טבלה" #. TTVL5 #: WriterCommands.xcu @@ -32889,14 +32843,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 @@ -32956,7 +32909,7 @@ "TooltipLabel\n" "value.text" msgid "Select Cell" -msgstr "" +msgstr "בחירת תא" #. PpyJW #: WriterCommands.xcu @@ -33006,7 +32959,7 @@ "PopupLabel\n" "value.text" msgid "Update ~Fields" -msgstr "" +msgstr "עדכון ~שדות" #. tpc5P #: WriterCommands.xcu @@ -33036,7 +32989,7 @@ "TooltipLabel\n" "value.text" msgid "Select Table" -msgstr "" +msgstr "בחירת טבלה" #. wzPFD #: WriterCommands.xcu @@ -33096,7 +33049,7 @@ "Label\n" "value.text" msgid "Edit Fo~rmula" -msgstr "" +msgstr "עריכת ~נוסחה" #. iABvA #: WriterCommands.xcu @@ -33106,7 +33059,7 @@ "TooltipLabel\n" "value.text" msgid "Insert or Edit Formula" -msgstr "" +msgstr "הוספת או עריכת נוסחה" #. DGAud #: WriterCommands.xcu @@ -33236,7 +33189,7 @@ "Label\n" "value.text" msgid "Move Item Up" -msgstr "" +msgstr "העלאת פריט" #. F6Rc7 #: WriterCommands.xcu @@ -33256,7 +33209,7 @@ "Label\n" "value.text" msgid "Move Item Down" -msgstr "" +msgstr "הורדת הפריט למטה" #. 2GyQ4 #: WriterCommands.xcu @@ -33296,7 +33249,7 @@ "Label\n" "value.text" msgid "No List" -msgstr "" +msgstr "אין רשימה" #. 3kGnA #: WriterCommands.xcu @@ -33616,7 +33569,7 @@ "Label\n" "value.text" msgid "To Previous Page" -msgstr "" +msgstr "לעמוד הקודם" #. w4B39 #: WriterCommands.xcu @@ -33626,7 +33579,7 @@ "TooltipLabel\n" "value.text" msgid "To Previous Page" -msgstr "" +msgstr "לעמוד הקודם" #. qEpQx #: WriterCommands.xcu @@ -33636,7 +33589,7 @@ "Label\n" "value.text" msgid "To Next Page" -msgstr "" +msgstr "לעמוד הבא" #. Nx5Ux #: WriterCommands.xcu @@ -33646,7 +33599,7 @@ "TooltipLabel\n" "value.text" msgid "To Next Page" -msgstr "" +msgstr "לעמוד הבא" #. adnz3 #: WriterCommands.xcu @@ -33676,7 +33629,7 @@ "PopupLabel\n" "value.text" msgid "Update Page Formatting" -msgstr "" +msgstr "עדכון עיצוב העמוד" #. yyVam #: WriterCommands.xcu @@ -33690,14 +33643,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 @@ -33717,7 +33669,7 @@ "Label\n" "value.text" msgid "Shift+Backspace" -msgstr "" +msgstr "Shift+Backspace" #. G5RC9 #: WriterCommands.xcu @@ -33737,7 +33689,7 @@ "Label\n" "value.text" msgid "Select Sentence" -msgstr "" +msgstr "בחירת משפט" #. gAsXP #: WriterCommands.xcu @@ -33947,7 +33899,7 @@ "Label\n" "value.text" msgid "~Optimal" -msgstr "" +msgstr "מי~טבי" #. EFP2w #: WriterCommands.xcu @@ -34147,7 +34099,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Restart Numbering" -msgstr "" +msgstr "החלפת איפוס מספור" #. ofjeC #: WriterCommands.xcu @@ -34167,7 +34119,7 @@ "Label\n" "value.text" msgid "Before" -msgstr "" +msgstr "לפני" #. LADWG #: WriterCommands.xcu @@ -34187,7 +34139,7 @@ "Label\n" "value.text" msgid "After" -msgstr "" +msgstr "אחרי" #. b5mCd #: WriterCommands.xcu @@ -34257,7 +34209,7 @@ "ContextLabel\n" "value.text" msgid "~First Paragraph" -msgstr "פסקה ראשונה" +msgstr "פסקה ~ראשונה" #. wTJvx #: WriterCommands.xcu @@ -34267,7 +34219,7 @@ "Label\n" "value.text" msgid "Minimal Column Width" -msgstr "" +msgstr "רוחב עמודה מזערי" #. TEEVY #: WriterCommands.xcu @@ -34277,7 +34229,7 @@ "TooltipLabel\n" "value.text" msgid "Minimal Column Width: Adjust width of selected columns to fit content" -msgstr "" +msgstr "רוחב עמודה מזערי: כיוון רוחב העמודות הנבחרות כדי שתתאמנה לתוכן" #. vGAT7 #: WriterCommands.xcu @@ -34297,7 +34249,7 @@ "Label\n" "value.text" msgid "Increment Indent Value" -msgstr "הגדלת הזחה" +msgstr "הגדלת ערך הזחה" #. 6or48 #: WriterCommands.xcu @@ -34307,7 +34259,7 @@ "Label\n" "value.text" msgid "Minimal Row Height" -msgstr "" +msgstr "גובה שורה מזערי" #. wJUJV #: WriterCommands.xcu @@ -34317,7 +34269,7 @@ "TooltipLabel\n" "value.text" msgid "Minimal Row Height: Adjust height of selected rows to fit content" -msgstr "" +msgstr "גובה שורה מזערי: כיוון גובה השורות הנבחרות כך שתתאמנה לתוכן" #. 9RUey #: WriterCommands.xcu @@ -34387,7 +34339,7 @@ "Label\n" "value.text" msgid "Row to ~Break Across Pages" -msgstr "" +msgstr "שורה למעבר ~בין עמודים" #. 9bfa7 #: WriterCommands.xcu @@ -34407,7 +34359,7 @@ "Label\n" "value.text" msgid "Select Cycle" -msgstr "" +msgstr "בחירת סבב" #. GzD2B #: WriterCommands.xcu @@ -34607,7 +34559,7 @@ "Label\n" "value.text" msgid "Show resolved comme~nts" -msgstr "" +msgstr "הצגת הערות ש~נפתרו" #. R3huy #: WriterCommands.xcu @@ -34617,7 +34569,7 @@ "ContextLabel\n" "value.text" msgid "Resolved Comments" -msgstr "" +msgstr "הערות שנפתרו" #. vAGUB #: WriterCommands.xcu @@ -34667,7 +34619,7 @@ "Label\n" "value.text" msgid "~Thesaurus..." -msgstr "אגרון...‏" +msgstr "~אגרון…" #. oB6iJ #: WriterCommands.xcu @@ -34677,7 +34629,7 @@ "Label\n" "value.text" msgid "Character Highlighting Color" -msgstr "" +msgstr "צבע הדגשת תווים" #. sVA9o #: WriterCommands.xcu @@ -34771,14 +34723,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 @@ -34788,7 +34739,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Formatting Marks" -msgstr "" +msgstr "שינוי מצב סימוני עיצוב" #. 2GDoU #: WriterCommands.xcu @@ -34798,7 +34749,7 @@ "Label\n" "value.text" msgid "Hide Whitespac~e" -msgstr "" +msgstr "ה~סתרת רווח" #. XAsfn #: WriterCommands.xcu @@ -34808,7 +34759,7 @@ "Label\n" "value.text" msgid "Show Whitespac~e" -msgstr "" +msgstr "ה~צגת רווח" #. RHnwE #: WriterCommands.xcu @@ -34818,7 +34769,7 @@ "Label\n" "value.text" msgid "So~rt..." -msgstr "מיון...‏" +msgstr "מ~יון…" #. ejnAA #: WriterCommands.xcu @@ -34828,7 +34779,7 @@ "Label\n" "value.text" msgid "Fie~ld Shadings" -msgstr "הצללת שדות" +msgstr "ה~צללת שדות" #. 9EBAK #: WriterCommands.xcu @@ -34838,7 +34789,7 @@ "Label\n" "value.text" msgid "Calculat~e" -msgstr "חישוב" +msgstr "~חישוב" #. AjNLg #: WriterCommands.xcu @@ -34848,7 +34799,7 @@ "Label\n" "value.text" msgid "~Field Names" -msgstr "שמות שדות" +msgstr "~שמות שדות" #. CcnG7 #: WriterCommands.xcu @@ -34858,7 +34809,7 @@ "Label\n" "value.text" msgid "Table Boundaries" -msgstr "הצגת קווי רשת" +msgstr "גבולות טבלה" #. cGGKB #: WriterCommands.xcu @@ -34868,7 +34819,7 @@ "Label\n" "value.text" msgid "Book Preview" -msgstr "הצגה מוקדמת של ספר" +msgstr "תצוגה מקדימה של ספר" #. pk7kQ #: WriterCommands.xcu @@ -34878,7 +34829,7 @@ "Label\n" "value.text" msgid "Remove Direct Character Formats" -msgstr "הסרת פורמט ישיר של תווים" +msgstr "הסרת עיצובים ישירים של תווים" #. ExWEB #: WriterCommands.xcu @@ -34888,7 +34839,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Word..." -msgstr "" +msgstr "שליחה בדוא״ל כ־Microsoft Word…" #. CRkbD #: WriterCommands.xcu @@ -34898,7 +34849,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Text..." -msgstr "" +msgstr "שליחה בדוא״ל כ~טקסט OpenDocument…" #. wnFCt #: WriterCommands.xcu @@ -34908,7 +34859,7 @@ "Label\n" "value.text" msgid "~Standard" -msgstr "רגיל" +msgstr "~רגיל" #. 5S3gN #: WriterCommands.xcu @@ -34938,7 +34889,7 @@ "Label\n" "value.text" msgid "Smart ~Tag Options..." -msgstr "" +msgstr "אפשרויות תיוג ~חכם…" #. tBP2P #: WriterCommands.xcu @@ -34968,7 +34919,7 @@ "TooltipLabel\n" "value.text" msgid "Clone Formatting (double click and Ctrl or Cmd to alter behavior)" -msgstr "" +msgstr "שכפול עיצוב (לחיצה כפולה ו־Ctrl או Cmd כדי לשנות את ההתנהגות)" #. VToen #: WriterCommands.xcu @@ -34978,7 +34929,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "" +msgstr "תקריב" #. pmDD4 #: WriterCommands.xcu @@ -34988,7 +34939,7 @@ "Label\n" "value.text" msgid "Manage Track Changes" -msgstr "" +msgstr "ניהול מעקב אחר שינויים" #. 69yiD #: WriterCommands.xcu @@ -34998,7 +34949,7 @@ "Label\n" "value.text" msgid "Character" -msgstr "" +msgstr "תו" #. tTiVu #: WriterCommands.xcu @@ -35008,7 +34959,7 @@ "Label\n" "value.text" msgid "Paragraph" -msgstr "" +msgstr "פסקה" #. 5F4Qn #: WriterCommands.xcu @@ -35018,7 +34969,7 @@ "Label\n" "value.text" msgid "Table Properties" -msgstr "" +msgstr "מאפייני טבלה" #. 2ZGwA #: WriterCommands.xcu @@ -35028,7 +34979,7 @@ "Label\n" "value.text" msgid "Position and Size" -msgstr "" +msgstr "מקום וגודל" #. ArKzw #: WriterCommands.xcu @@ -35038,7 +34989,7 @@ "Label\n" "value.text" msgid "Image Properties" -msgstr "" +msgstr "מאפייני תמונה" #. KEZCp #: WriterCommands.xcu @@ -35048,7 +34999,7 @@ "Label\n" "value.text" msgid "Frame Properties" -msgstr "" +msgstr "מאפייני מסגרת" #. mZb2Y #: WriterCommands.xcu @@ -35058,7 +35009,7 @@ "Label\n" "value.text" msgid "OLE Object Properties" -msgstr "" +msgstr "מאפייני עצם OLE" #. zVZJg #: WriterCommands.xcu @@ -35068,7 +35019,7 @@ "Label\n" "value.text" msgid "Text Wrap" -msgstr "" +msgstr "גלישת שורות" #. jZZZD #: WriterCommands.xcu @@ -35078,7 +35029,7 @@ "Label\n" "value.text" msgid "Borders" -msgstr "" +msgstr "גבולות" #. M4kEt #: WriterCommands.xcu @@ -35088,7 +35039,7 @@ "Label\n" "value.text" msgid "Borders" -msgstr "" +msgstr "גבולות" #. jH8wk #: WriterCommands.xcu @@ -35098,7 +35049,7 @@ "Label\n" "value.text" msgid "Area" -msgstr "" +msgstr "שטח" #. fNArh #: WriterCommands.xcu @@ -35108,7 +35059,7 @@ "Label\n" "value.text" msgid "Area" -msgstr "" +msgstr "שטח" #. VHFdG #: WriterCommands.xcu @@ -35118,7 +35069,7 @@ "Label\n" "value.text" msgid "Line" -msgstr "" +msgstr "קו" #. sCm9G #: WriterCommands.xcu @@ -35128,7 +35079,7 @@ "Label\n" "value.text" msgid "Line" -msgstr "" +msgstr "קו" #. 7PCFf #: WriterCommands.xcu @@ -35138,7 +35089,7 @@ "Label\n" "value.text" msgid "C~haracter" -msgstr "" +msgstr "~תו" #. yGCHt #: WriterCommands.xcu @@ -35158,7 +35109,7 @@ "Label\n" "value.text" msgid "~List" -msgstr "" +msgstr "ר~שימה" #. ZmR9V #: WriterCommands.xcu @@ -35168,7 +35119,7 @@ "Label\n" "value.text" msgid "~Select" -msgstr "בחירה" +msgstr "~בחירה" #. XC7Xk #: WriterCommands.xcu @@ -35178,7 +35129,7 @@ "Label\n" "value.text" msgid "~Convert" -msgstr "המרה" +msgstr "המ~רה" #. P8xfR #: WriterCommands.xcu @@ -35188,7 +35139,7 @@ "Label\n" "value.text" msgid "~Update" -msgstr "עדכון" +msgstr "~עדכון" #. FawhG #: WriterCommands.xcu @@ -35198,7 +35149,7 @@ "Label\n" "value.text" msgid "Table of Contents and Inde~x" -msgstr "טבלת תכנים ו~אינדקס" +msgstr "תוכן עניינים ומ~פתח" #. d4KEC #: WriterCommands.xcu @@ -35248,7 +35199,7 @@ "Label\n" "value.text" msgid "Styl~es" -msgstr "סגנונות" +msgstr "~סגנונות" #. YTNwv #: WriterCommands.xcu @@ -35258,7 +35209,7 @@ "Label\n" "value.text" msgid "~Wrap" -msgstr "גלישה" +msgstr "~גלישה" #. KTWTs #: WriterCommands.xcu @@ -35278,7 +35229,7 @@ "Label\n" "value.text" msgid "AutoCorr~ect" -msgstr "עיצוב אוטומטי" +msgstr "~תיקון אוטומטי" #. 7DFV2 #: WriterCommands.xcu @@ -35308,7 +35259,7 @@ "Label\n" "value.text" msgid "~Add to List" -msgstr "" +msgstr "הוספה ל~רשימה" #. rbB7v #: WriterCommands.xcu @@ -35318,7 +35269,7 @@ "TooltipLabel\n" "value.text" msgid "“Add to List” adds selected paragraphs to an immediately preceding list." -msgstr "" +msgstr "„הוספה לרשימה” מוסיפה את הפסקאות הנבחרות לרשימה הקודמת המיידית." #. oCEjg #: WriterCommands.xcu @@ -35398,7 +35349,7 @@ "Label\n" "value.text" msgid "Default ~Paragraph" -msgstr "פסקה כ~בררת מחדל" +msgstr "פסקה כ~ברירת מחדל" #. K3yd3 #: WriterCommands.xcu @@ -35408,7 +35359,7 @@ "Label\n" "value.text" msgid "Default ~Paragraph" -msgstr "פסקת ~בררת מחדל" +msgstr "פסקת ~ברירת מחדל" #. Qp9qA #: WriterCommands.xcu @@ -35418,7 +35369,7 @@ "TooltipLabel\n" "value.text" msgid "Default Paragraph Style" -msgstr "סגנון פסקה כבררת מחדל" +msgstr "סגנון פסקה כברירת מחדל" #. LRDnV #: WriterCommands.xcu @@ -35568,7 +35519,7 @@ "TooltipLabel\n" "value.text" msgid "Heading 3 Paragraph Style" -msgstr "" +msgstr "סגנון פסקה כותרת 3" #. k53FG #: WriterCommands.xcu @@ -35598,7 +35549,7 @@ "TooltipLabel\n" "value.text" msgid "Heading 4 Paragraph Style" -msgstr "" +msgstr "סגנון פסקה כותרת 4" #. FjBvj #: WriterCommands.xcu @@ -35628,7 +35579,7 @@ "TooltipLabel\n" "value.text" msgid "Heading 5 Paragraph Style" -msgstr "" +msgstr "סגנון פסקה כותרת 5" #. vhWdD #: WriterCommands.xcu @@ -35658,7 +35609,7 @@ "TooltipLabel\n" "value.text" msgid "Heading 6 Paragraph Style" -msgstr "" +msgstr "סגנון פסקה כותרת 6" #. PZvwB #: WriterCommands.xcu @@ -35688,7 +35639,7 @@ "TooltipLabel\n" "value.text" msgid "Quotations Paragraph Style" -msgstr "" +msgstr "סגנון פסקה ציטטות" #. 2vgz8 #: WriterCommands.xcu @@ -35702,14 +35653,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 @@ -35719,7 +35669,7 @@ "TooltipLabel\n" "value.text" msgid "Preformatted Text Paragraph Style" -msgstr "" +msgstr "סגנון פסקה טקסט שעוצב מראש" #. fQ4qE #: WriterCommands.xcu @@ -35733,14 +35683,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 @@ -35750,7 +35699,7 @@ "TooltipLabel\n" "value.text" msgid "Text Body Paragraph Style" -msgstr "" +msgstr "סגנון פסקה גוף טקסט" #. 3LYMu #: WriterCommands.xcu @@ -35760,7 +35709,7 @@ "Label\n" "value.text" msgid "Default ~Character" -msgstr "תו ~בררת מחדל" +msgstr "תו ~ברירת מחדל" #. ZAcM8 #: WriterCommands.xcu @@ -35770,7 +35719,7 @@ "Label\n" "value.text" msgid "No ~Character Style" -msgstr "" +msgstr "ללא סגנון ~תו" #. w8bFj #: WriterCommands.xcu @@ -35780,7 +35729,7 @@ "TooltipLabel\n" "value.text" msgid "Remove applied character style" -msgstr "" +msgstr "הסרת סגנון תווים שחל" #. idpKA #: WriterCommands.xcu @@ -35810,7 +35759,7 @@ "TooltipLabel\n" "value.text" msgid "Emphasis Character Style" -msgstr "" +msgstr "סגנון תווים מודגש" #. JNbe4 #: WriterCommands.xcu @@ -35830,7 +35779,7 @@ "TooltipLabel\n" "value.text" msgid "Strong Emphasis Character Style" -msgstr "" +msgstr "סגנון תווים מודגש במיוחד" #. PZ7tA #: WriterCommands.xcu @@ -35850,7 +35799,7 @@ "TooltipLabel\n" "value.text" msgid "Strong Emphasis Character Style" -msgstr "" +msgstr "סגנון תווים מודגש במיוחד" #. gVtiB #: WriterCommands.xcu @@ -35870,18 +35819,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 @@ -35931,7 +35879,7 @@ "Label\n" "value.text" msgid "Bullet • List Style" -msgstr "" +msgstr "סגנון רשימה תבליטי •" #. VBvBU #: WriterCommands.xcu @@ -35941,7 +35889,7 @@ "Label\n" "value.text" msgid "Bullet • List Style" -msgstr "" +msgstr "סגנון רשימה תבליטי •" #. BW4E6 #: WriterCommands.xcu @@ -35951,7 +35899,7 @@ "TooltipLabel\n" "value.text" msgid "Bullet • List Style" -msgstr "" +msgstr "סגנון רשימה תבליטי •" #. mqYSC #: WriterCommands.xcu @@ -35961,7 +35909,7 @@ "Label\n" "value.text" msgid "Numbering 123 List Style" -msgstr "" +msgstr "סגנון רשימה מספור 123" #. D5sRy #: WriterCommands.xcu @@ -35971,7 +35919,7 @@ "Label\n" "value.text" msgid "Numbering 123 List Style" -msgstr "" +msgstr "סגנון רשימה מספור 123" #. 5AJuo #: WriterCommands.xcu @@ -35981,7 +35929,7 @@ "TooltipLabel\n" "value.text" msgid "Numbering 123 List Style" -msgstr "" +msgstr "סגנון רשימה מספור 123" #. xAyDX #: WriterCommands.xcu @@ -35991,7 +35939,7 @@ "Label\n" "value.text" msgid "Numbering ABC List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (גדולות)" #. uENeD #: WriterCommands.xcu @@ -36001,7 +35949,7 @@ "Label\n" "value.text" msgid "Numbering ABC List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (גדולות)" #. c6BjB #: WriterCommands.xcu @@ -36011,7 +35959,7 @@ "TooltipLabel\n" "value.text" msgid "Numbering ABC List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (גדולות)" #. uxkph #: WriterCommands.xcu @@ -36021,7 +35969,7 @@ "Label\n" "value.text" msgid "Numbering abc List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (קטנות)" #. Lcogs #: WriterCommands.xcu @@ -36031,7 +35979,7 @@ "Label\n" "value.text" msgid "Numbering abc List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (קטנות)" #. fYB5d #: WriterCommands.xcu @@ -36041,7 +35989,7 @@ "TooltipLabel\n" "value.text" msgid "Numbering abc List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (קטנות)" #. UHSTJ #: WriterCommands.xcu @@ -36051,7 +35999,7 @@ "Label\n" "value.text" msgid "Numbering IVX List Style" -msgstr "" +msgstr "סגנון רשימה מספור IVX" #. QwUVJ #: WriterCommands.xcu @@ -36061,7 +36009,7 @@ "Label\n" "value.text" msgid "Numbering IVX List Style" -msgstr "" +msgstr "סגנון רשימה מספור IVX" #. jXDLc #: WriterCommands.xcu @@ -36071,7 +36019,7 @@ "TooltipLabel\n" "value.text" msgid "Numbering IVX List Style" -msgstr "" +msgstr "סגנון רשימה מספור IVX" #. Pe4gB #: WriterCommands.xcu @@ -36081,7 +36029,7 @@ "Label\n" "value.text" msgid "Numbering ivx List Style" -msgstr "" +msgstr "סגנון רשימה מספור ivx" #. dHZMF #: WriterCommands.xcu @@ -36091,7 +36039,7 @@ "TooltipLabel\n" "value.text" msgid "Numbering ivx List Style" -msgstr "" +msgstr "סגנון רשימה מספור ivx" #. ZSf5C #: WriterCommands.xcu @@ -36101,7 +36049,7 @@ "Label\n" "value.text" msgid "Numbering ivx List Style" -msgstr "" +msgstr "סגנון רשימה מספור ivx" #. EJceH #: WriterCommands.xcu @@ -36111,7 +36059,7 @@ "Label\n" "value.text" msgid "Default Table Style" -msgstr "" +msgstr "סגנון טבלה כברירת מחדל" #. 4AbSB #: WriterCommands.xcu @@ -36351,7 +36299,7 @@ "Label\n" "value.text" msgid "Toggle Outline Folding" -msgstr "" +msgstr "שינוי מצב קיפול מתאר" #. mByUW #: WriterCommands.xcu @@ -36361,7 +36309,7 @@ "TooltipLabel\n" "value.text" msgid "Fold or unfold outline content in document" -msgstr "" +msgstr "קיפול או פריסה של תוכן מתאר במסמך" #. nFACE #: WriterCommands.xcu @@ -36395,25 +36343,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 @@ -36723,7 +36669,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. nCSvk #: WriterFormWindowState.xcu @@ -37203,7 +37149,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. v45LV #: WriterGlobalWindowState.xcu @@ -37723,7 +37669,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. 5GFnw #: WriterReportWindowState.xcu @@ -38023,7 +37969,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. gaswH #: WriterWebWindowState.xcu @@ -38383,7 +38329,7 @@ "UIName\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "סרגל מחברת" #. qgAuR #: WriterWindowState.xcu @@ -38443,7 +38389,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "" +msgstr "קיצורי דרך בסרגל מחברות" #. UDnFL #: WriterWindowState.xcu @@ -38683,7 +38629,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. Tgtuj #: WriterWindowState.xcu @@ -38873,7 +38819,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode)" -msgstr "" +msgstr "רגיל (מצב יחיד)" #. S4dvi #: WriterWindowState.xcu @@ -38883,7 +38829,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - Comment" -msgstr "" +msgstr "רגיל (מצב יחיד) - הערה" #. ZLJUa #: WriterWindowState.xcu @@ -38893,7 +38839,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - Shape" -msgstr "" +msgstr "רגיל (מצב יחיד) - צורה" #. CfEPF #: WriterWindowState.xcu @@ -38903,7 +38849,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - Shape Text" -msgstr "" +msgstr "רגיל (מצב יחיד) - כתב מעוצב" #. 5Jwe7 #: WriterWindowState.xcu @@ -38913,7 +38859,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - Form Control" -msgstr "" +msgstr "רגיל (מצב יחיד) - פקד בטופס" #. HyeGA #: WriterWindowState.xcu @@ -38923,7 +38869,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - Frame" -msgstr "" +msgstr "רגיל (מצב יחיד) - מסגרת" #. HJA7z #: WriterWindowState.xcu @@ -38933,7 +38879,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - Image" -msgstr "" +msgstr "רגיל (מצב יחיד) - תמונה" #. EGnPq #: WriterWindowState.xcu @@ -38943,7 +38889,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - Media" -msgstr "" +msgstr "רגיל (מצב יחיד) - מדיה" #. MZDAw #: WriterWindowState.xcu @@ -38953,7 +38899,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - OLE Object" -msgstr "" +msgstr "רגיל (מצב יחיד) - עצם OLE" #. BEJMZ #: WriterWindowState.xcu @@ -38963,7 +38909,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - Print Preview" -msgstr "" +msgstr "רגיל (מצב יחיד) - תצוגה מקדימה להדפסה" #. a4rcu #: WriterWindowState.xcu @@ -38973,7 +38919,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - Table" -msgstr "" +msgstr "רגיל (מצב יחיד) - טבלה" #. LNNfy #: WriterWindowState.xcu @@ -38983,7 +38929,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode) - Text" -msgstr "" +msgstr "רגיל (מצב יחיד) - טקסט" #. h6gRt #: WriterWindowState.xcu @@ -39333,7 +39279,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. URXoj #: XFormsWindowState.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.5.2~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.5.1~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-08 19:47+0100\n" -"PO-Revision-Date: 2021-02-26 09:37+0000\n" +"PO-Revision-Date: 2023-03-06 12: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" #. HhMVS @@ -1084,7 +1084,7 @@ "STR_DELETE_SLIDES\n" "value.text" msgid "Delete %SLIDES slides." -msgstr "מחק %SLIDES שקופיות." +msgstr "מחיקת %SLIDES שקופיות." #. LSpri #: PresentationMinimizer.xcu @@ -1094,7 +1094,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 @@ -1104,7 +1104,7 @@ "STR_CREATE_REPLACEMENT\n" "value.text" msgid "Create replacement images for %OLE objects." -msgstr "צור תמונות חלופיות לאובייקטי %OLE." +msgstr "יצירת תמונות חלופיות לעצמי %OLE." #. aFEL3 #: PresentationMinimizer.xcu @@ -1134,7 +1134,7 @@ "STR_INFO_PRIMARY\n" "value.text" msgid "Successfully updated the presentation “%TITLE”." -msgstr "" +msgstr "המצגת „%TITLE” עודכנה בהצלחה." #. Ud5BA #: PresentationMinimizer.xcu @@ -1144,7 +1144,7 @@ "STR_INFO_SECONDARY_1\n" "value.text" msgid "The file size has changed from %OLDFILESIZE MB to %NEWFILESIZE MB." -msgstr "" +msgstr "גודל הקובץ השתנה מ־%OLDFILESIZE מ״ב ל־%NEWFILESIZE מ״ב." #. 3jxzg #: PresentationMinimizer.xcu @@ -1154,7 +1154,7 @@ "STR_INFO_SECONDARY_2\n" "value.text" msgid "The file size has changed from %OLDFILESIZE MB to approximately %NEWFILESIZE MB." -msgstr "" +msgstr "גודל הקובץ השתנה מ־%OLDFILESIZE מ״ב לבערך %NEWFILESIZE מ״ב." #. GshEd #: PresentationMinimizer.xcu @@ -1164,7 +1164,7 @@ "STR_INFO_SECONDARY_3\n" "value.text" msgid "The file size has changed to %NEWFILESIZE MB." -msgstr "" +msgstr "גודל הקובץ השתנה ל־%NEWFILESIZE מ״ב." #. Eks8J #: PresentationMinimizer.xcu @@ -1174,7 +1174,7 @@ "STR_INFO_SECONDARY_4\n" "value.text" msgid "The file size has changed to approximately %NEWFILESIZE MB." -msgstr "" +msgstr "גודל הקובץ השתנה לבערך %NEWFILESIZE מ״ב." #. CSfqQ #: PresentationMinimizer.xcu @@ -1834,7 +1834,7 @@ "Left\n" "value.text" msgid "Ctrl-'A'" -msgstr "" +msgstr "Ctrl-'A'" #. GnAKF #: PresenterScreen.xcu @@ -1844,7 +1844,7 @@ "Right\n" "value.text" msgid "Turn off pointer as pen mode" -msgstr "" +msgstr "כיבוי הסמן כמצב עט" #. EMh4x #: PresenterScreen.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/he/oox/messages.po libreoffice-7.5.2~rc2/translations/source/he/oox/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/oox/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/oox/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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 12: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.5.1~rc2/translations/source/he/readlicense_oo/docs.po libreoffice-7.5.2~rc2/translations/source/he/readlicense_oo/docs.po --- libreoffice-7.5.1~rc2/translations/source/he/readlicense_oo/docs.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/readlicense_oo/docs.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-25 12:36+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.5.1~rc2/translations/source/he/sc/messages.po libreoffice-7.5.2~rc2/translations/source/he/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/sc/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2021-03-16 04: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: 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 @@ -16981,7 +16981,7 @@ #: sc/inc/strings.hrc:57 msgctxt "SCSTR_NO_TAB_BG_COLOR" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. yEEuF #: sc/inc/strings.hrc:58 @@ -17545,10 +17545,9 @@ #. rTGKc #: sc/inc/strings.hrc:154 -#, fuzzy msgctxt "SCSTR_CONDITION" msgid "Condition " -msgstr "תנאי" +msgstr "תנאי " #. 56Wmj #. content description strings are also use d in ScLinkTargetsObj @@ -19167,37 +19166,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 @@ -19233,32 +19232,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 @@ -19268,24 +19266,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 @@ -19730,10 +19725,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 @@ -19809,7 +19803,7 @@ #, fuzzy msgctxt "colwidthdialog|default" msgid "_Default value" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. rov8K #: sc/uiconfig/scalc/ui/colwidthdialog.ui:129 @@ -20988,10 +20982,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 @@ -21040,10 +21033,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 @@ -22730,10 +22722,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 @@ -22985,10 +22976,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 @@ -23778,10 +23768,9 @@ #. RdQeE #: sc/uiconfig/scalc/ui/functionpanel.ui:77 -#, fuzzy msgctxt "functionpanel|category" msgid "Array" -msgstr "מערך " +msgstr "מערך" #. h4kRr #: sc/uiconfig/scalc/ui/functionpanel.ui:78 @@ -23895,7 +23884,7 @@ #, fuzzy msgctxt "goalseekdlg|label1" msgid "Default Settings" -msgstr "הגדרות בררת מחדל" +msgstr "הגדרות ברירת מחדל" #. Aguih #: sc/uiconfig/scalc/ui/goalseekdlg.ui:263 @@ -25150,10 +25139,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 @@ -25253,7 +25241,7 @@ #, fuzzy msgctxt "multipleoperationsdialog|label1" msgid "Default Settings" -msgstr "הגדרות בררת מחדל" +msgstr "הגדרות ברירת מחדל" #. ZQKXx #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:280 @@ -25562,19 +25550,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 @@ -25654,127 +25642,127 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:8451 msgctxt "CalcNotebookbar|DataMenuButton" msgid "_Data" -msgstr "" +msgstr "_נתונים" #. xzx9j #: sc/uiconfig/scalc/ui/notebookbar.ui:8557 msgctxt "CalcNotebookbar|DataLabel" msgid "~Data" -msgstr "" +msgstr "~נתונים" #. CBEHA #: sc/uiconfig/scalc/ui/notebookbar.ui:9360 msgctxt "CalcNotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_סקירה" #. 7FXbr #: sc/uiconfig/scalc/ui/notebookbar.ui:9445 msgctxt "CalcNotebookbar|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~סקירה" #. NT37F #: sc/uiconfig/scalc/ui/notebookbar.ui:10331 msgctxt "CalcNotebookbar|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "_תצוגה" #. rPdAq #: sc/uiconfig/scalc/ui/notebookbar.ui:10416 msgctxt "CalcNotebookbar|ViewLabel" msgid "~View" -msgstr "" +msgstr "~תצוגה" #. SAv6Z #: sc/uiconfig/scalc/ui/notebookbar.ui:11525 msgctxt "CalcNotebookbar|ImageMenuButton" msgid "Ima_ge" -msgstr "" +msgstr "תמו_נה" #. rwprK #: sc/uiconfig/scalc/ui/notebookbar.ui:11646 msgctxt "CalcNotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "תמו~נה" #. EjbzV #: sc/uiconfig/scalc/ui/notebookbar.ui:12827 msgctxt "CalcNotebookbar|DrawMenuButton" msgid "_Draw" -msgstr "" +msgstr "_ציור" #. iagRv #: sc/uiconfig/scalc/ui/notebookbar.ui:12934 msgctxt "CalcNotebookbar|DrawLabel" msgid "~Draw" -msgstr "" +msgstr "~ציור" #. EgeGL #: sc/uiconfig/scalc/ui/notebookbar.ui:13392 msgctxt "CalcNotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "" +msgstr "המרה" #. PRmbH #: sc/uiconfig/scalc/ui/notebookbar.ui:13682 msgctxt "CalcNotebookbar|ObjectMenuButton" msgid "_Object" -msgstr "" +msgstr "_עצם" #. xTKVv #: sc/uiconfig/scalc/ui/notebookbar.ui:13789 msgctxt "CalcNotebookbar|FrameLabel" msgid "~Object" -msgstr "" +msgstr "~עצם" #. cHyKz #: sc/uiconfig/scalc/ui/notebookbar.ui:14348 msgctxt "CalcNotebookbar|MediaMenuButton" msgid "_Media" -msgstr "" +msgstr "מ_דיה" #. CJ2qx #: sc/uiconfig/scalc/ui/notebookbar.ui:14453 msgctxt "CalcNotebookbar|MediaLabel" msgid "~Media" -msgstr "" +msgstr "מ~דיה" #. eQK6A #: sc/uiconfig/scalc/ui/notebookbar.ui:14835 msgctxt "CalcNotebookbar|PrintMenuButton" msgid "_Print" -msgstr "" +msgstr "ה_דפסה" #. sCGyG #: sc/uiconfig/scalc/ui/notebookbar.ui:14918 msgctxt "CalcNotebookbar|PrintLabel" msgid "~Print" -msgstr "" +msgstr "ה~דפסה" #. 5JVAt #: sc/uiconfig/scalc/ui/notebookbar.ui:15726 msgctxt "CalcNotebookbar|FormMenuButton" msgid "Fo_rm" -msgstr "" +msgstr "_טופס" #. CCEAK #: sc/uiconfig/scalc/ui/notebookbar.ui:15810 msgctxt "CalcNotebookbar|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "~טופס" #. DHeyE #: sc/uiconfig/scalc/ui/notebookbar.ui:15867 msgctxt "CalcNotebookbar|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ה_רחבה" #. 4ZDL7 #: sc/uiconfig/scalc/ui/notebookbar.ui:15941 msgctxt "CalcNotebookbar|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ה~רחבה" #. 3Ec6T #: sc/uiconfig/scalc/ui/notebookbar.ui:17130 @@ -25792,7 +25780,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 @@ -25829,7 +25817,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5598 msgctxt "notebookbar_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "הו_ספה" #. CDXv3 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5653 @@ -25913,86 +25901,85 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11517 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" -msgstr "" +msgstr "~ציור" #. DoVwy #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12468 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" -msgstr "" +msgstr "עצם" #. JXKiY #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12520 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" -msgstr "" +msgstr "~עצם" #. q8wnS #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13220 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" -msgstr "" +msgstr "מ_דיה" #. 7HDt3 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13273 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" -msgstr "" +msgstr "מ~דיה" #. vSDok #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13832 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" -msgstr "" +msgstr "הדפסה" #. goiqQ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13884 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" -msgstr "" +msgstr "ה~דפסה" #. EBGs5 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15198 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" -msgstr "" +msgstr "_טופס" #. EKA8X #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15250 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "~טופס" #. 8SvE5 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15329 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ה_רחבה" #. WH5NR #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15387 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ה~רחבה" #. 8fhwb #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16388 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "_כלים" #. kpc43 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16440 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 @@ -26003,51 +25990,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 @@ -26187,7 +26168,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 @@ -26558,7 +26539,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 @@ -26648,7 +26629,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 @@ -27133,7 +27114,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 @@ -27313,7 +27294,7 @@ #: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:56 msgctxt "optcompatibilitypage|keybindings" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. 3mLBb #: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:57 @@ -27488,7 +27469,7 @@ #: sc/uiconfig/scalc/ui/optformula.ui:206 msgctxt "optformula|calcdefault" msgid "Default settings" -msgstr "הגדרות בררת מחדל" +msgstr "הגדרות ברירת מחדל" #. RwEz8 #: sc/uiconfig/scalc/ui/optformula.ui:227 @@ -27571,7 +27552,7 @@ #, fuzzy msgctxt "optimalcolwidthdialog|default" msgid "_Default value" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. RMGd4 #: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:130 @@ -27609,7 +27590,7 @@ #, fuzzy msgctxt "optimalrowheightdialog|default" msgid "_Default value" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. vCDBD #: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:129 @@ -29497,7 +29478,7 @@ #, fuzzy msgctxt "rowheightdialog|default" msgid "_Default value" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. stFFG #: sc/uiconfig/scalc/ui/rowheightdialog.ui:129 @@ -32979,16 +32960,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 @@ -33056,7 +33036,7 @@ #: sc/uiconfig/scalc/ui/texttransformationentry.ui:28 msgctxt "texttransformationentry|name" msgid "Text Transformation" -msgstr "" +msgstr "התמרת טקסט" #. zXpJU #: sc/uiconfig/scalc/ui/texttransformationentry.ui:47 @@ -33127,10 +33107,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 @@ -33826,13 +33805,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 @@ -33844,49 +33823,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 "קובץ מקור" @@ -33895,13 +33871,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.5.1~rc2/translations/source/he/scaddins/messages.po libreoffice-7.5.2~rc2/translations/source/he/scaddins/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/scaddins/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/scaddins/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-14 14:36+0100\n" -"PO-Revision-Date: 2021-01-26 17:37+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 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 @@ -240,7 +244,7 @@ #: scaddins/inc/analysis.hrc:88 msgctxt "ANALYSIS_Iseven" msgid "Returns the value 'true' if the number truncated to integer is even" -msgstr "" +msgstr "מחזירה את הערך ‚true’ (אמת) אם המספר בקיצוץ למספר שלם הוא זוגי" #. CrmYv #: scaddins/inc/analysis.hrc:89 @@ -258,7 +262,7 @@ #: scaddins/inc/analysis.hrc:95 msgctxt "ANALYSIS_Isodd" msgid "Returns the value 'true' if the number truncated to integer is odd" -msgstr "" +msgstr "מחזירה את הערך ‚true’ (אמת) אם המספר בקיצוץ למספר שלם הוא אי־זוגי" #. EjqfP #: scaddins/inc/analysis.hrc:96 @@ -426,7 +430,7 @@ #: scaddins/inc/analysis.hrc:147 msgctxt "ANALYSIS_Randbetween" msgid "Returns a random integer between the specified Bottom and Top values (both inclusive)" -msgstr "" +msgstr "מחזירה מספר שלם אקראי בין הערכים התחתון והעליון (כולל) שצוינו" #. F9bnf #: scaddins/inc/analysis.hrc:148 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/scp2/source/calc.po libreoffice-7.5.2~rc2/translations/source/he/scp2/source/calc.po --- libreoffice-7.5.1~rc2/translations/source/he/scp2/source/calc.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/scp2/source/calc.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2020-03-23 08:16+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 1492023795.000000\n" #. rTGYE @@ -221,4 +221,4 @@ "STR_REG_VAL_NUMBERS_SPREADSHEET\n" "LngText.text" msgid "Apple Numbers" -msgstr "" +msgstr "Numbers של Apple" diff -Nru libreoffice-7.5.1~rc2/translations/source/he/scp2/source/draw.po libreoffice-7.5.2~rc2/translations/source/he/scp2/source/draw.po --- libreoffice-7.5.1~rc2/translations/source/he/scp2/source/draw.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/scp2/source/draw.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2020-03-23 08:16+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 1513030798.000000\n" #. txsAG @@ -392,4 +392,4 @@ "STR_REG_VAL_PDF\n" "LngText.text" msgid "PDF (Portable Document Format)" -msgstr "" +msgstr "PDF (Portable Document Format - תצורת קובץ נייד)" diff -Nru libreoffice-7.5.1~rc2/translations/source/he/scp2/source/impress.po libreoffice-7.5.2~rc2/translations/source/he/scp2/source/impress.po --- libreoffice-7.5.1~rc2/translations/source/he/scp2/source/impress.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/scp2/source/impress.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2020-03-23 08:16+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 1513254648.000000\n" #. USjxN @@ -212,4 +212,4 @@ "STR_REG_VAL_KEYNOTE_PRESENTATION\n" "LngText.text" msgid "Apple Keynote" -msgstr "" +msgstr "Keynote של Apple" diff -Nru libreoffice-7.5.1~rc2/translations/source/he/scp2/source/ooo.po libreoffice-7.5.2~rc2/translations/source/he/scp2/source/ooo.po --- libreoffice-7.5.1~rc2/translations/source/he/scp2/source/ooo.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/scp2/source/ooo.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2021-10-27 20:07+0000\n" +"PO-Revision-Date: 2023-03-06 12: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 @@ -4649,7 +4649,7 @@ "STR_NAME_MODULE_EXTENSION_DICTIONARY_FA\n" "LngText.text" msgid "Persian" -msgstr "" +msgstr "פרסית" #. FLaCv #: module_ooo.ulf @@ -4658,7 +4658,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_FA\n" "LngText.text" msgid "Persian Spell Checking Dictionary" -msgstr "" +msgstr "מילון בדיקת איות בפרסית" #. 5QqAr #: module_ooo.ulf diff -Nru libreoffice-7.5.1~rc2/translations/source/he/scp2/source/writer.po libreoffice-7.5.2~rc2/translations/source/he/scp2/source/writer.po --- libreoffice-7.5.1~rc2/translations/source/he/scp2/source/writer.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/scp2/source/writer.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2020-03-23 08:16+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 1565192293.000000\n" #. V3iDr @@ -266,4 +266,4 @@ "STR_REG_VAL_PAGES_DOCUMENT\n" "LngText.text" msgid "Apple Pages" -msgstr "" +msgstr "Pages של Apple" diff -Nru libreoffice-7.5.1~rc2/translations/source/he/sd/messages.po libreoffice-7.5.2~rc2/translations/source/he/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/sd/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:12+0100\n" -"PO-Revision-Date: 2021-03-14 21:37+0000\n" +"PO-Revision-Date: 2023-03-14 12: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: 1565192300.000000\n" #. WDjkB @@ -2154,7 +2154,7 @@ #: sd/inc/strings.hrc:318 msgctxt "STR_LAYOUT_DEFAULT_NAME" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. rEPYV #: sd/inc/strings.hrc:319 @@ -3136,7 +3136,7 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:42 msgctxt "copydlg|default" msgid "_Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. BCDCG #: sd/uiconfig/sdraw/ui/copydlg.ui:49 @@ -7850,7 +7850,7 @@ #: 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 @@ -8846,7 +8846,7 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:33 msgctxt "prntopts|pagedefaultrb" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. hajt3 #: sd/uiconfig/simpress/ui/prntopts.ui:43 @@ -8999,7 +8999,7 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:356 msgctxt "prntopts|defaultrb" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. pjmw3 #: sd/uiconfig/simpress/ui/prntopts.ui:366 @@ -9870,7 +9870,7 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:146 msgctxt "sidebarslidebackground|button2" msgid "Insert Image..." -msgstr "" +msgstr "הוספת תמונה…" #. NH6zN #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:223 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/setup_native/source/mac.po libreoffice-7.5.2~rc2/translations/source/he/setup_native/source/mac.po --- libreoffice-7.5.1~rc2/translations/source/he/setup_native/source/mac.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/setup_native/source/mac.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: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 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.5.1~rc2/translations/source/he/sfx2/classification.po libreoffice-7.5.2~rc2/translations/source/he/sfx2/classification.po --- libreoffice-7.5.1~rc2/translations/source/he/sfx2/classification.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/sfx2/classification.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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 12: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: 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.5.1~rc2/translations/source/he/sfx2/messages.po libreoffice-7.5.2~rc2/translations/source/he/sfx2/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/sfx2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/sfx2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-09 11:30+0100\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2023-03-14 12: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: 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 @@ -1177,7 +1179,7 @@ #: include/sfx2/strings.hrc:215 msgctxt "STR_PB_COMPAREDOC" msgid "Compare to Original Document" -msgstr "" +msgstr "השוואה למסמך המקורי" #. 4qMCh #: include/sfx2/strings.hrc:216 @@ -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,31 +1638,31 @@ #: 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 "רענון סיסמה" #. JBvAE #: include/sfx2/strings.hrc:295 @@ -1683,7 +1687,7 @@ #: include/sfx2/strings.hrc:300 msgctxt "STR_TEMPLATE_NAME1" msgid "Grey Elegant" -msgstr "" +msgstr "אלגנטי אפור" #. FkuLG #: include/sfx2/strings.hrc:301 @@ -1707,13 +1711,13 @@ #: include/sfx2/strings.hrc:304 msgctxt "STR_TEMPLATE_NAME5" msgid "Candy" -msgstr "" +msgstr "ממתק" #. jEiAn #: include/sfx2/strings.hrc:305 msgctxt "STR_TEMPLATE_NAME6" msgid "Yellow Idea" -msgstr "" +msgstr "רעיון צהוב" #. QDNuB #: include/sfx2/strings.hrc:306 @@ -1737,7 +1741,7 @@ #: include/sfx2/strings.hrc:309 msgctxt "STR_TEMPLATE_NAME10" msgid "Freshes" -msgstr "" +msgstr "מרעננים" #. C5N9D #: include/sfx2/strings.hrc:310 @@ -1755,7 +1759,7 @@ #: include/sfx2/strings.hrc:312 msgctxt "STR_TEMPLATE_NAME13" msgid "Growing Liberty" -msgstr "" +msgstr "חירות מתגברת" #. xo2gC #: include/sfx2/strings.hrc:313 @@ -1834,7 +1838,7 @@ #: include/sfx2/strings.hrc:326 msgctxt "STR_TEMPLATE_NAME26" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. d7Hyk #: include/sfx2/strings.hrc:327 @@ -1876,7 +1880,7 @@ #: include/sfx2/strings.hrc:333 msgctxt "STR_TEMPLATE_NAME33" msgid "Simplified Chinese Normal" -msgstr "" +msgstr "סינית מסורתית רגיל" #. ZaGGB #: include/sfx2/strings.hrc:335 @@ -1924,103 +1928,103 @@ #: include/sfx2/strings.hrc:346 msgctxt "STR_DOCUMENT" msgid "Document" -msgstr "" +msgstr "מסמך" #. XDGTb #: include/sfx2/strings.hrc:347 msgctxt "STR_SPREADSHEET" msgid "Spreadsheet" -msgstr "" +msgstr "גיליון נתונים" #. 3UZXB #: include/sfx2/strings.hrc:348 msgctxt "STR_PRESENTATION" msgid "Presentation" -msgstr "" +msgstr "מצגת" #. noN5s #: include/sfx2/strings.hrc:349 msgctxt "STR_DRAWING" msgid "Drawing" -msgstr "" +msgstr "ציור" #. QpuFo #: include/sfx2/strings.hrc:350 msgctxt "STR_RECENT" msgid "Recently used" -msgstr "" +msgstr "בשימוש לאחרונה" #. EcAjb #: include/sfx2/strings.hrc:351 msgctxt "STR_NORECENT" msgid "No recent characters" -msgstr "" +msgstr "אין תווים אחרונים" #. tfjbD #: include/sfx2/strings.hrc:353 msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES" msgid "Reset All De~fault Templates" -msgstr "" +msgstr "איפוס כל תבניות ~ברירת המחדל" #. GWuDE #: include/sfx2/strings.hrc:354 msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE" msgid "Reset De~fault Text Document" -msgstr "" +msgstr "איפוס ברירת המחדל של מסמך ~טקסט" #. j5eV8 #: include/sfx2/strings.hrc:355 msgctxt "STR_ACTION_RESET_CALC_TEMPLATE" msgid "Reset De~fault Spreadsheet" -msgstr "" +msgstr "איפוס ברירת המחדל של ~גיליון נתונים" #. mWp3t #: include/sfx2/strings.hrc:356 msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE" msgid "Reset De~fault Presentation" -msgstr "" +msgstr "איפוס ברירת המחדל של מ~צגת" #. wfExB #: include/sfx2/strings.hrc:357 msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE" msgid "Reset De~fault Drawing" -msgstr "" +msgstr "איפוס ברירת המחדל של ~ציור" #. BFaGA #: include/sfx2/strings.hrc:358 msgctxt "STR_ACTION_IMPORT" msgid "~Import" -msgstr "" +msgstr "יי~בוא" #. 8Cwfk #: include/sfx2/strings.hrc:359 msgctxt "STR_ACTION_EXTENSIONS" msgid "E~xtensions" -msgstr "" +msgstr "ה~רחבות" #. idGvM #: include/sfx2/strings.hrc:360 msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE" msgid "Rename" -msgstr "" +msgstr "שינוי שם" #. EyjE3 #: include/sfx2/strings.hrc:361 msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY" msgid "Rename Category" -msgstr "" +msgstr "שינוי שם קטגוריה" #. T79Eb #: include/sfx2/strings.hrc:362 msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY" msgid "New Category" -msgstr "" +msgstr "קטגוריה חדשה" #. fCRA7 #: include/sfx2/strings.hrc:364 msgctxt "STR_OBJECT_INSPECTOR" msgid "UNO Object Inspector" -msgstr "" +msgstr "חוקר עצמי UNO" #. wH3TZ msgctxt "stock" @@ -2119,10 +2123,9 @@ #. f3nqh #: sfx2/inc/dinfdlg.hrc:34 -#, fuzzy msgctxt "SFX_CB_PROPERTY_STRINGARRAY" msgid "Disposition" -msgstr "נטיה" +msgstr "יעוד" #. uznMD #: sfx2/inc/dinfdlg.hrc:35 @@ -2258,10 +2261,9 @@ #. Geeuu #: sfx2/inc/dinfdlg.hrc:57 -#, fuzzy msgctxt "SFX_CB_PROPERTY_STRINGARRAY" msgid "Typist" -msgstr "קלדן" +msgstr "הקלדה" #. xxHtR #: sfx2/inc/dinfdlg.hrc:58 @@ -2353,313 +2355,313 @@ #: sfx2/inc/doctempl.hrc:35 msgctxt "TEMPLATE_LONG_NAMES_ARY" msgid "Drawings" -msgstr "" +msgstr "ציורים" #. uw5RC #: sfx2/inc/doctempl.hrc:36 msgctxt "TEMPLATE_LONG_NAMES_ARY" msgid "Localization" -msgstr "" +msgstr "תרגום" #. Wg9Je #: 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 @@ -2791,13 +2793,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 @@ -2833,7 +2835,7 @@ #: sfx2/uiconfig/ui/autoredactdialog.ui:202 msgctxt "menuassignpage|contentslabel" msgid "_Redaction Targets" -msgstr "" +msgstr "יעדי ע_ריכה" #. E4GWo #: sfx2/uiconfig/ui/autoredactdialog.ui:222 @@ -2971,7 +2973,7 @@ #: sfx2/uiconfig/ui/commandpopup.ui:35 msgctxt "commandpopup|entry" msgid "Search command" -msgstr "" +msgstr "חיפוש פקודה" #. w2G7M #: sfx2/uiconfig/ui/custominfopage.ui:15 @@ -2983,7 +2985,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 @@ -3007,13 +3009,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 @@ -3049,103 +3051,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 @@ -3153,67 +3155,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 @@ -3399,13 +3401,13 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:416 msgctxt "documentinfopage|image-preferred-dpi-checkbutton" msgid "Preferred resolution for images:" -msgstr "" +msgstr "רזולוציה מועדפת לתמונות:" #. pukYD #: sfx2/uiconfig/ui/documentinfopage.ui:466 msgctxt "documentinfopage|image-preferred-ppi-unit" msgid "ppi" -msgstr "" +msgstr "נק׳ לאינטש" #. VWjRu #: sfx2/uiconfig/ui/documentinfopage.ui:500 @@ -3807,7 +3809,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 @@ -3843,19 +3845,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 @@ -3867,7 +3869,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 @@ -3879,7 +3881,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 @@ -3933,25 +3935,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 @@ -3963,19 +3965,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 @@ -3987,13 +3989,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 @@ -4053,31 +4055,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 @@ -4095,7 +4097,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 @@ -4107,7 +4109,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 @@ -4125,7 +4127,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 @@ -4269,7 +4271,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 @@ -4479,7 +4481,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 @@ -4581,13 +4583,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 @@ -4707,7 +4709,7 @@ #: sfx2/uiconfig/ui/startcenter.ui:24 msgctxt "startcenter|clear_unavailable" msgid "Clear Unavailable Files" -msgstr "" +msgstr "מחיקת קבצים לא זמינים" #. isnw8 #: sfx2/uiconfig/ui/startcenter.ui:119 @@ -4809,43 +4811,43 @@ #: sfx2/uiconfig/ui/startcenter.ui:516 msgctxt "startcenter|filter_label" msgid "Filter:" -msgstr "" +msgstr "סינון:" #. xYGf6 #: sfx2/uiconfig/ui/startcenter.ui:533 msgctxt "startcenter|filter_none" msgid "All Applications" -msgstr "" +msgstr "כל היישומים" #. fAxHB #: sfx2/uiconfig/ui/startcenter.ui:534 msgctxt "startcenter|filter_writer" msgid "Text Documents" -msgstr "" +msgstr "מסמכי טקסט" #. zdYmN #: sfx2/uiconfig/ui/startcenter.ui:535 msgctxt "startcenter|filter_calc" msgid "Spreadsheets" -msgstr "" +msgstr "גיליונות נתונים" #. DZVJB #: sfx2/uiconfig/ui/startcenter.ui:536 msgctxt "startcenter|filter_impress" msgid "Presentations" -msgstr "" +msgstr "מצגות" #. 67F9T #: sfx2/uiconfig/ui/startcenter.ui:537 msgctxt "startcenter|filter_draw" msgid "Drawings" -msgstr "" +msgstr "ציורים" #. ZCQZB #: sfx2/uiconfig/ui/startcenter.ui:554 msgctxt "startcenter|mbActions|tool_tip" msgid "Actions" -msgstr "" +msgstr "פעולות" #. UHrAZ #: sfx2/uiconfig/ui/stylecontextmenu.ui:12 @@ -4905,7 +4907,7 @@ #: sfx2/uiconfig/ui/tabbarcontents.ui:66 msgctxt "tabbar|restoredefault" msgid "Restore Default" -msgstr "שחזור בררת מחדל" +msgstr "שחזור ברירת מחדל" #. DBWZf #: sfx2/uiconfig/ui/tabbarcontents.ui:98 @@ -4959,13 +4961,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 @@ -5241,7 +5243,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.5.1~rc2/translations/source/he/shell/source/win32/shlxthandler/res.po libreoffice-7.5.2~rc2/translations/source/he/shell/source/win32/shlxthandler/res.po --- libreoffice-7.5.1~rc2/translations/source/he/shell/source/win32/shlxthandler/res.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/shell/source/win32/shlxthandler/res.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: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: 1388397587.000000\n" #. nMHZG @@ -203,7 +203,7 @@ "%VERSION%\n" "LngText.text" msgid "Version" -msgstr "גירסה" +msgstr "גרסה" #. CGpUh #: shlxthdl.ulf diff -Nru libreoffice-7.5.1~rc2/translations/source/he/starmath/messages.po libreoffice-7.5.2~rc2/translations/source/he/starmath/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/starmath/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/starmath/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2021-09-05 11:22+0000\n" +"PO-Revision-Date: 2023-03-06 12: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 @@ -2891,7 +2891,7 @@ #: starmath/uiconfig/smath/ui/fontsizedialog.ui:61 msgctxt "fontsizedialog|default" msgid "_Default" -msgstr "_בררת מחדל" +msgstr "_ברירת מחדל" #. BywFC #: starmath/uiconfig/smath/ui/fontsizedialog.ui:68 @@ -3049,7 +3049,7 @@ #: starmath/uiconfig/smath/ui/fonttypedialog.ui:123 msgctxt "fonttypedialog|default" msgid "_Default" -msgstr "_בררת מחדל" +msgstr "_ברירת מחדל" #. gAvNx #: starmath/uiconfig/smath/ui/fonttypedialog.ui:130 @@ -3256,13 +3256,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.5.1~rc2/translations/source/he/svl/messages.po libreoffice-7.5.2~rc2/translations/source/he/svl/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/svl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/svl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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 12: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.5.1~rc2/translations/source/he/svtools/messages.po libreoffice-7.5.2~rc2/translations/source/he/svtools/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/svtools/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/svtools/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2021-06-04 11:11+0000\n" +"PO-Revision-Date: 2023-03-14 12: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: 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 @@ -832,31 +831,31 @@ #: include/svtools/strings.hrc:184 msgctxt "STR_TABBAR_HINT_MOVETOHOME_SHEETS" msgid "Scroll to first sheet" -msgstr "" +msgstr "גלילה לגיליון הראשון" #. Vrt2v #: include/svtools/strings.hrc:185 msgctxt "STR_TABBAR_HINT_MOVELEFT_SHEETS" msgid "Scroll to previous sheet" -msgstr "" +msgstr "גלילה לגיליון הקודם" #. AFDbv #: include/svtools/strings.hrc:186 msgctxt "STR_TABBAR_HINT_MOVERIGHT_SHEETS" msgid "Scroll to next sheet" -msgstr "" +msgstr "גלילה לגיליון הבא" #. eFvNF #: include/svtools/strings.hrc:187 msgctxt "STR_TABBAR_HINT_MOVETOEND_SHEETS" msgid "Scroll to last sheet" -msgstr "" +msgstr "גלילה לגיליון האחרון" #. 8E5Gc #: include/svtools/strings.hrc:188 msgctxt "STR_TABBAR_HINT_ADDTAB_SHEETS" msgid "Add sheet" -msgstr "" +msgstr "הוספת גיליון" #. 4K4AF #: include/svtools/strings.hrc:190 @@ -874,43 +873,43 @@ #: include/svtools/strings.hrc:193 msgctxt "STR_SVT_1BIT_THRESHOLD" msgid "1-bit threshold" -msgstr "" +msgstr "סף סיבית אחת" #. D5EAR #: include/svtools/strings.hrc:194 msgctxt "STR_SVT_8BIT_GRAYSCALE" msgid "8-bit grayscale" -msgstr "" +msgstr "גווני אפור 8 סיביות" #. HFbrr #: include/svtools/strings.hrc:195 msgctxt "STR_SVT_8BIT_COLOR_PALETTE" msgid "8-bit color" -msgstr "" +msgstr "צבע 8 סיביות" #. Rh5LR #: include/svtools/strings.hrc:196 msgctxt "STR_SVT_24BIT_TRUE_COLOR" msgid "24-bit true color" -msgstr "" +msgstr "צבע אמתי 24 סיביות" #. LHA5t #: include/svtools/strings.hrc:197 msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1" msgid "The image needs about %1 kB of memory." -msgstr "" +msgstr "התמונה צריכה להיות בערך %1 ק״ב של זיכרון." #. bVGRC #: include/svtools/strings.hrc:198 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:199 msgctxt "STR_SVT_ESTIMATED_SIZE_VEC" msgid "The file size is %1 kB." -msgstr "" +msgstr "גודל הקובץ הוא %1 ק״ב." #. TaCaF #: include/svtools/strings.hrc:200 @@ -928,7 +927,7 @@ #: include/svtools/strings.hrc:202 msgctxt "STR_SVT_OTHER_CMIS" msgid "Other CMIS" -msgstr "" +msgstr "שירות הדדיות ניהול תוכן אחר" #. E9JF5 #: include/svtools/strings.hrc:203 @@ -1084,7 +1083,7 @@ #: include/svtools/strings.hrc:228 msgctxt "STR_SVT_PRNDLG_DEFPRINTER" msgid "Default printer" -msgstr "מדפסת בררת מחדל" +msgstr "מדפסת ברירת מחדל" #. 9QCL5 #: include/svtools/strings.hrc:229 @@ -1192,19 +1191,19 @@ #: include/svtools/strings.hrc:247 msgctxt "STR_FIELD_FAX" msgid "Fax" -msgstr "" +msgstr "פקס" #. MgbsU #: include/svtools/strings.hrc:248 msgctxt "STR_FIELD_EMAIL" msgid "Email" -msgstr "" +msgstr "דוא״ל" #. aHNGY #: include/svtools/strings.hrc:249 msgctxt "STR_FIELD_URL" msgid "URL" -msgstr "כתובת אינטרנט (‏‪URL‬‏)‏" +msgstr "כתובת אתר" #. CGutA #: include/svtools/strings.hrc:250 @@ -1288,55 +1287,55 @@ #: include/svtools/strings.hrc:264 msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL" msgid "$user$'s $service$" -msgstr "" +msgstr "$service$ של $user$" #. CgGG3 #: include/svtools/strings.hrc:266 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:267 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:268 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:269 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:270 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:271 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:272 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:273 msgctxt "STR_WARNING_JAVANOTFOUND_TITLE" msgid "JRE Required" -msgstr "נדרש JRE‬‏" +msgstr "נדרשת JRE‬‏" #. XD3FG #: include/svtools/strings.hrc:274 @@ -1348,7 +1347,7 @@ #: include/svtools/strings.hrc:275 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 @@ -1356,7 +1355,7 @@ #: include/svtools/strings.hrc:279 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:281 @@ -1578,13 +1577,13 @@ #: include/svtools/strings.hrc:317 msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME" msgid "Disk drive" -msgstr "כונן דיסק" +msgstr "כונן תקליטון" #. 55Dof #: include/svtools/strings.hrc:318 msgctxt "STR_DESCRIPTION_CDROM_VOLUME" msgid "CD-ROM drive" -msgstr "כונן ‏‪CD-ROM‬‏‏" +msgstr "כונן תקליטור" #. 82Acc #: include/svtools/strings.hrc:319 @@ -1662,103 +1661,103 @@ #: include/svtools/strings.hrc:331 msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC" msgid "%PRODUCTNAME Database" -msgstr "" +msgstr "מסד נתונים של %PRODUCTNAME" #. ZFz7o #: include/svtools/strings.hrc:332 msgctxt "STR_DESCRIPTION_OO_DRAW_DOC" msgid "%PRODUCTNAME Drawing" -msgstr "" +msgstr "ציור של %PRODUCTNAME" #. 9JRAR #: include/svtools/strings.hrc:333 msgctxt "STR_DESCRIPTION_OO_MATH_DOC" msgid "%PRODUCTNAME Math Formula" -msgstr "" +msgstr "נוסחה מתמטית של %PRODUCTNAME" #. 4F4Uo #: include/svtools/strings.hrc:334 msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC" msgid "%PRODUCTNAME Master Document" -msgstr "" +msgstr "מסמך הורה של %PRODUCTNAME" #. FXCdu #: include/svtools/strings.hrc:335 msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC" msgid "%PRODUCTNAME Impress Presentation" -msgstr "" +msgstr "מצגת Impress של %PRODUCTNAME" #. 3ReMe #: include/svtools/strings.hrc:336 msgctxt "STR_DESCRIPTION_OO_CALC_DOC" msgid "%PRODUCTNAME Calc Spreadsheet" -msgstr "" +msgstr "גיליון נתונים Calc של %PRODUCTNAME" #. pTYGw #: include/svtools/strings.hrc:337 msgctxt "STR_DESCRIPTION_OO_WRITER_DOC" msgid "%PRODUCTNAME Writer Document" -msgstr "" +msgstr "מסמך Writer של %PRODUCTNAME" #. m2AEw #: include/svtools/strings.hrc:338 msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE" msgid "%PRODUCTNAME Spreadsheet Template" -msgstr "" +msgstr "תבנית גיליון נתונים של %PRODUCTNAME" #. M65d6 #: include/svtools/strings.hrc:339 msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE" msgid "%PRODUCTNAME Drawing Template" -msgstr "" +msgstr "תבנית ציור של %PRODUCTNAME" #. MrK7k #: include/svtools/strings.hrc:340 msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE" msgid "%PRODUCTNAME Presentation Template" -msgstr "" +msgstr "תבנית מצגת של %PRODUCTNAME" #. F8icA #: include/svtools/strings.hrc:341 msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE" msgid "%PRODUCTNAME Text Template" -msgstr "" +msgstr "תבנית טקסט %PRODUCTNAME" #. RgRyf #: include/svtools/strings.hrc:342 msgctxt "STR_DESCRIPTION_EXTENSION" msgid "%PRODUCTNAME Extension" -msgstr "חבילה ‏‪%PRODUCTNAME‬‏" +msgstr "הרחבה של ‏‪%PRODUCTNAME‬‏" #. b8JK6 #: include/svtools/strings.hrc:344 msgctxt "STR_DESCRIPTION_HUNSPELL" msgid "Hunspell SpellChecker" -msgstr "" +msgstr "בודק איות של Hunspell" #. do26f #: include/svtools/strings.hrc:345 msgctxt "STR_DESCRIPTION_LIBHYPHEN" msgid "Libhyphen Hyphenator" -msgstr "" +msgstr "ממקף של Libhyphen" #. aGFNy #: include/svtools/strings.hrc:346 msgctxt "STR_DESCRIPTION_MYTHES" msgid "MyThes Thesaurus" -msgstr "" +msgstr "אגרון של MyThes" #. RwS4n #: include/svtools/strings.hrc:347 msgctxt "STR_DESCRIPTION_IGNOREALLLIST" msgid "List of Ignored Words" -msgstr "" +msgstr "רשימה של מילים שלא נבדקות" #. eAiiA #: include/svtools/strings.hrc:348 msgctxt "STR_DESCRIPTION_LANGUAGETOOL" msgid "LanguageTool Remote Grammar Checker" -msgstr "" +msgstr "בודק איות מרוחק של LanguageTool" #. wH3TZ msgctxt "stock" @@ -1829,25 +1828,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 @@ -1895,49 +1894,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 @@ -2341,7 +2340,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 @@ -2529,7 +2528,7 @@ #: svtools/inc/errtxt.hrc:130 msgctxt "RID_ERRHDL" msgid "Wrong checksum." -msgstr "" +msgstr "סכום בדיקה שגוי." #. XVTHm #: svtools/inc/errtxt.hrc:131 @@ -2551,13 +2550,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 @@ -2605,7 +2604,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 @@ -3919,13 +3918,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 @@ -4705,7 +4704,7 @@ #: svtools/inc/langtab.hrc:382 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Maninkakan, Eastern, Latin" -msgstr "" +msgstr "מנינקה מזרחית לטינית" #. Kxi9E #: svtools/inc/langtab.hrc:383 @@ -4717,13 +4716,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 @@ -4777,7 +4776,7 @@ #: svtools/inc/langtab.hrc:394 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Venetian" -msgstr "" +msgstr "ונטית" #. 8EbCs #: svtools/inc/langtab.hrc:395 @@ -4849,7 +4848,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 @@ -4939,7 +4938,7 @@ #: svtools/inc/langtab.hrc:421 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Iloko" -msgstr "" +msgstr "אילוקאנו" #. AzGAy #: svtools/inc/langtab.hrc:422 @@ -4963,49 +4962,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 @@ -5017,55 +5016,55 @@ #: 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 "הולנדית של פנסילבניה" #. vkGn5 #: svtools/inc/langtab.hrc:442 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Portuguese (Mozambique)" -msgstr "" +msgstr "פורטוגלית (מוזמביק)" #. fXSja #: svtools/uiconfig/ui/addresstemplatedialog.ui:8 @@ -5089,25 +5088,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 @@ -5119,31 +5118,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 @@ -5155,7 +5154,7 @@ #: svtools/uiconfig/ui/fileviewmenu.ui:20 msgctxt "fileviewmenu|rename" msgid "_Rename" -msgstr "מתן שם אחר" +msgstr "_שינוי שם" #. puJ5X #: svtools/uiconfig/ui/graphicexport.ui:51 @@ -5167,7 +5166,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:141 msgctxt "graphicexport|modifydimensionscb" msgid "Modify dimensions" -msgstr "" +msgstr "שינוי ממדים" #. pyd6J #: svtools/uiconfig/ui/graphicexport.ui:159 @@ -5185,7 +5184,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:184 msgctxt "graphicexport|modifyresolutioncb" msgid "Modify resolution" -msgstr "" +msgstr "שינוי רזולוציה" #. ZWxGB #: svtools/uiconfig/ui/graphicexport.ui:202 @@ -5197,19 +5196,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 @@ -5245,7 +5244,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 @@ -5269,7 +5268,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 @@ -5281,7 +5280,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 @@ -5293,19 +5292,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 @@ -5317,7 +5316,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 @@ -5335,7 +5334,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 @@ -5353,7 +5352,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 @@ -5371,7 +5370,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 @@ -5389,7 +5388,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 @@ -5401,7 +5400,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 @@ -5419,7 +5418,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 @@ -5431,7 +5430,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 @@ -5449,7 +5448,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 @@ -5461,7 +5460,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 @@ -5479,7 +5478,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 @@ -5491,7 +5490,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 @@ -5509,7 +5508,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 @@ -5521,7 +5520,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 @@ -5551,7 +5550,7 @@ #: svtools/uiconfig/ui/linewindow.ui:19 msgctxt "linewindow|none_line_button" msgid "None" -msgstr "" +msgstr "ללא" #. LwyoW #: svtools/uiconfig/ui/placeedit.ui:18 @@ -5641,13 +5640,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 @@ -5707,7 +5706,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 @@ -5719,7 +5718,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 @@ -5803,7 +5802,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 @@ -5825,47 +5824,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.5.1~rc2/translations/source/he/svx/messages.po libreoffice-7.5.2~rc2/translations/source/he/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/svx/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:11+0100\n" -"PO-Revision-Date: 2021-03-05 18:22+0000\n" +"PO-Revision-Date: 2023-03-23 13: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 @@ -40,7 +40,7 @@ #: include/svx/strings.hrc:28 msgctxt "STR_ObjNameSingulDIAGRAM" msgid "Diagram" -msgstr "" +msgstr "תרשים" #. tC4qm #: include/svx/strings.hrc:29 @@ -303,25 +303,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 @@ -3016,13 +3016,13 @@ #: include/svx/strings.hrc:524 msgctxt "STR_UNDO_COL_DELETE" msgid "Delete column" -msgstr "Delete column" +msgstr "מחיקת עמודה" #. 9SF9L #: include/svx/strings.hrc:525 msgctxt "STR_UNDO_ROW_DELETE" msgid "Delete row" -msgstr "Delete row" +msgstr "מחיקת שורה" #. iBbtT #: include/svx/strings.hrc:526 @@ -3040,7 +3040,7 @@ #: include/svx/strings.hrc:528 msgctxt "STR_TABLE_NUMFORMAT" msgid "Format cell" -msgstr "Format cell" +msgstr "עיצוב תא" #. pSCJC #: include/svx/strings.hrc:529 @@ -3205,7 +3205,7 @@ #: include/svx/strings.hrc:556 msgctxt "RID_SVXSTR_GRAFMODE_STANDARD" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. DdAzc #: include/svx/strings.hrc:557 @@ -4095,56 +4095,56 @@ #: include/svx/strings.hrc:713 msgctxt "RID_SVXSTR_GRDT10" msgid "Diagonal 1l" -msgstr "Diagonal 1l" +msgstr "אלכסוני 1 שמאל" #. pJ9QE #. r means right #: include/svx/strings.hrc:715 msgctxt "RID_SVXSTR_GRDT11" msgid "Diagonal 1r" -msgstr "Diagonal 1r" +msgstr "אלכסוני 1 ימין" #. JB95r #. l means left #: include/svx/strings.hrc:717 msgctxt "RID_SVXSTR_GRDT12" msgid "Diagonal 2l" -msgstr "Diagonal 2l" +msgstr "אלכסוני 2 שמאל" #. xUpUR #. r means right #: include/svx/strings.hrc:719 msgctxt "RID_SVXSTR_GRDT13" msgid "Diagonal 2r" -msgstr "Diagonal 2r" +msgstr "אלכסוני 2 ימין" #. WCYMT #. l means left #: include/svx/strings.hrc:721 msgctxt "RID_SVXSTR_GRDT14" msgid "Diagonal 3l" -msgstr "Diagonal 3l" +msgstr "אלכסוני 3 שמאל" #. 3rJw7 #. r means right #: include/svx/strings.hrc:723 msgctxt "RID_SVXSTR_GRDT15" msgid "Diagonal 3r" -msgstr "Diagonal 3r" +msgstr "אלכסוני 3 ימין" #. a6ENF #. l means left #: include/svx/strings.hrc:725 msgctxt "RID_SVXSTR_GRDT16" msgid "Diagonal 4l" -msgstr "Diagonal 4l" +msgstr "אלכסוני 4 שמאל" #. Fpctb #. r means right #: include/svx/strings.hrc:727 msgctxt "RID_SVXSTR_GRDT17" msgid "Diagonal 4r" -msgstr "Diagonal 4r" +msgstr "אלכסוני 4 ימין" #. yqda8 #: include/svx/strings.hrc:728 @@ -5800,7 +5800,7 @@ #: include/svx/strings.hrc:1037 msgctxt "RID_SVXSTR_LANGUAGE_ALL" msgid "[All]" -msgstr "[All]" +msgstr "[כולן]" #. RZVDm #: include/svx/strings.hrc:1039 @@ -6192,7 +6192,7 @@ #: include/svx/strings.hrc:1107 msgctxt "RID_SVXSTR_DEFAULT" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. djHis #: include/svx/strings.hrc:1108 @@ -6914,7 +6914,7 @@ #: include/svx/strings.hrc:1237 msgctxt "RID_STR_PROPTITLE_SPINBUTTON" msgid "Spin Button" -msgstr "כפתור סבסוב" +msgstr "כפתור טווח" #. eGgm4 #: include/svx/strings.hrc:1238 @@ -6944,13 +6944,13 @@ #: include/svx/strings.hrc:1244 msgctxt "RID_STR_POSTFIX_DATE" msgid " (Date)" -msgstr " (Date)" +msgstr " (תאריך)" #. guA5u #: include/svx/strings.hrc:1245 msgctxt "RID_STR_POSTFIX_TIME" msgid " (Time)" -msgstr " (Time)" +msgstr " (שעה)" #. 2wgdY #: include/svx/strings.hrc:1246 @@ -7064,7 +7064,7 @@ #: include/svx/strings.hrc:1264 msgctxt "RID_STR_READONLY_VIEW" msgid " (read-only)" -msgstr " (read-only)" +msgstr " (לקריאה בלבד)" #. DgfNh #: include/svx/strings.hrc:1265 @@ -8041,7 +8041,7 @@ #: include/svx/strings.hrc:1438 msgctxt "RID_SVXITEMS_ORI_STANDARD" msgid "Default orientation" -msgstr "כיוון בררת מחדל" +msgstr "כיוון ברירת מחדל" #. WQqju #: include/svx/strings.hrc:1439 @@ -10885,7 +10885,6 @@ #. QYjeZ #: svx/inc/fmstring.hrc:29 -#, fuzzy msgctxt "RID_RSC_SQL_INTERNATIONAL" msgid "LIKE" msgstr "LIKE" @@ -10943,17 +10942,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 @@ -11047,121 +11044,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 @@ -13052,7 +13049,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 @@ -13244,7 +13241,7 @@ #, fuzzy msgctxt "adddataitemdialog|valueft" msgid "_Default value:" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. 6XN5s #: svx/uiconfig/ui/adddataitemdialog.ui:140 @@ -13545,10 +13542,9 @@ #. zHkNb #: svx/uiconfig/ui/addsubmissiondialog.ui:176 -#, fuzzy msgctxt "addsubmissiondialog|label4" msgid "_Method:" -msgstr "שיטה: " +msgstr "_שיטה:" #. 6VGN7 #: svx/uiconfig/ui/addsubmissiondialog.ui:216 @@ -13572,10 +13568,9 @@ #. Hj3z4 #: svx/uiconfig/ui/asianphoneticguidedialog.ui:91 -#, fuzzy msgctxt "asianphoneticguidedialog|basetextft" msgid "Base text" -msgstr "טקסט בסיסי " +msgstr "טקסט בסיס" #. ob9GM #: svx/uiconfig/ui/asianphoneticguidedialog.ui:103 @@ -13585,10 +13580,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 @@ -13622,10 +13616,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 @@ -13659,10 +13652,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 @@ -14277,7 +14269,7 @@ #: svx/uiconfig/ui/colsmenu.ui:40 msgctxt "colsmenu|delete" msgid "Delete column" -msgstr "Delete column" +msgstr "מחיקת עמודה" #. 7CkSW #: svx/uiconfig/ui/colsmenu.ui:48 @@ -16287,10 +16279,9 @@ #. cUiiU #: svx/uiconfig/ui/docrecoveryprogressdialog.ui:48 -#, fuzzy msgctxt "docrecoveryprogressdialog|label2" msgid "Progress of saving:" -msgstr "התקדמות השמירה: " +msgstr "התקדמות השמירה:" #. c8RJr #: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:28 @@ -17325,10 +17316,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 @@ -17554,10 +17544,9 @@ #. T7dN7 #: svx/uiconfig/ui/formnavimenu.ui:88 -#, fuzzy msgctxt "formnavimenu|props" msgid "Propert_ies" -msgstr "מאפיינים: " +msgstr "מ_אפיינים" #. E4cAk #: svx/uiconfig/ui/formnavimenu.ui:96 @@ -17573,23 +17562,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 @@ -17649,10 +17636,9 @@ #. eTopW #: svx/uiconfig/ui/gallerymenu1.ui:62 -#, fuzzy msgctxt "gallerymenu1|properties" msgid "Propert_ies..." -msgstr "מאפיינים: " +msgstr "מ_אפיינים…" #. EdDyv #: svx/uiconfig/ui/gallerymenu2.ui:12 @@ -17991,10 +17977,9 @@ #. WS3NJ #: svx/uiconfig/ui/imapdialog.ui:423 -#, fuzzy msgctxt "imapdialog|TBI_PROPERTY" msgid "Properties..." -msgstr "מאפיינים: " +msgstr "מאפיינים…" #. CBpCj #: svx/uiconfig/ui/imapdialog.ui:427 @@ -18548,10 +18533,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 @@ -18567,10 +18551,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.5.1~rc2/translations/source/he/sw/messages.po libreoffice-7.5.2~rc2/translations/source/he/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/sw/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-03-07 01:19+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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 @@ -44,7 +44,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:20 msgctxt "STR_HYPERLINK_TEXT_IS_SHORT" msgid "Hyperlink text is too short." -msgstr "" +msgstr "טקסט הקישור קצר מדי." #. xYUv3 #: sw/inc/AccessibilityCheckStrings.hrc:21 @@ -68,7 +68,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:24 msgctxt "STR_AVOID_FAKE_FOOTNOTES" msgid "Avoid fake footnotes." -msgstr "" +msgstr "הימנעות מהערות שוליים מזויפות." #. Ux9yR #: sw/inc/AccessibilityCheckStrings.hrc:25 @@ -86,25 +86,25 @@ #: sw/inc/AccessibilityCheckStrings.hrc:27 msgctxt "STR_AVOID_BACKGROUND_IMAGES" msgid "Avoid background images." -msgstr "" +msgstr "הימנעות מתמונות רקע." #. vD267 #: sw/inc/AccessibilityCheckStrings.hrc:28 msgctxt "STR_AVOID_NEWLINES_SPACE" msgid "Avoid newlines to create space." -msgstr "" +msgstr "הימנעות משורות חדשות ליצירת ריווח." #. Dp49m #: sw/inc/AccessibilityCheckStrings.hrc:29 msgctxt "STR_AVOID_SPACES_SPACE" msgid "Avoid spaces to create space." -msgstr "" +msgstr "הימנעות מרווחים ליצירת ריווח." #. g5bQv #: sw/inc/AccessibilityCheckStrings.hrc:30 msgctxt "STR_AVOID_TABS_FORMATTING" msgid "Avoid using tabs for formatting." -msgstr "" +msgstr "הימנעות משימוש בטאבים לעיצוב." #. qhNEG #: sw/inc/AccessibilityCheckStrings.hrc:31 @@ -433,19 +433,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 @@ -2601,7 +2601,7 @@ #: sw/inc/strings.hrc:75 msgctxt "STR_POOLCOLL_STANDARD" msgid "Default Paragraph Style" -msgstr "" +msgstr "סגנון פסקה כברירת מחדל" #. AGD4Q #: sw/inc/strings.hrc:76 @@ -5085,13 +5085,13 @@ #: sw/inc/strings.hrc:508 msgctxt "STR_UNDO_CHAIN" msgid "Link frames" -msgstr "" +msgstr "קישור מסגרות" #. XV4Ap #: sw/inc/strings.hrc:509 msgctxt "STR_UNDO_UNCHAIN" msgid "Unlink frames" -msgstr "" +msgstr "ניתוק מסגרות" #. vUJG9 #: sw/inc/strings.hrc:510 @@ -5169,7 +5169,7 @@ #: sw/inc/strings.hrc:522 msgctxt "STR_MULTISEL" msgid "multiple selection" -msgstr "בחירות רבות" +msgstr "בחירות מגוונות" #. qFESB #: sw/inc/strings.hrc:523 @@ -5187,7 +5187,7 @@ #: sw/inc/strings.hrc:525 msgctxt "STR_YIELDS" msgid "→" -msgstr "" +msgstr "←" #. wNRhZ #: sw/inc/strings.hrc:526 @@ -5200,16 +5200,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:528 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:529 @@ -5227,7 +5227,7 @@ #: sw/inc/strings.hrc:531 msgctxt "STR_UNDO_REDLINE_INSERT" msgid "Insert $1" -msgstr "הכנסת $1" +msgstr "הוספת $1" #. i8ZQo #: sw/inc/strings.hrc:532 @@ -5237,7 +5237,6 @@ #. 5KECk #: sw/inc/strings.hrc:533 -#, fuzzy msgctxt "STR_UNDO_REDLINE_FORMAT" msgid "Attributes changed" msgstr "התכונות שונו" @@ -5250,22 +5249,21 @@ #. DCGPF #: sw/inc/strings.hrc:535 -#, fuzzy msgctxt "STR_UNDO_REDLINE_FMTCOLL" msgid "Style changed" -msgstr "הטבלה שונתה" +msgstr "הסגנון שונה" #. p77WZ #: sw/inc/strings.hrc:536 msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT" msgid "Paragraph formatting changed" -msgstr "" +msgstr "עיצוב הפסקה שונה" #. nehrq #: sw/inc/strings.hrc:537 msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT" msgid "Insert Row" -msgstr "הכנסת שורה" +msgstr "הוספת שורה" #. Ud4qT #: sw/inc/strings.hrc:538 @@ -5277,20 +5275,19 @@ #: sw/inc/strings.hrc:539 msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT" msgid "Insert Cell" -msgstr "הכנסת תא" +msgstr "הוספת תא" #. ZMrVY #: sw/inc/strings.hrc:540 -#, fuzzy msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE" msgid "Delete Cell" -msgstr "מחיקת הכול" +msgstr "מחיקת תא" #. DqprY #: sw/inc/strings.hrc:541 msgctxt "STR_N_REDLINES" msgid "$1 changes" -msgstr "$1 שינוים" +msgstr "$1 שינויים" #. ve5ZA #: sw/inc/strings.hrc:542 @@ -5428,7 +5425,7 @@ #: sw/inc/strings.hrc:564 msgctxt "STR_UNDO_INSERT_TEXTBOX" msgid "text box" -msgstr "" +msgstr "תיבת טקסט" #. yNjem #. undo: STR_PARAGRAPHS, string.text @@ -5447,7 +5444,7 @@ #: sw/inc/strings.hrc:568 msgctxt "STR_OLE" msgid "OLE object" -msgstr "" +msgstr "עצם OLE" #. db5Tg #: sw/inc/strings.hrc:569 @@ -5521,8 +5518,8 @@ msgctxt "STR_CHAPTERS" msgid "chapter" msgid_plural "chapters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "פרק" +msgstr[1] "פרקים" #. 2JCL2 #: sw/inc/strings.hrc:581 @@ -5532,10 +5529,9 @@ #. DvnGA #: sw/inc/strings.hrc:582 -#, fuzzy msgctxt "STR_PARAGRAPH_SIGN_UNDO" msgid "Paragraph sign" -msgstr "הפסקה היא " +msgstr "סימן פסקה" #. oL9GG #: sw/inc/strings.hrc:583 @@ -5547,28 +5543,25 @@ #: sw/inc/strings.hrc:584 msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION" msgid "Change object description of $1" -msgstr "" +msgstr "החלפת תיאור עצם של $1" #. rWw8U #: sw/inc/strings.hrc:585 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_CREATE" msgid "Create table style: $1" -msgstr "יצירת סגנון עמוד: $1" +msgstr "יצירת סגנון טבלה: $1" #. jGxgy #: sw/inc/strings.hrc:586 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_DELETE" msgid "Delete table style: $1" -msgstr "מחיקת סגנון עמוד: $1" +msgstr "מחיקת סגנון טבלה: $1" #. 6NWP3 #: sw/inc/strings.hrc:587 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_UPDATE" msgid "Update table style: $1" -msgstr "יצירת סגנון עמוד: $1" +msgstr "עדכון סגנון טבלה: $1" #. JegfU #: sw/inc/strings.hrc:588 @@ -5580,13 +5573,13 @@ #: sw/inc/strings.hrc:589 msgctxt "STR_UNDO_INSERT_FORM_FIELD" msgid "Insert form field" -msgstr "" +msgstr "הוספת שדה טופס" #. 2zJmG #: sw/inc/strings.hrc:590 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:592 @@ -5682,7 +5675,7 @@ #: sw/inc/strings.hrc:607 msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME" msgid "Resolved" -msgstr "" +msgstr "נפתרה" #. JtzA4 #: sw/inc/strings.hrc:608 @@ -5716,7 +5709,6 @@ #. CsQKH #: sw/inc/strings.hrc:614 -#, fuzzy msgctxt "STR_COMCORE_READERROR" msgid "Read Error" msgstr "שגיאת קריאה" @@ -5779,7 +5771,7 @@ #: sw/inc/strings.hrc:626 msgctxt "STR_STYLE_FAMILY_NUMBERING" msgid "List" -msgstr "" +msgstr "רשימה" #. NydLs #: sw/inc/strings.hrc:627 @@ -5815,10 +5807,9 @@ #. HD64i #: sw/inc/strings.hrc:633 -#, fuzzy msgctxt "STR_PRINTOPTUI_PRODUCTNAME" msgid "%PRODUCTNAME %s" -msgstr "%PRODUCTNAME %s" +msgstr "%PRODUCTNAME %s‎" #. q6egu #: sw/inc/strings.hrc:634 @@ -7677,7 +7668,7 @@ #: sw/inc/strings.hrc:967 msgctxt "FLD_INPUT_TEXT" msgid "[Text]" -msgstr "" +msgstr "[טקסט]" #. TyYok #. -------------------------------------------------------------------- @@ -7758,13 +7749,13 @@ #: sw/inc/strings.hrc:984 msgctxt "FLD_EU_FAX" msgid "Fax" -msgstr "" +msgstr "פקס" #. AtN9J #: sw/inc/strings.hrc:985 msgctxt "FLD_EU_EMAIL" msgid "Email" -msgstr "" +msgstr "דוא״ל" #. 6GBRm #: sw/inc/strings.hrc:986 @@ -8649,7 +8640,7 @@ #: sw/inc/strings.hrc:1159 msgctxt "STR_CHANNELR" msgid "Red: " -msgstr "אדום:" +msgstr "אדום: " #. u73NC #: sw/inc/strings.hrc:1160 @@ -8665,10 +8656,9 @@ #. BS4nZ #: sw/inc/strings.hrc:1162 -#, fuzzy msgctxt "STR_CONTRAST" msgid "Contrast: " -msgstr "ניגודיות" +msgstr "ניגודיות: " #. avJBK #: sw/inc/strings.hrc:1163 @@ -8697,10 +8687,9 @@ #. Z7tXB #: sw/inc/strings.hrc:1167 -#, fuzzy msgctxt "STR_DRAWMODE" msgid "Graphics mode: " -msgstr "מצב עבודה גרפי" +msgstr "מצב עבודה גרפי: " #. RXuUF #: sw/inc/strings.hrc:1168 @@ -8878,7 +8867,7 @@ #: sw/inc/strings.hrc:1197 msgctxt "ST_TABLE_FORMULA" msgid "Table formula" -msgstr "" +msgstr "נוסחת טבלה" #. DtkuT #: sw/inc/strings.hrc:1198 @@ -9210,10 +9199,9 @@ #. wLDkj #: sw/inc/strings.hrc:1252 -#, fuzzy msgctxt "STR_REDLINE_TABLE_ROW_INSERT" msgid "Row Inserted" -msgstr "שורה נוספה " +msgstr "נוספה שורה" #. Eb5Gb #: sw/inc/strings.hrc:1253 @@ -9734,17 +9722,15 @@ #. hRo3J #: sw/inc/strings.hrc:1344 -#, fuzzy msgctxt "STR_TOKEN_HELP_AUTHORITY" msgid "Bibliography entry: " -msgstr "רשומה ביבליוגרפית" +msgstr "רשומה ביבליוגרפית: " #. ZKG5v #: sw/inc/strings.hrc:1345 -#, fuzzy msgctxt "STR_CHARSTYLE" msgid "Character Style: " -msgstr "סגנון תו" +msgstr "סגנון תו: " #. d9BES #: sw/inc/strings.hrc:1346 @@ -10090,10 +10076,9 @@ #. etEEx #: sw/inc/strings.hrc:1423 -#, fuzzy msgctxt "STR_SIGNED_BY" msgid "Signed-by" -msgstr "נחתם על ידי " +msgstr "נחתם על ידי" #. BK7ub #: sw/inc/strings.hrc:1424 @@ -10318,31 +10303,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 @@ -10353,10 +10334,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 @@ -11685,7 +11665,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:121 msgctxt "businessdatapage|company-atkobject" msgid "Company" -msgstr "" +msgstr "חברה" #. Lw69w #: sw/uiconfig/swriter/ui/businessdatapage.ui:122 @@ -11697,7 +11677,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:153 msgctxt "businessdatapage|position-atkobject" msgid "Position" -msgstr "" +msgstr "תפקיד" #. QGc4K #: sw/uiconfig/swriter/ui/businessdatapage.ui:154 @@ -11709,7 +11689,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:184 msgctxt "businessdatapage|fax-atkobject" msgid "Fax number" -msgstr "" +msgstr "מספר פקס" #. hCy4G #: sw/uiconfig/swriter/ui/businessdatapage.ui:185 @@ -11721,7 +11701,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:217 msgctxt "businessdatapage|url-atkobject" msgid "Homepage" -msgstr "" +msgstr "דף הבית" #. RshDE #: sw/uiconfig/swriter/ui/businessdatapage.ui:218 @@ -11733,7 +11713,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:236 msgctxt "businessdatapage|email-atkobject" msgid "Email address" -msgstr "" +msgstr "כתובת דוא״ל" #. 6qLuv #: sw/uiconfig/swriter/ui/businessdatapage.ui:237 @@ -11745,13 +11725,13 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:256 msgctxt "businessdatapage|eastnameft" msgid "Company 2nd line:" -msgstr "" +msgstr "שורה שנייה של חברה" #. dKBDV #: sw/uiconfig/swriter/ui/businessdatapage.ui:281 msgctxt "businessdatapage|company2-atkobject" msgid "Company second line" -msgstr "" +msgstr "שורה שנייה של חברה" #. MrShX #: sw/uiconfig/swriter/ui/businessdatapage.ui:282 @@ -11805,7 +11785,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:408 msgctxt "businessdatapage|country-atkobject" msgid "Country" -msgstr "" +msgstr "מדינה" #. GAi2c #: sw/uiconfig/swriter/ui/businessdatapage.ui:409 @@ -12766,133 +12746,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 @@ -12904,25 +12874,25 @@ #: 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 "התוכן הוא טקסט ממלא מקום" #. 2XL7N #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:121 msgctxt "contentcontroldlg|aliaslabel" msgid "Title:" -msgstr "" +msgstr "כותרת:" #. TZMBP #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:134 msgctxt "contentcontroldlg|taglabel" msgid "Tag:" -msgstr "" +msgstr "תגית:" #. V44Fw #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:189 @@ -12940,73 +12910,73 @@ #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:213 msgctxt "contentcontroldlg|btncheckboxchecked" msgid "Select..." -msgstr "" +msgstr "בחירה…" #. SP7XX #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:225 msgctxt "contentcontroldlg|btncheckboxunchecked" msgid "Select..." -msgstr "" +msgstr "בחירה…" #. exBjP #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:263 msgctxt "contentcontroldlg|lblcheckbox" msgid "Check Box:" -msgstr "" +msgstr "תיבת סימון:" #. 79pkP #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:309 msgctxt "contentcontroldlg|displayname" msgid "Display Name" -msgstr "" +msgstr "שם תצוגה" #. qy8VG #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:322 msgctxt "contentcontroldlg|value" msgid "Value" -msgstr "" +msgstr "ערך" #. DmLzh #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:339 msgctxt "contentcontordlg|listitems" msgid "List Items:" -msgstr "" +msgstr "פריטי רשימה:" #. VPCgV #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:361 msgctxt "contentcontordlg|add" msgid "Add" -msgstr "" +msgstr "הוספה" #. 9Dc6k #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:374 msgctxt "contentcontordlg|modify" msgid "Modify" -msgstr "" +msgstr "עריכה" #. rpNb6 #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:388 msgctxt "contentcontordlg|remove" msgid "Remove" -msgstr "" +msgstr "הסרה" #. UDHfE #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:402 msgctxt "contentcontordlg|moveup" msgid "Move Up" -msgstr "" +msgstr "העלאה למעלה" #. 6BRRB #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:416 msgctxt "contentcontordlg|movedown" msgid "Move Down" -msgstr "" +msgstr "הורדה למטה" #. hCPKV #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:494 msgctxt "contentcontroldlg|lbldate" msgid "Date Format:" -msgstr "" +msgstr "תבנית תאריך:" #. 8yZAP #: sw/uiconfig/swriter/ui/contentcontrollistitemdlg.ui:8 @@ -15430,7 +15400,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 @@ -15824,7 +15794,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 @@ -17280,7 +17250,6 @@ #. mDjkK #: sw/uiconfig/swriter/ui/inputwinmenu.ui:139 -#, fuzzy msgctxt "inputwinmenu|geq" msgid "Greater Than or Equal" msgstr "גדול או שווה ל־" @@ -17289,11 +17258,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 "פחות" @@ -17302,80 +17270,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 "פונקציות סטטיסטיות" @@ -17390,7 +17354,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 @@ -17402,7 +17366,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 @@ -17414,25 +17378,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 @@ -17442,16 +17406,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 @@ -17463,19 +17426,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 @@ -17487,7 +17450,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 @@ -17499,7 +17462,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 @@ -17511,31 +17474,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 @@ -17547,7 +17510,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 @@ -17559,7 +17522,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 @@ -17571,61 +17534,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:283 msgctxt "insertbookmark|hidden" msgid "Hidden" -msgstr "" +msgstr "מוסתרת" #. M7eFG #: sw/uiconfig/swriter/ui/insertbookmark.ui:297 msgctxt "insertbookmark|condition" msgid "Condition" -msgstr "" +msgstr "תנאי" #. ACcov #: sw/uiconfig/swriter/ui/insertbookmark.ui:315 msgctxt "insertbookmark|bookmarks" msgid "_Bookmarks:" -msgstr "" +msgstr "_סימניות:" #. aZFEd #: sw/uiconfig/swriter/ui/insertbookmark.ui:337 msgctxt "insertbookmark|goto" msgid "Go to" -msgstr "" +msgstr "מעבר אל" #. AfRGE #: sw/uiconfig/swriter/ui/insertbookmark.ui:351 @@ -17637,13 +17600,13 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:357 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 "כדי למחוק סימנייה, יש לבחור אותה וללחוץ על כפתור המחיקה. לא תופיע חלונית אישור לאחר מכן." #. o7sDd #: sw/uiconfig/swriter/ui/insertbookmark.ui:370 msgctxt "insertbookmark|edittext" msgid "Edit Text" -msgstr "" +msgstr "עריכת טקסט" #. hvWfd #: sw/uiconfig/swriter/ui/insertbookmark.ui:384 @@ -17655,7 +17618,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:411 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 @@ -17673,37 +17636,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 @@ -17715,7 +17678,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 @@ -17733,7 +17696,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:199 msgctxt "insertbreak|styleft" msgid "Page Style:" -msgstr "" +msgstr "סגנון עמוד:" #. BWnND #: sw/uiconfig/swriter/ui/insertbreak.ui:216 @@ -17745,7 +17708,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 @@ -17902,13 +17865,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 @@ -17921,7 +17884,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 @@ -17934,7 +17897,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 @@ -17947,13 +17910,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 @@ -18122,7 +18085,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 @@ -18134,7 +18097,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 @@ -18146,7 +18109,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 @@ -18212,7 +18175,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 @@ -18224,7 +18187,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 @@ -18236,7 +18199,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 @@ -18612,10 +18575,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 @@ -18625,24 +18587,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 @@ -18654,7 +18613,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 @@ -19020,7 +18979,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:566 msgctxt "linenumbering|count" msgid "Count" -msgstr "Count" +msgstr "ספירה" #. 9Pyhz #: sw/uiconfig/swriter/ui/mailconfigpage.ui:45 @@ -19354,7 +19313,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 @@ -19801,10 +19760,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 @@ -22410,7 +22368,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 @@ -22589,7 +22547,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 @@ -23518,7 +23476,7 @@ #, fuzzy msgctxt "optfonttabpage|default_label" msgid "De_fault:" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. 9ArgF #: sw/uiconfig/swriter/ui/optfonttabpage.ui:75 @@ -23550,7 +23508,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 @@ -23617,7 +23575,7 @@ #, fuzzy msgctxt "optfonttabpage|standard" msgid "_Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. VezyG #: sw/uiconfig/swriter/ui/optfonttabpage.ui:415 @@ -24921,7 +24879,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:459 msgctxt "outlinepositionpage|standard" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. 8fEFG #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:466 @@ -25663,7 +25621,7 @@ #, fuzzy msgctxt "picturepage|FT_ANGLEPRESETS" msgid "Default _settings:" -msgstr "הגדרות בררת מחדל" +msgstr "הגדרות ברירת מחדל" #. HpCfF #: sw/uiconfig/swriter/ui/picturepage.ui:375 @@ -29659,10 +29617,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 @@ -30248,13 +30205,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 @@ -30812,10 +30769,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 @@ -30929,7 +30885,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 @@ -30941,7 +30897,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 @@ -30953,7 +30909,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.5.1~rc2/translations/source/he/swext/mediawiki/help.po libreoffice-7.5.2~rc2/translations/source/he/swext/mediawiki/help.po --- libreoffice-7.5.1~rc2/translations/source/he/swext/mediawiki/help.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/swext/mediawiki/help.po 2023-03-24 16:53:38.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: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.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.5.1~rc2/translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/Office.po libreoffice-7.5.2~rc2/translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/Office.po --- libreoffice-7.5.1~rc2/translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/Office.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/Office.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: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: 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.5.1~rc2/translations/source/he/sysui/desktop/share.po libreoffice-7.5.2~rc2/translations/source/he/sysui/desktop/share.po --- libreoffice-7.5.1~rc2/translations/source/he/sysui/desktop/share.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/sysui/desktop/share.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 18:06+0100\n" -"PO-Revision-Date: 2016-05-18 17:58+0000\n" +"PO-Revision-Date: 2023-03-06 12: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 @@ -428,7 +428,7 @@ "writer_Comment\n" "LngText.text" msgid "Create and edit text and graphics in letters, reports, documents and Web pages." -msgstr "" +msgstr "יצירה ועריכה של טקסט וגרפיקה במכתבים, דוחות, מסמכים ואתרים." #. ZoKAh #: launcher.ulf @@ -437,7 +437,7 @@ "impress_Comment\n" "LngText.text" msgid "Create and edit presentations for slideshows, meetings and Web pages." -msgstr "" +msgstr "יצירה ועריכה של מצגות לדיונים, פגישות ואתרים." #. 5y58d #: launcher.ulf @@ -446,7 +446,7 @@ "draw_Comment\n" "LngText.text" msgid "Create and edit drawings, flow charts and logos." -msgstr "" +msgstr "יצירה ועריכה של ציורים, תרשימי זרימה ולוגואים." #. Ropmz #: launcher.ulf @@ -455,7 +455,7 @@ "calc_Comment\n" "LngText.text" msgid "Perform calculations, analyze information and manage lists in spreadsheets." -msgstr "" +msgstr "ביצוע חישובים, ניתוח מידע וניהול רשימות בגיליונות נתונים." #. NRFDd #: launcher.ulf @@ -464,7 +464,7 @@ "math_Comment\n" "LngText.text" msgid "Create and edit scientific formulas and equations." -msgstr "" +msgstr "יצירה ועריכה של נוסחאות ומשוואות מדעיות." #. xABrj #: launcher.ulf @@ -473,7 +473,7 @@ "base_Comment\n" "LngText.text" msgid "Manage databases, create queries and reports to track and manage your information." -msgstr "" +msgstr "ניהול מסדי נתונים, יצירת שאילתות ודוחות כדי לעקוב אחר ולנהל את המידע שלך." #. dLjP3 #: launcher.ulf @@ -482,7 +482,7 @@ "startcenter_Comment\n" "LngText.text" msgid "Launch applications to create text documents, spreadsheets, presentations, drawings, formulas, and databases, or open recently used documents." -msgstr "" +msgstr "הפעלת יישומים כדי ליצור מסמכי טקסט, גיליונות נתונים, מצגות, ציורים, נוסחאות ומסדי נתונים או לפתוח את המסמכים האחרונים שהיו בשימוש." #. asG2q #: launcher.ulf diff -Nru libreoffice-7.5.1~rc2/translations/source/he/uui/messages.po libreoffice-7.5.2~rc2/translations/source/he/uui/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/uui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/uui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+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 @@ -757,6 +760,8 @@ "Document Name: $(ARG1)\n" "User Name: $(ARG2)" msgstr "" +"שם המסמך: $(ARG1)\n" +"שם משתמש: $(ARG2)" #. EXAAf #: uui/inc/strings.hrc:51 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/vcl/messages.po libreoffice-7.5.2~rc2/translations/source/he/vcl/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/vcl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/vcl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2021-03-08 08:36+0000\n" +"PO-Revision-Date: 2023-03-14 12: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: 1542023495.000000\n" #. k5jTM @@ -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 @@ -1829,7 +1829,7 @@ #: vcl/uiconfig/ui/errornoprinterdialog.ui:14 msgctxt "errornoprinterdialog|ErrorNoPrinterDialog" msgid "No default printer found." -msgstr "לא נמצאה מדפסת בררת מחדל." +msgstr "לא נמצאה מדפסת ברירת מחדל." #. EB7RA #: vcl/uiconfig/ui/errornoprinterdialog.ui:15 @@ -2001,7 +2001,7 @@ #: vcl/uiconfig/ui/printdialog.ui:441 msgctxt "printdialog|status" msgid "Default Printer" -msgstr "מדפסת בררת מחדל" +msgstr "מדפסת ברירת מחדל" #. McZgQ #: vcl/uiconfig/ui/printdialog.ui:447 @@ -2199,7 +2199,7 @@ #: vcl/uiconfig/ui/printdialog.ui:874 msgctxt "printdialog|rangeexpander" msgid "_More" -msgstr "" +msgstr "_עוד" #. ehfCG #: vcl/uiconfig/ui/printdialog.ui:890 @@ -2211,7 +2211,7 @@ #: vcl/uiconfig/ui/printdialog.ui:929 msgctxt "printdialog|labelorientation" msgid "Orientation:" -msgstr "כיוון:" +msgstr "כיווניות:" #. U4byk #: vcl/uiconfig/ui/printdialog.ui:944 @@ -2241,13 +2241,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 @@ -2259,7 +2259,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 @@ -2535,7 +2535,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.5.1~rc2/translations/source/he/wizards/messages.po libreoffice-7.5.2~rc2/translations/source/he/wizards/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/wizards/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/wizards/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 14:06+0100\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 1565531865.000000\n" #. gbiMx @@ -26,31 +26,31 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:33 msgctxt "RID_COMMON_START_1" msgid "The text document could not be created.
Please check if the module '%PRODUCTNAME Writer' is installed." -msgstr "" +msgstr "לא ניתן ליצור את מסמך הטקסט.
נא לבדוק אם המודול ‚%PRODUCTNAME Writer’ מותקן." #. m9CbQ #: wizards/com/sun/star/wizards/common/strings.hrc:34 msgctxt "RID_COMMON_START_2" msgid "The spreadsheet could not be created.
Please check if the module '%PRODUCTNAME Calc' is installed." -msgstr "" +msgstr "לא ניתן ליצור את גיליון הנתונים.
נא לבדוק אם המודול ‚%PRODUCTNAME Calc’ מותקן." #. ZCzrE #: wizards/com/sun/star/wizards/common/strings.hrc:35 msgctxt "RID_COMMON_START_3" msgid "The presentation could not be created.
Please check if the module '%PRODUCTNAME Impress' is installed." -msgstr "" +msgstr "לא ניתן ליצור את המצגת.
נא לבדוק אם המודול ‚%PRODUCTNAME Impress’ מותקן." #. s45vT #: wizards/com/sun/star/wizards/common/strings.hrc:36 msgctxt "RID_COMMON_START_4" msgid "The drawing could not be created.
Please check if the module '%PRODUCTNAME Draw' is installed." -msgstr "" +msgstr "לא ניתן ליצור את הציור.
נא לבדוק אם המודול ‚%PRODUCTNAME Draw’ מותקן." #. YzHou #: wizards/com/sun/star/wizards/common/strings.hrc:37 msgctxt "RID_COMMON_START_5" msgid "The formula could not be created.
Please check if the module '%PRODUCTNAME Math' is installed." -msgstr "" +msgstr "לא ניתן ליצור את הנוסחה.
נא לבדוק אם המודול ‚%PRODUCTNAME Math’ מותקן." #. EcX4n #: wizards/com/sun/star/wizards/common/strings.hrc:38 diff -Nru libreoffice-7.5.1~rc2/translations/source/he/wizards/source/resources.po libreoffice-7.5.2~rc2/translations/source/he/wizards/source/resources.po --- libreoffice-7.5.1~rc2/translations/source/he/wizards/source/resources.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/wizards/source/resources.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 14:06+0100\n" -"PO-Revision-Date: 2020-12-29 17:36+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 1565698003.000000\n" #. 8UKfi @@ -32,7 +32,7 @@ "RID_COMMON_1\n" "property.text" msgid "The text document could not be created.
Please check if the module '%PRODUCTNAME Writer' is installed." -msgstr "" +msgstr "לא ניתן ליצור את מסמך הטקסט.‏‪
‬‏נא לבדוק אם מודול ‚%PRODUCTNAME Writer’ מותקן." #. ovyQD #: resources_en_US.properties @@ -41,7 +41,7 @@ "RID_COMMON_2\n" "property.text" msgid "The spreadsheet could not be created.
Please check if the module '%PRODUCTNAME Calc' is installed." -msgstr "" +msgstr "לא ניתן ליצור את הגיליון האלקטרוני.‏‪
‬‏נא לבדוק אם מודול ‚%PRODUCTNAME Calc’ מותקן." #. XoWgV #: resources_en_US.properties @@ -50,7 +50,7 @@ "RID_COMMON_3\n" "property.text" msgid "The presentation could not be created.
Please check if the module '%PRODUCTNAME Impress' is installed." -msgstr "" +msgstr "לא ניתן ליצור את המצגת.‏‪
‬‏נא לבדוק אם מודול ‚%PRODUCTNAME Impress’ מותקן." #. 86ERo #: resources_en_US.properties @@ -59,7 +59,7 @@ "RID_COMMON_4\n" "property.text" msgid "The drawing could not be created.
Please check if the module '%PRODUCTNAME Draw' is installed." -msgstr "" +msgstr "לא ניתן ליצור את הציור.‏‪
‬‏נא לבדוק אם מודול ‚%PRODUCTNAME Draw’ מותקן." #. oGc3c #: resources_en_US.properties @@ -68,7 +68,7 @@ "RID_COMMON_5\n" "property.text" msgid "The formula could not be created.
Please check if the module '%PRODUCTNAME Math' is installed." -msgstr "" +msgstr "לא ניתן ליצור את הנוסחה.‏‪
‬‏נא לבדוק אם מודול ‚%PRODUCTNAME Math’ מותקן." #. j5GzW #: resources_en_US.properties @@ -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 @@ -3848,7 +3848,7 @@ "CURRENCIES_19\n" "property.text" msgid "Croatian Kuna" -msgstr "" +msgstr "קונה קרואטית" #. eDjBr #: resources_en_US.properties diff -Nru libreoffice-7.5.1~rc2/translations/source/he/xmlsecurity/messages.po libreoffice-7.5.2~rc2/translations/source/he/xmlsecurity/messages.po --- libreoffice-7.5.1~rc2/translations/source/he/xmlsecurity/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/he/xmlsecurity/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-03-13 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: 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 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/chart2/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/chart2/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/chart2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/chart2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:43+0100\n" -"PO-Revision-Date: 2022-12-29 14:28+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547328704.000000\n" #. NCRDD @@ -4673,7 +4673,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:124 msgctxt "tp_Scale|extended_tip|LB_AXIS_TYPE" msgid "For some types of axes, you can select to format an axis as text or date, or to detect the type automatically." -msgstr "Za někotre typy wóskow móžeće postajić, hač so wóska jako tekst abo datum formatuje, abo hač so typ awtomatisce spóznawa." +msgstr "Za někotre typy wóskow móžeće postajić, hač so wóska jako tekst abo datum formatěruje, abo hač so typ awtomatisce spóznawa." #. Vf7vB #: chart2/uiconfig/ui/tp_Scale.ui:159 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/cui/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-15 14: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" @@ -1832,7 +1832,7 @@ #: cui/inc/strings.hrc:336 msgctxt "RID_SVXSTR_ORDINAL" msgid "Format ordinal numbers suffixes (1st -> 1^st)" -msgstr "Sufiksy rjadowych ličbnikow formatować (1st -> 1^st)" +msgstr "Sufiksy rjadowych ličbnikow formatěrować (1st -> 1^st)" #. 6oHuF #: cui/inc/strings.hrc:337 @@ -2563,13 +2563,13 @@ #: cui/inc/tipoftheday.hrc:116 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X." -msgstr "Móžeće ze standardnymi formatowanskimi atributami dale pisać, po tym zo sće tučne, kursiwny abo podšmórnjene formatowanje nałožił, hdyž %MOD1+Umsch+X tłóčiće." +msgstr "Móžeće ze standardnymi formatěrowanskimi atributami dale pisać, po tym zo sće tučne, kursiwny abo podšmórnjene formatěrowanje nałožił, hdyž %MOD1+Umsch+X tłóčiće." #. iXjDF #: cui/inc/tipoftheday.hrc:117 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." -msgstr "Wužiwajće %MOD1+%MOD2+Umsch+V, zo byšće wobsah z mjezyskłada jako njeformatowany tekst zasadźił." +msgstr "Wužiwajće %MOD1+%MOD2+Umsch+V, zo byšće wobsah z mjezyskłada jako njeformatěrowany tekst zasadźił." #. TD8Ux #: cui/inc/tipoftheday.hrc:118 @@ -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 @@ -3198,7 +3198,7 @@ #: cui/inc/tipoftheday.hrc:219 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." -msgstr "Wužiwajće „Format ▸ Wuměnjeny formatowanje ▸ Rjadować…“ w Calc, zo byšće wuslědźił, kotre cele su z wuměnjenym formatowanjom definowane." +msgstr "Wužiwajće „Format ▸ Wuměnjeny formatěrowanje ▸ Rjadować…“ w Calc, zo byšće wuslědźił, kotre cele su z wuměnjenym formatěrowanjom definowane." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html @@ -3224,7 +3224,7 @@ #: cui/inc/tipoftheday.hrc:223 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”." -msgstr "Klikńće šipk dele w komentarje a wubjerće „Wšě komentary formatować…“, zo byšće we Writer wšě komentary znowa formatował." +msgstr "Klikńće šipk dele w komentarje a wubjerće „Wšě komentary formatěrować…“, zo byšće we Writer wšě komentary znowa formatěrował." #. zD57W #: cui/inc/tipoftheday.hrc:224 @@ -3278,13 +3278,13 @@ #: cui/inc/tipoftheday.hrc:232 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number." -msgstr "Wobchowajće nule před ličbu z pomocu nastajenja celoweho formata ‚Zawodne nule‘ abo formatujće celu jako tekst, prjedy hač ličbu zapodawaće." +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:233 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar." -msgstr "Sće lisćinowu předłohu wužił a chceće so k standardej wróćić? Klikńće na symbol „Naličensku lisćinu přepinać“ abo symbol „Čisłowanu lisćinu přepinać“ na symbolowej lajsće Formatowanje." +msgstr "Sće lisćinowu předłohu wužił a chceće so k standardej wróćić? Klikńće na symbol „Naličensku lisćinu přepinać“ abo symbol „Čisłowanu lisćinu přepinać“ na symbolowej lajsće Formatěrowanje." #. wAFRP #: cui/inc/tipoftheday.hrc:234 @@ -3302,7 +3302,7 @@ #: cui/inc/tipoftheday.hrc:236 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)." -msgstr "Maće problemy při zasadźowanju teksta z PDF-datajow abo webstronow do dokumentow? Spytajće jón jako njeformatowany tekst zasadźić (%MOD1+%MOD2+Umsch+V)." +msgstr "Maće problemy při zasadźowanju teksta z PDF-datajow abo webstronow do dokumentow? Spytajće jón jako njeformatěrowany tekst zasadźić (%MOD1+%MOD2+Umsch+V)." #. BtaBD #: cui/inc/tipoftheday.hrc:237 @@ -3352,7 +3352,7 @@ #: cui/inc/tipoftheday.hrc:244 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 "Wubjerće nastajenja w „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Formatowanske pomocki ▸ Formatowanje pokazać“, zo byšće wubrał, kotre njećišćomne znamješka maja so pokazać." +msgstr "Wubjerće nastajenja w „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Formatěrowanske pomocki ▸ Formatěrowanje pokazać“, zo byšće wubrał, kotre njećišćomne znamješka maja so pokazać." #. 9cyVB #: cui/inc/tipoftheday.hrc:245 @@ -3515,7 +3515,7 @@ #: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style." -msgstr "Ćehńće formatowany objekt do wokna Předłohi. Dialogowe polo so wočini a zapodajće prosće mjeno noweje předłohi." +msgstr "Ćehńće sformatěrowany objekt do wokna Předłohi. Dialogowe polo so wočini a zapodajće prosće mjeno noweje předłohi." #. EabEN #: cui/inc/tipoftheday.hrc:271 @@ -3828,7 +3828,7 @@ #: cui/inc/treeopt.hrc:75 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Formatting Aids" -msgstr "Formatowanske pomocki" +msgstr "Formatěrowanske pomocki" #. V3usW #: cui/inc/treeopt.hrc:76 @@ -3912,7 +3912,7 @@ #: cui/inc/treeopt.hrc:93 msgctxt "SID_SW_ONLINEOPTIONS_RES" msgid "Formatting Aids" -msgstr "Formatowanske pomocki" +msgstr "Formatěrowanske pomocki" #. 9fj7Y #: cui/inc/treeopt.hrc:94 @@ -4720,7 +4720,7 @@ #: cui/uiconfig/ui/acorreplacepage.ui:240 msgctxt "acorreplacepage|extended_tip|textonly" msgid "Saves the entry in the With box without formatting. When the replacement is made, the text uses the same format as the document text." -msgstr "Składuje zapisk w polu „Z“ bjez formatowanja. Hdyž je so wuměna přewjedła, tekst samsny format kaž dokumentowy tekst wužiwa." +msgstr "Składuje zapisk w polu „Z“ bjez formatěrowanja. Hdyž je so wuměna přewjedła, tekst samsny format kaž dokumentowy tekst wužiwa." #. yuDgJ #: cui/uiconfig/ui/acorreplacepage.ui:254 @@ -6652,7 +6652,7 @@ #: cui/uiconfig/ui/charnamepage.ui:187 msgctxt "charnamepage|extended_tip|weststylelb-cjk" msgid "Select the formatting that you want to apply." -msgstr "Wubjerće formatowanje, kotrež chceće nałožić." +msgstr "Wubjerće formatěrowanje, kotrež chceće nałožić." #. nKfjE #: cui/uiconfig/ui/charnamepage.ui:201 @@ -6700,7 +6700,7 @@ #: cui/uiconfig/ui/charnamepage.ui:420 msgctxt "charnamepage|extended_tip|eaststylelb" msgid "Select the formatting that you want to apply." -msgstr "Wubjerće formatowanje, kotrež chceće nałožić." +msgstr "Wubjerće formatěrowanje, kotrež chceće nałožić." #. JSR99 #: cui/uiconfig/ui/charnamepage.ui:443 @@ -6742,7 +6742,7 @@ #: cui/uiconfig/ui/charnamepage.ui:689 msgctxt "charnamepage|extended_tip|ctlstylelb" msgid "Select the formatting that you want to apply." -msgstr "Wubjerće formatowanje, kotrež chceće nałožić." +msgstr "Wubjerće formatěrowanje, kotrež chceće nałožić." #. CeMCG #: cui/uiconfig/ui/charnamepage.ui:712 @@ -8918,7 +8918,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 @@ -9572,7 +9572,7 @@ #: cui/uiconfig/ui/formatnumberdialog.ui:8 msgctxt "formatnumberdialog|FormatNumberDialog" msgid "Format Number" -msgstr "Ličbu formatować" +msgstr "Ličbu formatěrować" #. wynwf #: cui/uiconfig/ui/galleryapplyprogress.ui:8 @@ -13191,7 +13191,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:482 msgctxt "numberingformatpage|extended_tip|categorylb" msgid "Select a category from the list, and then select a formatting style in the Format box." -msgstr "Wubjerće kategoriju z lisćiny a potom formatowanski stil w polu „Format“." +msgstr "Wubjerće kategoriju z lisćiny a potom formatěrowanski stil w polu „Format“." #. NTAb6 #: cui/uiconfig/ui/numberingformatpage.ui:493 @@ -13209,7 +13209,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:536 msgctxt "numberingformatpage|extended_tip|currencylb" msgid "Select a currency, and then scroll to the top of the Format list to view the formatting options for the currency." -msgstr "Wubjerće měnu a kulće potom w lisćinje „Format“ horje, zo byšće formatowanske nastajena za měnu pokazał." +msgstr "Wubjerće měnu a kulće potom w lisćinje „Format“ horje, zo byšće formatěrowanske nastajenja za měnu pokazał." #. TBLU5 #: cui/uiconfig/ui/numberingformatpage.ui:577 @@ -13251,7 +13251,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:712 msgctxt "numberingformatpage|extended_tip|NumberingFormatPage" msgid "Specify the formatting options for the selected cell(s)." -msgstr "Podajće formatowanske nastajenja za wubrane cele." +msgstr "Podajće formatěrowanske nastajenja za wubrane cele." #. XxX2T #: cui/uiconfig/ui/numberingoptionspage.ui:42 @@ -13269,7 +13269,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:112 msgctxt "numberingoptionspage|extended_tip|levellb" msgid "Select the level(s) that you want to define the formatting options for." -msgstr "Wubjerće runiny, za kotrež chceće formatowanske nastajenja definować." +msgstr "Wubjerće runiny, za kotrež chceće formatěrowanske nastajenja definować." #. iHsAJ #: cui/uiconfig/ui/numberingoptionspage.ui:123 @@ -13897,7 +13897,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:190 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:198 @@ -17478,7 +17478,7 @@ #: cui/uiconfig/ui/optviewpage.ui:588 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:599 @@ -17538,7 +17538,7 @@ #: cui/uiconfig/ui/optviewpage.ui:714 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." -msgstr "Pokazuje mjena wuběrajomnych pismow we wotpowědnym pismje, na přikład pisma w polu „Pismo“ w lajsće „Formatowanje“." +msgstr "Pokazuje mjena wuběrajomnych pismow we wotpowědnym pismje, na přikład pisma w polu „Pismo“ w lajsće „Formatěrowanje“." #. 2FKuk #: cui/uiconfig/ui/optviewpage.ui:725 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/dbaccess/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/dbaccess/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/dbaccess/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/dbaccess/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-25 13:48+0100\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562190673.000000\n" #. BiN6g @@ -794,7 +794,7 @@ #: dbaccess/inc/strings.hrc:143 msgctxt "RID_STR_COLUMN_FORMAT" msgid "Column ~Format..." -msgstr "Špaltowe ~formatowanje..." +msgstr "Špaltowe ~formatěrowanje..." #. pSid2 #: dbaccess/inc/strings.hrc:144 @@ -1977,7 +1977,7 @@ #: dbaccess/inc/strings.hrc:347 msgctxt "STR_WIZ_TYPE_SELECT_TITEL" msgid "Type formatting" -msgstr "Typowe formatowanje" +msgstr "Typowe formatěrowanje" #. C5Zs4 #: dbaccess/inc/strings.hrc:348 @@ -2955,7 +2955,7 @@ #: dbaccess/uiconfig/ui/copytablepage.ui:162 msgctxt "copytablepage|infoLabel" msgid "Existing data fields can be set as primary key on the type formatting step (third page) of the wizard." -msgstr "Eksistowace datowe pola dadźa so w kroku typoweho formatowanja (třeća strona) asistenta jako primarny kluč nastajić." +msgstr "Eksistowace datowe pola dadźa so w kroku typoweho formatěrowanja (třeća strona) asistenta jako primarny kluč nastajić." #. LqAEB #: dbaccess/uiconfig/ui/copytablepage.ui:179 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/extensions/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 14:09+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554730645.000000\n" #. cBx8W @@ -571,7 +571,7 @@ #: extensions/inc/stringarrays.hrc:173 msgctxt "RID_RSC_ENUM_TEXTTYPE" msgid "Multi-line with formatting" -msgstr "Wjacelinkowy z formatowanjom" +msgstr "Wjacelinkowy z formatěrowanjom" #. NkEBb #: extensions/inc/stringarrays.hrc:178 @@ -1297,7 +1297,7 @@ #: extensions/inc/strings.hrc:107 msgctxt "RID_STR_FORMATKEY" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. DD4EJ #: extensions/inc/strings.hrc:108 @@ -2265,7 +2265,7 @@ #: extensions/inc/strings.hrc:273 msgctxt "RID_STR_PROPTITLE_FORMATTED" msgid "Formatted Field" -msgstr "Formatowane polo" +msgstr "Sformatěrowane polo" #. WiNUf #: extensions/inc/strings.hrc:274 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/filter/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/filter/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/filter/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/filter/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 13:11+0100\n" -"PO-Revision-Date: 2022-12-08 11:41+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562190738.000000\n" #. 5AQgJ @@ -182,7 +182,7 @@ #: filter/inc/strings.hrc:55 msgctxt "T602FILTER_STR_REFORMAT_TEXT" msgid "Reformat the text" -msgstr "Tekst přeformatować" +msgstr "Tekst přeformatěrować" #. MGmYA #: filter/inc/strings.hrc:56 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/formula/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/formula/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/formula/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/formula/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 17:45+0100\n" -"PO-Revision-Date: 2022-12-21 23:54+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560767171.000000\n" #. YfKFn @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/framework/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/framework/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/framework/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/framework/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12-19 14:09+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507241592.000000\n" #. 5dTDC @@ -287,7 +287,7 @@ #: framework/inc/strings.hrc:66 msgctxt "RID_STR_PROPTITLE_FORMATTED" msgid "Formatted Field" -msgstr "Formatowane polo" +msgstr "Sformatěrowane polo" #. V4iMu #: framework/inc/strings.hrc:68 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/auxiliary.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/auxiliary.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/auxiliary.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/auxiliary.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2022-10-22 12:15+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. fEEXD #: sbasic.tree @@ -211,7 +211,7 @@ "0805\n" "node.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. 5wLkU #: scalc.tree @@ -427,7 +427,7 @@ "1104\n" "node.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. HkVUY #: sdraw.tree @@ -778,7 +778,7 @@ "0404\n" "node.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. HtUGZ #: simpress.tree @@ -931,7 +931,7 @@ "0210\n" "node.text" msgid "Navigating Text Documents" -msgstr "W tekstowych dokumentach nawigować" +msgstr "W tekstowych dokumentach nawigěrować" #. hjKKD #: swriter.tree @@ -940,7 +940,7 @@ "0212\n" "node.text" msgid "Formatting Text Documents" -msgstr "Tekstowe dokumenty formatować" +msgstr "Tekstowe dokumenty formatěrować" #. 6gFto #: swriter.tree diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sbasic/guide.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sbasic/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sbasic/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-02 09:22+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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" #. WcTKB #: access2base.xhp @@ -688,7 +688,7 @@ "tit\n" "help.text" msgid "Formatting Borders in Calc with Macros" -msgstr "Ramiki w Calc z makrami formatować" +msgstr "Ramiki w Calc z makrami formatěrować" #. RKGKF #: calc_borders.xhp @@ -697,7 +697,7 @@ "hd_id461623364876507\n" "help.text" msgid "Formatting Borders in Calc with Macros" -msgstr "Ramiki w Calc z makrami formatować" +msgstr "Ramiki w Calc z makrami formatěrować" #. JyRxe #: calc_borders.xhp @@ -715,7 +715,7 @@ "hd_id81630536486560\n" "help.text" msgid "Formatting Borders in Ranges of Cells" -msgstr "Ramiki w celowych wobłukach formatować" +msgstr "Ramiki w celowych wobłukach formatěrować" #. jZniv #: calc_borders.xhp @@ -769,7 +769,7 @@ "par_id841630538209958\n" "help.text" msgid "cellAddress is a string denoting the range to be formatted in the format \"A1\"." -msgstr "cellAdress je znamješkowy rjećazk, kotryž wobłuk podawa, kotryž so ma w formaće „A1“ formatować." +msgstr "cellAdress je znamješkowy rjećazk, kotryž wobłuk podawa, kotryž so ma w formaće „A1“ formatěrować." #. xpGBx #: calc_borders.xhp @@ -823,7 +823,7 @@ "bas_id321630538931144\n" "help.text" msgid "' Formats \"B5\" with solid blue borders" -msgstr "' Formatuje \"B5\" z přećehnjenymi módrymi ramikami" +msgstr "' Formatěruje \"B5\" z přećehnjenymi módrymi ramikami" #. m5WA7 #: calc_borders.xhp @@ -832,7 +832,7 @@ "bas_id91630538931686\n" "help.text" msgid "' Formats all borders in the range \"D2:F6\" with red dotted borders" -msgstr "' Formatuje wšě ramiki we wobłuku \"D2:F6\" z čerwjenymi dypkowanymi ramikami" +msgstr "' Formatěruje wšě ramiki we wobłuku \"D2:F6\" z čerwjenymi dypkowanymi ramikami" #. yt8qz #: calc_borders.xhp @@ -1003,7 +1003,7 @@ "hd_id31630542361666\n" "help.text" msgid "Formatting Borders Using TableBorder2" -msgstr "Z TableBorder2 ramiki formatować" +msgstr "Z TableBorder2 ramiki formatěrować" #. vukYu #: calc_borders.xhp @@ -1012,7 +1012,7 @@ "par_id11630542436346\n" "help.text" msgid "Range objects have a property named TableBorder2 that can be used to format range borders as it is done in the Format - Cells - Borders dialog in the Line Arrangement section." -msgstr "Wobłukowe objekty maja kajkosć z mjenom TableBorder2, kotruž móžeće wužiwać, zo byšće wobłukowe ramiki formatował, runje tak kaž w dialogu Format – Cele… – Ramiki we wotrězku Linijowy porjad." +msgstr "Wobłukowe objekty maja kajkosć z mjenom TableBorder2, kotruž móžeće wužiwać, zo byšće wobłukowe ramiki formatěrował, runje tak kaž w dialogu Format – Cele… – Ramiki we wotrězku Linijowy porjad." #. A25aA #: calc_borders.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sbasic/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sbasic/shared/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-19 14:18+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. 6Kkin #: 11010000.xhp @@ -1012,7 +1012,7 @@ "bm_id3150402\n" "help.text" msgid "controls; in dialog editorpush button control in dialog editoricon controlbuttons; controlsimage controlcheck box controlradio button controloption button controlfixed text controllabel field controlediting; controlstext boxes; controlslist boxes; controlscombo box controlscroll bar controlhorizontal scrollbar controlvertical scrollbar controlgroup box controlprogress bar controlfixed line controlhorizontal line controlline controlvertical line controldate field controltime field controlnumerical field controlcurrency field controlformatted field controlpattern field controlmasked field controlfile selection controlselection options for controlstest mode control" -msgstr "wodźenske elementy; w dialogowym editorjetłóčatkowy wodźenski element w dialogowym editorjesymbolowy wodźenski elementtłóčatka; wodźenske elementywobrazowy wodźenski elementkontrolny kašćik (wodźenski element)opciske tłóčatko (wodźenski element)opciske tłóčatko (wodźenski element)kruty tekst (wodźenski element)popisowe polo (wodźenski element)wobdźěłowanje; wodźenske elementytekstowe pola; wodźenske elementylisćinowe pola; wodźenske elementykombinaciske polo (wodźenski element)suwanska lajsta (wodźenski element)horicontalna suwanska lajsta (wodźenski element)wertikalna suwanska lajsta (wodźenski element)skupinske polo (wodźenski element)postupowa hrjada (wodźenski element)kruta linija (wodźenski element)horicontalna linija (wodźenski element)linija (wodźenski element)wertikalna linija (wodźenski element)datumowe polo (wodźenski element)časowe polo (wodźenski element)numeriske polo (wodźenski element)měnowe polo (wodźenski element)formatowane polo (wodźenski element)mustrowe polo (wodźenski element)maskowane polo (wodźenski element)datajowy wuběr (wodźenski element)wuběranske nastajenja za wodźenske elementytestowy modus (wodźenski element)" +msgstr "wodźenske elementy; w dialogowym editorjetłóčatkowy wodźenski element w dialogowym editorjesymbolowy wodźenski elementtłóčatka; wodźenske elementywobrazowy wodźenski elementkontrolny kašćik (wodźenski element)opciske tłóčatko (wodźenski element)opciske tłóčatko (wodźenski element)kruty tekst (wodźenski element)popisowe polo (wodźenski element)wobdźěłowanje; wodźenske elementytekstowe pola; wodźenske elementylisćinowe pola; wodźenske elementykombinaciske polo (wodźenski element)suwanska lajsta (wodźenski element)horicontalna suwanska lajsta (wodźenski element)wertikalna suwanska lajsta (wodźenski element)skupinske polo (wodźenski element)postupowa hrjada (wodźenski element)kruta linija (wodźenski element)horicontalna linija (wodźenski element)linija (wodźenski element)wertikalna linija (wodźenski element)datumowe polo (wodźenski element)časowe polo (wodźenski element)numeriske polo (wodźenski element)měnowe polo (wodźenski element)sformatěrowane polo (wodźenski element)mustrowe polo (wodźenski element)maskowane polo (wodźenski element)datajowy wuběr (wodźenski element)wuběranske nastajenja za wodźenske elementytestowy modus (wodźenski element)" #. dVPiE #: 20000000.xhp @@ -1588,7 +1588,7 @@ "hd_id3150117\n" "help.text" msgid "Formatted Field" -msgstr "Formatowane polo" +msgstr "Sformatěrowane polo" #. B3cDo #: 20000000.xhp @@ -1597,7 +1597,7 @@ "par_id3153162\n" "help.text" msgid "Icon Formatted Field" -msgstr "Symbol za formatowane polo" +msgstr "Symbol za sformatěrowane polo" #. QAd5c #: 20000000.xhp @@ -1606,7 +1606,7 @@ "par_id3146320\n" "help.text" msgid "Adds a text box where you can define the formatting for text that is inputted or outputted as well as any limiting values." -msgstr "Přidawa tekstowe polo, hdźež móžeće formatowanje za zapodaty abo wudaty tekst definować a hódnoty wobmjezować." +msgstr "Přidawa tekstowe polo, hdźež móžeće formatěrowanje za zapodaty abo wudaty tekst definować a hódnoty wobmjezować." #. 2iDg4 #: 20000000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc/00.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc/00.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc/00.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:43+0100\n" -"PO-Revision-Date: 2022-11-25 12:45+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. E9tti #: 00000004.xhp @@ -886,7 +886,7 @@ "par_id3154618\n" "help.text" msgid "Choose Format - Conditional - Condition." -msgstr "Wubjerće Format – Wuměnjene formatowanje – Wuměnjenje…." +msgstr "Wubjerće Format – Wuměnjene formatěrowanje – Wuměnjenje…." #. 36aUL #: 00000405.xhp @@ -895,7 +895,7 @@ "par_id141663543112100\n" "help.text" msgid "On the Formatting bar, click" -msgstr "Klikńće w symbolowej lajsće Formatowanje na" +msgstr "Klikńće w symbolowej lajsće Formatěrowanje na" #. VqVh2 #: 00000405.xhp @@ -904,7 +904,7 @@ "par_id1001663540244130\n" "help.text" msgid "Icon Conditional Format - Condition" -msgstr "Symbol za Wuměnjene formatowanje – Wuměnjenje…" +msgstr "Symbol za Wuměnjene formatěrowanje – Wuměnjenje…" #. CdDAq #: 00000405.xhp @@ -913,7 +913,7 @@ "par_id151663540244134\n" "help.text" msgid "Conditional Format" -msgstr "Wuměnjene formatowanje" +msgstr "Wuměnjene formatěrowanje" #. GBExF #: 00000405.xhp @@ -922,7 +922,7 @@ "par_id31663542115011\n" "help.text" msgid "Choose Format - Conditional - Color Scale" -msgstr "Wubjerće Format – Wuměnjene formatowanje – Barbna skala…" +msgstr "Wubjerće Format – Wuměnjene formatěrowanje – Barbna skala…" #. QPRux #: 00000405.xhp @@ -931,7 +931,7 @@ "par_id211663543104186\n" "help.text" msgid "On the Formatting bar, click" -msgstr "Klikńće w symbolowej lajsće Formatowanje na" +msgstr "Klikńće w symbolowej lajsće Formatěrowanje na" #. ZHE33 #: 00000405.xhp @@ -958,7 +958,7 @@ "par_id491663542108169\n" "help.text" msgid "Choose Format - Conditional - Data Bar" -msgstr "Wubjerće Format – Wuměnjene formatowanje – Datowa lajsta…" +msgstr "Wubjerće Format – Wuměnjene formatěrowanje – Datowa lajsta…" #. YJvXG #: 00000405.xhp @@ -967,7 +967,7 @@ "par_id81663543094977\n" "help.text" msgid "On the Formatting bar, click" -msgstr "Klikńće w symbolowej lajsće Formatowanje na" +msgstr "Klikńće w symbolowej lajsće Formatěrowanje na" #. qKAB8 #: 00000405.xhp @@ -994,7 +994,7 @@ "par_id851663542093712\n" "help.text" msgid "Choose Format - Conditional - Icon Set" -msgstr "Wubjerće Format – Wuměnjene formatowanje – Symbolowa sadźba…" +msgstr "Wubjerće Format – Wuměnjene formatěrowanje – Symbolowa sadźba…" #. j6oAH #: 00000405.xhp @@ -1003,7 +1003,7 @@ "par_id501663543087343\n" "help.text" msgid "On the Formatting bar, click" -msgstr "Klikńće w symbolowej lajsće Formatowanje na" +msgstr "Klikńće w symbolowej lajsće Formatěrowanje na" #. BKDA9 #: 00000405.xhp @@ -1030,7 +1030,7 @@ "par_id391663542070705\n" "help.text" msgid "Choose Format - Conditional - Date" -msgstr "Wubjerće Format – Wuměnjene formatowanje – Datum…" +msgstr "Wubjerće Format – Wuměnjene formatěrowanje – Datum…" #. bETCm #: 00000405.xhp @@ -1039,7 +1039,7 @@ "par_id351663543077670\n" "help.text" msgid "On the Formatting bar, click" -msgstr "Klikńće w symbolowej lajsće Formatowanje na" +msgstr "Klikńće w symbolowej lajsće Formatěrowanje na" #. dUBco #: 00000405.xhp @@ -1066,7 +1066,7 @@ "par_id641663542045446\n" "help.text" msgid "Choose Format - Conditional - Manage" -msgstr "Wubjerće Format – Wuměnjene formatowanje – Rjadować…" +msgstr "Wubjerće Format – Wuměnjene formatěrowanje – Rjadować…" #. gWWhE #: 00000405.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.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-12-08 19:46+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-24 13:32+0000\n" +"Last-Translator: Michael Wolf \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" #. sZfWF #: 01120000.xhp @@ -41366,7 +41368,7 @@ "par_id3144768\n" "help.text" msgid "Operator" -msgstr "" +msgstr "Operator" #. 49fhx #: 04060199.xhp @@ -41699,7 +41701,7 @@ "par_id3150566\n" "help.text" msgid "Operator" -msgstr "" +msgstr "Operator" #. bHMKb #: 04060199.xhp @@ -41708,7 +41710,7 @@ "par_id3153048\n" "help.text" msgid "Name" -msgstr "" +msgstr "Mjeno" #. Y4cRR #: 04060199.xhp @@ -41717,7 +41719,7 @@ "par_id201599494708332\n" "help.text" msgid "Example" -msgstr "" +msgstr "Přikład" #. s2CGS #: 04060199.xhp @@ -41762,7 +41764,7 @@ "hd_id3153550\n" "help.text" msgid "Reference operators" -msgstr "" +msgstr "Poćahowe operatory" #. X3A4D #: 04060199.xhp @@ -41771,7 +41773,7 @@ "par_id3149024\n" "help.text" msgid "These operators return a cell range of zero, one or more cells." -msgstr "" +msgstr "Tute operatory celowy wobłuk wot nul celow, jedneje cele a wjacore cele wróća." #. AV5Zu #: 04060199.xhp @@ -41780,7 +41782,7 @@ "par_id2324900\n" "help.text" msgid "Range has the highest precedence, then intersection, and then finally union." -msgstr "" +msgstr "Wobłuk ma najwyšu prioritu, potom rězne mnóstwo a naposledk zjednoćenske mnóstwo." #. nMVzZ #: 04060199.xhp @@ -41789,7 +41791,7 @@ "par_id3158416\n" "help.text" msgid "Operator" -msgstr "" +msgstr "Operator" #. taxei #: 04060199.xhp @@ -41798,7 +41800,7 @@ "par_id3152822\n" "help.text" msgid "Name" -msgstr "" +msgstr "Mjeno" #. tfD9G #: 04060199.xhp @@ -41807,7 +41809,7 @@ "par_id521599494740206\n" "help.text" msgid "Example" -msgstr "" +msgstr "Přikład" #. 52L2C #: 04060199.xhp @@ -41816,7 +41818,7 @@ "par_id3156257\n" "help.text" msgid ": (Colon)" -msgstr "" +msgstr ": (dwudypk)" #. hLJDt #: 04060199.xhp @@ -41825,7 +41827,7 @@ "par_id3153924\n" "help.text" msgid "Range" -msgstr "" +msgstr "Wobłuk" #. fWnpm #: 04060199.xhp @@ -41834,7 +41836,7 @@ "par_id3152592\n" "help.text" msgid "! (Exclamation point)" -msgstr "" +msgstr "! (wuwołak)" #. ua9Q9 #: 04060199.xhp @@ -41843,7 +41845,7 @@ "bm_id3150606\n" "help.text" msgid "intersection operator" -msgstr "" +msgstr "operator rězneho mnóstwa" #. XoTEi #: 04060199.xhp @@ -41852,7 +41854,7 @@ "par_id3150606\n" "help.text" msgid "Intersection" -msgstr "" +msgstr "Rězne mnóstwo" #. 6z2iQ #: 04060199.xhp @@ -41861,7 +41863,7 @@ "par_id3083445\n" "help.text" msgid "SUM(A1:B6!B5:C12)" -msgstr "" +msgstr "SUMA(A1:B6!B5:C12)" #. LEZqv #: 04060199.xhp @@ -41870,7 +41872,7 @@ "par_id3150385\n" "help.text" msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6." -msgstr "" +msgstr "Wuličuje sumu wšě h celow w rěznym mnóstwje; w tutym přikładźe je wuslědk suma celow B5 a B6." #. joyma #: 04060199.xhp @@ -41879,7 +41881,7 @@ "par_id4003723\n" "help.text" msgid "~ (Tilde)" -msgstr "" +msgstr "~ (tilda)" #. aAvYu #: 04060199.xhp @@ -41888,7 +41890,7 @@ "par_id838953\n" "help.text" msgid "Concatenation or union" -msgstr "" +msgstr "Zjednoćenje abo zjednoćenske mnóstwo" #. Hkjhd #: 04060199.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc/02.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc/02.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-09-09 14:36+0000\n" +"PO-Revision-Date: 2023-03-01 23:55+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" #. aSE5T #: 02130000.xhp @@ -760,7 +760,7 @@ "par_id3153953\n" "help.text" msgid "Choose Themes" -msgstr "Drastu wubrać" +msgstr "Drasty wubrać" #. xWp4x #: 06080000.xhp @@ -769,7 +769,7 @@ "par_id3147127\n" "help.text" msgid "Click the formatting theme that you want to apply, and then click OK." -msgstr "Klikńće na formatowansku drastu, kotruž chceće nałožić a klikńće potom na W porjadku." +msgstr "Klikńće na formatěrowansku drastu, kotruž chceće nałožić a klikńće potom na W porjadku." #. QCyEd #: 08010000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc/04.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc/04.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc/04.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc/04.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-22 14:12+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+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" #. NQkD7 #: 01020000.xhp @@ -103,7 +103,7 @@ "hd_id3145386\n" "help.text" msgid "Navigating in Spreadsheets" -msgstr "W tabelowych dokumentach nawigować" +msgstr "W tabelowych dokumentach nawigěrować" #. 9zdut #: 01020000.xhp @@ -751,7 +751,7 @@ "par_id781637247029711\n" "help.text" msgid "The sheet tabs used to navigate between sheets can be clicked in combination with keyboard keys to perform the following operations:" -msgstr "Na tabelowe rajtarki, kotrež so za nawigowanje mjez tabelemi wužiwaja, dadźa so hromadźe z tastowymi skrótšenkami kliknyć, zo bychu slědowace funkcije přewjedli:" +msgstr "Na tabelowe rajtarki, kotrež so za nawigěrowanje mjez tabelemi wužiwaja, dadźa so hromadźe z tastowymi skrótšenkami kliknyć, zo bychu slědowace funkcije přewjedli:" #. DDZy3 #: 01020000.xhp @@ -868,7 +868,7 @@ "par_id3148568\n" "help.text" msgid "With a cell selected, press F2 to open cell contents for editing. If the cell contains a formula, use arrow keys to navigate the sheet to easily enter range addresses into the formula." -msgstr "Tłóčće z wubranej celu F2, zo byšće celowy wobsah wočinił a jón wobdźěłował. Jeli cela formlu wobsahuje, nawigujće z pomocu šipkowych tastow po tabeli, zo byšće wobłukowe adresy lochko do formle zapodał." +msgstr "Tłóčće z wubranej celu F2, zo byšće celowy wobsah wočinił a jón wobdźěłował. Jeli cela formlu wobsahuje, nawigěrujće z pomocu šipkowych tastow po tabeli, zo byšće wobłukowe adresy lochko do formle zapodał." #. KPNsf #: 01020000.xhp @@ -1372,7 +1372,7 @@ "hd_id3156013\n" "help.text" msgid "Formatting Cells Using Shortcut Keys" -msgstr "Cele z pomocu tastowych skrótšenkow formatować" +msgstr "Cele z pomocu tastowych skrótšenkow formatěrować" #. tpkFF #: 01020000.xhp @@ -1417,7 +1417,7 @@ "par_id3149197\n" "help.text" msgid "Open Format Cells dialog" -msgstr "Dialog Cele formatować wočinić" +msgstr "Dialog Cele formatěrować wočinić" #. XxnqH #: 01020000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc/guide.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:46+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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" @@ -130,7 +130,7 @@ "par_id3156442\n" "help.text" msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with Command Ctrl+Z." -msgstr "Po standardźe $[officename] wjele zwučenych pisanskich awtomatisce koriguje a nałožuje formatowanje, mjez pisaće. Móžeće awtomatiske změny z cmd ⌘Strg+Z cofnyć." +msgstr "Po standardźe $[officename] wjele zwučenych pisanskich awtomatisce koriguje a nałožuje formatěrowanje, mjez pisaće. Móžeće awtomatiske změny z cmd ⌘Strg+Z cofnyć." #. EnE7s #: auto_off.xhp @@ -418,7 +418,7 @@ "bm_id3155132\n" "help.text" msgid "tables; AutoFormat AutoFormat cell ranges formats; automatically formatting spreadsheets sheets;AutoFormat" -msgstr "tabele; awtomatiski formatcelowe wobłuki awtomatiskeho formata formaty; atabele awtomatisce formatowaćtabele; awtomatiski format" +msgstr "tabele; awtomatiski formatcelowe wobłuki awtomatiskeho formata formaty; tabele awtomatisce formatěrowaćtabele; awtomatiski format" #. PYXFN #: autoformat.xhp @@ -427,7 +427,7 @@ "hd_id3155132\n" "help.text" msgid "Applying Automatic Formatting to a Selected Cell Range" -msgstr "Awtomatiske formatowanje na wubrany celowy wobłuk nałožić" +msgstr "Awtomatiske formatěrowanje na wubrany celowy wobłuk nałožić" #. 7xexA #: autoformat.xhp @@ -481,7 +481,7 @@ "par_id3151242\n" "help.text" msgid "In the Formatting section choose which properties from the AutoFormat style to apply to the selected cell range." -msgstr "Wubjerće we wotrězku Formatowanje, kotre kajkosće z předłohi awtomatiskeho formata maja so na wubrany celowy wobłuk nałožić." +msgstr "Wubjerće we wotrězku Formatěrowanje, kotre kajkosće z předłohi awtomatiskeho formata maja so na wubrany celowy wobłuk nałožić." #. rgXQa #: autoformat.xhp @@ -526,7 +526,7 @@ "par_id3152985\n" "help.text" msgid "In a Calc spreadsheet, format a cell range with at least 4 columns and 4 rows to serve as model to create the new AutoFormat style." -msgstr "Formatujće w tabeli Calc celowy wobłuk ze znajmjeńša 4 špaltami a 4 linkami, kotryž so ma jako model za wutworjenje noweje předłohi awtomatiskeho formata słužić." +msgstr "Formatěrujće w tabeli Calc celowy wobłuk ze znajmjeńša 4 špaltami a 4 linkami, kotryž so ma jako model za wutworjenje noweje předłohi awtomatiskeho formata słužić." #. 3GsCL #: autoformat.xhp @@ -535,7 +535,7 @@ "par_id3145384\n" "help.text" msgid "Select the cell range formatted in the previous step and go to Format - AutoFormat Styles." -msgstr "Wubjerće celowy wobłuk, kotryž je so w předchadnym kroku formatował a přeńdźće k Format – Předłohi awtomatiskeho formata…." +msgstr "Wubjerće celowy wobłuk, kotryž je so w předchadnym kroku formatěrował a přeńdźće k Format – Předłohi awtomatiskeho formata…." #. CzaoG #: autoformat.xhp @@ -643,7 +643,7 @@ "par_id3149260\n" "help.text" msgid "Choose Format - Cells (or Format Cells from the context menu)." -msgstr "Wubjerće Format – Cele (abo Cele formatować w kontekstowym meniju)." +msgstr "Wubjerće Format – Cele (abo Cele formatěrować w kontekstowym meniju)." #. bg5yD #: background.xhp @@ -715,7 +715,7 @@ "par_id7601245\n" "help.text" msgid "Formatting Spreadsheets" -msgstr "Tabelowe dokumenty formatować" +msgstr "Tabelowe dokumenty formatěrować" #. uTh4T #: borders.xhp @@ -1264,7 +1264,7 @@ "par_id231630451548190\n" "help.text" msgid "This option becomes available when formatting a range of cells that already have borders and the new format defined for the range involves removing outer borders." -msgstr "Tute nastajenje budźe k dispoziciji, hdyž so wobłuk celow formatuje, kotryž hižo ma ramiki a nowy format, kotryž je so za wobłuk definował, wotstronjenje wonkownych ramikow wobsahuje." +msgstr "Tute nastajenje budźe k dispoziciji, hdyž so wobłuk celow formatěruje, kotryž hižo ma ramiki a nowy format, kotryž je so za wobłuk definował, wotstronjenje wonkownych ramikow wobsahuje." #. xADD4 #: borders.xhp @@ -1345,7 +1345,7 @@ "par_id3149020\n" "help.text" msgid "After pressing the Enter key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number." -msgstr "Po tym zo sće tastu Enter stłóčił, budźeće wuslědk w datowym formaće widźeć. Dokelž wuslědk ma rozdźěl mjez dwěmaj datumowymaj hódnotomaj jako ličbu dnjow pokazać, dyrbiće celu A3 jako ličbu formatować." +msgstr "Po tym zo sće tastu Enter stłóčił, budźeće wuslědk w datowym formaće widźeć. Dokelž wuslědk ma rozdźěl mjez dwěmaj datumowymaj hódnotomaj jako ličbu dnjow pokazać, dyrbiće celu A3 jako ličbu formatěrować." #. hSnJ9 #: calc_date.xhp @@ -1354,7 +1354,7 @@ "par_id3155335\n" "help.text" msgid "Place the cursor in cell A3, right-click to open a context menu and choose Format Cells." -msgstr "Stajće kursor do cele A3, klikńće z prawej tastu, zo byšće kontekstowy meni wočinił a wubjerće Cele formatować…." +msgstr "Stajće kursor do cele A3, klikńće z prawej tastu, zo byšće kontekstowy meni wočinił a wubjerće Cele formatěrować…." #. ddvdC #: calc_date.xhp @@ -1363,7 +1363,7 @@ "par_id3147343\n" "help.text" msgid "The Format Cells dialog appears. On the Numbers tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the OK button." -msgstr "Dialog Cele formatować so zjewi. Na rajtarku Ličby so kategorija „Ličby“ hižo jako wuzběhnjena zjewi. Format je na „Powšitkowny“ nastajeny, kotryž wuskutkuje, zo wuslědk wobličenja, kotryž datumowe zapiski wobsahuje, so jako datum pokazuje. Zo byšće wuslědk jako ličbu pokazał, stajće ličbowy format na „-1.235“ a začińće dialog z tłóčatkom W porjadku." +msgstr "Dialog Cele formatěrować so zjewi. Na rajtarku Ličby so kategorija „Ličby“ hižo jako wuzběhnjena zjewi. Format je na „Powšitkowny“ nastajeny, kotryž wuskutkuje, zo wuslědk wobličenja, kotryž datumowe zapiski wobsahuje, so jako datum pokazuje. Zo byšće wuslědk jako ličbu pokazał, stajće ličbowy format na „-1.235“ a začińće dialog z tłóčatkom W porjadku." #. qt75B #: calc_date.xhp @@ -1507,7 +1507,7 @@ "par_id3154490\n" "help.text" msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgstr "Jeli dwě celi abo wjace celow wuběraće, kotrež rozdźělne ličby wobsahuja, a ćehnjeće, so zbytne cele z aritmetiskim mustrom pjelnja, kotrež so w ličbach spóznawa. Funkcija awtomatiskeho wupjelnjenja tež přiměrjene lisćiny spóznawa, kotrež su so pod %PRODUCTNAME – NastajenjaNastroje – Nastajenja – %PRODUCTNAME Calc – Lisćiny sortěrować definowali." #. eEAcg #: calc_series.xhp @@ -1516,7 +1516,7 @@ "par_idN10737\n" "help.text" msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12." -msgstr "" +msgstr "Móžeće na pjelnjenski přimk dwójce kliknyć, zo byšće wšě prózdne špalty aktualneho datoweho bloka wupjelnił. Zapodajće na přikład najprjedy Jan do cele A1 a ćehńće pjelnjenski přimk dele do A12, zo byšće w prěnjej špalće dwanaće měsacow dóstał. Zapodajće nětko hódnoty do celow B1 a C1. Wubjerće tutej dwě celi a klikńće dwójce na pjelnjenski přimk. To awtomatisce datowy blok B1:C12 wupjelnja." #. F4V8E #: calc_series.xhp @@ -1525,7 +1525,7 @@ "par_idN10713\n" "help.text" msgid "Using a Defined Series" -msgstr "" +msgstr "Definowany rjad wužiwać" #. ezuXW #: calc_series.xhp @@ -1534,7 +1534,7 @@ "par_id3150749\n" "help.text" msgid "Select the cell range in the sheet that you want to fill." -msgstr "" +msgstr "Wubjerće celowy wobłuk w tabeli, kotryž chceće pjelnić." #. ffDtN #: calc_series.xhp @@ -1543,7 +1543,7 @@ "par_id3154754\n" "help.text" msgid "Choose Sheet - Fill Cells - Series." -msgstr "" +msgstr "Wubjerće Tabela – Cele wupjelnić – Rjady wupjelnić…." #. egEEL #: calc_series.xhp @@ -1552,7 +1552,7 @@ "par_idN10716\n" "help.text" msgid "Select the parameters for the series." -msgstr "" +msgstr "Wubjerće parametry za rjad." #. 69YN9 #: calc_series.xhp @@ -1561,7 +1561,7 @@ "par_idN10731\n" "help.text" msgid "If you select a linear series, the increment that you enter is added to each consecutive number in the series to create the next value." -msgstr "" +msgstr "Jeli linearny rjad wuběraće, so stup, kotryž zapodawaće, kóždej naslědnej ličbje w rjedźe přidawa, zo by so přichodna hódnota wutworiła." #. pB7bt #: calc_series.xhp @@ -1570,7 +1570,7 @@ "par_idN1073C\n" "help.text" msgid "If you select a growth series, the increment that you enter is multiplied by each consecutive number to create the next value." -msgstr "" +msgstr "Jeli geometriski rjad wuběraće, so stup, kotryž zapodawaće, z kóždej naslědnej ličbu w rjedźe multiplikuje, zo by so přichodna hódnota wutworiła." #. gBU3Y #: calc_series.xhp @@ -1579,7 +1579,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 "" +msgstr "Jeli datumowy rjad wuběraće, so stup, kotryž zapodawaće časowej jednotce přidawa, kotruž podawaće." #. ZNvtX #: calc_series.xhp @@ -1588,7 +1588,7 @@ "par_id3159173\n" "help.text" msgid "Sort lists" -msgstr "" +msgstr "Sortěrowanske lisćiny" #. a8RRo #: calc_timevalues.xhp @@ -1597,7 +1597,7 @@ "tit\n" "help.text" msgid "Calculating Time Differences" -msgstr "" +msgstr "Časowe rozdźěle wuličić" #. XRebj #: calc_timevalues.xhp @@ -1606,7 +1606,7 @@ "bm_id3150769\n" "help.text" msgid "calculating;time differencestime differences" -msgstr "" +msgstr "wuličić; časowe rozdźělečasowe rozdźěle" #. kx4UD #: calc_timevalues.xhp @@ -1615,7 +1615,7 @@ "hd_id3150769\n" "help.text" msgid "Calculating Time Differences" -msgstr "" +msgstr "Časowe rozdźěle wuličić" #. Cv4BS #: calc_timevalues.xhp @@ -1624,7 +1624,7 @@ "par_id3149263\n" "help.text" msgid "If you want to calculate time differences, for example, the time between 23:30 and 01:10 in the same night, use the following formula:" -msgstr "" +msgstr "Jeli chceće časowe rozdźěle wuličić a na přikład čas mjez 23:30 a 01:10 w samsnej nocy leži, wužiwajće slědowacu formlu:" #. bMpBD #: calc_timevalues.xhp @@ -1633,7 +1633,7 @@ "par_id3159153\n" "help.text" msgid "=(B2spreadsheets; calculatingcalculating; spreadsheetsformulas; calculating" -msgstr "" +msgstr "tabelowe dokumenty; wuličićwuličić; tabelowe dokumentyformle; wuličić" #. mv4KH #: calculate.xhp @@ -1678,7 +1678,7 @@ "hd_id3150791\n" "help.text" msgid "Calculating in Spreadsheets" -msgstr "" +msgstr "W tabelowych dokumentach ličić" #. VKHds #: calculate.xhp @@ -1687,7 +1687,7 @@ "par_id3146120\n" "help.text" msgid "The following is an example of a calculation in $[officename] Calc." -msgstr "" +msgstr "Tu je přikład, kak móžeće w $[officename] Calc ličić." #. t4ywa #: calculate.xhp @@ -1696,7 +1696,7 @@ "par_id3153951\n" "help.text" msgid "Click in a cell, and type a number" -msgstr "" +msgstr "Klikńće do cele a zapodajće ličbu" #. SXuMg #: calculate.xhp @@ -1705,7 +1705,7 @@ "par_idN10656\n" "help.text" msgid "Press Enter." -msgstr "" +msgstr "Tłóčće Enter." #. LKPEt #: calculate.xhp @@ -1714,7 +1714,7 @@ "par_idN1065D\n" "help.text" msgid "The cursor moves down to the next cell." -msgstr "" +msgstr "Kursor so dele k přichodnej celi pohibuje." #. 6FYN9 #: calculate.xhp @@ -1723,7 +1723,7 @@ "par_id3155064\n" "help.text" msgid "Enter another number." -msgstr "" +msgstr "Zapodajće dalšu ličbu." #. Sz2uF #: calculate.xhp @@ -1732,7 +1732,7 @@ "par_idN1066F\n" "help.text" msgid "Press the Tab key." -msgstr "" +msgstr "Tłóčće tabulatorowu tastu (↹)." #. mgYwz #: calculate.xhp @@ -1741,7 +1741,7 @@ "par_idN10676\n" "help.text" msgid "The cursor moves to the right into the next cell." -msgstr "" +msgstr "Kursor naprawo do přichodneje cele přeńdźe." #. eU4sz #: calculate.xhp @@ -1750,7 +1750,7 @@ "par_id3154253\n" "help.text" msgid "Type in a formula, for example, =A3 * A4 / 100." -msgstr "" +msgstr "Zapodajće formlu, na přikład A3 * A4/100." #. HNbQB #: calculate.xhp @@ -1759,7 +1759,7 @@ "par_idN1068B\n" "help.text" msgid "Press Enter." -msgstr "" +msgstr "Tłóčće Enter." #. eesNk #: calculate.xhp @@ -1768,7 +1768,7 @@ "par_id3147343\n" "help.text" msgid "The result of the formula appears in the cell. If you want, you can edit the formula in the input line of the Formula bar." -msgstr "" +msgstr "Wuslědk formle so w celi jewi. Jeli chceće, móžeće formlu w zapodawanskej lince formloweje lajsty wobdźěłać." #. FgPuF #: calculate.xhp @@ -1777,7 +1777,7 @@ "par_id3155378\n" "help.text" msgid "When you edit a formula, the new result is calculated automatically." -msgstr "" +msgstr "Hdyž formlu wobdźěłujeće, so nowy wuslědk awtomatisce wuličuje." #. btgfD #: cell_enter.xhp @@ -1786,7 +1786,7 @@ "tit\n" "help.text" msgid "Entering Values" -msgstr "" +msgstr "Hódnoty zapodać" #. 2aSdr #: cell_enter.xhp @@ -1795,7 +1795,7 @@ "bm_id3150868\n" "help.text" msgid "values; inserting in multiple cells inserting;values cell ranges;selecting for data entries areas, see also cell ranges" -msgstr "" +msgstr "hódnoty; do wjacorych celow zasadźićzasadźić; hódnotycelowe wobłuki; za datowe zapiski wubraćwobłuki, hlejće tež celowe wobłuki" #. CYPkV #: cell_enter.xhp @@ -1804,7 +1804,7 @@ "hd_id3405255\n" "help.text" msgid "Entering Values" -msgstr "" +msgstr "Hódnoty zapodać" #. NwDEk #: cell_enter.xhp @@ -1813,7 +1813,7 @@ "par_id7147129\n" "help.text" msgid "Calc can simplify entering data and values into multiple cells. You can change some settings to conform to your preferences." -msgstr "" +msgstr "Calc móže zapodawanje datow w hódnotow do wjacorych celow zjednorić. Móžeće někotre nastajenja po dobrozdaću změnić." #. VH6v5 #: cell_enter.xhp @@ -1822,7 +1822,7 @@ "hd_id5621509\n" "help.text" msgid "To Enter Values Into a Range of Cells Manually" -msgstr "" +msgstr "Zo byšće hódnoty do celoweho wobłuka manuelnje zapodał:" #. AADVT #: cell_enter.xhp @@ -1831,7 +1831,7 @@ "par_id8200018\n" "help.text" msgid "There are two features that assist you when you enter a block of data manually." -msgstr "" +msgstr "Stej dwě móžnosći, kotrejž wam pomhatej, hdyž datowy blok manuelnje zapodawaće." #. ETCVR #: cell_enter.xhp @@ -1840,7 +1840,7 @@ "hd_id1867427\n" "help.text" msgid "Area Detection for New Rows" -msgstr "" +msgstr "Wobłukowe spóznaće za nowe linki" #. XWCWz #: cell_enter.xhp @@ -1849,7 +1849,7 @@ "par_id7908871\n" "help.text" msgid "In the row below a heading row, you can advance from one cell to the next with the Tab key. After you enter the value into the last cell in the current row, press Enter. Calc positions the cursor below the first cell of the current block." -msgstr "" +msgstr "W lince pod hłowowej linku móžeće wot jedneje cele do přichodneje cele přeńć, hdyž tabulatorowu tastu (↹) wužiwaće. Zapodajće hódnotu do poslednjeje cele a tłóčće potom tastu Enter. Calc kursor pod prěnjej celu aktualneho bloka pozicioněruje." #. xNqdW #: cell_enter.xhp @@ -1858,7 +1858,7 @@ "par_id6196783\n" "help.text" msgid "area detection" -msgstr "" +msgstr "wobłukowe spóznaće" #. ebGHj #: cell_enter.xhp @@ -1867,7 +1867,7 @@ "par_id8118839\n" "help.text" msgid "In row 3, press Tab to advance from cell B3 to C3, D3, and E3. Then press Enter to advance to B4." -msgstr "" +msgstr "Tłóčće w lince 3 tabulatorowu tastu (↹), zo byšće so wot cele B3 do C3, D3 a E3 postupował. Tłóčće potom tastu Enter, zo byšće k celi B4 přešoł." #. CEkiZ #: cell_enter.xhp @@ -1876,7 +1876,7 @@ "hd_id3583788\n" "help.text" msgid "Area Selection" -msgstr "" +msgstr "Wobłukowy wuběr" #. y55CS #: cell_enter.xhp @@ -1885,7 +1885,7 @@ "par_id2011780\n" "help.text" msgid "Select the area where you want to input values. Now you can start to input values from the cursor position in the selected area. Press the Tab key to advance to the next cell or Shift + Tab to move backward. At the edges of the selected area the tab key jumps inside the selected area. You will not leave the selected area." -msgstr "" +msgstr "Wubjerće wobłuk, hdźež chceće hódnoty zapodać. Nětko móžeće započeć hódnoty na kursorowej poziciji we wubranym wobłuku zapodawać. Tłóčće tabulatorowu tastu (↹), zo byšće so k přichodnej celi dóstał abo Umsch (⇑) + , zo byšće wróćo šoł. Na kromach wubraneho wobłuka tabulatorowa tasta do wubraneho wobłuka skoči. Wubrany wobłuk njewopušćiće." #. HbCtq #: cell_enter.xhp @@ -1894,7 +1894,7 @@ "par_id7044282\n" "help.text" msgid "area selection" -msgstr "" +msgstr "wobłukowy wuběr" #. CCcpp #: cell_enter.xhp @@ -1903,7 +1903,7 @@ "par_id3232520\n" "help.text" msgid "Select the area from B3 to E7. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area." -msgstr "" +msgstr "Wubjerće wobłuk wot B3 do E7. Nětko B3 na zapodaće čaka. Tłóčće tabulator (↹), zo byšće k přichodnej celi we wubranym wobłuku přešoł." #. pbEDF #: cell_enter.xhp @@ -1912,7 +1912,7 @@ "hd_id8950163\n" "help.text" msgid "To Enter Values to a Range of Cells Automatically" -msgstr "" +msgstr "Zo byšće hódnoty do celoweho wobłuka awtomatisce zapodał:" #. APCjZ #: cell_enter.xhp @@ -1921,7 +1921,7 @@ "par_id633869\n" "help.text" msgid "See Automatically Filling in Data Based on Adjacent Cells." -msgstr "" +msgstr "Hlejće Daty na zakładźe susodnych celow awtomatisce zapodać" #. 5GQRe #: cell_protect.xhp @@ -1930,7 +1930,7 @@ "tit\n" "help.text" msgid "Protecting Cells from Changes" -msgstr "" +msgstr "Cele před změnami škitać" #. zC53S #: cell_protect.xhp @@ -1939,7 +1939,7 @@ "bm_id3146119\n" "help.text" msgid "protecting;cells and sheets cells; protecting cell protection; enabling sheets; protecting documents; protecting cells; hiding for printing changing; sheet protection hiding;formulas formulas;hiding" -msgstr "" +msgstr "škitać; cele a tabelecele; škitaćcelowy škit; zmóžnićtabele; škitaćdokumenty; škitaćcele; za ćišćenje schowaćzměnić; tabelowy škitschować; formleformle;schować" #. WAuVd #: cell_protect.xhp @@ -1948,7 +1948,7 @@ "hd_id3146119\n" "help.text" msgid "Protecting Cells from Changes" -msgstr "" +msgstr "Cele před změnami škitać" #. YzGFz #: cell_protect.xhp @@ -1957,7 +1957,7 @@ "par_id3153368\n" "help.text" msgid "In %PRODUCTNAME Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed." -msgstr "" +msgstr "W %PRODUCTNAME Calc móžeće tabele a dokument jako cyłk škitać. Móžeće wubrać, hač so cele před připadnymi změnami škitaja, hač formle dadźa so z Calc wobhladać, hač cele su widźomne abo hač cele dadźa so ćišćeć." #. uSBzE #: cell_protect.xhp @@ -1966,7 +1966,7 @@ "par_id3145261\n" "help.text" msgid "Protection can be provided by means of a password, but it does not have to be. If you have assigned a password, protection can only be removed once the correct password has been entered." -msgstr "" +msgstr "Škit da so z hesłom stać, ale njetrjeba. Jeli sće hesło připokazał, da so škit jenož wotstronić, hdyž so prawe hesło zapodawa." #. w9aAF #: cell_protect.xhp @@ -1975,7 +1975,7 @@ "par_id3148576\n" "help.text" msgid "Note that the cell protection for cells with the Protected attribute is only effective when you protect the whole sheet. In the default condition, every cell has the Protected attribute. Therefore you must remove the attribute selectively for those cells where the user may make changes. You then protect the whole sheet and save the document." -msgstr "" +msgstr "Dźiwajće na to, zo celowy škit za cele z atributom Škitany je jenož efektiwny, hdyž cyłu tabelu škitaće. Pod standardnym wuměnjenjom ma kóžda cela atribut Škitany. Tohodla dyrbiće atribut zaměrnje za te cele wotstronić, hdźež wužiwar změny přewjedźe. Škitaće potom cyłu tabelu a składujeće dokument." #. WUAAG #: cell_protect.xhp @@ -1984,7 +1984,7 @@ "par_id5974303\n" "help.text" msgid "These protection features are just switches to prevent accidental action. The features are not intended to provide any secure protection. For example, by exporting a sheet to another file format, a user may be able to surpass the protection features. There is only one secure protection: the password that you can apply when saving an OpenDocument file. A file that has been saved with a password can be opened only with the same password." -msgstr "" +msgstr "Tute škitne funkcije su jenož zapinaki, zo bychu připadnym akcijam zadźěwał. Funkcije nimaja wěsty škit skićić. Hdyž na přikład tabelu do druheho format eksportuje, móže wužiwar škitne funkcije wobeńć. Je jenož jedyn wěsty škit: Hesło, kotrež so při składowanju dataje OpenDocument wužiwa. Dataja, kotraž je so z hesłom składowała, da so jenož ze samsnym hesłom wočinić." #. erq7m #: cell_protect.xhp @@ -1993,7 +1993,7 @@ "par_idN1066B\n" "help.text" msgid "Select the cells that you want to specify the cell protection options for." -msgstr "" +msgstr "Wubjerće cele, za kotrež chceće nastajenja celoweho škita podać." #. sPEfR #: cell_protect.xhp @@ -2002,7 +2002,7 @@ "par_id3149019\n" "help.text" msgid "Choose Format - Cells and click the Cell Protection tab." -msgstr "" +msgstr "Wubjerće Format – Cele… a klikńće na rajtark Celowy škit." #. 9C4pm #: cell_protect.xhp @@ -2011,7 +2011,7 @@ "par_id3152985\n" "help.text" msgid "Select the protection options that you want. All options will be applied only after you protect the sheet from the Tools menu - see below." -msgstr "" +msgstr "Wubjerće swoje škitne nastajenja. Wšě nastajenja so jenož nałožuja, hdyž tabelu z menija Nastroje škitaće – hlejće deleka." #. vMLiX #: cell_protect.xhp @@ -2020,7 +2020,7 @@ "par_id31529866655\n" "help.text" msgid "Uncheck Protected to allow the user to change the currently selected cells." -msgstr "" +msgstr "Znjemóžńće nastajenje Škitany, zo byšće wužiwarjej dowolił, tuchwilu wubrane cele změnić." #. bTDYj #: cell_protect.xhp @@ -2029,7 +2029,7 @@ "par_id3152898\n" "help.text" msgid "Select Protected to prevent changes to the contents and the format of a cell." -msgstr "" +msgstr "Wubjerće Škitany, zo byšće změnam wobsaha a celoweho formata zadźěwał." #. NJqDX #: cell_protect.xhp @@ -2038,7 +2038,7 @@ "par_idN1069A\n" "help.text" msgid "Select Hide formula to hide and to protect formulas from changes." -msgstr "" +msgstr "Wubjerće Formlu schować, zo byšće formle schował a před změnami škitał." #. GDDez #: cell_protect.xhp @@ -2047,7 +2047,7 @@ "par_idN106A1\n" "help.text" msgid "Select Hide when printing to hide protected cells in the printed document. The cells are not hidden onscreen." -msgstr "" +msgstr "Wubjerće Při ćišćenju schować, zo byšće škitane cele w wućišćanym dokumenće schował. Cele so na wobrazowce njechowaja." #. tUXjv #: cell_protect.xhp @@ -2056,7 +2056,7 @@ "par_id3152872\n" "help.text" msgid "Click OK." -msgstr "" +msgstr "Klikńće na W porjadku." #. dpMbT #: cell_protect.xhp @@ -2065,7 +2065,7 @@ "par_id3145362\n" "help.text" msgid "Apply the protection options." -msgstr "" +msgstr "Škitne nastajenja nałožić" #. 6BoLD #: cell_protect.xhp @@ -2074,7 +2074,7 @@ "par_idN106C0\n" "help.text" msgid "To protect the cells from being changed, viewed or printed according to your settings in the Format - Cells dialog, choose Tools - Protect Sheet." -msgstr "" +msgstr "Zo byšće cele před tym škitał, zo so po wašich nastajenjach w dialogu Format – Cele… měnjeja, wobhladuja abo ćišća, wubjerće Nastroje – Tabelu škitać…." #. doYSo #: cell_protect.xhp @@ -2083,7 +2083,7 @@ "par_idN106C7\n" "help.text" msgid "To protect the structure of the document, for example the count, names, and order of the sheets, from being changed, choose Tools - Protect Spreadsheet Structure." -msgstr "" +msgstr "Zo byšće strukturu dokumenta, na přikład ličak, mjena a porjad tabelow před změnami škitał, wubjerće Nastroje – Strukturu tabeloweho dokuementa škitać…." #. R9bEQ #: cell_protect.xhp @@ -2092,7 +2092,7 @@ "par_idN106CF\n" "help.text" msgid "(Optional) Enter a password." -msgstr "" +msgstr "(Na přeće) Zapodajće hesło." #. bk6H6 #: cell_protect.xhp @@ -2101,7 +2101,7 @@ "par_idN106D2\n" "help.text" msgid "If you forget your password, you cannot deactivate the protection. If you only want to protect cells from accidental changes, set the sheet protection, but do not enter a password." -msgstr "" +msgstr "Jeli swoje hesło zabywaće, njemóžeće škit znjemóžnić. Jeli jenož chceće cele před připadnymi změnami škitać, nastajće tabelowy škit, ale njezapodawajće hesło." #. xEaSJ #: cell_protect.xhp @@ -2110,7 +2110,7 @@ "par_id3153810\n" "help.text" msgid "Click OK." -msgstr "" +msgstr "Klikńće na W porjadku." #. CFXJD #: cell_unprotect.xhp @@ -2119,7 +2119,7 @@ "tit\n" "help.text" msgid "Unprotecting Cells" -msgstr "" +msgstr "Škit cele zběhnyć" #. byazz #: cell_unprotect.xhp @@ -2128,7 +2128,7 @@ "bm_id3153252\n" "help.text" msgid "cell protection; unprotecting protecting; unprotecting cells unprotecting cells" -msgstr "" +msgstr "celowy škit; zběhnyćškitać; celowy škit zběhnyćcelowy škit zběhnyć" #. RfFFV #: cell_unprotect.xhp @@ -2137,7 +2137,7 @@ "hd_id3153252\n" "help.text" msgid "Unprotecting Cells " -msgstr "" +msgstr "Celowy škit zběhnyć" #. gK5Qh #: cell_unprotect.xhp @@ -2146,7 +2146,7 @@ "par_id3151112\n" "help.text" msgid "Click the sheet for which you want to cancel the protection." -msgstr "" +msgstr "Klikńće na tabelu, za kotruž chceće škit zběhnył." #. EmUnA #: cell_unprotect.xhp @@ -2155,7 +2155,7 @@ "par_id3149656\n" "help.text" msgid "Select Tools - Protect Sheet or Tools - Protect Spreadsheet Structure to remove the check mark indicating the protected status." -msgstr "" +msgstr "Wubjerće Nastroje – Tabelu škitać… abo Nastroje – Strukturu tabeloweho dokumenta škitać…, zo byšće hóčku za škitany status wotstronił." #. 7ya2E #: cell_unprotect.xhp @@ -2164,7 +2164,7 @@ "par_id3145171\n" "help.text" msgid "If you have assigned a password, enter it in this dialog and click OK." -msgstr "" +msgstr "Jeli sće hesło připokazał, zapodajće jo w tutym dialogu a klikńće na W porjadku." #. xYEFE #: cell_unprotect.xhp @@ -2173,7 +2173,7 @@ "par_id3153771\n" "help.text" msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document." -msgstr "" +msgstr "Cele dadźa so nětko wobdźěłać, formle dadźa so wobhladać a wšě cele dadźa so ćišćeć, doniž škit za tabelu abo dokument znowa njeaktiwizujeće." #. GT6ix #: cellcopy.xhp @@ -2182,7 +2182,7 @@ "tit\n" "help.text" msgid "Only Copy Visible Cells" -msgstr "" +msgstr "Jenož widźomne cele kopěrować" #. LqS8X #: cellcopy.xhp @@ -2191,7 +2191,7 @@ "bm_id3150440\n" "help.text" msgid "cells; copying/deleting/formatting/moving rows;visible and invisible copying; visible cells only formatting;visible cells only moving;visible cells only deleting;visible cells only invisible cells filters;copying visible cells only hidden cells" -msgstr "" +msgstr "cele; kopěrować/zhašeć/formatěrować/přesunyćlinki; widźomne a njewidźomnekopěrować; jenož widźomne celeformatěrować; jenož widźomne celepřesunyć; jenož widźomne celezhašeć; jenož widźomne celenjewidźomne celefiltry; cjenož widźomne cele kopěrowaćschowane cele" #. hWZTv #: cellcopy.xhp @@ -2200,7 +2200,7 @@ "hd_id3150440\n" "help.text" msgid "Only Copy Visible Cells" -msgstr "" +msgstr "Jenož widźomne cele kopěrować" #. eAskd #: cellcopy.xhp @@ -2209,7 +2209,7 @@ "par_id3148577\n" "help.text" msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows." -msgstr "" +msgstr "Připušćamy, zo sće někotre linki w celowym wobłuku schował. Nětko chceće jenož zbytne widźomne linki kopěrować, zhašeć abo formatěrować." #. uA66B #: cellcopy.xhp @@ -2218,7 +2218,7 @@ "par_id3154729\n" "help.text" msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually." -msgstr "" +msgstr "Zadźerženje $[officename] wot toho wotwisuje, kak su so cele njewidźomne činili, z filtrom abo manuelnje." #. Y7BEN #: cellcopy.xhp @@ -2227,7 +2227,7 @@ "par_id3155603\n" "help.text" msgid "Method and Action" -msgstr "" +msgstr "Metoda a akcija" #. Bt5NA #: cellcopy.xhp @@ -2236,7 +2236,7 @@ "par_id3150751\n" "help.text" msgid "Result" -msgstr "" +msgstr "Wuslědk" #. 6fWoa #: cellcopy.xhp @@ -2245,7 +2245,7 @@ "par_id3149018\n" "help.text" msgid "Cells were filtered by AutoFilters, standard filters or advanced filters." -msgstr "" +msgstr "cele su so z awtomatiskimi filtrami, standardnymi filtrami abo rozšěrjenymi filtrami filtrowali." #. M4Edv #: cellcopy.xhp @@ -2254,7 +2254,7 @@ "par_id3150044\n" "help.text" msgid "Copy, delete, move, or format a selection of currently visible cells." -msgstr "" +msgstr "Kopěrujće, zhašejće, přesuńće abo formatěrujće wuběr tuchwilu widźomnych celow." #. fV6ro #: cellcopy.xhp @@ -2263,7 +2263,7 @@ "par_id3146918\n" "help.text" msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted." -msgstr "" +msgstr "Jenož widźomne cele wuběra so kopěruja, zhašeja, přesuwaja abo formatěruja." #. E9sMe #: cellcopy.xhp @@ -2272,7 +2272,7 @@ "par_id3166427\n" "help.text" msgid "Cells were hidden using the Hide command in the context menu of the row or column headers, or through an outline." -msgstr "" +msgstr "Cele so přez přikaz Schować w kontekstowym meniju hłowow linkow abo špaltow chowaja, abo přez rozrjad" #. hCVpN #: cellcopy.xhp @@ -2281,7 +2281,7 @@ "par_id3152990\n" "help.text" msgid "Copy, delete, move, or format a selection of currently visible cells." -msgstr "" +msgstr "Kopěrujće, zhašejće, přesuńće abo formatěrujće wuběr tuchwilu widźomnych celow." #. VccAs #: cellcopy.xhp @@ -2290,7 +2290,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 "Po standardźe so wšě cele wuběra, mjez nimi schowane cele, kopěruja, zhašeja, přesuwaja abo formatěruja. Wobmjezujće wuběr na widźomne linki, hdyž Wobdźěłać – Wubrać – Jenož widźomne linki wubrać wuběraće, abo na widźomne špalty, hdyž Wobdźěłać – Wubrać – Jenož widźomne špalty wubrać wuběraće." #. rBtUY #: cellreference_dragdrop.xhp @@ -2299,7 +2299,7 @@ "tit\n" "help.text" msgid "Referencing Cells by Drag-and-Drop" -msgstr "" +msgstr "Celowe poćahi přez ćehnjenje a pušćenje" #. DN7Zz #: cellreference_dragdrop.xhp @@ -2308,7 +2308,7 @@ "bm_id3154686\n" "help.text" msgid "drag and drop; referencing cells cells; referencing by drag and drop references;inserting by drag and drop inserting;references, by drag and drop" -msgstr "" +msgstr "ćahnyć a pušćić; celowe poćahicele; poćahi přez ćehnjenje a pušćenjepoćahi; přez ćehnjenje a pušćenje zasadźićzasadźić; poćahi, přez ćehnjenje a pušćenje" #. pKiKK #: cellreference_dragdrop.xhp @@ -2317,7 +2317,7 @@ "hd_id3154686\n" "help.text" msgid "Referencing Cells by Drag-and-Drop" -msgstr "" +msgstr "Celowe poćahi přez ćehnjenje a pušćenje" #. ANUwC #: cellreference_dragdrop.xhp @@ -2326,7 +2326,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 "" +msgstr "Z pomocu Nawigatora móžeće cele z jedneje tabele do druheje tabele w samsnym dokumenće referencować. Cele dadźa so jako kopija, zwjazanje abo hyperwotkaz zasadźić. Wobłuk, kotryž so ma zasadźić, dyrbi so z mjenom w originalnej dataji definować, zo by so dał do ciloweje dataje zasadźić." #. eV8oB #: cellreference_dragdrop.xhp @@ -2335,7 +2335,7 @@ "par_id3152576\n" "help.text" msgid "Open the document that contains the source cells." -msgstr "" +msgstr "Wočińće dokument, kotryž žórłowe cele wobsahuje." #. SFWrp #: cellreference_dragdrop.xhp @@ -2344,7 +2344,7 @@ "par_id3154011\n" "help.text" msgid "To set the source range as the range, select the cells and choose Sheet - Named Ranges and Expressions - Define. Save the source document, and do not close it." -msgstr "" +msgstr "Zo byšće žórłowy wobłuk jako wobłuk nastajił, wubjerće cele a potom Tabela – Pomjenowane wobłuki a wurazy – Definować…. Składujće žórłowy dokument a njezačinjejće jón." #. UMVry #: cellreference_dragdrop.xhp @@ -2353,7 +2353,7 @@ "par_id3151073\n" "help.text" msgid "Open the sheet in which you want to insert something." -msgstr "" +msgstr "Wočińće tabelu, do kotrejež chceće něšto zasadźić." #. cFo33 #: cellreference_dragdrop.xhp @@ -2362,7 +2362,7 @@ "par_id3154732\n" "help.text" msgid "Open the Navigator. In the lower box of the Navigator select the source file." -msgstr "" +msgstr "Wočińće Nawigator. Wubjerće žórłowu dataju w delnim polu Nawigatora." #. 36bq3 #: cellreference_dragdrop.xhp @@ -2371,7 +2371,7 @@ "par_id3150752\n" "help.text" msgid "In the Navigator, the source file object appears under \"Range names\"." -msgstr "" +msgstr "Žórłowa dataja so w Nawigatorje pod „Wobłukowe mjena“ jewi." #. FAErG #: cellreference_dragdrop.xhp @@ -2380,7 +2380,7 @@ "par_id3154754\n" "help.text" msgid "Using the Drag Mode icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy." -msgstr "" +msgstr "Wubjerće ze symbolom Ćehnity modus w Nawigatorje, hač poćah ma hyperwotkaz, zwjazanje abo kopija być." #. Thq7N #: cellreference_dragdrop.xhp @@ -2389,7 +2389,7 @@ "par_id3154256\n" "help.text" msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference." -msgstr "" +msgstr "Klikńće na mjeno pod „Wobłukowe mjena“ w Nawigatorje a ćehńće je do cele aktualneje tabele, hdźež chceće poćah zasadźić." #. GK9kZ #: cellreference_dragdrop.xhp @@ -2398,7 +2398,7 @@ "par_id3149565\n" "help.text" msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above." -msgstr "" +msgstr "Tuta metoda da so tež wužiwać,zo by so wobłuk z druheje tabele samsneho dokumenta do aktualneje tabele zasadźił. Wubjerće aktiwny dokument jako žórło horjeka w kroku 4." #. ANNjW #: cellreferences.xhp @@ -2407,7 +2407,7 @@ "tit\n" "help.text" msgid "Referencing a Cell in Another Document" -msgstr "" +msgstr "Poćahi na cele w druhim dokumenće" #. DLuhq #: cellreferences.xhp @@ -2416,7 +2416,7 @@ "bm_id3147436\n" "help.text" msgid "sheet references references; to cells in other sheets/documents cells; operating in another document documents;references" -msgstr "" +msgstr "tabelowe poćahipoćahi; na cele w druhich tabelach/dokumentachcele; w druhim dokumenće wužiwaćdokumenty; poćahi" #. a5WVc #: cellreferences.xhp @@ -2425,7 +2425,7 @@ "hd_id3147436\n" "help.text" msgid "Referencing Other Sheets" -msgstr "" +msgstr "Poćahi na druhe tabele" #. S3C6m #: cellreferences.xhp @@ -2434,7 +2434,7 @@ "par_id9663075\n" "help.text" msgid "In a sheet cell you can show a reference to a cell in another sheet." -msgstr "" +msgstr "W tabelowej celi móžeće poćah na celu w druhej tabeli pokazać." #. guASx #: cellreferences.xhp @@ -2443,7 +2443,7 @@ "par_id1879329\n" "help.text" msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file." -msgstr "" +msgstr "Runje tak da so poćah na celu z druheho dokumenta wutworić, pod wuměnjenjom, zo tutón dokument je so hižo jako dataja składowała." #. miL8J #: cellreferences.xhp @@ -2452,7 +2452,7 @@ "hd_id7122409\n" "help.text" msgid "To Reference a Cell in the Same Document" -msgstr "" +msgstr "Poćah na celu w samsnym dokumenće" #. EruAD #: cellreferences.xhp @@ -2461,7 +2461,7 @@ "par_id2078005\n" "help.text" msgid "Open a new, empty spreadsheet. By default, it has only a single sheet named Sheet1. Add a second sheet clicking on + button to the left of the sheet tab in the bottom (it will be named Sheet2 by default)." -msgstr "" +msgstr "Wočińće nowy, prózdny tabelowy dokument. Po standardźe ma jenož jednu tabelu z mjenom Tabela1. Klikńće na tłóčatko + nalěwo pódla tabeloweho rajtarka deleka, zo byšće druhu tabelu přidał (rěka po standardźe Tabela2)." #. paXnm #: cellreferences.xhp @@ -2470,7 +2470,7 @@ "par_id4943693\n" "help.text" msgid "By way of example, enter the following formula in cell A1 of Sheet1:" -msgstr "" +msgstr "Zapodajće na přikkad slědowacu formlu do cele A1 tabele Tabela1:" #. 2HPD8 #: cellreferences.xhp @@ -2479,7 +2479,7 @@ "par_id9064302\n" "help.text" msgid "=Sheet2.A1" -msgstr "" +msgstr "Tabela2.A1" #. zwUqn #: cellreferences.xhp @@ -2488,7 +2488,7 @@ "par_id7609790\n" "help.text" msgid "Click the Sheet 2 tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number." -msgstr "" +msgstr "Klikńće na rajtark Tabela2 deleka w tabelowym dokumenće. Stajće kursor do cele A1 a zapodajće tekst abo ličbu." #. PYRuC #: cellreferences.xhp @@ -2497,7 +2497,7 @@ "par_id809961\n" "help.text" msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change." -msgstr "" +msgstr "Jeli so k Tabela1 wróćeće, budźeće samsny wobsah tam w celi A1 widźeć. Jeli so wobsah tabele Tabela2.A1 změni, so wobsah tabele Tabela1.A1 tež změni." #. Epbaf #: cellreferences.xhp @@ -2506,7 +2506,7 @@ "par_id3147338\n" "help.text" msgid "When referencing a sheet with name containing spaces, use single quotes around the name: ='Sheet with spaces in name'.A1" -msgstr "" +msgstr "Hdyž so na tabelu poćahuje, kotrejež mjeno mjezoty wobsahuje, wužiwajće jednore pazorki wokoło mjenom: ='Tabela z mjezotami w mjenje'.A1" #. 7thQw #: cellreferences.xhp @@ -2515,7 +2515,7 @@ "par_id3147383\n" "help.text" msgid "The example uses Calc formula syntax. It is also possible to use Excel A1 or R1C1 formula syntax; this is configured on Formula options page." -msgstr "" +msgstr "Tutón přikład formlowu syntaksu Calc wužiwa. Je tež móžno, formlowu syntaksu Excel A1 abo R1C1 wužiwać; to so w Nastroje – Nastajenja… $[officename] Calc – Formla konfiguruje." #. mK8vG #: cellreferences.xhp @@ -2524,7 +2524,7 @@ "hd_id9209570\n" "help.text" msgid "To Reference a Cell in Another Document" -msgstr "" +msgstr "Zo byšće poćahi na cele w druhim dokumenće wutworił:" #. hRAmo #: cellreferences.xhp @@ -2533,7 +2533,7 @@ "par_id5949278\n" "help.text" msgid "Choose File - Open, to load an existing spreadsheet document." -msgstr "" +msgstr "Wubjerće Dataja – Wočinić…, zo byšće eksistowacu tabelowy dokument začitał." #. XywAr #: cellreferences.xhp @@ -2542,7 +2542,7 @@ "par_id8001953\n" "help.text" msgid "Choose File - New, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula." -msgstr "" +msgstr "Wubjerće Dataja – Nowy, zo byšće nowy tabelowy dokument wočinił. Stajće kursor do cele, hdźež chceće eksterne daty zasadźić a zapodajće znak runosće, zo byšće podał, zo chceće formlu zapodać." #. BrDJf #: cellreferences.xhp @@ -2551,7 +2551,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 "" +msgstr "Přeńdźće nětko k dokumentej, kotryž sće runje začitał. Klikńće do cele z datami, kotrež chceće do noweho dokumenta zasadźić." #. rCxaG #: cellreferences.xhp @@ -2560,7 +2560,7 @@ "par_id8261665\n" "help.text" msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you." -msgstr "" +msgstr "Wróćće so k nowemu tabelowemu dokumentej. W zapodawanskej lince nětko widźiće, kak $[officename] Calc je poćah na formlu za was přidał." #. VyHdU #: cellreferences.xhp @@ -2569,7 +2569,7 @@ "par_id5888241\n" "help.text" msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell." -msgstr "" +msgstr "Poćah na celu w druhim dokumenće mjeno druheho dokumenta w jednorych wyše stajenych pazorkach, kósnik (#), mjeno tabele druheho dokumenta, dypk a mjeno cele wobsahuje." #. ACCDQ #: cellreferences.xhp @@ -2578,7 +2578,7 @@ "par_id7697683\n" "help.text" msgid "Confirm the formula by clicking the green check mark." -msgstr "" +msgstr "Klikńće na zelenu hóčku, zo byšće formlu wobkrućił." #. Vp5Cb #: cellreferences.xhp @@ -2587,7 +2587,7 @@ "par_id7099826\n" "help.text" msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference." -msgstr "" +msgstr "Jeli kašćik deleka naprawo w aktiwnej celi ćahaće, zo byšće celowy wobłuk wubrał, $[officename] wotpowědne poćahi awtomatisce do susodnych celow zasadźuje. Potom so mjeno tabele ze znamješkom „$“ započina, zo by so jako absolutny poćah woznamjenił." #. hmeJR #: cellreferences.xhp @@ -2596,7 +2596,7 @@ "par_id674459\n" "help.text" msgid "If you examine the name of the other document in this formula, you will notice that it is written as a URL. This means that you can also enter a URL from the Internet." -msgstr "" +msgstr "Hdyž sej mjeno druheho dokumenta w tutej formli wobhladujeće, pytnjeće, zo je jako URL napisane. To rěka, zo móžeće tež URL z interneta zapodać." #. ABuMQ #: cellreferences_url.xhp @@ -2605,7 +2605,7 @@ "tit\n" "help.text" msgid "References to Other Sheets and Referencing URLs" -msgstr "" +msgstr "Poćahi na druhe tabele a URL" #. 7ELAq #: cellreferences_url.xhp @@ -2614,7 +2614,7 @@ "bm_id3150441\n" "help.text" msgid "HTML; in sheet cellsreferences; URL in cellscells; Internet referencesURL; in Calc" -msgstr "" +msgstr "HTML; w tabelowych celachpoćahi; URL w celachcele; internetne poćahiURL; w Calc" #. M5F2f #: cellreferences_url.xhp @@ -2623,7 +2623,7 @@ "hd_id3150441\n" "help.text" msgid "Referencing URLs" -msgstr "" +msgstr "Poćahi na URL" #. VHDGU #: cellreferences_url.xhp @@ -2632,7 +2632,7 @@ "par_id1955626\n" "help.text" msgid "For example, if you found an Internet page containing current stock exchange information in spreadsheet cells, you can load this page in $[officename] Calc by using the following procedure:" -msgstr "" +msgstr "Připušćamy. zo sće internetnu stronu namakał, kotraž aktualne bursowe informacije w tabelowych celach wobsahuje, móžeće tutu stronu w $[officename] Calc začitać, hdyž takle postupujeće:" #. 2MWuc #: cellreferences_url.xhp @@ -2641,7 +2641,7 @@ "par_id3152993\n" "help.text" msgid "In a $[officename] Calc document, position the cursor in the cell into which you want to insert the external data." -msgstr "" +msgstr "Stajće dokumenće $[officename] kursor do cele, do kotrejež chceć eeksterne daty zasadźić." #. CcnFw #: cellreferences_url.xhp @@ -2650,7 +2650,7 @@ "par_id3145384\n" "help.text" msgid "Choose Sheet - External Links. The External Data dialog appears." -msgstr "" +msgstr "Wubjerće Tabela – Eksterne zwjazanja…. Dialog Eksterne daty so zjewi." #. EQzxX #: cellreferences_url.xhp @@ -2659,7 +2659,7 @@ "par_id3152892\n" "help.text" msgid "Enter the URL of the document or Web page in the dialog. The URL must be in the format: http://www.my-bank.com/table.html. The URL for local or local area network files is the path seen in the File - Open dialog." -msgstr "" +msgstr "Zapodajće URL dokumenta abo webstrony do dialoga. URL dyrbi w formaće http://www.my-bank.com/table.html być. URL za lokalne dataje abo dataje lokalneje syće je w šćežce kaž w dialogu Datajowy – Wočinić…." #. ZVqcc #: cellreferences_url.xhp @@ -2668,7 +2668,7 @@ "par_id3153068\n" "help.text" msgid "$[officename] loads the Web page or file in the \"background\", that is, without displaying it. In the large list box of the External Data dialog, you can see the name of all the sheets or named ranges you can choose from." -msgstr "" +msgstr "$[officename] webstronu abo dataju w „pozadku“ začita, to rěka, bjeztoho by so pokazała. We wulkim lisćinowym polu dialoga Eksterne daty móžeće mjeno wšěch tabelow abo pomjenowanych wobłukow widźeć, z kotrychž móžeće wubrać." #. xzgJv #: cellreferences_url.xhp @@ -2677,7 +2677,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 "Wubjerće jednu tabelu abo jedyn pomjenowany wobłuk abo wjace. Móžeće tež awtomatisku aktualizowansku funkciju z interwalom „n“ sekundow aktiwizować a na W porjadku kliknyć." #. BQaFB #: cellreferences_url.xhp @@ -2686,7 +2686,7 @@ "par_id3157979\n" "help.text" msgid "The contents will be inserted as a link in the $[officename] Calc document." -msgstr "" +msgstr "Wobsah so jako zwjazanje do dokumenta $[officename] Calc zasadźi." #. LAC7R #: cellreferences_url.xhp @@ -2695,7 +2695,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 "Składujće swój tabelowy dokument. Hdyž jón pozdźišo wočinjeće, budźe $[officename] Calc zwjazane cele po naprašowanju aktualizować." #. tapEk #: cellreferences_url.xhp @@ -2704,7 +2704,7 @@ "par_id3159204\n" "help.text" msgid "Under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General you can choose to have the update, when opened, automatically carried out either always, upon request or never. The update can be started manually in the dialog under Edit - Links." -msgstr "" +msgstr "Pod %PRODUCTNAME – NastajenjaNastroje – Nastajenja…%PRODUCTNAME Calc – Powšitkowne móžeće wubrać, hač so ma aktualizacija při wočinjenju přewjesć, pak přeco, na naprašowanje abo ženje. Aktualizacija da so manuelnje w dialogu Wobdźěłać – Zwjazanja… startować." #. 4DFzJ #: cellstyle_by_formula.xhp @@ -2713,7 +2713,7 @@ "tit\n" "help.text" msgid "Assigning Formats by Formula" -msgstr "" +msgstr "Formaty po formli připokazać" #. ewC9e #: cellstyle_by_formula.xhp @@ -2722,7 +2722,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 "formaty; přez formle připokazaćcelow formaty; přez formle připokazaćPŘEDŁOHA (funkcija) přikładcelowe předłohi; přez formle připokazaćformle; celowe formaty připokazać" #. x3HG2 #: cellstyle_by_formula.xhp @@ -2731,7 +2731,7 @@ "hd_id3145673\n" "help.text" msgid "Assigning Formats by Formula" -msgstr "" +msgstr "Formaty přez formlu připokazać" #. EzSnh #: cellstyle_by_formula.xhp @@ -2740,7 +2740,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 "Funkcija PŘEDŁOHA() da so eksistowacej formli w celi přidać. Hromadźe z funkciju AKTUALNY na přikład móžeće celi wotwisujo wot jeje hódnoty barbu přirjadować. Formla =…+PŘEDŁOHA(JELI(AKTUALNY()>3; \"Čerwjeny\"; \"Zeleny\")) celowu předłohu \"Čerwjeny\" na cele nałožuje, jeli hódnota je wjetša hač 3, hewak so celowa předłoha \"Zeleny\" nałožuje." #. bMcgv #: cellstyle_by_formula.xhp @@ -2749,7 +2749,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 "Jeli chceće formlu na wšě cele we wubranym wobłuku nałožić, móžeće dialog Pytać a wuměnić…." #. qAH7F #: cellstyle_by_formula.xhp @@ -2758,7 +2758,7 @@ "par_id3149456\n" "help.text" msgid "Select all the desired cells." -msgstr "" +msgstr "Wubjerće wšě požadane cele." #. FyUDd #: cellstyle_by_formula.xhp @@ -2767,7 +2767,7 @@ "par_id3148797\n" "help.text" msgid "Select the menu command Edit - Find & Replace." -msgstr "" +msgstr "Wubjerće menijowy přikaz Wobdźěłać – Pytać a wuměnić…." #. STxmA #: cellstyle_by_formula.xhp @@ -2776,7 +2776,7 @@ "par_id3150767\n" "help.text" msgid "For the Find term, enter: .*" -msgstr "" +msgstr "Zapodajće wuraz .* do pola Pytać" #. EN8wF #: cellstyle_by_formula.xhp @@ -2785,7 +2785,7 @@ "par_id3153770\n" "help.text" msgid "\".*\" is a regular expression that designates the contents of the current cell." -msgstr "" +msgstr "\".*\" je regularny wuraz, kotryž wobsah aktualneje cele woznamjenja." #. r8m3j #: cellstyle_by_formula.xhp @@ -2794,7 +2794,7 @@ "par_id3153143\n" "help.text" msgid "Enter the following formula in the Replace field: =&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))" -msgstr "" +msgstr "Zapodajće slědowacu formlu do pola Wuměnić: =&+PŘEDŁOHA(JELI(AKTUALNY()>3;\"Čerwjeny\";\"Zeleny\"))" #. prHDb #: cellstyle_by_formula.xhp @@ -2803,7 +2803,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 "Symbol \"&\" aktualny wobsah pola Pytać woznamjenja. Linka dyrbi so ze znakom runosće započeć, dokelž je formla. Předpokładanje je, zo celowej předłoze \"Čerwjeny\" a \"Zeleny\" hižo eksistujetej." #. iF62Y #: cellstyle_by_formula.xhp @@ -2812,7 +2812,7 @@ "par_id3149262\n" "help.text" msgid "Mark the fields Regular expressions and Current selection only. Click Find All." -msgstr "" +msgstr "Markěrujće pola Regularne wurazy a Jenož aktualny wuběr. Klikńće na Wšě pytać." #. A3CBV #: cellstyle_by_formula.xhp @@ -2821,7 +2821,7 @@ "par_id3144767\n" "help.text" msgid "All cells with contents that were included in the selection are now highlighted." -msgstr "" +msgstr "Wšě cele z wobsahom, kotrež běchu we wuběrje wobsahowane, so nětko wuzběhuja." #. CxKWs #: cellstyle_by_formula.xhp @@ -2830,7 +2830,7 @@ "par_id3147127\n" "help.text" msgid "Click Replace all." -msgstr "" +msgstr "Klikńće na Wšě wuměnić." #. smBjq #: cellstyle_conditional.xhp @@ -2839,7 +2839,7 @@ "tit\n" "help.text" msgid "Applying Conditional Formatting" -msgstr "" +msgstr "Wuměnjene formatěrowanje nałožić" #. 3TV3y #: cellstyle_conditional.xhp @@ -2848,7 +2848,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 "wuměnjene formatěrowanje; celecele; wuměnjene formatěrowanjeformatěrowanje; wuměnjene formatěrowanjeformatowe předłohi; wuměnjene formatowe předłohicelowe formaty; wuměnjenepřipadne ličby; přikładycelowe předłohi; kopěrowaćkopěrować; celowe předłohitabele; celowe předłohi kopěrować" #. WX8sY #: cellstyle_conditional.xhp @@ -2857,7 +2857,7 @@ "hd_id3149263\n" "help.text" msgid "Applying Conditional Formatting" -msgstr "" +msgstr "Wuměnjene formatěrowanje nałožić" #. 3Feon #: cellstyle_conditional.xhp @@ -2866,7 +2866,7 @@ "par_id3159156\n" "help.text" msgid "Using the menu command Format - Conditional - Condition, the dialog allows you to define conditions per cell, which must be met in order for the selected cells to have a particular format." -msgstr "" +msgstr "Z menijowym přikazom Format – Wuměnjene formatěrowanje – Wuměnjenje… dialog wam zmóžnja, wuměnjenja na celu definować, kotrež dyrbja spjelnjene być, zo bychu wubrane cele wěsty format dóstali." #. SbhJy #: cellstyle_conditional.xhp @@ -2875,7 +2875,7 @@ "par_id8039796\n" "help.text" msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Data - Calculate - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)." -msgstr "" +msgstr "Zo byšće wuměnjene formatěrowanje nałožił, dyrbi nastajenje Awtomatisce wuličić zmóžnjene być. Wubjerće Daty – Wuličić – Awtomatisce wuličić (widźiće hóčku pódla přikaza, hdyž nastajenje Awtomatisce wuličić je zmóžnjene)." #. Yy9Z2 #: cellstyle_conditional.xhp @@ -2884,7 +2884,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 "" +msgstr "Z wuměnjenym formatěrowanjom móžeće na přikład wuslědki wuzběhnyć, kotrež přerěznu hódnotu wšěch wuslědkow překročuja. Jeli so wuslědki měnjeja, so formatěrowanje wotpowědnje měnja, bjeztoho zo byšće druhe předłohi manuelnje připokazał." #. Zn2cD #: cellstyle_conditional.xhp @@ -2893,7 +2893,7 @@ "hd_id4480727\n" "help.text" msgid "To Define the Conditions" -msgstr "" +msgstr "Zo byšće wuměnjenja definował:" #. GbyDp #: cellstyle_conditional.xhp @@ -2902,7 +2902,7 @@ "par_id3154490\n" "help.text" msgid "Select the cells to which you want to apply a conditional style." -msgstr "" +msgstr "Wubjerće cele, na kotruž chceće wuměnjene formatěrowanje nałožić." #. oEDHp #: cellstyle_conditional.xhp @@ -2911,7 +2911,7 @@ "par_id3155603\n" "help.text" msgid "Choose Format - Conditional - Condition." -msgstr "" +msgstr "Wubjerće Format – Wuměnjene formatěrowanje – Wuměnjenje…." #. AnNxD #: cellstyle_conditional.xhp @@ -2920,7 +2920,7 @@ "par_id3146969\n" "help.text" msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in $[officename] Help, and an example is provided below:" -msgstr "" +msgstr "Zapodajće wuměnjenja do dialogoweho pola. Dialog so w Pomoc $[officename] nadrobnje wopisuje, a přikład widźiće deleka:" #. xDZ66 #: cellstyle_conditional.xhp @@ -2929,7 +2929,7 @@ "hd_id3155766\n" "help.text" msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value" -msgstr "" +msgstr "Přikład wuměnjeneho formatěrowanja: Wuslědki wjetše/mjeńše hač přerězna hódnota wuzběhnyć" #. U3jUP #: cellstyle_conditional.xhp @@ -2938,7 +2938,7 @@ "hd_id4341868\n" "help.text" msgid "Step1: Generate Number Values" -msgstr "" +msgstr "Krok 1: Ličbne hódnoty generować" #. 5TVr9 #: cellstyle_conditional.xhp @@ -2947,7 +2947,7 @@ "par_id3150043\n" "help.text" msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting." -msgstr "" +msgstr "Chceće wěste hódnoty w swojich tabelach wosebje wuzběhnyć. W tabeli wotbytkow na přikład móžeće wšě hódnoty, kotrež su wjetše hač přerězk, zelene a wšě hódnoty, kotrež su mjeńše hač přerězk, čerwjene pokazać. To je z wuměnjenym formatěrowanjom móžne." #. 9zJa4 #: cellstyle_conditional.xhp @@ -2956,7 +2956,7 @@ "par_id3155337\n" "help.text" msgid "First of all, create a table in which a few different values occur. For your test you can create tables with any random numbers:" -msgstr "" +msgstr "Wubjerće najprjedy tabelu, w kotrejž někotre rozdźělne hódnoty wustupuja. Za waš test móžeće tabele z připadnymi ličbami wutworić:" #. A66qh #: cellstyle_conditional.xhp @@ -2965,7 +2965,7 @@ "par_id3149565\n" "help.text" msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)." -msgstr "" +msgstr "Zapodajće formlu =RAND() do někajkeje cele a dóstanjeće připadnu ličbu mjez 0 a 1. Jeli chceće cyłe ličby mjez 0 a 50, zapodajće formlu =INT(RAND()*50)." #. rCrEf #: cellstyle_conditional.xhp @@ -2974,7 +2974,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 "" +msgstr "Kopěrujće formlu, zo byšće linku připadnych ličbow wutworił. Klikńće deleka naprawo we wubranej celi a ćehńće doprawa, doniž požadany celowy wobłuk njeje wubrany." #. Tm6MA #: cellstyle_conditional.xhp @@ -2983,7 +2983,7 @@ "par_id3159236\n" "help.text" msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers." -msgstr "" +msgstr "Ćehńće, kaž horjeka wopisane, róžk naprawo dele, zo byšće wjace linkow z připadnymi ličbami wutworił." #. i3CTm #: cellstyle_conditional.xhp @@ -2992,7 +2992,7 @@ "hd_id3149211\n" "help.text" msgid "Step 2: Define Cell Styles" -msgstr "" +msgstr "Krok 2: Celowe předłohi definować" #. sr6WY #: cellstyle_conditional.xhp @@ -3001,7 +3001,7 @@ "par_id3154659\n" "help.text" msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles window is visible before proceeding." -msgstr "" +msgstr "Nałožće nětko celowu předłohu na wšě hódnoty, kotrež nadpřerězny wotbytk reprezentuja, a jednu za te hódnoty, kotrež su pod přerězkom. Zawěsćće, zo wokno Předłohi je widźomne, prjedy hač pokročujeće." #. CVM3G #: cellstyle_conditional.xhp @@ -3010,7 +3010,7 @@ "par_id3150883\n" "help.text" msgid "Click in a blank cell and select the command Format Cells in the context menu." -msgstr "" +msgstr "Klikńće do prózdneje cele a wubjerće přikaz Cele formatěrować w kontekstowym meniju." #. JZ7gV #: cellstyle_conditional.xhp @@ -3019,7 +3019,7 @@ "par_id3155529\n" "help.text" msgid "In the Format Cells dialog on the Background tab, click the Color button and then select a background color. Click OK." -msgstr "" +msgstr "Klikńće w dialogu Cele formatěrować na rajtark Pozadk a potom na tłóčatko Barba, zo byšće pozadkowu barbu wubrał. Klikńće potom na W porjadku." #. AwUDA #: cellstyle_conditional.xhp @@ -3028,7 +3028,7 @@ "par_id3154484\n" "help.text" msgid "In the Styles deck of the Sidebar, click the New Style from Selection icon. Enter the name of the new style. For this example, name the style \"Above\"." -msgstr "" +msgstr "Klikńće we wobłuku Předłohi bóčnicy na symbol Nowa předłoha z wuběra. Zapodajće mjeno noweje předłohi. Dajće jej na přikład mjeno „Horjeka“." #. 4bRZa #: cellstyle_conditional.xhp @@ -3037,7 +3037,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 "" +msgstr "Zo byšće druhu předłohu definował, klikńće znowa do prózdneje cele a postupujće kaž horjeka wopisane. Připokazajće druhu pozadkowu barbu za celu a potom mjeno (na přikład „Deleka“)." #. x3rxG #: cellstyle_conditional.xhp @@ -3046,7 +3046,7 @@ "hd_id3148704\n" "help.text" msgid "Step 3: Calculate Average" -msgstr "" +msgstr "Krok 3: Přerězk wuličić" #. f5sxG #: cellstyle_conditional.xhp @@ -3055,7 +3055,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 "" +msgstr "W našim přikładźe wuličujemy přerězk připadnych hódnotow. Wuslědk so w celi wudawa:" #. GhHpd #: cellstyle_conditional.xhp @@ -3064,7 +3064,7 @@ "par_id3144768\n" "help.text" msgid "Set the cursor in a blank cell, for example, J14, and choose Insert - Function." -msgstr "" +msgstr "Stajće kursor do prózdneje cele, na přikład do J14, a wubjerće Zasadźić – Funkcija." #. xCigs #: cellstyle_conditional.xhp @@ -3073,7 +3073,7 @@ "par_id3156016\n" "help.text" msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the Shrink icon." -msgstr "" +msgstr "wubjerće funkciju PŘERĚZK. Wubjerće z myšku wšě waše připadne ličby. Jeli njemóžeće cyły wobłuk widźeć, dokelž funkciski asistent jón zakrywa, móžeće nachwilu dialog ze symbolom Pomjeńšić pomjeńšić." #. YEqsh #: cellstyle_conditional.xhp @@ -3082,7 +3082,7 @@ "par_id3153246\n" "help.text" msgid "Close the Function Wizard with OK." -msgstr "" +msgstr "Začińce funkciski asistent z W porjadku." #. 75WFf #: cellstyle_conditional.xhp @@ -3091,7 +3091,7 @@ "hd_id3149898\n" "help.text" msgid "Step 4: Apply Cell Styles" -msgstr "" +msgstr "Krok 4: Celowe předłohi nałožić" #. AA6JP #: cellstyle_conditional.xhp @@ -3100,7 +3100,7 @@ "par_id3149126\n" "help.text" msgid "Now you can apply the conditional formatting to the sheet:" -msgstr "" +msgstr "Nětko móžeće wuměnjene formatěrowanje na tabelu nałožić:" #. 7YuzB #: cellstyle_conditional.xhp @@ -3109,7 +3109,7 @@ "par_id3150049\n" "help.text" msgid "Select all cells with the random numbers." -msgstr "" +msgstr "Wubjerće wšě cele z připadnymi ličbami." #. p7dEG #: cellstyle_conditional.xhp @@ -3118,7 +3118,7 @@ "par_id3153801\n" "help.text" msgid "Choose the Format - Conditional - Condition command to open the corresponding dialog." -msgstr "" +msgstr "Wubjerće přikaz Format – Wuměnjene formatěrowanje – Wuměnjenje…, zo byšće wotpowědny dialog wočinił." #. oaUQo #: cellstyle_conditional.xhp @@ -3127,7 +3127,7 @@ "par_id3153013\n" "help.text" msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"." -msgstr "" +msgstr "Definujće wuměnjenje takle: Jeli celowa hódnota je mjeńša hač J14, formatěrujće z celowej předłohu „Deleka“, a jeli celowa hódnota je wjetša abo runja J14, formatěrujće z celowej předłohu „Horjeka“." #. p9FR7 #: cellstyle_conditional.xhp @@ -3136,7 +3136,7 @@ "hd_id3155761\n" "help.text" msgid "Step 5: Copy Cell Style" -msgstr "" +msgstr "Krok 5: Celowu předłohu kopěrować" #. GBgrB #: cellstyle_conditional.xhp @@ -3145,7 +3145,7 @@ "par_id3145320\n" "help.text" msgid "To apply the conditional formatting to other cells later:" -msgstr "" +msgstr "Zo byšće wuměnjene formatěrowanje pozdźišo na druhe cele nałožił:" #. soRTt #: cellstyle_conditional.xhp @@ -3154,7 +3154,7 @@ "par_id3153074\n" "help.text" msgid "Click one of the cells that has been assigned conditional formatting." -msgstr "" +msgstr "Klikńće na jednu celow, kotrymž wuměnjene formatěrowanje je připokazane." #. 35S7X #: cellstyle_conditional.xhp @@ -3163,7 +3163,7 @@ "par_id3149051\n" "help.text" msgid "Copy the cell to the clipboard." -msgstr "" +msgstr "Kopěrujće celu do mjezyskłada." #. ogFEX #: cellstyle_conditional.xhp @@ -3172,7 +3172,7 @@ "par_id3150436\n" "help.text" msgid "Select the cells that are to receive this same formatting." -msgstr "" +msgstr "Wubjerće cele, kotrež maja samsne formatěrowanje dóstać." #. zDCnK #: cellstyle_conditional.xhp @@ -3181,7 +3181,7 @@ "par_id3147298\n" "help.text" msgid "Choose Edit - Paste Special - Paste Special. The Paste Special dialog appears." -msgstr "" +msgstr "Wubjerće Wobdźěłać – Wobsah zasadźić – Wobsah zasadźić…. Dialog Wobsah zasadźić so zjewi." #. KEnNM #: cellstyle_conditional.xhp @@ -3190,7 +3190,7 @@ "par_id3166465\n" "help.text" msgid "In the Paste area, check only the Formats box. All other boxes must be unchecked. Click OK. Or you can click the Formats only button instead." -msgstr "" +msgstr "Markěrujće we wobłuku Zasadźić jenož kontrolny kašćik Formaty. Wšě druhe nastajenja dyrbja njemarkěrowane być. Klikńće na W porjadku. Město toho móžeće tež na tłóčatko Jenož formaty kliknyć." #. rcKCW #: cellstyle_conditional.xhp @@ -3199,7 +3199,7 @@ "par_id3159123\n" "help.text" msgid "Format - Conditional - Condition" -msgstr "" +msgstr "Format – Wuměnjene formatowanje – Wuměnjenje…" #. HFoKB #: cellstyle_minusvalue.xhp @@ -3208,7 +3208,7 @@ "tit\n" "help.text" msgid "Highlighting Negative Numbers" -msgstr "" +msgstr "Negatiwne ličby wuzběhnyć" #. 9Zqdi #: cellstyle_minusvalue.xhp @@ -3217,7 +3217,7 @@ "bm_id3147434\n" "help.text" msgid "negative numbers numbers; highlighting negative numbers highlighting;negative numbers colors;negative numbers number formats;colors for negative numbers" -msgstr "" +msgstr "negatiwne ličbyličby; negatiwne ličby wuzběhnyćwuzběhnyć; negatiwne ličbybarby; negati.wne ličbyličbne formaty; barby za negatiwne ličby" #. eGjJD #: cellstyle_minusvalue.xhp @@ -3226,7 +3226,7 @@ "hd_id3147434\n" "help.text" msgid "Highlighting Negative Numbers" -msgstr "" +msgstr "Negatiwne ličby wuzběhnyć" #. YGxpk #: cellstyle_minusvalue.xhp @@ -3235,7 +3235,7 @@ "par_id3153878\n" "help.text" msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors." -msgstr "" +msgstr "Móžeće cele z ličbnym formatom formatěrować, kotryž negatiwne ličby čerwjene wuzběhuje. Móžeće wšak tež swójski ličbny format definować, w kotrymž so negatiwne ličby w druhich barbach wuzběhuja." #. ZFJHU #: cellstyle_minusvalue.xhp @@ -3244,7 +3244,7 @@ "par_id3155600\n" "help.text" msgid "Select the cells and choose Format - Cells." -msgstr "" +msgstr "Wubjerće cele a potom Format – Cele…." #. tYEZ3 #: cellstyle_minusvalue.xhp @@ -3253,7 +3253,7 @@ "par_id3146969\n" "help.text" msgid "On the Numbers tab, select a number format and mark Negative numbers red check box. Click OK." -msgstr "" +msgstr "Wubjerće w rajtarku Ličby ličbny format a markěrujće kontrolny kašćik Negatiwne ličby čerwjene. Klikńće na W porjadku." #. 23n86 #: cellstyle_minusvalue.xhp @@ -3262,7 +3262,7 @@ "par_id3145640\n" "help.text" msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under Format code. For example, instead of RED, enter YELLOW. If the new code appears in the list after clicking the Add icon, this is a valid entry." -msgstr "" +msgstr "Celowy ličbny format so w dwěmaj dźělomaj definuje. Format za pozitiwne ličby a nulu so před semikolonom definuje; za semikolonom so formla za negatiwne ličby definuje. Móžeće kod (ČERWJENY) pod zapiskom Formatowy kod změnić. Zapodajće na přikład ŽOŁTY město ČERWJENY. Jeli so nowy kod w lisćinje jewi, po tym zo sće na symbol Přidać kliknył, je zapisk płaćiwy." #. 5vG69 #: change_image_anchor.xhp @@ -3271,7 +3271,7 @@ "image_anc\n" "help.text" msgid "Changing Image Anchor in Calc" -msgstr "" +msgstr "Wobrazowu kótwičku w Calc změnić" #. Vwqvb #: change_image_anchor.xhp @@ -3280,7 +3280,7 @@ "bm_id471607970579914\n" "help.text" msgid "anchor;imageimage anchor;in Calcimage anchor in Calc;changing" -msgstr "" +msgstr "kótwička; wobrazwobrazowa kótwička; w Calcwobrazowa kótwička w Calc; změnić" #. x5Kg7 #: change_image_anchor.xhp @@ -3289,7 +3289,7 @@ "par_id851607971999527\n" "help.text" msgid "Changing the Anchor of an Image " -msgstr "" +msgstr "Kótwičku wobraza změnić" #. BoMUp #: change_image_anchor.xhp @@ -3298,7 +3298,7 @@ "par_id881607972030094\n" "help.text" msgid "Images are inserted in a Calc spreadsheet anchored to cells by default and do not resize when the cell is moved." -msgstr "" +msgstr "Wobrazy so do tabeloweho dokumenta Calc zasadźuja, kotrež su po standardźe na celach zakótwjene a kotrychž wulkosć so njeměnja, hdyž so cela přesuwa." #. gFthU #: change_image_anchor.xhp @@ -3307,7 +3307,7 @@ "par_id741607810664944\n" "help.text" msgid "Images can be anchored in three different ways:" -msgstr "" +msgstr "Wobrazy dadźa so na tři rozdźělne wašnja zakótwić:" #. WFaiX #: change_image_anchor.xhp @@ -3316,7 +3316,7 @@ "par_id351607809926451\n" "help.text" msgid "To Cell: the image will move along with the cell, when copying, sorting or inserting and deleting cells above and on the left of the cell holding the anchor." -msgstr "" +msgstr "Na celi: Wobraz so z celu přesuwa, hdyž so cele nad a nalěwo pódla cele z kótwičku kopěruja, sortěruja, zasadźuja a zhašeja." #. aFqrk #: change_image_anchor.xhp @@ -3325,7 +3325,7 @@ "par_id871607809971823\n" "help.text" msgid "To Cell (resize with cell): the image will move along with the cell. In addition, the image height and width will be resized if the cell holding the anchor is later resized. The aspect ratio of the image follows the later aspect ratio of the cell holding the anchor." -msgstr "" +msgstr "Na celi (z celu wulkosć změnić): Wobraz so z celu přesuwa. Nimo toho budźe so wulkosć wysokosće a šěrokosće wobraza měnjeć, jeli so pozdźišo wulkosć cele ze zakótwjenjom měnja. Bóčny poměr wobraza pozdźišemu bóčnemu poměrej cele ze zakótwjenjom slěduje." #. DGAiK #: change_image_anchor.xhp @@ -3334,7 +3334,7 @@ "par_id551607810008215\n" "help.text" msgid "To Page: the image position in the page is not affected by cells ordering or cells movements." -msgstr "" +msgstr "Na stronje: Pozicija wobraza na stronje so přez sortěrowanje abo přesunjenja celow njewobwliwuje." #. 97qEg #: change_image_anchor.xhp @@ -3343,7 +3343,7 @@ "hd_id151607809776222\n" "help.text" msgid "To Change the anchor of an image" -msgstr "" +msgstr "Zo byšće kótwičku wobraza změnił:" #. t5B8m #: change_image_anchor.xhp @@ -3352,7 +3352,7 @@ "par_id41607978764613\n" "help.text" msgid "Select the image and choose Format - Anchor, or, on the context menu of the image choose Anchor" -msgstr "" +msgstr "Wubjerće wobraz a potom Format – Kótwička abo wubjerćeKótwička w kontekstowym meniju wobraza." #. HUHPb #: change_image_anchor.xhp @@ -3361,7 +3361,7 @@ "par_id761607809520625\n" "help.text" msgid "The original size of the image and cell is preserved while pasting the entire row or entire column for both To Cell and To Cell (resize with cell) options." -msgstr "" +msgstr "Originalna wulkosć wobraza a cele so zachowuje, mjeztym zo so cyła linka abo cyła špalta za nastajeni Na celi a Na celi (z celu wulkosć změnić) zasadźuje." #. G5Dfz #: consolidate.xhp @@ -3370,7 +3370,7 @@ "tit\n" "help.text" msgid "Consolidating Data" -msgstr "" +msgstr "Daty konsolidować" #. dEYi9 #: consolidate.xhp @@ -3379,7 +3379,7 @@ "bm_id3150791\n" "help.text" msgid "consolidating data ranges; combining combining;cell ranges tables; combining data; merging cell ranges merging;data ranges" -msgstr "" +msgstr "daty konsolidowaćwobłuki; kombinowaćkombinować; celowe wobłukitabele; kombinowaćdaty; celowe wobłuki zjednocićzjednoćić; datowe wobłuki" #. 6ZGGL #: consolidate.xhp @@ -3388,7 +3388,7 @@ "hd_id3150791\n" "help.text" msgid "Consolidating Data" -msgstr "" +msgstr "Daty konsolidować" #. dcJqU #: consolidate.xhp @@ -3397,7 +3397,7 @@ "par_id3153191\n" "help.text" msgid "During consolidation, the contents of the cells from several sheets will be combined in one place." -msgstr "" +msgstr "Při konsolidowanju so wobsah celow z rozdźělnych tabelow na jednym městnje kombinuje." #. GyvFB #: consolidate.xhp @@ -3406,7 +3406,7 @@ "hd_id892056\n" "help.text" msgid "To Combine Cell Contents" -msgstr "" +msgstr "Zo byšće celowy wobsah kombinował:" #. 4tD6G #: consolidate.xhp @@ -3415,7 +3415,7 @@ "par_id3151073\n" "help.text" msgid "Open the document that contains the cell ranges to be consolidated." -msgstr "" +msgstr "Wočińće dokument, kotryž celowe wobłuki wobsahuje, kotrež so maja konsolidować." #. 77VUk #: consolidate.xhp @@ -3424,7 +3424,7 @@ "par_id3154513\n" "help.text" msgid "Choose Data - Consolidate to open the Consolidate dialog." -msgstr "" +msgstr "Wubjerće Daty – Konsolidować…, zo byšće dialog Konsolidować wočinił." #. hJHqN #: consolidate.xhp @@ -3433,7 +3433,7 @@ "par_id3147345\n" "help.text" msgid "From the Source data area box select a source cell range to consolidate with other areas." -msgstr "" +msgstr "Wubjerće z pola Wobłuk žórłowych datow žórłowy celowy wobłuk, zo byšće jón z druhimi wobłukami konsolidował." #. CvGP2 #: consolidate.xhp @@ -3442,7 +3442,7 @@ "par_id3149209\n" "help.text" msgid "If the range is not named, click in the field next to the Source data area. A blinking text cursor appears. Type a reference for the first source data range or select the range with the mouse." -msgstr "" +msgstr "Jeli wobłuk mjeno nima, klikńće do pola pódla Wobłuk žórłowych datow. Błyskotacy tekstowy kursor so zjewi. Zapodajće poćah za prěni wobłuk žórłowych datow abo wubjerće wobłuk z myšku." #. zSGyD #: consolidate.xhp @@ -3451,7 +3451,7 @@ "par_id3155529\n" "help.text" msgid "Click Add to insert the selected range in the Consolidation areas field." -msgstr "" +msgstr "Klikńće na Přidać, zo byšće wubrany wobłuk do pola Konsolidaciske wobłuki zasadźił." #. Fo56E #: consolidate.xhp @@ -3460,7 +3460,7 @@ "par_id3153816\n" "help.text" msgid "Select additional ranges and click Add after each selection." -msgstr "" +msgstr "Wubjerće přidatne wobłuki a klikńće na Přidać po kóždym wuběrje." #. 85CXx #: consolidate.xhp @@ -3469,7 +3469,7 @@ "par_id3157983\n" "help.text" msgid "Specify where you want to display the result by selecting a target range from the Copy results to box." -msgstr "" +msgstr "Wubjerće cilowy wobłuk z pola Wuslědki kopěrować, zo byšće podał, hdźež so ma wuslědk pokazać." #. UByCi #: consolidate.xhp @@ -3478,7 +3478,7 @@ "par_id3150215\n" "help.text" msgid "If the target range is not named, click in the field next to Copy results to and enter the reference of the target range. Alternatively, you can select the range using the mouse or position the cursor in the top left cell of the target range." -msgstr "" +msgstr "Jeli cilowy wobłuk mjeno nima, klikńće do pola pódla Wuslědki kopěrować a zapodajće poćah ciloweho wobłuka. Móžeće wšak tež wobłuk z myšku wubrać abo kursor do cele horjeka nalěwo w cilowym wobłuku stajić." #. JvD9q #: consolidate.xhp @@ -3487,7 +3487,7 @@ "par_id3153813\n" "help.text" msgid "Select a function from the Function box. The function specifies how the values of the consolidation ranges are linked. The \"Sum\" function is the default setting." -msgstr "" +msgstr "Wubjerće funkciju z pola Funkcija. Funkija podawa, kak so hódnoty konsolidaciskich wobłukow zwjazuja. Funkcija „Suma“ je standardne nastajenje." #. Z3iG2 #: consolidate.xhp @@ -3496,7 +3496,7 @@ "par_id3149315\n" "help.text" msgid "Click OK to consolidate the ranges." -msgstr "" +msgstr "Klikńće na W porjadku, zo byšće wobłuki konsolidował." #. qbEFs #: consolidate.xhp @@ -3505,7 +3505,7 @@ "par_idN107DE\n" "help.text" msgid "Additional Settings" -msgstr "" +msgstr "Přidatne nastajenja" #. BSAXP #: consolidate.xhp @@ -3514,7 +3514,7 @@ "par_id3147250\n" "help.text" msgid "Click More in the Consolidate dialog to display additional settings:" -msgstr "" +msgstr "Klikńće na Wjace w dialogu Konsolidować, zo byšće přidatne nastajenja pokazał." #. DEEPq #: consolidate.xhp @@ -3523,7 +3523,7 @@ "par_id3156400\n" "help.text" msgid "Select Link to source data to insert the formulas that generate the results in the target range, rather than the actual results. If you link the data, any values modified in the source range are automatically updated in the target range." -msgstr "" +msgstr "Wubjerće Ze žórłowymi datami zwjazać, zo byšće formle zasadźił, kotrež wuslědki w cilowym wobłuku generuja a nic woprawdźite wuslědki. Jeli daty zwjazujeće, so w žórłowym wobłuku změnjene hódnoty w cilowym wobłuku awtomatisce aktualizuja." #. VJPHa #: consolidate.xhp @@ -3532,7 +3532,7 @@ "par_id3150538\n" "help.text" msgid "The corresponding cell references in the target range are inserted in consecutive rows, which are automatically ordered and then hidden from view. Only the final result, based on the selected function, is displayed." -msgstr "" +msgstr "Wotpowědne celowe poćahi w cilowym wobłuku so w na so slědowacych linkach zasadźuja, kotrež so awtomatisce rjaduja a potom chowaja. Jenož kónčny wuslědk so na zakładźe wubraneje funkcije pokazuje." #. UubEm #: consolidate.xhp @@ -3541,7 +3541,7 @@ "par_id3149945\n" "help.text" msgid "Under Consolidate by, select either Row labels or Column labels if the cells of the source data range are not to be consolidated corresponding to the identical position of the cell in the range, but instead according to a matching row label or column label." -msgstr "" +msgstr "Wubjerće pod Konsolidować po pak Linkowe popisy abo Špaltowe popisy, jeli cele wobłuka žórłowych datow nimaja so po identiskej poziciji cele we wobłuku konsolidować, ale město toho po wotpowědnemu linkowemu abo špaltowemu popisej." #. AEjpi #: consolidate.xhp @@ -3550,7 +3550,7 @@ "par_id3157871\n" "help.text" msgid "To consolidate by row labels or column labels, the label must be contained in the selected source ranges." -msgstr "" +msgstr "Zo byšće po linkowych abo špaltowych popisach konsolidował, dyrbi popis we wubranych žórłowych wobłukach wobsahowany być." #. mQ3x2 #: consolidate.xhp @@ -3559,7 +3559,7 @@ "par_id3150478\n" "help.text" msgid "The text in the labels must be identical, so that rows or columns can be accurately matched. If the row or column label does not match any that exist in the target range, it will be appended as a new row or column." -msgstr "" +msgstr "Tekst w popisach dyrbi identiski być, zo bychu linki abo špalty dadźa so prawje přirjadowali. Jeli linkowy abo špaltowy popis žanomu wotpowěduje, kotryž w cilowym wobłuku, budźe so jako nowa linka abo špalta připowěšeć." #. UMqz7 #: consolidate.xhp @@ -3568,7 +3568,7 @@ "par_id3147468\n" "help.text" msgid "The data from the consolidation ranges and target range will be saved when you save the document. If you later open a document in which consolidation has been defined, this data will again be available." -msgstr "" +msgstr "Daty z konsolidaciskich wobłukow a ciloweho wobłuka so składuja, hdyž dokument składujeće. Jeli pozdźišo dokument wočinjeće, w kotrymž je so konsolidacija definowała, budu te daty zaso k dispoziciji." #. BzNqC #: consolidate.xhp @@ -3577,7 +3577,7 @@ "par_id3153039\n" "help.text" msgid "Data - Consolidate" -msgstr "" +msgstr "Daty – Konsolidować…" #. UNSjU #: csv_files.xhp @@ -3586,7 +3586,7 @@ "tit\n" "help.text" msgid "Importing and Exporting CSV Files" -msgstr "" +msgstr "CSV-dataje importować a eksportować" #. wBHVA #: csv_files.xhp @@ -3595,7 +3595,7 @@ "bm_id892361\n" "help.text" msgid "number series importdata series importexporting; tables as textimporting; tables as textdelimited values and filescomma separated files and valuestext file import and exportcsv files;importing and exportingtables; importing/exporting as texttext documents; importing to spreadsheetsopening;text csv filessaving;as text csv" -msgstr "" +msgstr "import ličbnych rjadowimport datowych rjadoweksportować; tabele jako tekstimportować; tabele jako tekstwotmjezowane hódnoty a datajepřez komu dźělene dataje a hódnotyimport a eksport tekstoweje datajeCSV-dataje; importować a eksportowaćtabele; jako tekst importować/eksportowaćtekstowe dokumenty; do tabelowych dokumentow importowaćwočinić; tekstowe CSV-datajeskładować; jako tekstowy CSV" #. JZMzq #: csv_files.xhp @@ -3604,7 +3604,7 @@ "par_idN10862\n" "help.text" msgid "Opening and Saving Text CSV Files" -msgstr "" +msgstr "Tekstowe CSV-dataje wočinić a składować" #. e4NjR #: csv_files.xhp @@ -3613,7 +3613,7 @@ "par_idN10880\n" "help.text" msgid "Comma Separated Values (CSV) is a text file format that you can use to exchange data from a database or a spreadsheet between applications. Each line in a Text CSV file represents a record in the database, or a row in a spreadsheet. Each field in a database record or cell in a spreadsheet row is usually separated by a comma. However, you can use other characters to delimit a field, such as a tabulator character." -msgstr "" +msgstr "Přez komu dźělene hódnoty (CSV) je format tekstoweje dataje, kotryž móžeće wužiwać, zo byšće daty z datoweje banki abo tabeloweho dokumenta mjez nałoženjemi wuměnił. Kóžda linka w tekstowej CSV-dataji datowu sadźbu w datowej bance reprezentuje, abo linku w tabelowym dokumenće. Kóžde polo w datowej sadźbje datoweje banki abo kóžda cela w tabelowym dokumenće so zwjetša přez komu dźělena wužiwa. Móžeće wšak druhe znamješka wužiwać, zo byšće polo wotmjezował, na přikład tabulator." #. TG3zV #: csv_files.xhp @@ -3622,7 +3622,7 @@ "par_idN10886\n" "help.text" msgid "If the field or cell contains a comma, the field or cell must be enclosed by single quotes (') or double quotes (\")." -msgstr "" +msgstr "Jeli polo abo cela komu wobsahuje, dyrbi so polo abo cela z jednorymi pazorkami (') abo dwójnymi pazorkami (\") wobdać." #. dUgWo #: csv_files.xhp @@ -3631,7 +3631,7 @@ "par_idN10890\n" "help.text" msgid "To Open a Text CSV File in Calc" -msgstr "" +msgstr "Zo byšće tekstowu CSV-dataju w Calc wočinił:" #. LYnP5 #: csv_files.xhp @@ -3640,7 +3640,7 @@ "par_idN10897\n" "help.text" msgid "Choose File - Open." -msgstr "" +msgstr "Wubjerće Dataja – Wočinić…." #. UgyWE #: csv_files.xhp @@ -3649,7 +3649,7 @@ "par_idN1089F\n" "help.text" msgid "Locate the CSV file that you want to open." -msgstr "" +msgstr "Pytajće za CSV-dataju, kotruž chceće wočinić." #. SqwSh #: csv_files.xhp @@ -3658,7 +3658,7 @@ "par_idN108A2\n" "help.text" msgid "If the file has a *.csv extension, select the file." -msgstr "" +msgstr "Jeli dataja ma kóncowku *.csv, wubjerće dataju." #. DQq7Q #: csv_files.xhp @@ -3667,7 +3667,7 @@ "par_idN108A5\n" "help.text" msgid "If the CSV file has another extension, select the file, and then select \"Text CSV\" in the Filter box" -msgstr "" +msgstr "Jeli CSV-dataja ma druhu kóncowku, wubjerće dataju a potom „Tekst csv“ w dialogu Datajowy typ" #. FEBAD #: csv_files.xhp @@ -3676,7 +3676,7 @@ "par_idN1082D\n" "help.text" msgid "Click Open." -msgstr "" +msgstr "Klikńće na Öffnen. (słuša k dźěłowemu systemej)" #. rUWLQ #: csv_files.xhp @@ -3685,7 +3685,7 @@ "par_idN10834\n" "help.text" msgid "The Text Import dialog opens." -msgstr "" +msgstr "Dialog Tekstowy import so wočinja." #. uc87k #: csv_files.xhp @@ -3694,7 +3694,7 @@ "par_idN108B1\n" "help.text" msgid "Specify the options to divide the text in the file into columns." -msgstr "" +msgstr "Podajće nastajenja, zo byšće tekst w dataji do špaltow rozdźělił." #. azv5J #: csv_files.xhp @@ -3703,7 +3703,7 @@ "par_idN108BB\n" "help.text" msgid "You can preview the layout of the imported data at the bottom of the Text Import dialog." -msgstr "" +msgstr "Móžeće přehlad wuhotowanja importowanych datow deleka w dialogu Tekstowy import widźeć." #. UjzC5 #: csv_files.xhp @@ -3712,7 +3712,7 @@ "par_id8444166\n" "help.text" msgid "Right-click a column in the preview to set the format or to hide the column." -msgstr "" +msgstr "Klikńće z prawej tastu myški do přehlada, zo byšće špaltu formatěrował abo schował." #. SAMDV #: csv_files.xhp @@ -3721,7 +3721,7 @@ "par_idN108E2\n" "help.text" msgid "Check the text delimiter box that matches the character used as text delimiter in the file. In case of an unlisted delimiter, type the character into the input box." -msgstr "" +msgstr "Markěrujće kašćik tekstoweho dźělatka, kotryž znamješku wotpowěduje, kotrež so ma jako tekstowe dźělatko w dataji wužiwać. Jeli dźělatko podate njeje, zapodajće znamješko do zapodawanskeho pola." #. Ztzey #: csv_files.xhp @@ -3730,7 +3730,7 @@ "par_idN108C5\n" "help.text" msgid "Click OK." -msgstr "" +msgstr "Klikńće na W porjadku." #. QTrWA #: csv_files.xhp @@ -3739,7 +3739,7 @@ "par_idN108FA\n" "help.text" msgid "To Save a Sheet as a Text CSV File" -msgstr "" +msgstr "Zo byšće tabelu jako tekstowu CSV-dataju składował:" #. pyPuY #: csv_files.xhp @@ -3748,7 +3748,7 @@ "par_idN106FC\n" "help.text" msgid "When you export a spreadsheet to CSV format, only the data on the current sheet is saved. All other information, including formulas and formatting, is lost." -msgstr "" +msgstr "Hdyž tabelowy dokument do cSV-formata eksportował, so jenož daty aktualneje tabele składuja. Wšě druhe informacije, mze nimi formle a formatěrowanje, so zhubja." #. AyeuD #: csv_files.xhp @@ -3757,7 +3757,7 @@ "par_idN10901\n" "help.text" msgid "Open the Calc sheet that you want to save as a Text CSV file." -msgstr "" +msgstr "Wočińće tabelu Calc, kotruž chceće jako dataju tekstoweho CSV składować." #. SG978 #: csv_files.xhp @@ -3766,7 +3766,7 @@ "par_idN107AF\n" "help.text" msgid "Only the current sheet can be exported." -msgstr "" +msgstr "Jenož aktualna tabela da so eksportować." #. qznpi #: csv_files.xhp @@ -3775,7 +3775,7 @@ "par_idN10905\n" "help.text" msgid "Choose File - Save as." -msgstr "" +msgstr "Wubjerće Dataja – Składować jako." #. 3y6rF #: csv_files.xhp @@ -3784,7 +3784,7 @@ "par_idN10915\n" "help.text" msgid "In the File name box, enter a name for the file." -msgstr "" +msgstr "Zapodajće mjeno za dataju do pola Dateiname. (Słuša k dźěłowemu systemej)" #. EDhEz #: csv_files.xhp @@ -3793,7 +3793,7 @@ "par_idN1090D\n" "help.text" msgid "In the Filter box, select \"Text CSV\"." -msgstr "" +msgstr "Wubjerće „Text CSV“ w polu Datajowy typ." #. 2JC8V #: csv_files.xhp @@ -3802,7 +3802,7 @@ "par_idN107DD\n" "help.text" msgid "(Optional) Set the field options for the Text CSV file." -msgstr "" +msgstr "(Na přeće) Postajće pólne nastajenja za dataju tekstoweho CSV." #. 6KsfG #: csv_files.xhp @@ -3811,7 +3811,7 @@ "par_idN1091C\n" "help.text" msgid "Select Edit filter settings." -msgstr "" +msgstr "Wubjerće Filtrowe nastajenja wobdźěłać." #. VXtFE #: csv_files.xhp @@ -3820,7 +3820,7 @@ "par_idN107ED\n" "help.text" msgid "In the Export of text files dialog, select the options that you want." -msgstr "" +msgstr "Wubjerće w dialogu Tekst eksportować požadane nastajenja." #. HFtDt #: csv_files.xhp @@ -3829,7 +3829,7 @@ "par_idN107F4\n" "help.text" msgid "Click OK." -msgstr "" +msgstr "Klikńće na W porjadku." #. zCCwW #: csv_files.xhp @@ -3838,7 +3838,7 @@ "par_idN107FC\n" "help.text" msgid "Click Save." -msgstr "" +msgstr "Klikńće na Składować." #. hDd2A #: csv_files.xhp @@ -3847,7 +3847,7 @@ "par_id3153487\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View" -msgstr "" +msgstr "%PRODUCTNAME – NastajenjaNastroje – Nastajenja%PRODUCTNAME Calc – Napohlad" #. Dir44 #: csv_files.xhp @@ -3856,7 +3856,7 @@ "par_id3153008\n" "help.text" msgid "Export text files" -msgstr "" +msgstr "Tekst eksportować" #. GANDZ #: csv_files.xhp @@ -3865,7 +3865,7 @@ "par_id3155595\n" "help.text" msgid "Import text files" -msgstr "" +msgstr "Tekstowy import" #. ounFQ #: csv_formula.xhp @@ -3874,7 +3874,7 @@ "tit\n" "help.text" msgid "Importing and Exporting Text Files" -msgstr "" +msgstr "Tekstowe dataje importować a eksportować" #. AzAKW #: csv_formula.xhp @@ -3883,7 +3883,7 @@ "bm_id3153726\n" "help.text" msgid "csv files;formulas formulas; importing/exporting as csv files exporting;formulas as csv files importing;csv files with formulas" -msgstr "" +msgstr "CSV-dataje; formleformle; jako CSV-dataje importować/eksportowaćeksportować; formle jako CSV-datajeimportować; CSV-dataje z formlemi" #. HJThG #: csv_formula.xhp @@ -3892,7 +3892,7 @@ "hd_id3153726\n" "help.text" msgid "Importing and Exporting CSV Text Files with Formulas" -msgstr "" +msgstr "Tekstowe CSV-dataje z formlemi importować a eksportować" #. 7kmDr #: csv_formula.xhp @@ -3901,7 +3901,7 @@ "par_id3149402\n" "help.text" msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks." -msgstr "" +msgstr "CSV-dataje (z komu dźělene dataje) su tekstowe dataje, kotrež celowy wobsah jednotliweje tabele wobsahuja. Komy, semikolony abo druhe znamješka dadźa so jako pólne dźělatka mjez celemi wužiwać. Tekstowe znamješkowe rjećazki so w pazorkach stajeja, ličby so bjez pazorkow pisaja." #. 5E4aN #: csv_formula.xhp @@ -3910,7 +3910,7 @@ "hd_id3150715\n" "help.text" msgid "To Import a CSV File" -msgstr "" +msgstr "Zo byšće CSV-dataju importował:" #. iNsCc #: csv_formula.xhp @@ -3919,7 +3919,7 @@ "par_id3153709\n" "help.text" msgid "Choose File - Open." -msgstr "" +msgstr "Wubjerće Dataja – Wočinić." #. iPsQg #: csv_formula.xhp @@ -3928,7 +3928,7 @@ "par_id3155445\n" "help.text" msgid "In the File type field, select the format \"Text CSV\". Select the file and click Open. When a file has the .csv extension, the file type is automatically recognized." -msgstr "" +msgstr "Wubjerće w polu Datajowy typ format \"Text CSV\". Wubjerće dataju a klikńće na Öffnen (słuša k dźěłowemu systemej). Hdyž dataja ma kóncowku .csv, so datajowy typ awtomatisce spóznawa." #. U4nRf #: csv_formula.xhp @@ -3937,7 +3937,7 @@ "par_id3149565\n" "help.text" msgid "You will see the Text Import dialog. Click OK." -msgstr "" +msgstr "Widźiće dialog Tekstowy import. Klikńće na W porjadku." #. adhCg #: csv_formula.xhp @@ -3946,7 +3946,7 @@ "par_id3149255\n" "help.text" msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View and clear the Formulas check box." -msgstr "" +msgstr "Jeli CSV-dataja formle wobsahuje, wy wšak chceće wuslědk tych formlow importować, wubjerće %PRODUCTNAME – NastajenjaNastroje – Nastajenja – %PRODUCTNAME Calc – Napohlad a wotstrońće hóčku z kontrolneho kašćika Formle." #. JTAdg #: csv_formula.xhp @@ -3955,7 +3955,7 @@ "hd_id3154022\n" "help.text" msgid "To Export Formulas and Values as CSV Files" -msgstr "" +msgstr "Zo byšće formle a hódnoty jako CSV-dataje eksportował:" #. fWwZt #: csv_formula.xhp @@ -3964,7 +3964,7 @@ "par_id3150342\n" "help.text" msgid "Click the sheet to be written as a csv file." -msgstr "" +msgstr "Klikńće do tabele, kotraž ma CSV-dataja być." #. nJJjE #: csv_formula.xhp @@ -3973,7 +3973,7 @@ "par_id3166423\n" "help.text" msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:" -msgstr "" +msgstr "Jeli chceće formle jako formle eksportować, na přikład we formje =SUMA(A1:B5), postupujće takle:" #. S9LAC #: csv_formula.xhp @@ -3982,7 +3982,7 @@ "par_id3155111\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "" +msgstr "Wubjerće %PRODUCTNAME – NastajenjaNastroje – Nastajenja – %PRODUCTNAME Calc – Napohlad." #. 4oXKB #: csv_formula.xhp @@ -3991,7 +3991,7 @@ "par_id3150200\n" "help.text" msgid "Under Display, mark the Formulas check box. Click OK." -msgstr "" +msgstr "Markěrujće kontrolny kašćik Formle we wobłuku Pokazać. Klikńće na W porjadku." #. iwN9i #: csv_formula.xhp @@ -4000,7 +4000,7 @@ "par_id3154484\n" "help.text" msgid "If you want to export the calculation results instead of the formulas, do not mark Formulas." -msgstr "" +msgstr "Jeli wšak chceće wuslědki wuličenja město formlow eksportować, njemarkěrujće kontrolny kašćik Formle." #. a5ChK #: csv_formula.xhp @@ -4009,7 +4009,7 @@ "par_id3148702\n" "help.text" msgid "Choose File - Save as. You will see the Save as dialog." -msgstr "" +msgstr "Wubjerće Dataja – Składować jako…. Widźiće dialog Speichern unter (słuša k dźěłowemu systemej)." #. wc7Fy #: csv_formula.xhp @@ -4018,7 +4018,7 @@ "par_id3153912\n" "help.text" msgid "In the File type field select the format \"Text CSV\"." -msgstr "" +msgstr "Wubjerće w polu Dateityp (słuša k dźěłowemu systemej) format „Tekst CSV“." #. jFEFh #: csv_formula.xhp @@ -4027,7 +4027,7 @@ "par_id3157978\n" "help.text" msgid "Enter a name and click Save." -msgstr "" +msgstr "Zapodajće mjeno a klikńće na Speichern (słuša k dźěłowemu systemej)." #. Z69Sc #: csv_formula.xhp @@ -4036,7 +4036,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 "" +msgstr "Wubjerće z dialoga Tekstowu dataju eksportować, kotryž so jewi, znamješkowu sadźbu a pólne a tekstowe dźělatka za daty, kotrež so maja eksportować a wobkrućće z W porjadku." #. yPP3a #: csv_formula.xhp @@ -4045,7 +4045,7 @@ "par_id3150050\n" "help.text" msgid "If necessary, after you have saved, clear the Formulas check box to see the calculated results in the table again." -msgstr "" +msgstr "Jeli trjeba, wotstrońće hóčku z kontroneho kašćika Formle, po tym zo sće składował, zo byšće wuličene wuslědki w tabelu zaso widźał." #. LejdP #: csv_formula.xhp @@ -4054,7 +4054,7 @@ "par_id3153487\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View" -msgstr "" +msgstr "%PRODUCTNAME – NastajenjaNastroje – Nastajenja%PRODUCTNAME Calc – Napohlad" #. GgLZh #: csv_formula.xhp @@ -4063,7 +4063,7 @@ "par_id3153008\n" "help.text" msgid "Export text files" -msgstr "" +msgstr "Tekstowe dataje eksportować" #. DHxaC #: csv_formula.xhp @@ -4072,7 +4072,7 @@ "par_id3155595\n" "help.text" msgid "Import text files" -msgstr "" +msgstr "Tekstowe dataje importować" #. s2isa #: currency_format.xhp @@ -4081,7 +4081,7 @@ "tit\n" "help.text" msgid "Cells in Currency Format" -msgstr "" +msgstr "Cele w měnowym formaće" #. XgZWi #: currency_format.xhp @@ -4090,7 +4090,7 @@ "bm_id3156329\n" "help.text" msgid "currency formats; spreadsheetscells; currency formatsinternational currency formatsformats; currency formats in cellscurrencies; default currenciesdefaults;currency formatschanging;currency formats" -msgstr "" +msgstr "měnowe formaty; tabelowe dokumentycele; měnowe formatymjezynarodne měnowe formatyformaty; měnowe formaty w celachměny; standardne měnypřednastajenja; měnowe formatyzměnić; měnowe formaty" #. Dwibg #: currency_format.xhp @@ -4099,7 +4099,7 @@ "hd_id3156329\n" "help.text" msgid "Cells in Currency Format" -msgstr "" +msgstr "Cele w měnowym formaće" #. Tq9vD #: currency_format.xhp @@ -4108,7 +4108,7 @@ "par_id3153968\n" "help.text" msgid "In %PRODUCTNAME Calc you can give numbers any currency format. When you click the Currency icon Icon in the Formatting bar to format a number, the cell is given the default currency format set under %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "" +msgstr "W %PRODUCTNAME Calc móžeće ličby měnowy format připokazać. Hdyž na symbol Měna Symbol w lajsće Formatěrowanje klikać, zo byšće ličbu formatěrował, cela standardny měnowy format dóstawa, kotryž je pod %PRODUCTNAME – NastajenjaNastroje – Nastajenja – Rěčne nastajenja – Rěče nastajeny." #. UWxwb #: currency_format.xhp @@ -4117,7 +4117,7 @@ "par_id3150010\n" "help.text" msgid "Exchanging of %PRODUCTNAME Calc documents can lead to misunderstandings, if your %PRODUCTNAME Calc document is loaded by a user who uses a different default currency format." -msgstr "" +msgstr "Wuměna dokumentow %PRODUCTNAME Calc móže k njedorozumjenjam wjesć, jeli so waš dokument %PRODUCTNAME Calc wot wužiwarja začita, kotryž druhi standardny měnowy format wužiwa." #. 7Kq8i #: currency_format.xhp @@ -4126,7 +4126,7 @@ "par_id3156442\n" "help.text" msgid "In %PRODUCTNAME Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars." -msgstr "" +msgstr "W %PRODUCTNAME Calc móžeće postajić, zo ličba, kotraž sće jako „1.234,50 €“ formatěrował, tež w druhim kraju w eurach wostawa a so do dolarow njezměni." #. fBUBn #: currency_format.xhp @@ -4135,7 +4135,7 @@ "par_id3151075\n" "help.text" msgid "You can change the currency format in the Format Cells dialog (choose Format - Cells - Numbers tab) by two country settings. In the Language combo box select the basic setting for decimal and thousands separators. In the Format list box you can select the currency symbol and its position." -msgstr "" +msgstr "Móžeće měnowy format w dialogu Cele formatować změnić (wubjerće Format – Cele… – Rajtark: Ličby z dwěmaj krajnymaj nastajenjomaj změnić. Wubjerće w kombinaciskim polu Rěč zakładne nastajenje za decimalne a tysacowkowe dźělatko. W lisćinowym polu Format móžeće měnowy symbol a jeho poziciju wubrać." #. 7b98J #: currency_format.xhp @@ -4144,7 +4144,7 @@ "par_id3150749\n" "help.text" msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the Format list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting." -msgstr "" +msgstr "Jeli na přikład rěč je na „Standard“ nastajena a wužiwaće nastajenje němskeje narodneje šemy, budźe měnowy format „1.234,00 €“. Dypk so jako tysacowkowe dźělatko a koma jako decimalne dzělatko wužiwa. Jeli nětko podrjadowany měnowy format „$ Jendźelšćina (US)“ z lisćinoweho pola Format wuběraće, dóstanjeće format: „$ 1.234,00“. Kaž móžeće widźeć, stej dźělatce samsnej wostałoj. Jenož měnowy symbol je so změnił a přetworił, ale format pisanja samsny kaž w nastajenju narodneje šemy wostawa." #. MNnnJ #: currency_format.xhp @@ -4153,7 +4153,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 "" +msgstr "Jeli pod Rěč cele do „Jendźelšćina (US)“ přetworjeće, so nastajenje jendźelskeje narodneje šemy přenošuje a standardny měnowy format je nětko „$ 1,234.00“." #. sHgcT #: currency_format.xhp @@ -4162,7 +4162,7 @@ "par_id3154255\n" "help.text" msgid "Format - Cells - Numbers" -msgstr "" +msgstr "Format – Cele… – Rajtark: Ličby" #. QoTwd #: database_define.xhp @@ -4171,7 +4171,7 @@ "tit\n" "help.text" msgid "Defining Database Ranges" -msgstr "" +msgstr "Wobłuki datoweje banki definować" #. vjEu6 #: database_define.xhp @@ -4180,7 +4180,7 @@ "bm_id3154758\n" "help.text" msgid "tables; database ranges database ranges; defining ranges; defining database ranges defining;database ranges" -msgstr "" +msgstr "tabele; wobłuki datoweje bankiwobłuki datoweje banki; definowaćwobłuki; wobłuki datoweje banki definowaćdefinować; wobłuki datoweje banki" #. otSAA #: database_define.xhp @@ -4189,7 +4189,7 @@ "hd_id3154758\n" "help.text" msgid "Defining a Database Range" -msgstr "" +msgstr "Wobłuk datoweje banki definować" #. 4BdV5 #: database_define.xhp @@ -4198,7 +4198,7 @@ "par_id3153768\n" "help.text" msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database." -msgstr "" +msgstr "Móžeće celowy wobłuk w tabelowym dokumenće definować, zo byšće jón jako datowu banku wužiwał. Kóžda linka we wobłuku datoweje banki datowej sadźbje wotpowěduje a kóžda cela w lince wotpowěduje polu datoweje banki. Móžeće wuličenja za wobłuk sortěrować, zeskupić a wuwjesć, kaž je w datowej bance." #. YkmRD #: database_define.xhp @@ -4207,7 +4207,7 @@ "par_id3145801\n" "help.text" msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view." -msgstr "" +msgstr "Maće jenož přistup k wobłukej datoweje banki w tabelowym dokumenće, kotryž wobłuk wobsahuje a jenož jón móžeće wobdźěłać. Nimaće přistup k wobłukej datoweje banki w napohledźe datowych žórłow %PRODUCTNAME." #. 7A9DZ #: database_define.xhp @@ -4216,7 +4216,7 @@ "par_idN10648\n" "help.text" msgid "To define a database range" -msgstr "" +msgstr "Zo byšće wobłuk datoweje banki definował:" #. ViixK #: database_define.xhp @@ -4225,7 +4225,7 @@ "par_id3155064\n" "help.text" msgid "Select the range of cells that you want to define as a database range." -msgstr "" +msgstr "Wubjerće celowy wobłuk, kotryž chceće jako wobłuk datoweje banki definować." #. koZRd #: database_define.xhp @@ -4234,7 +4234,7 @@ "par_idN10654\n" "help.text" msgid "Choose Data - Define Range." -msgstr "" +msgstr "Wubjerće Daty – Wobłuk definować…." #. C4Pvr #: database_define.xhp @@ -4243,7 +4243,7 @@ "par_id3153715\n" "help.text" msgid "In the Name box, enter a name for the database range." -msgstr "" +msgstr "Zapodajće mjeno za wobłuk datoweje banki do pola Mjeno." #. 2X6GR #: database_define.xhp @@ -4252,7 +4252,7 @@ "par_idN1066A\n" "help.text" msgid "Click More." -msgstr "" +msgstr "Klikńće na Wjace." #. zp2Nx #: database_define.xhp @@ -4261,7 +4261,7 @@ "par_id3154253\n" "help.text" msgid "Specify the options for the database range." -msgstr "" +msgstr "Podajće nastajenja za wobłuk datoweje banki." #. gDERf #: database_define.xhp @@ -4270,7 +4270,7 @@ "par_idN10675\n" "help.text" msgid "Click OK." -msgstr "" +msgstr "Klikńće na W porjadku." #. q4WSq #: database_filter.xhp @@ -4279,7 +4279,7 @@ "tit\n" "help.text" msgid "Filtering Cell Ranges" -msgstr "" +msgstr "Celowe wobłuki filtrować" #. DERXE #: database_filter.xhp @@ -4288,7 +4288,7 @@ "bm_id3153541\n" "help.text" msgid "cell ranges;applying/removing filters filtering;cell ranges/database ranges database ranges;applying/removing filters removing;cell range filters" -msgstr "" +msgstr "celowe wobłuki; filtry nałožić/wotstronićfiltrować; celowe wobłuki/wobłuki datoweje bankiwobłuki datoweje banki; filtry nałožić/wotstronićwotstronić; filtry celoweho wobłuka" #. 6eTRN #: database_filter.xhp @@ -4297,7 +4297,7 @@ "hd_id3153541\n" "help.text" msgid "Filtering Cell Ranges" -msgstr "" +msgstr "Celowe wobłuki filtrować" #. 4znQt #: database_filter.xhp @@ -4306,7 +4306,7 @@ "par_id3145069\n" "help.text" msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells." -msgstr "" +msgstr "Móžeće wjacore filtry wužiwać, zo byšće celowe wobłuki w tabelowych dokumentach filtrował. Standardny filter nastajenja wužiwa, kotrež podawaće, zo byšće daty filtrował. Awtomatiski filter daty po wěstej hódnoće abo po wěstym znamješkowym rjećazku filtruje. Rozšěrjeny filter filtrowe kriterije z podatych celow wužiwa." #. e7DZH #: database_filter.xhp @@ -4315,7 +4315,7 @@ "par_idN10682\n" "help.text" msgid "To Apply a Standard Filter to a Cell Range" -msgstr "" +msgstr "Zo byšće standardny filter na celowy wobłuk nałožił:" #. SiEGx #: database_filter.xhp @@ -4324,7 +4324,7 @@ "par_id3150398\n" "help.text" msgid "Click in a cell range." -msgstr "" +msgstr "Klikńće do celoweho wobłuka." #. WG4wc #: database_filter.xhp @@ -4333,7 +4333,7 @@ "par_idN10693\n" "help.text" msgid "Choose Data - More Filters - Standard Filter." -msgstr "" +msgstr "Wubjerće Daty – Dalše filtry – Standardny filter…." #. Hxxpj #: database_filter.xhp @@ -4342,7 +4342,7 @@ "par_id3156422\n" "help.text" msgid "In the Standard Filter dialog, specify the filter options that you want." -msgstr "" +msgstr "Podajće požadane filtrowe nastajenja w dialogu Standardny filter." #. vcg5k #: database_filter.xhp @@ -4351,7 +4351,7 @@ "par_idN106A5\n" "help.text" msgid "Click OK." -msgstr "" +msgstr "Klikńće na W porjadku." #. qmFD9 #: database_filter.xhp @@ -4360,7 +4360,7 @@ "par_id3153143\n" "help.text" msgid "The records that match the filter options that you specified are shown." -msgstr "" +msgstr "Datowe sadźby so pokazuja, kotrež filtrowym nastajenjam wotpowěduja, kotrež sće podał." #. zUCBf #: database_filter.xhp @@ -4369,7 +4369,7 @@ "par_id3153728\n" "help.text" msgid "To Apply an AutoFilter to a Cell Range" -msgstr "" +msgstr "Zo byšće awtomatiski filter na celowy wobłuk nałožił:" #. tqAMd #: database_filter.xhp @@ -4378,7 +4378,7 @@ "par_id3144764\n" "help.text" msgid "Click in a cell range or a database range." -msgstr "" +msgstr "Klikńće do celoweho wobłuka abo wobłuka datoweje banki." #. EFRDW #: database_filter.xhp @@ -4387,7 +4387,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 "" +msgstr "Jeli chceće wjacore awtomatiske awtomatiske filtry na samsnu tabelu nałožić, dyrbiće najprjedy wobłuki datoweje banki definować a potom awtomatiske filtry na wobłuki datoweje banki nałožić." #. ayGC2 #: database_filter.xhp @@ -4396,7 +4396,7 @@ "par_id3154944\n" "help.text" msgid "Choose Data - AutoFilter." -msgstr "" +msgstr "Wubjerće Daty – Awtomatiski filter." #. 8jfFs #: database_filter.xhp @@ -4405,7 +4405,7 @@ "par_idN106DB\n" "help.text" msgid "An arrow button is added to the head of each column in the database range." -msgstr "" +msgstr "Šipkowe tłóčatko so kóždej špaltowej hłowje we wobłuku datoweje banki přidawa." #. buscD #: database_filter.xhp @@ -4414,7 +4414,7 @@ "par_id3153878\n" "help.text" msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria." -msgstr "" +msgstr "Klikńće na šipkowe tłóčatko w špalće, kotraž hódnotu abo znamješkowy rjećazk wobsahuje, kotrejž chceće jako filtrowej kriteriji nastajić." #. vFUzG #: database_filter.xhp @@ -4423,7 +4423,7 @@ "par_idN10749\n" "help.text" msgid "Select the value or string that you want to use as the filter criteria." -msgstr "" +msgstr "Wubjerće hódnotu abo znamješkowy rjećazk, kotrejž chceće jako filtrowej kriteriji wužiwać." #. H4Cqe #: database_filter.xhp @@ -4432,7 +4432,7 @@ "par_idN1074C\n" "help.text" msgid "The records that match the filter criteria that you selected are shown." -msgstr "" +msgstr "Datowe sadźby, kotrež wubranym filtrowym kriterijam wotpowěduja, so pokazuja." #. fkmqA #: database_filter.xhp @@ -4441,7 +4441,7 @@ "par_idN106E8\n" "help.text" msgid "To Remove a Filter From a Cell Range" -msgstr "" +msgstr "Zo byšće filter z celoweho wobłuka wotstronił:" #. 85fDm #: database_filter.xhp @@ -4450,7 +4450,7 @@ "par_idN1075C\n" "help.text" msgid "Click in a filtered cell range." -msgstr "" +msgstr "Klikńće do filtrowaneho celoweho wobłuka." #. H7icE #: database_filter.xhp @@ -4459,7 +4459,7 @@ "par_idN106EC\n" "help.text" msgid "Choose Data - Filter - Reset Filter." -msgstr "" +msgstr "Wubjerće Daty – Dalše filtry – Filter wróćo stajić." #. oFj8U #: database_filter.xhp @@ -4468,7 +4468,7 @@ "par_id4525284\n" "help.text" msgid "Wiki page about defining a data range" -msgstr "" +msgstr "Wikistrona wo definowanju datoweho wobłuka" #. ueLu8 #: database_sort.xhp @@ -4477,7 +4477,7 @@ "tit\n" "help.text" msgid "Sorting Data" -msgstr "" +msgstr "Daty sortěrować" #. qvJdv #: database_sort.xhp @@ -4486,7 +4486,7 @@ "bm_id3150767\n" "help.text" msgid "database ranges; sorting sorting; database ranges data;sorting in databases" -msgstr "" +msgstr "wobłuki datoweje banki; sortěrowaćsortěrować; wobłuki datoweje bankidaty; w datowych bankach sortěrować" #. bfmu3 #: database_sort.xhp @@ -4495,7 +4495,7 @@ "hd_id3150767\n" "help.text" msgid "Sorting Data" -msgstr "" +msgstr "Daty sortěrować" #. vddXD #: database_sort.xhp @@ -4504,7 +4504,7 @@ "par_id3145751\n" "help.text" msgid "Click in a database range." -msgstr "" +msgstr "Klikńće do wobłuka datoweje banki." #. BjSBG #: database_sort.xhp @@ -4513,7 +4513,7 @@ "par_id121020081121549\n" "help.text" msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted." -msgstr "" +msgstr "Jeli celowy wobłuk wuběraće, jenož tute cele so sortěruja. Jeli jenož do cele bjez sortěrowanja klikaće, so cyły wobłuk datoweje banki sortěruje." #. LpURK #: database_sort.xhp @@ -4522,7 +4522,7 @@ "par_idN10635\n" "help.text" msgid "Choose Data - Sort." -msgstr "" +msgstr "Wubjerće Daty – Sortěrować." #. t46AF #: database_sort.xhp @@ -4531,7 +4531,7 @@ "par_id121020081121547\n" "help.text" msgid "The range of cells that will get sorted is shown in inverted colors." -msgstr "" +msgstr "Celowy wobłuk, kotryž so sortěruje, so w inwersnych barbach pokazuje." #. HGBLx #: database_sort.xhp @@ -4540,7 +4540,7 @@ "par_idN10645\n" "help.text" msgid "Select the sort options that you want." -msgstr "" +msgstr "Wubjerće požadane sortěrowanske nastajenja." #. dxfCa #: database_sort.xhp @@ -4549,7 +4549,7 @@ "par_idN1063D\n" "help.text" msgid "Click OK." -msgstr "" +msgstr "Klikńće na W porjadku." #. biDGg #: database_sort.xhp @@ -4558,7 +4558,7 @@ "par_id1846980\n" "help.text" msgid "Wiki page about defining a data range" -msgstr "" +msgstr "Wikistrona wo definowanju datoweho wobłuka" #. zsSK8 #: datapilot.xhp @@ -4567,7 +4567,7 @@ "tit\n" "help.text" msgid "Pivot Table" -msgstr "" +msgstr "Pivotowa tabela" #. q3UkA #: datapilot.xhp @@ -4576,7 +4576,7 @@ "bm_id3150448\n" "help.text" msgid "pivot table function; introductionDataPilot, see pivot table function" -msgstr "" +msgstr "pivotowa tabela (funkcija); zawodDatowy pilot, hlejće pivotowu tabelu (funkcija)" #. NNbkr #: datapilot.xhp @@ -4585,7 +4585,7 @@ "hd_id3150448\n" "help.text" msgid "Pivot Table" -msgstr "" +msgstr "Pivotowa tabela" #. X3qFY #: datapilot.xhp @@ -4594,7 +4594,7 @@ "par_id3156024\n" "help.text" msgid "The pivot table (formerly known as DataPilot) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports." -msgstr "" +msgstr "Pivotowa tabela (prjedy jako datowy pilot znaty) wam zmóžnja, wulke datowe mnóstwa kombinować, přirunać a analyzować. Móžeće sej rozdźělne zjeća žórłowych datow wobhladać, podrobnosće zajimowych wobwodow pokazać a rozprawy wutworić." #. pUGwe #: datapilot.xhp @@ -4603,7 +4603,7 @@ "par_id3145069\n" "help.text" msgid "A table that has been created as a pivot table is an interactive table. Data can be arranged, rearranged or summarized according to different points of view." -msgstr "" +msgstr "Tabela, kotraž je so jako pivotowa tabela wutworiła, je interaktiwna tabela. Daty dadźa so po rozdźělnych aspektach rjadować, přerjadować abo zjimać." #. cGChV #: datapilot_createtable.xhp @@ -4612,7 +4612,7 @@ "tit\n" "help.text" msgid "Creating Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele wutworić" #. kEK57 #: datapilot_createtable.xhp @@ -4621,7 +4621,7 @@ "bm_id3148491\n" "help.text" msgid "pivot tables pivot table function; calling up and applying" -msgstr "" +msgstr "pivotowe tabelepivotowa tabela (funkcija); wuwołać a nałožić" #. HgqHr #: datapilot_createtable.xhp @@ -4630,7 +4630,7 @@ "hd_id3148491\n" "help.text" msgid "Creating Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele wutworić" #. qrneD #: datapilot_createtable.xhp @@ -4639,7 +4639,7 @@ "par_id3156023\n" "help.text" msgid "Position the cursor within a range of cells containing values, row and column headings." -msgstr "" +msgstr "Stajće kursor do celoweho wobłuka, kotryž hódnoty a linkowe a špaltowe hłowy wobsahuje." #. LA3ux #: datapilot_createtable.xhp @@ -4648,7 +4648,7 @@ "par_id3147264\n" "help.text" msgid "Choose Insert - Pivot Table. The Select Source dialog appears. Choose Current selection and confirm with OK. The table headings are shown as buttons in the Pivot Table dialog. Drag these buttons as required and drop them into the layout areas \"Filters\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"." -msgstr "" +msgstr "Wubjerće Zasadźić – Pivotowa tabela…. Dialog Žórło wubrać so jewi. Wubjerće Aktualny wuběr a wobkrućće z W porjadku. Tabelowe hłowy so jako tłóčatka w dialogu Pivotowa tabela pokazuje. Ćehńće tute tłóčatka a pušćće je do wuhotowanskich wobłukow „Filtry“, „Špaltowe pola“, „Linkowe pola“ a „Datowe pola“." #. XR8Sd #: datapilot_createtable.xhp @@ -4657,7 +4657,7 @@ "par_id3150868\n" "help.text" msgid "Drag the desired buttons into one of the four areas." -msgstr "" +msgstr "Ćehńće požadane tłóčatka do jednoho ze štyrjoch wobłukow." #. 7PXD6 #: datapilot_createtable.xhp @@ -4666,7 +4666,7 @@ "par_id7599414\n" "help.text" msgid "Drag a button to the Filters area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter." -msgstr "" +msgstr "Ćehńće tłóčatko do wobłuka Filtry, zo byšće tłóčatko a lisćinowe polo horjeka w generowanej pivotowej tabeli wutworił. Lisćinowe polo da so wužiwać, zo by pivotowu tabelu po wobsahu wubraneho zapiska filtrował. Móžeće ćehnjenje a pušćenje w generowanej pivotowej tabeli wužiwać, zo byšće druhe polo strony jako filter wužiwał." #. vFX84 #: datapilot_createtable.xhp @@ -4675,7 +4675,7 @@ "par_id3154011\n" "help.text" msgid "If the button is dropped in the Data Fields area it will be given a caption that also shows the formula that will be used to calculate the data." -msgstr "" +msgstr "Jeli tłóčatko so we wobłuku Datowe pola pušća, dóstanje popis, kotryž so tež w formli pokazuje, kotraž so wužiwa, zo by daty wuličiła." #. VnALH #: datapilot_createtable.xhp @@ -4684,7 +4684,7 @@ "par_id3146974\n" "help.text" msgid "By double-clicking on one of the fields in the Data Fields area you can call up the Data Field dialog." -msgstr "" +msgstr "Hdyž do jednoho z polow we wobłuku Datowe pola dwójce klikaće, móžeće dialog Datowe polo wuwołać." #. PAuDC #: datapilot_createtable.xhp @@ -4693,7 +4693,7 @@ "par_id3156286\n" "help.text" msgid "Use the Data Field dialog to select the calculations to be used for the data. To make a multiple selection, press the CommandCtrl key while clicking the desired calculation." -msgstr "" +msgstr "Wužiwajće dialog Datowe polo, zo byšće wuličenja wubrał, kotrež so maja za daty wužiwać. Tłóčće za wjacory wuběr tastu cmd ⌘Strg, mjeztym zo na požadane wuličenje klikaće." #. AniFD #: datapilot_createtable.xhp @@ -4702,7 +4702,7 @@ "par_id3150329\n" "help.text" msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse." -msgstr "" +msgstr "Porjad tłóčatkow dadźa so kóždy čas změnić, hdyž je z myšku na druhu poziciju we wobłuku přesuwaće." #. ADpWF #: datapilot_createtable.xhp @@ -4711,7 +4711,7 @@ "par_id3153714\n" "help.text" msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog." -msgstr "" +msgstr "Ćehńće tłóčatko wróćo k wobłukej druhich tłóčatkow naprawo w dialogu, zo byšće jo wotstronił." #. RVAdg #: datapilot_createtable.xhp @@ -4720,7 +4720,7 @@ "par_id3147338\n" "help.text" msgid "To open the Data Field dialog, double-click one of the buttons in the Row Fields or Column Fields area. Use the dialog to select if and to what extent %PRODUCTNAME calculates display subtotals." -msgstr "" +msgstr "Zo byšće dialog Datowe polo wočinił, klikńće dwójce na jedne z tłóčatkow we wobłuku Linkowe pola abo Špaltowe pola. Wužiwajće dialog, zo byšće wubrał, hač a w kotrej měrje %PRODUCTNAME ma wuličene mjezywuslědki pokazać." #. iXULx #: datapilot_createtable.xhp @@ -4729,7 +4729,7 @@ "par_id3154020\n" "help.text" msgid "Exit the Pivot Table dialog by pressing OK. A Filter button will now be inserted, or a page button for every data field that you dropped in the Filters area. The pivot table is inserted further down." -msgstr "" +msgstr "Tłóčće na W porjadku, zo byšće dialog Pivotowa tabela wopušćił. Tłóčatko Filter so nětko zasadźuje, abo tłóčatko strony za kóžde datowe polo, kotrež sće we wobłuku Filtry wotkładł. Pivotowa tabela so dale deleka zasadźuje." #. dJsd8 #: datapilot_deletetable.xhp @@ -4738,7 +4738,7 @@ "tit\n" "help.text" msgid "Deleting Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele zhašeć" #. 5mACL #: datapilot_deletetable.xhp @@ -4747,7 +4747,7 @@ "bm_id3153726\n" "help.text" msgid "pivot table function; deleting tables deleting;pivot tables" -msgstr "" +msgstr "pivotowa tabela (funkcija); tabele zhašećzhašeć; pivotowe tabele" #. aCv9D #: datapilot_deletetable.xhp @@ -4756,7 +4756,7 @@ "hd_id3153726\n" "help.text" msgid "Deleting Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele zhašeć" #. yvJds #: datapilot_deletetable.xhp @@ -4765,7 +4765,7 @@ "par_id3154014\n" "help.text" msgid "In order to delete a pivot table, click any cell in the pivot table, then choose Delete in the context menu." -msgstr "" +msgstr "Zo byšće pivotowu tabelu zhašał, klikńće do cele w pivotowej tabeli a wubjerće Zhašeć w kontekstowym meniju." #. oFygT #: datapilot_deletetable.xhp @@ -4774,7 +4774,7 @@ "par_id141525148751543\n" "help.text" msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion." -msgstr "" +msgstr "Jeli pivotowu tabelu zhašeće, kotraž je z pivotowym diagramom zwjazana, so pivotowy diagram so tež zhaša. Dialogowe polo so wočinja, zo byšće zhašenje pivotoweho diagrama wobkrućił." #. 9Ft4E #: datapilot_edittable.xhp @@ -4783,7 +4783,7 @@ "tit\n" "help.text" msgid "Editing Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele wobdźěłać" #. sdZ2P #: datapilot_edittable.xhp @@ -4792,7 +4792,7 @@ "bm_id3148663\n" "help.text" msgid "pivot table function; editing tablesediting;pivot tables" -msgstr "" +msgstr "pivotowa tabela (funkcija); tabele wobdźěłaćwobdźěłać; pivotowe tabele" #. z8AYi #: datapilot_edittable.xhp @@ -4801,7 +4801,7 @@ "hd_id3148663\n" "help.text" msgid "Editing Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele wobdźěłać" #. jDNdq #: datapilot_edittable.xhp @@ -4810,7 +4810,7 @@ "par_id3150868\n" "help.text" msgid "Click one of the buttons in the pivot table and hold the mouse button down. A special symbol will appear next to the mouse pointer." -msgstr "" +msgstr "Klikńće w pivotowej tabeli na jedne z tłóčatkow a dźeržće tastu myški stłóčenu. Wosebity symbol so pódla pokazowaka myški zjewi." #. oRj6N #: datapilot_edittable.xhp @@ -4819,7 +4819,7 @@ "par_id3145786\n" "help.text" msgid "By dragging the button to a different position in the same row you can alter the order of the columns. If you drag a button to the left edge of the table into the row headings area, you can change a column into a row." -msgstr "" +msgstr "Přez ćahanje tłóčatka na druhu poziciju w samsnej lince móžeće porjad špaltow změnić. Jeli tłóčatko k lěwej kromje tabele do wobłuka hłowowych linkow ćahaće, móžeće špaltu do linki přetworić." #. Yrb6G #: datapilot_edittable.xhp @@ -4828,7 +4828,7 @@ "par_id1648915\n" "help.text" msgid "In the Pivot Table dialog, you can drag a button to the Filters area to create a button and a listbox on top of the pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter." -msgstr "" +msgstr "Ćehńće w dialogu Pivotowa tabela tłóčatko do wobłuka Filtry, zo byšće tłóčatko a lisćinowe polo horjeka w pivotowej tabeli wutworił. Lisćinowe polo da so wužiwać, zo by pivotowu tabelu po wobsahu wubraneho zapiska filtrował. Móžeće ćehnjenje a pušćenje w pivotowej tabeli wužiwać, zo byšće druhe polo strony jako filter wužiwał." #. AeGto #: datapilot_edittable.xhp @@ -4837,7 +4837,7 @@ "par_id3147434\n" "help.text" msgid "To remove a button from the table, just drag it out of the pivot table. Release the mouse button when the mouse pointer positioned within the sheet has become a 'not allowed' icon. The button is deleted." -msgstr "" +msgstr "Zo byšće tłóčatko z tabele wotstronił, ćehńće prosće jo z pivotoweje tabele won. Pušćće tastu myški, hdyž so pokazowak myški, kotryž ke w tabeli, budźe zakazowy symbol. Tłóčatko so zhaša." #. vbqKe #: datapilot_edittable.xhp @@ -4846,7 +4846,7 @@ "par_id3156442\n" "help.text" msgid "To edit the pivot table, click a cell inside the pivot table and open the context menu. In the context menu you find the command Properties, which displays the Pivot Table Layout dialog for the current pivot table." -msgstr "" +msgstr "Zo byšće pivotowu tabelu wobdźěłał, klikńće do cele w pivotowej tabeli a wočińće kontekstowy meni. W kontekstowym meniju namakaće přikaz Kajkosće, kotryž dialog Tabelowe wuhotowanje Pivot za aktualnu pivotowu tabelu pokazuje." #. fKGXd #: datapilot_edittable.xhp @@ -4855,7 +4855,7 @@ "par_id2666096\n" "help.text" msgid "In the pivot table, you can use drag-and-drop or cut/paste commands to rearrange the order of data fields." -msgstr "" +msgstr "W pivotowej tabeli móžeće ćehnjenje a pušćenje abo wutřihanje a zasadźenje wužiwać, zo byšće porjad datowych polow změnił." #. aBysR #: datapilot_edittable.xhp @@ -4864,7 +4864,7 @@ "par_id266609688\n" "help.text" msgid "You can assign custom display names to fields, field members, subtotals (with some restrictions), and grand totals inside pivot tables. A custom display name is assigned to an item by overwriting the original name with another name." -msgstr "" +msgstr "Móžeće polam, pólnym elementam, mjezywuslědkam (z wobmjezowanjemi) a cya cyłkownym wuslědkam swójske pokazanske mjena w pivotowych tabelach připokazać. Swójske pokazanske mjeno so zapiskej připokazuje, hdyž prěnjotne mjeno z druhim mjenom přepisujeće." #. Yt6DD #: datapilot_filtertable.xhp @@ -4873,7 +4873,7 @@ "tit\n" "help.text" msgid "Filtering Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele filtrować" #. DjYdz #: datapilot_filtertable.xhp @@ -4882,7 +4882,7 @@ "bm_id3150792\n" "help.text" msgid "pivot table function; filtering tablesfiltering;pivot tables" -msgstr "" +msgstr "pivotowa tabela (funkcija); tabele filtrowaćfiltrować; pivotowe tabele" #. zNm6v #: datapilot_filtertable.xhp @@ -4891,7 +4891,7 @@ "hd_id3150792\n" "help.text" msgid "Filtering Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele filtrować" #. ADCtg #: datapilot_filtertable.xhp @@ -4900,7 +4900,7 @@ "par_id3153192\n" "help.text" msgid "You can use filters to remove unwanted data from a pivot table." -msgstr "" +msgstr "Móžeće filtry wužiwać, zo byšće njewitane daty z pivotoweje tabele wotstronił." #. Dr4qw #: datapilot_filtertable.xhp @@ -4909,7 +4909,7 @@ "par_id3150441\n" "help.text" msgid "Click the Filter button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the Filter command. The Filter dialog appears. Here you can filter the pivot table." -msgstr "" +msgstr "KLikńće na tłóčatko Filter w tabeli, zo byšće dialog za filtrowanske wuměnjenja wuwołał. Abo móžeće kontekstowy meni pivotoweje tabele wuwołać a přikaz Filter wubrać. Dialog Filter so zjewi. Tu móžeće pivotowu tabelu filtrować." #. TUAcu #: datapilot_filtertable.xhp @@ -4918,7 +4918,7 @@ "par_id315044199\n" "help.text" msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field." -msgstr "" +msgstr "Móžeće tež na šipk na tłóčatce w pivotowej tabeli kliknyć, zo byšće wuskakowace wokno pokazał. W tutym wuskakowacym woknje móžeće nastajenja widźomnosće přisłušneho pola wobdźěłać." #. SQnhK #: datapilot_filtertable.xhp @@ -4927,7 +4927,7 @@ "par_id0720201001344485\n" "help.text" msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list." -msgstr "" +msgstr "Wuskakowace wokno lisćinu pólnych elementow pokazuje, kotrež su z tym polom zwjazane. Kontrolny kašćik je nalěwo pódla mjena kóždeho pólneho elementa. Hdyž polo ma alternatiwne pokazowanske mjeno, kotrež so wot originalneho mjena rozeznawa, so te mjeno w lisćinje pokaza." #. y6PoC #: datapilot_filtertable.xhp @@ -4936,7 +4936,7 @@ "par_id0720201001344449\n" "help.text" msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table." -msgstr "" +msgstr "Zmóžńće abo znjemóžńće kontrolny kašćik, zo byšće přisłušny pólny element w pivotowej tabeli pokazał abo schował." #. SW9yB #: datapilot_filtertable.xhp @@ -4945,7 +4945,7 @@ "par_id0720201001344493\n" "help.text" msgid "Enable or disable the All checkbox to show all or none of the field members." -msgstr "" +msgstr "Zmóžńće abo znjemóžńće kontrolny kašćik Wšě, zo byšće wšě pólne elementy pokazał abo zo njebyšće žadyn pólny element pokazał." #. SKUBa #: datapilot_filtertable.xhp @@ -4954,7 +4954,7 @@ "par_id0720201001344431\n" "help.text" msgid "Select a field member in the pop-up window and click the Show only the current item button to show only the selected field member. All other field members are hidden in the pivot table." -msgstr "" +msgstr "Wubjerće pólny element we wuskakowacym woknje a klikńće na tłóčatko Jenož aktualny zapisk pokazać, zo byšće jenož wubrany pólny element pokazał. Wšě druhe pólne elementy su w pivotowej tabeli schowane." #. BMRWS #: datapilot_filtertable.xhp @@ -4963,7 +4963,7 @@ "par_id0720201001344484\n" "help.text" msgid "Select a field member in the pop-up window and click the Hide only the current item button to hide only the selected field member. All other field members are shown in the pivot table." -msgstr "" +msgstr "Wubjerće pólny element we wuskakowacym woknje a klikńće na tłóčatko Jenož aktualny zapisk schować, zo byšće jenož wubrany pólny element schował. Wšě druhe pólne elementy so w pivotowej tabeli pokazuja." #. YyzoD #: datapilot_filtertable.xhp @@ -4972,7 +4972,7 @@ "par_id0720201001344578\n" "help.text" msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list." -msgstr "" +msgstr "Přikazy wam zmóžnjeja, pólne elementy w postupowacym abo spadowacym porjedźe abo z pomocu swójskeje sortěrowanskeje lisćiny sortěrować." #. VmFtw #: datapilot_filtertable.xhp @@ -4981,7 +4981,7 @@ "par_id0720201001344584\n" "help.text" msgid "To edit the custom sort lists, open %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgstr "Zo byšće swójske sortěrowanske lisćiny wobdźěłał, wočińće %PRODUCTNAME – NastajenjaNastroje – Nastajenja – %PRODUCTNAME Calc – Sortěrowanske lisćiny." #. fWvXo #: datapilot_filtertable.xhp @@ -4990,7 +4990,7 @@ "par_id0720201001344811\n" "help.text" msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner." -msgstr "" +msgstr "Šipk za wočinjenje wuskakowaceho wokna je zwjetša čorny. Hdyž polo jedyn schowany pólny element abo wjacore schowane lementy wobsahuje, je šipk módry a pokazuje mały kwadrat deleka naprawo." #. DBnSP #: datapilot_filtertable.xhp @@ -4999,7 +4999,7 @@ "par_id0720201001344884\n" "help.text" msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing CommandCtrl+D." -msgstr "" +msgstr "Móžeće tež wuskakowace wokno wočinić, hdyž celowy kursor pola tłóčatka pozicioněrujeće a cmd ⌘Strg+D tłóčiće." #. LYAEi #: datapilot_formatting.xhp @@ -5008,7 +5008,7 @@ "tit\n" "help.text" msgid "Formatting Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele formatěrować" #. GkCpq #: datapilot_formatting.xhp @@ -5017,7 +5017,7 @@ "bm_id931656104694657\n" "help.text" msgid "formatting;pivot tables" -msgstr "" +msgstr "formatěrować; pivotowe tabele" #. rsh3f #: datapilot_formatting.xhp @@ -5026,7 +5026,7 @@ "hd_id341656099297638\n" "help.text" msgid "Formatting Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele formatěrować" #. aA7AD #: datapilot_formatting.xhp @@ -5035,7 +5035,7 @@ "par_id121656099297641\n" "help.text" msgid "You can format pivot tables cells using specific cell styles." -msgstr "" +msgstr "Móžeće pivotowe tabele z wěstymi celowymi předłohami formatěrować." #. V3B9U #: datapilot_formatting.xhp @@ -5044,7 +5044,7 @@ "par_id751656100824556\n" "help.text" msgid "Direct formatting of pivot tables cells is lost when updating or editing the table." -msgstr "" +msgstr "Direktne formatěrowanje celow pivotowych tabelow so zhubja, hdyž tabelu aktualizujeće abo wobdźěłujeće." #. BX4Fw #: datapilot_formatting.xhp @@ -5053,7 +5053,7 @@ "par_id31656100011920\n" "help.text" msgid "When creating a pivot table, six new cell styles are added to your document. Format each cell style as needed. The customization of the pivot cell styles will be preserved when updating the pivot table." -msgstr "" +msgstr "Hdyž so pivotowa tabela wutworja, so šěsć nowych celowych předłohow wašemu dokumentej přidawa. Formatěrujće kóždu celowu předłohu, je-li trjeba. Přiměrjenje předłohow pivotowych celow so wobchowuje, hdyž so pivotowa tabela aktualizuje." #. jQyBh #: datapilot_formatting.xhp @@ -5062,7 +5062,7 @@ "par_id601656100455727\n" "help.text" msgid "By using cell styles for pivot table formatting, all pivot tables cells in the spreadsheet document will have the same look. In other words, the pivot table cell styles apply to all pivot tables of the document." -msgstr "" +msgstr "Hdyž celowe předłohi za formatěrowanje pivotoweje tabele wužiwaće, maja wšě cele pivotoweje tabele w tabelowym dokumenće samsny napohlad. Hinak prajene, celowe předłohi pivotoweje tabele so na wšě pivotowe tabele dokumenta nałožuja." #. YgaMr #: datapilot_formatting.xhp @@ -5071,7 +5071,7 @@ "par_id941656100017412\n" "help.text" msgid "The six cell styles are:" -msgstr "" +msgstr "Šěsć celowych předłohow je:" #. cH3xo #: datapilot_formatting.xhp @@ -5080,7 +5080,7 @@ "par_id181656100070568\n" "help.text" msgid "Pivot Table Categories" -msgstr "" +msgstr "Kategorije pivotoweje tabele" #. GznnA #: datapilot_formatting.xhp @@ -5089,7 +5089,7 @@ "par_id781656100074986\n" "help.text" msgid "Pivot Table Corner" -msgstr "" +msgstr "Róžk pivotoweje tabele" #. Y5UBR #: datapilot_formatting.xhp @@ -5098,7 +5098,7 @@ "par_id311656100079561\n" "help.text" msgid "Pivot Table Field" -msgstr "" +msgstr "Polo pivotoweje tabele" #. a2oFk #: datapilot_formatting.xhp @@ -5107,7 +5107,7 @@ "par_id601656100083888\n" "help.text" msgid "Pivot Table Result" -msgstr "" +msgstr "Wuslědk pivotoweje tabele" #. JvVDa #: datapilot_formatting.xhp @@ -5116,7 +5116,7 @@ "par_id521656100088324\n" "help.text" msgid "Pivot Table Value" -msgstr "" +msgstr "Hódnota pivotoweje tabele" #. HABWX #: datapilot_formatting.xhp @@ -5125,7 +5125,7 @@ "par_id111656100092437\n" "help.text" msgid "Pivot Table Title" -msgstr "" +msgstr "Titul pivotoweje tabele" #. cRb6R #: datapilot_formatting.xhp @@ -5134,7 +5134,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 "" +msgstr "Ličbny format tutych celowych předłohow njeda so w celowej předłoze změnić; dyrbiće jón w datowym žórle formatěrować." #. CeKoE #: datapilot_grouping.xhp @@ -5143,7 +5143,7 @@ "tit\n" "help.text" msgid "Grouping Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele zeskupić" #. Kvc5K #: datapilot_grouping.xhp @@ -5152,7 +5152,7 @@ "bm_id4195684\n" "help.text" msgid "grouping; pivot tablespivot table function;grouping table entriesungrouping entries in pivot tables" -msgstr "" +msgstr "zeskupić; pivotowe tabelepivotowa tabela (funkcija); tabelowe zapiski zeskupićzeskupjenje zapiskow w pivotowych tabelach zběhnyć" #. NEBhF #: datapilot_grouping.xhp @@ -5161,7 +5161,7 @@ "par_idN10643\n" "help.text" msgid "Grouping Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele zeskupić" #. EMuyW #: datapilot_grouping.xhp @@ -5170,7 +5170,7 @@ "par_idN10661\n" "help.text" msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result." -msgstr "" +msgstr "Nastawaca pivotowa tabela móže wjele rozdźělnych zapiskow wobsahować. Hdyž zapiski zeskupjeće, móžeće widźomny wuslědk polěpšić." #. jwZEk #: datapilot_grouping.xhp @@ -5179,7 +5179,7 @@ "par_idN10667\n" "help.text" msgid "Select a cell or range of cells in the pivot table." -msgstr "" +msgstr "Wubjerće celu abo celowy wobłuk w pivotowej tabeli." #. dqrNE #: datapilot_grouping.xhp @@ -5188,7 +5188,7 @@ "par_idN1066B\n" "help.text" msgid "Choose Data - Group and Outline - Group." -msgstr "" +msgstr "Wubjerće Daty – Zeskupjenje a rozrjad – Zeskupjenje…." #. JwFoj #: datapilot_grouping.xhp @@ -5197,7 +5197,7 @@ "par_idN1066E\n" "help.text" msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two Grouping dialogs, either for numeric values, or for date values." -msgstr "" +msgstr "Wotwisujo wot formata wubranych celow so pak nowe skupinske polo pivotowej tabeli přidawa pak widźiće jedyn z dweju dialogow Zeskupjenje, pak za numeriske hódnoty pak za datumowe hódnoty." #. smas8 #: datapilot_grouping.xhp @@ -5206,7 +5206,7 @@ "par_id3328653\n" "help.text" msgid "The pivot table must be organized in a way that grouping can be applied." -msgstr "" +msgstr "Pivotowa tabela dyrbi takle organizowana być, zo so da zeskupjenje nałožić." #. QCfxM #: datapilot_grouping.xhp @@ -5215,7 +5215,7 @@ "par_idN10682\n" "help.text" msgid "To remove a grouping, click inside the group, then choose Data - Group and Outline - Ungroup." -msgstr "" +msgstr "Zo byšće zeskupjenje wotstronił, klikńće do skupiny a wubjerće potom Daty – Zeskupjenje a rozrjad – Zeskupjenje zběhnyć…." #. CG8kj #: datapilot_tipps.xhp @@ -5224,7 +5224,7 @@ "tit\n" "help.text" msgid "Selecting Pivot Table Output Ranges" -msgstr "" +msgstr "Wudawanske wobłuki pivotoweje tabele wubrać" #. Xwk6m #: datapilot_tipps.xhp @@ -5233,7 +5233,7 @@ "bm_id3148663\n" "help.text" msgid "pivot table function; preventing data overwritingoutput ranges of pivot tables" -msgstr "" +msgstr "pivotowa tabela (funkcija); přepisowanju datow zadźěwaćwudawanske wobłuki pivotowych tabelow" #. xeirD #: datapilot_tipps.xhp @@ -5242,7 +5242,7 @@ "hd_id3148663\n" "help.text" msgid "Selecting Pivot Table Output Ranges" -msgstr "" +msgstr "Wudawanske wobłuki pivotoweje tabele wubrać" #. kikhM #: datapilot_tipps.xhp @@ -5251,7 +5251,7 @@ "par_id3154123\n" "help.text" msgid "Click the button More in the Pivot Table dialog. The dialog will be extended." -msgstr "" +msgstr "Klikńće na tłóčatko Wjace w dialogu Pivotowa tabela. Dialog so rozšěrja." #. rRGaZ #: datapilot_tipps.xhp @@ -5260,7 +5260,7 @@ "par_id3153771\n" "help.text" msgid "You can select a named range in which the pivot table is to be created, from the Results to box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the Results to box. You can also click on the appropriate cell to have the coordinates entered accordingly." -msgstr "" +msgstr "Móžeće pomjenowany wobłuk, w kotrymž so ma pivotowa tabela wutworja, w lisćinowym polu Wuslědki do wubrać. Jeli wobłuk wuslědkow mjeno nima, zapodajće koordinaty horjeka nalěwo do pola naprawo pódla lisćinoweho pola Wuslědki do. Móžeće tež do wotpowědneje cele kliknyć, zo bychu so přisłušne koordinaty zapodali." #. EHd6K #: datapilot_tipps.xhp @@ -5269,7 +5269,7 @@ "par_id3146974\n" "help.text" msgid "If you mark the Ignore empty rows check box, they will not be taken into account when the pivot table is created." -msgstr "" +msgstr "Jeli kontrolny kašćik Prózdne linki ignorować markěrujeće, so prózdne linki njewobkedźbuja, hdyž so pivotowa tabela wutwori." #. qRCKc #: datapilot_tipps.xhp @@ -5278,7 +5278,7 @@ "par_id3145273\n" "help.text" msgid "If the Identify categories check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created." -msgstr "" +msgstr "Jeli kontrolny kašćik Kategorije identifikować markěrujeće, so kategorije po swojich nadpismach identifikuja a po tym připokazuja, hdyž so pivotowa tabela wutwori." #. 6WBqj #: datapilot_updatetable.xhp @@ -5287,7 +5287,7 @@ "tit\n" "help.text" msgid "Updating Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele aktualizować" #. 8o6oz #: datapilot_updatetable.xhp @@ -5296,7 +5296,7 @@ "bm_id3150792\n" "help.text" msgid "pivot table importpivot table function; refreshing tablesrecalculating;pivot tablesupdating;pivot tables" -msgstr "" +msgstr "pivotowu tabelu importowaćpivotowa tabela (funkcija); tabele aktualizowaćznowa wuličić; pivotowa tabeleaktualizować; pivotowe tabele" #. SVyQU #: datapilot_updatetable.xhp @@ -5305,7 +5305,7 @@ "hd_id3150792\n" "help.text" msgid "Updating Pivot Tables" -msgstr "" +msgstr "Pivotowe tabele aktualizować" #. gaKCU #: datapilot_updatetable.xhp @@ -5314,7 +5314,7 @@ "par_id3154684\n" "help.text" msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose Data - Pivot Table - Refresh. Do the same after you have imported an Excel pivot table into $[officename] Calc." -msgstr "" +msgstr "Jeli daty žórłoweje tabele su so změnili, $[officename] pivotowu tabelu znowa wuličuje. Zo byšće tabelu znowa wuličował, wubjerće Daty – Pivotowa tabela – Aktualizować. Čińće samsne, po tym zo sće pivotowu tabelz z Excel do $[officename] Calc importował." #. kDqTU #: dbase_files.xhp @@ -5323,7 +5323,7 @@ "tit\n" "help.text" msgid "Importing and Exporting dBASE Files" -msgstr "" +msgstr "dBASE-dataje importować a eksportować" #. DkG3C #: dbase_files.xhp @@ -5332,7 +5332,7 @@ "bm_id1226844\n" "help.text" msgid "exporting;spreadsheets to dBASE importing;dBASE files dBASE import/export spreadsheets; importing from/exporting to dBASE files tables in databases;importing dBASE files" -msgstr "" +msgstr "eksportować; tabelowe dokumenty do dBASEimportować; dBASE-datajedBASE importować/eksportowaćtabelowe dokumenty; dBASE-dataje importować/eksportować tabele w datowych bankach; dBASE-dataje importować" #. phARr #: dbase_files.xhp @@ -5341,7 +5341,7 @@ "par_idN10738\n" "help.text" msgid "Importing and Exporting dBASE Files" -msgstr "" +msgstr "dBASE-dataje importować a eksportować" #. J3aQ5 #: dbase_files.xhp @@ -5350,7 +5350,7 @@ "par_idN10756\n" "help.text" msgid "You can open and save data in the dBASE file format (*.dbf file extension) in $[officename] Base or a spreadsheet. In %PRODUCTNAME Base, a dBASE database is a folder that contains files with the .dbf file extension. Each file corresponds to a table in the database. Formulas and formatting are lost when you open and save a dBASE file from %PRODUCTNAME." -msgstr "" +msgstr "Móžeće daty w datajowym formaće dBASE (datajowa kóncowka *.dbf) w $[officename] Base abo tabelowym dokumenće wočinić a składować. W %PRODUCTNAME Base je datowa banka dBASE rjadowak, kotryž dataje z datajowej kóncowku .dbf wobsahuje. Kóžda dataja tabeli w datowej bance wotpowěduje. Formle a formatěrowanje so zhubja, hdyž dBASE-dataju z %PRODUCTNAME wočinjeće a składujeće." #. jVz9V #: dbase_files.xhp @@ -5359,7 +5359,7 @@ "par_idN10759\n" "help.text" msgid "To Import a dBASE File Into a Spreadsheet" -msgstr "" +msgstr "Zo byšće dBASE-dataju do tabeloweho dokumenta importować:" #. v3JdV #: dbase_files.xhp @@ -5368,7 +5368,7 @@ "par_idN10760\n" "help.text" msgid "Choose File - Open." -msgstr "" +msgstr "Wubjerće Dataja – Wočinić." #. FmmZC #: dbase_files.xhp @@ -5377,7 +5377,7 @@ "par_idN1071F\n" "help.text" msgid "Locate the *.dbf file that you want to import." -msgstr "" +msgstr "Pytajće dataju *.dbf, kotruž chceće importować." #. cBR6P #: dbase_files.xhp @@ -5386,7 +5386,7 @@ "par_idN10768\n" "help.text" msgid "Click Open." -msgstr "" +msgstr "Klikńće na Öffnen. (słuša k dźěłowemu systemej)" #. WQGdy #: dbase_files.xhp @@ -5395,7 +5395,7 @@ "par_idN10730\n" "help.text" msgid "The Import dBASE files dialog opens." -msgstr "" +msgstr "Dialog dBASE-dataje importować so wočini." #. S2JPc #: dbase_files.xhp @@ -5404,7 +5404,7 @@ "par_idN10774\n" "help.text" msgid "Click OK." -msgstr "" +msgstr "Klikńće na W porjadku." #. DBvJH #: dbase_files.xhp @@ -5413,7 +5413,7 @@ "par_idN10777\n" "help.text" msgid "The dBASE file opens as a new Calc spreadsheet." -msgstr "" +msgstr "dBASE-dataja so jako nowy tabelowy dokument Calc wočini." #. pLCMp #: dbase_files.xhp @@ -5422,7 +5422,7 @@ "par_idN1074E\n" "help.text" msgid "If you want to save the spreadsheet as a dBASE file, do not alter or delete the first row in the imported file. This row contains information that is required by a dBASE database." -msgstr "" +msgstr "Jeli chceće tabelowy dokument jako dBASE-dataju składować, njeměnjejće abo njezhašejće prěnju linku w importowanej dataji. Tuta linka informacije wobsahuje, kotrež datowa banka dBASE trjeba." #. 8hyku #: dbase_files.xhp @@ -5431,7 +5431,7 @@ "par_idN1077A\n" "help.text" msgid "To Import a dBASE File Into a Database Table" -msgstr "" +msgstr "Zo byšće dBASE-dataju do tabele datoweje banki importował:" #. gBiN7 #: dbase_files.xhp @@ -5440,7 +5440,7 @@ "par_idN1076C\n" "help.text" msgid "A %PRODUCTNAME Base database table is actually a link to an existing database." -msgstr "" +msgstr "Tabela datoweje banki %PRODUCTNAME je poprawom zwjazanje z eksistowacej datowej banku." #. Z2WYv #: dbase_files.xhp @@ -5449,7 +5449,7 @@ "par_idN10796\n" "help.text" msgid "Choose File - New - Database." -msgstr "" +msgstr "Wubjerće Dataja – Nowy – Datowa banka." #. VtptA #: dbase_files.xhp @@ -5458,7 +5458,7 @@ "par_idN10786\n" "help.text" msgid "In the File name box of the Save As dialog, enter a name for the database." -msgstr "" +msgstr "Zapodajće do pola Dateiname dialoga Speichern unter mjeno za datowu banku. (słuša k dźěłowemu systemej)" #. KGUEA #: dbase_files.xhp @@ -5467,7 +5467,7 @@ "par_idN10792\n" "help.text" msgid "Click Save." -msgstr "" +msgstr "Klikńće na Speichern. (słuša k dźěłowemu systemej)" #. Bz2eB #: dbase_files.xhp @@ -5476,7 +5476,7 @@ "par_idN1079A\n" "help.text" msgid "In the Database type box of the Database Properties dialog, select \"dBASE\"." -msgstr "" +msgstr "Wubjerće „dBASE“ w polu Typ datoweje banki dialoga Kajkosće datoweje banki." #. HjBBj #: dbase_files.xhp @@ -5485,7 +5485,7 @@ "par_idN107A6\n" "help.text" msgid "Click Next." -msgstr "" +msgstr "Klikńće na Dale." #. w4Hcx #: dbase_files.xhp @@ -5494,7 +5494,7 @@ "par_idN107AE\n" "help.text" msgid "Click Browse." -msgstr "" +msgstr "Klikńće na Přepytać." #. EyJdW #: dbase_files.xhp @@ -5503,7 +5503,7 @@ "par_idN107B6\n" "help.text" msgid "Locate the directory that contains the dBASE file, and click OK." -msgstr "" +msgstr "Wubjerće zapis, kotryž dBASE-dataju wobsahuje a klikńće na W porjadku." #. 5kG55 #: dbase_files.xhp @@ -5512,7 +5512,7 @@ "par_idN107BE\n" "help.text" msgid "Click Create." -msgstr "" +msgstr "Klikńće na Wutworić." #. rJEHy #: dbase_files.xhp @@ -5521,7 +5521,7 @@ "par_idN107F1\n" "help.text" msgid "To Save a Spreadsheet as a dBASE File" -msgstr "" +msgstr "Zo byšće tabelowy dokument jako dBASE-dataju składował:" #. i2EnS #: dbase_files.xhp @@ -5530,7 +5530,7 @@ "par_idN107F8\n" "help.text" msgid "Choose File - Save As." -msgstr "" +msgstr "Wubjerće Dataja – Składować jako…." #. N4YuB #: dbase_files.xhp @@ -5539,7 +5539,7 @@ "par_idN10800\n" "help.text" msgid "In the File format box, select \"dBASE file\"." -msgstr "" +msgstr "Wubjerće „dBASE-dataja“ w polu Datajowy format ." #. rrFCz #: dbase_files.xhp @@ -5548,7 +5548,7 @@ "par_idN107F9\n" "help.text" msgid "In the File name box, type a name for the dBASE file." -msgstr "" +msgstr "Zapodajće mjeno za dBASE-dataju do pola Dateiname. (słuša k dźěłowemu systemej)" #. VW7aF #: dbase_files.xhp @@ -5557,7 +5557,7 @@ "par_idN10801\n" "help.text" msgid "Click Save." -msgstr "" +msgstr "Klikńće na Speichern. (słuša k dźěłowemu systemej)." #. WF9Ky #: dbase_files.xhp @@ -5566,7 +5566,7 @@ "par_idN10808\n" "help.text" msgid "Only the data on the current sheet is exported." -msgstr "" +msgstr "Jenož daty w aktualnej tabeli so eksportuja." #. kzGEG #: design.xhp @@ -5575,7 +5575,7 @@ "tit\n" "help.text" msgid "Selecting Themes for Sheets" -msgstr "" +msgstr "Drasty za tabele wubrać" #. qMsyD #: design.xhp @@ -5584,7 +5584,7 @@ "bm_id3150791\n" "help.text" msgid "theme selection for sheetslayout;spreadsheetscell styles; selectingselecting;formatting themessheets;formatting themesformats;themes for sheetsformatting;themes for sheets" -msgstr "" +msgstr "wuběr drastow za tabelewuhotowanje; tabelowe dokumentycelowe předłohi; wubraćwubrać; drasty formatowaćtabele; drasty formatowaćformaty; drasty za tabeleformatěrować; drasty za tabele" #. dt6vR #: design.xhp @@ -5593,7 +5593,7 @@ "hd_id3150791\n" "help.text" msgid "Selecting Themes for Sheets " -msgstr "" +msgstr "Drasty za tabele wubrać" #. axrVR #: design.xhp @@ -5602,7 +5602,7 @@ "par_id3145786\n" "help.text" msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets." -msgstr "" +msgstr "$[officename] Calc předdefinowany sadźbu formatěrowanskich drastow, kotrež dadźa so na waše tabelowe dokumenty nałožić." #. eAC5E #: design.xhp @@ -5611,7 +5611,7 @@ "par_id3154490\n" "help.text" msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet." -msgstr "" +msgstr "Njeje móžno, Calc drasty přidać a njedadźa so změnić. Móžeće wšak jich předłohi změnić, po tym zo sće na tabelowy dokument nałožił." #. ZD2hJ #: design.xhp @@ -5620,7 +5620,7 @@ "par_id3154757\n" "help.text" msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the Theme Selection dialog." -msgstr "" +msgstr "Prjedy hač tabelu z drastu formatěrujeće, dyrbiće znajmjeńša jednu swójsku celowu předłohu na cele w tabeli nałožić. Móžeće potom celowe formatěrowanje změnić, hdyž w dialogu Wuběr drastow drastu wuběraće a nałožujeće." #. CbouS #: design.xhp @@ -5629,7 +5629,7 @@ "par_id3156382\n" "help.text" msgid "To apply a custom cell style to a cell, you can open the Styles window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles window to apply this style to the selected cells." -msgstr "" +msgstr "Zo byšće swójsku celowu předłohu na celu nałožił, móžeće wokno Předłohi wočinić a nastajće w delnim lisćinowym polu napohład swójskich předłohow. Lisćina eksistowacych swójskich celowych předłohow so pokaza. Klikńće dwójce na mjeno we woknje Předłohi, zo byšće tutu předłohu, zo byšće tutu předłohu na wubrane cele nałožił." #. 6zVVD #: design.xhp @@ -5638,7 +5638,7 @@ "par_id3153963\n" "help.text" msgid "To apply a theme to a spreadsheet:" -msgstr "" +msgstr "Zo byšće drastu na tabelowy dokument nałožił:" #. FFRn8 #: design.xhp @@ -5647,7 +5647,7 @@ "par_id3146920\n" "help.text" msgid "Click the Choose Themes icon in the Tools bar." -msgstr "" +msgstr "Klikńće na symbol Tabelowa drasta w symbolowej lajsće Nastroje." #. yEAwo #: design.xhp @@ -5656,7 +5656,7 @@ "par_id3148488\n" "help.text" msgid "The Theme Selection dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles window lists the custom styles for specific cells." -msgstr "" +msgstr "Dialog Wuběr drastow so zjewi. Tutón dialog k dispoziciji stejace drasty za cyły tabelowy dokument nalistuje a wokno Předłohi nalistuje swójske předłohi za wěste cele." #. BgEap #: design.xhp @@ -5665,7 +5665,7 @@ "par_id3155114\n" "help.text" msgid "In the Theme Selection dialog, select the theme that you want to apply to the spreadsheet." -msgstr "" +msgstr "Wubjerće w dialogu Wuběr drastow drastu, kotruž chceće na tabelowy dokument nałožić." #. mhFa5 #: design.xhp @@ -5674,7 +5674,7 @@ "par_id3150090\n" "help.text" msgid "Click OK" -msgstr "" +msgstr "Klikńće na W porjadku" #. QfPpn #: design.xhp @@ -5683,7 +5683,7 @@ "par_id3150201\n" "help.text" msgid "As soon as you select another theme in the Theme Selection dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet." -msgstr "" +msgstr "Hdyž druhu drastu w dialogu Wuběr drastow wuběraće, so někotre kajkosće swójskeje předłohi na aktualny tabelowy dokument nałožuja. Změny su hnydom widźomne w tabelowym dokumenće." #. CRzqY #: design.xhp @@ -5692,7 +5692,7 @@ "par_id3146979\n" "help.text" msgid "Theme selection" -msgstr "" +msgstr "Wuběr drastow" #. t5ETg #: edit_multitables.xhp @@ -5701,7 +5701,7 @@ "tit\n" "help.text" msgid "Copying to Multiple Sheets" -msgstr "" +msgstr "Do wjacorych tabelow kopěrować" #. BbCnT #: edit_multitables.xhp @@ -5710,7 +5710,7 @@ "bm_id3149456\n" "help.text" msgid "copying;values, to multiple sheetspasting;values in multiple sheetsdata;inserting in multiple sheetssheets; simultaneous multiple filling" -msgstr "" +msgstr "kopěrować; hódnoty, do wjacorych tabelowzasadźić; hódnoty we wjacorych tabelachdaty; do wjacorych tabelow zasadźićtabele; simultane wjacore pjelnjene" #. 4PAZG #: edit_multitables.xhp @@ -5719,7 +5719,7 @@ "hd_id3149456\n" "help.text" msgid "Copying to Multiple Sheets" -msgstr "" +msgstr "Do wjacorych tabelow kopěrować" #. 4sMCm #: edit_multitables.xhp @@ -5728,7 +5728,7 @@ "par_id3150868\n" "help.text" msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document." -msgstr "" +msgstr "W $[officename] Calc móžeće hódnoty, tekst abo formle zasadźić, kotrež so nadobo do druhich wubranych tabelow wašeho dokumenta kopěruja." #. Z4D7x #: edit_multitables.xhp @@ -5737,7 +5737,7 @@ "par_id3153768\n" "help.text" msgid "Select all desired sheets by holding down the CommandCtrl key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white." -msgstr "" +msgstr "Dźeržće tastu cmd ⌘Strg stłóčenu a klikńće na wotpowědne rajtarki, kotrež su hišće šěre na delnjej kromje dźěłoweho wobłuka, zo byšće wšě požadane tabele wubrał. Wšě wubrane rajtarki su nětko běłe." #. xSB4o #: edit_multitables.xhp @@ -5746,7 +5746,7 @@ "par_idN10614\n" "help.text" msgid "You can use Shift+CommandCtrl+Page Up or Page Down to select multiple sheets using the keyboard." -msgstr "" +msgstr "Móžeće Umsch (⇧)+cmd ⌘Strg+Bild ↑ abo Bild ↓ wužiwać, zo byšće wjacore tabele z pomocu tastatury wubrał." #. bwHKS #: edit_multitables.xhp @@ -5755,7 +5755,7 @@ "par_id3147435\n" "help.text" msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell \"A1\" of the active sheet is automatically entered into cell \"A1\" of any other selected sheet." -msgstr "" +msgstr "Nětko, hdyž hódnoty, tekst abo formle do aktiwneje tabele zasadźujeće, so wone w identiskich pozicijach w druhich wubranych tabelach jewja. Na přikład daty, kotrež su so do cele „A1“ aktiwneje tabele zasadźili, so awtomatisce do cele „A1“ druheje wubraneje tabele zapodawaja." #. ASuDk #: filters.xhp @@ -5764,7 +5764,7 @@ "tit\n" "help.text" msgid "Applying Filters" -msgstr "" +msgstr "Filtry nałožić" #. vAkUj #: filters.xhp @@ -5773,7 +5773,7 @@ "bm_id3153896\n" "help.text" msgid "filters; applying/removing rows;removing/redisplaying with filters removing;filters" -msgstr "" +msgstr "filtry; nałožić/wotstronićlinki; wotstronić/z filtrami znowa pokazaćwotstronić; filtry" #. WH2qG #: filters.xhp @@ -5782,7 +5782,7 @@ "hd_id3153896\n" "help.text" msgid "Applying Filters" -msgstr "" +msgstr "Filtry nałožić" #. d4Uux #: filters.xhp @@ -5791,7 +5791,7 @@ "par_id3150869\n" "help.text" msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters." -msgstr "" +msgstr "Filtry a rozšěrjene filtry wam zmóžnjeja, na wěstych filtrowanych linkach (datowych sadźbach) datoweho wobłuka dźěłać. W tabelowych dokumentach w $[officename] su wšelake móžnosće za nałožwanje filtrow." #. XnoBc #: filters.xhp @@ -5800,7 +5800,7 @@ "par_id3155131\n" "help.text" msgid "One use for the AutoFilter function is to quickly restrict the display to records with identical entries in a data field." -msgstr "" +msgstr "Jedne wužiće za funkciju Awtomatiski filter je, zo jenož datowe sadźby z identiskimi zapiskami w datowym polu pokazuje." #. mbcRS #: filters.xhp @@ -5809,7 +5809,7 @@ "par_id3146119\n" "help.text" msgid "In the Standard Filter dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator." -msgstr "" +msgstr "W dialogu Standardny filter móžeće tež wobłuki definować, kotrež hódnoty we wosebitych datowych polach wobsahuja. Móžeće standardny filter wužiwać, zo byšće wuměnjenja z logiskim operatorom A abo z logiskim operatorom ABO zwjazał." #. YtHEq #: filters.xhp @@ -5818,7 +5818,7 @@ "par_id3150010\n" "help.text" msgid "The Advanced filter allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet." -msgstr "" +msgstr "Rozšěrjeny filter hač do wosom filtrowych wuměnjenjow zmóžnja. Z rozšěrjenymi filtrami móžeće wuměnjenja direktnje do tabele zapodać." #. tffpp #: filters.xhp @@ -5827,7 +5827,7 @@ "par_id9384746\n" "help.text" msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose Data - Filter - Reset Filter." -msgstr "" +msgstr "Zo byšće filter wotstronił, zo byšće wšě cele zaso widźał, klikńće do wobłuka, hdźež so filter nałožuje a wubjerće potom Daty – Dalše filtry – Filter wróćo stajić." #. E2EfB #: filters.xhp @@ -5836,7 +5836,7 @@ "par_idN10663\n" "help.text" msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected." -msgstr "" +msgstr "Hdyž wjacore linki z wobłuka wuběraće, w kotrymž je so filter nałožił, móže tutón wuběr linki wobsahować, kotrež su widźomne a linki, kotrež su so přez filter schowali. Jeli potom formatěrowanje nałožujeće, abo wubrane linki zhašeće, so tuta akcija jenož na widźomne linki nałožuje. Schowane linki potrjechene njejsu." #. LAuWM #: filters.xhp @@ -5845,7 +5845,7 @@ "par_id218817\n" "help.text" msgid "This is the opposite to rows that you have hidden manually by the Format - Rows - Hide Rows command. Manually hidden rows are deleted when you delete a selection that contains them." -msgstr "" +msgstr "To je nawopačne k linkam, kotrež sće manuelnje z přikazom Format – Linki – Linki schować schował. Manuelnje schowane linki so zhašeja, hdyž wuběr zhašeće, kotryž je wobsahuje." #. 8sxJn #: finding.xhp @@ -5854,7 +5854,7 @@ "tit\n" "help.text" msgid "Finding and Replacing in Calc" -msgstr "" +msgstr "W Calc pytać a wuměnić" #. qSAcB #: finding.xhp @@ -5863,7 +5863,7 @@ "bm_id3769341\n" "help.text" msgid "searching, see also findingfinding;formulas/values/text/objectsreplacing; cell contentsformatting;multiple cell texts" -msgstr "" +msgstr "pytać, hlejće pytanjepytać; formle/hódnoty/tekst/objektywuměnić; celowy wobsahformatěrować; tekst we wjacorych celach" #. riEkj #: finding.xhp @@ -5872,7 +5872,7 @@ "hd_id3149204\n" "help.text" msgid "Finding and Replacing in Calc" -msgstr "" +msgstr "W Calc pytać a wuměnić" #. uzefv #: finding.xhp @@ -5881,7 +5881,7 @@ "par_id9363689\n" "help.text" msgid "In spreadsheet documents you can find words, formulas, and styles. You can navigate from one result to the next, or you can highlight all matching cells at once, then apply another format or replace the cell content by other content." -msgstr "" +msgstr "W tabelowych dokumentach móžeće słowa, formle a předłohi pytać. Móžeće wot jednoho wuslědka do druheho nawigěrować, abo móžeće wšě wotpowědne cele naraz wuzběhnyć, potom druhi format nałožić abo wobsah cele z druhim wobsahom wuměnić." #. xm5HB #: finding.xhp @@ -5890,7 +5890,7 @@ "hd_id3610644\n" "help.text" msgid "The Find & Replace dialog" -msgstr "" +msgstr "Dialog „Pytać a wuměnić“" #. iACsJ #: finding.xhp @@ -5899,7 +5899,7 @@ "par_id2224494\n" "help.text" msgid "Cells can contain text or numbers that were entered directly as in a text document. But cells can also contain text or numbers as the result of a calculation. For example, if a cell contains the formula =1+2 it displays the result 3. You must decide whether to search for the 1 respective 2, or to search the 3." -msgstr "" +msgstr "Cele móža tekst abo ličby wobsahuja, kotrež so direktnje kaž w tekstowym dokumenće zapodawaja. Ale cele móža tež tekst abo ličby jako wuslědk wobličenja wobsahować. Jeli na přikład cela formlu =1+2 wobsahuje, so wuslědk 3 pokazuje. Dyrbiće rozsudźić, hač chceće za 1 respektiwnje 2 abo za 3 pytać." #. tbVVd #: finding.xhp @@ -5908,7 +5908,7 @@ "hd_id2423780\n" "help.text" msgid "To find formulas or values" -msgstr "" +msgstr "Zo byšće formle abo hódnoty pytał:" #. zstCf #: finding.xhp @@ -5917,7 +5917,7 @@ "par_id2569658\n" "help.text" msgid "You can specify in the Find & Replace dialog either to find the parts of a formula or the results of a calculation." -msgstr "" +msgstr "Móžeće w dialogu „Pytać a wuměnić“ podać, hač chceće pak dźěle formlow pak wuslědki wobličenja pytać." #. C6cDQ #: finding.xhp @@ -5926,7 +5926,7 @@ "par_id6394238\n" "help.text" msgid "Choose Edit - Find & Replace to open the Find & Replace dialog." -msgstr "" +msgstr "Wubjerće Wobdźěłać – Pytać a wuměnić…, zo byšće dialog „Pytać a wuměnić“ wočinił." #. cAUtG #: finding.xhp @@ -5935,7 +5935,7 @@ "par_id7214270\n" "help.text" msgid "Click More Options to expand the dialog." -msgstr "" +msgstr "Klikńće na Dalše nastajenja, zo byšće dialog rozšěrił." #. wX8ZD #: finding.xhp @@ -5944,7 +5944,7 @@ "par_id2186346\n" "help.text" msgid "Select \"Formulas\" or \"Values\" in the Search in list box." -msgstr "" +msgstr "Wubjerće „Formle“ abo „Hódnoty“ w lisćinowym polu Pytać w." #. nWDYw #: finding.xhp @@ -5953,7 +5953,7 @@ "par_id1331217\n" "help.text" msgid "With \"Formulas\" you will find all parts of the formulas." -msgstr "" +msgstr "Z „Formle“ namakaće wšě dźěle formlow." #. iERyD #: finding.xhp @@ -5962,7 +5962,7 @@ "par_id393993\n" "help.text" msgid "With \"Values\" you will find the results of the calculations." -msgstr "" +msgstr "Z „Hódnoty“ namakaće wuslědki wobličenjow." #. FMaXJ #: finding.xhp @@ -5971,7 +5971,7 @@ "par_id3163853\n" "help.text" msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. These symbols are included in searches when the Formatted Display search option is activated." -msgstr "" +msgstr "Celowy wobsah da so na rozdźělne wašnja formatěrować. Ličba na přikład da so jako měna formatěrować, zo by so měnowy symbol pokazał. Tute symbole so do pytanjow zapřijimaja, hdyž pytanske nastajenje „Formatěrowana pokazka“ je zaktiwizowane." #. Z4ABm #: finding.xhp @@ -5980,7 +5980,7 @@ "hd_id7359233\n" "help.text" msgid "Finding text" -msgstr "" +msgstr "Tekst pytać" #. uf8Kc #: finding.xhp @@ -5989,7 +5989,7 @@ "par_id6549272\n" "help.text" msgid "Choose Edit - Find & Replace to open the Find & Replace dialog." -msgstr "" +msgstr "Wubjerće Wobdźěłać – Pytać a wuměnić…, zo byšće dialog „Pytać a wuměnić“ wočinił." #. 5DY4k #: finding.xhp @@ -5998,7 +5998,7 @@ "par_id6529740\n" "help.text" msgid "Enter the text to find in the Find text box." -msgstr "" +msgstr "Zapodajće tekst, kotryž so ma pytać, do tekstoweho pola Pytać." #. pMEpA #: finding.xhp @@ -6007,7 +6007,7 @@ "par_id9121982\n" "help.text" msgid "Either click Find Next or Find All." -msgstr "" +msgstr "Klikńće pak na Přichodny pytać pak na Wšě pytać." #. E4Qgi #: finding.xhp @@ -6016,7 +6016,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 "" +msgstr "Hdyž na Přichodny pytać klikaće, Calc přichodnu celu wuběra, kotruž waš tekst wobsahuje. Móžeće tekst wobhladać a wobdźěłać a potom znowa na Přichodny pytać kliknyć, zo byšće k přichodnej namakanej celi pokročował." #. TcnxV #: finding.xhp @@ -6025,7 +6025,7 @@ "par_id2394482\n" "help.text" msgid "If you closed the dialog, you can press a key combination (CommandCtrl+Shift+F) to find the next cell without opening the dialog." -msgstr "" +msgstr "Jeli sće dialog začinił, móžeće tastowu kombinaciju cmd ⌘Strg+Umsch (⇧)+F tłóčić, zo byšće přichodnu celu namakał, bjeztoho zo byšće dialog wočinił." #. r5FfG #: finding.xhp @@ -6034,7 +6034,7 @@ "par_id631733\n" "help.text" msgid "By default, Calc searches the current sheet. Check the All sheets box to search through all sheets of the document." -msgstr "" +msgstr "Calc po standardźe aktualnu tabelu přepytuje. Zmóžńće kontrolny kašćik Wšě tabele, zo byšće wšě tabele dokumenta přepytał." #. ahmfD #: finding.xhp @@ -6043,7 +6043,7 @@ "par_id7811822\n" "help.text" msgid "When you click Find All, Calc selects all cells that contain your entry. Now you can for example set all found cells to bold, or apply a Cell Style to all at once." -msgstr "" +msgstr "Hdyž na Wšě pytać klikaće, Calc wšě cele wuběra, kotrež waš pytanski wuraz wobsahuja. Nětko móžeće na přikład wšě namakane cele tučne formatěrować abo celowu předłohu na wšě naraz nałožić." #. 2DBXW #: finding.xhp @@ -6052,7 +6052,7 @@ "hd_id8531449\n" "help.text" msgid "The Navigator" -msgstr "" +msgstr "Nawigator" #. FFkBL #: finding.xhp @@ -6061,7 +6061,7 @@ "par_id9183935\n" "help.text" msgid "Choose View - Navigator to open the Navigator window." -msgstr "" +msgstr "Wubjerće Napohlad – Nawigator, zo byšće wokno Nawigatora wočinił." #. yAdcD #: finding.xhp @@ -6070,7 +6070,7 @@ "par_id946684\n" "help.text" msgid "The Navigator is the main tool for finding and selecting objects." -msgstr "" +msgstr "Nawigator je hłowny nastroj za pytanje a wuběranje objektow." #. 4Ezz7 #: finding.xhp @@ -6079,7 +6079,7 @@ "par_id9607226\n" "help.text" msgid "Use the Navigator for inserting objects and links within the same document or from other open documents." -msgstr "" +msgstr "Wužiwajće Nawigator, zo byšće objekty a wotkazy w samsnym dokumenće abo z druhich wočinjenych dokumentow zasadźił." #. Zg9uE #: format_table.xhp @@ -6088,7 +6088,7 @@ "tit\n" "help.text" msgid "Formatting Spreadsheets" -msgstr "" +msgstr "Tabelowe dokumenty formatěrować" #. CuVCu #: format_table.xhp @@ -6097,7 +6097,7 @@ "bm_id3154125\n" "help.text" msgid "text in cells; formattingspreadsheets;formattingbackgrounds;cells and pagesborders;cells and pagesformatting;spreadsheetsnumbers; formatting options for selected cellscells; number formatscurrencies;formats" -msgstr "" +msgstr "tekst w celach; formatěrowaćtabelowe dokumenty; formatěrowaćpozadki; cele a stronyramiki; cele a stronyformatěrować; tabelowe dokumentyličby; formatěrowanske nastajenja za wubrane celecele; ličbne formatyměny; formaty" #. eurEF #: format_table.xhp @@ -6106,7 +6106,7 @@ "hd_id3154125\n" "help.text" msgid "Formatting Spreadsheets" -msgstr "" +msgstr "Tabelowe dokumenty formatěrować" #. WMnGx #: format_table.xhp @@ -6115,7 +6115,7 @@ "hd_id3153912\n" "help.text" msgid "Formatting Text in a Spreadsheet" -msgstr "" +msgstr "Tekst w tabelowym dokumenće formatěrować" #. EG9vg #: format_table.xhp @@ -6124,7 +6124,7 @@ "par_id3144772\n" "help.text" msgid "Select the text you want to format." -msgstr "" +msgstr "Wubjerće tekst, kotryž chceće formatěrować." #. dcUPy #: format_table.xhp @@ -6133,7 +6133,7 @@ "par_id3155268\n" "help.text" msgid "Choose the desired text attributes from the Formatting Bar. You can also choose Format - Cells. The Format Cells dialog will appear in which you can choose various text attributes on the Font tab page." -msgstr "" +msgstr "Wubjerće požadane tekstowe atributy ze symboloweje lajsty Formatěrowanje. Móžeće tež Format – Cele… wubrać. Dialog Cele formatěrować so zjewi, w kotrymž móžeće wšelake tekstowe atributy na rajtarku Pismo wubrać." #. 5fukM #: format_table.xhp @@ -6142,7 +6142,7 @@ "hd_id3149899\n" "help.text" msgid "Formatting Numbers in a Spreadsheet" -msgstr "" +msgstr "Zo byšće ličby w tabelowym dokumenće formatěrował:" #. SjM5x #: format_table.xhp @@ -6151,7 +6151,7 @@ "par_id3159226\n" "help.text" msgid "Select the cells containing the numbers you want to format." -msgstr "" +msgstr "Wubjerće cele, kotrež ličby wobsahuja, kotrež chceće formatěrować." #. 8qkZC #: format_table.xhp @@ -6160,7 +6160,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 "" +msgstr "Zo byšće ličby w standardnym měnowym formaće abo jako procentowe sadźby formatěrował, wužiwajće symbolej w symbolowej lajsće Formatěrowanje. Wužiwajće Format – Cele… za druhe formaty. Móžeće z předdefinowanych formatow wubrać abo na rajtarku Ličby swójski format definować." #. QxDDZ #: format_table.xhp @@ -6169,7 +6169,7 @@ "hd_id3153483\n" "help.text" msgid "Formatting Borders and Backgrounds for Cells and Pages" -msgstr "" +msgstr "Ramiki a pozadki za cele a strony formatěrować" #. PpEbj #: format_table.xhp @@ -6178,7 +6178,7 @@ "par_id3154733\n" "help.text" msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the CommandCtrl key when clicking), and then activating the Format Cells dialog in Format - Cells. In this dialog, you can select attributes such as shadows and backgrounds." -msgstr "" +msgstr "Wubjerće najprjedy cele (za wjacory wuběr dźeržće tastu cmd ⌘Strg stłóčenu, mjeztym so klikaće) a aktiwizujće potom dialog Cele formatěrować w Format – Cele…, zo byšće skupinje celow format připokazał. W tutym dialogu móžeće atributy kaž na přikład sćiny a pozadki wubrać." #. QyNx2 #: format_table.xhp @@ -6187,7 +6187,7 @@ "par_id3145116\n" "help.text" msgid "To apply formatting attributes to an entire sheet, choose Format - Page Style. You can define headers and footers, for example, to appear on each printed page." -msgstr "" +msgstr "Zo byšće formatěrowanske atributy na cyłu tabelu nałožił, wubjerće Format – Předłoha strony…. Móžeće na přikład hłowowe a nohowe linki definować, kotrež so maja na kóždej wućišćanej stronje jewić." #. VGmPH #: format_table.xhp @@ -6196,7 +6196,7 @@ "par_id3145389\n" "help.text" msgid "An image that you have loaded with Format - Page Style - Background is only visible in print or in the print preview. To display a background image on screen as well, insert the graphic image by choosing Insert - Image - From File and arrange the image behind the cells by choosing Format - Arrange - To Background. Use the Navigator to select the background image." -msgstr "" +msgstr "Wobraz, kotryž sće z Format – Předłoha strony… – Rajtark: Pozadk začitał, je jenož při ćišćenju abo w ćišćerskim přehledźe widźomny. Zo byšće tež pozadkowy wobraz na wobrazowce pokazał, wubjerće Zasadźić – Wobraz…, zo byšće grafiku zasadźił a wubjerće Format – Rjadować – Do pozadka, zo byšće wobraz za celemi placěrował. Wužiwajće Nawigator, zo byšće pozadkowy wobraz wubrał." #. vvAFw #: format_table.xhp @@ -6205,7 +6205,7 @@ "par_id2837916\n" "help.text" msgid "Number Formatting Options" -msgstr "" +msgstr "Nastajenja za formatěrowanje ličbow" #. umrzR #: format_table.xhp @@ -6214,7 +6214,7 @@ "par_id2614215\n" "help.text" msgid "Backgrounds for Cells" -msgstr "" +msgstr "Pozadki za cele" #. S9XPt #: format_value.xhp @@ -6223,7 +6223,7 @@ "tit\n" "help.text" msgid "Formatting Numbers With Decimals" -msgstr "" +msgstr "Ličby z decimalnymi městnami formatěrować" #. vXT2D #: format_value.xhp @@ -6232,7 +6232,7 @@ "bm_id3145367\n" "help.text" msgid "numbers;formatting decimals formats; numbers in tables tables; number formats defaults; number formats in spreadsheets decimal places;formatting numbers formatting;numbers with decimals formatting;adding/deleting decimal places number formats; adding/deleting decimal places in cells deleting; decimal places decimal places; adding/deleting" -msgstr "" +msgstr "ličby; decimalne městna formatěrowaćformaty; ličby w tabelachtabele; ličbne formatypřednastajenja; ličbne formaty w tabelowych dokumentachdecimalne městna; ličby formatěrowaćformatěrować; ličby z decimalnymi městnamiformatěrować; decimalne městna přidać/zhašećličbne formaty; decimalne městna w celach přidać/zhašećzhašeć; decimalne městnadecimalne městna; přidać/zhašeć" #. Fcg2i #: format_value.xhp @@ -6241,7 +6241,7 @@ "hd_id3145367\n" "help.text" msgid "Formatting Numbers With Decimals" -msgstr "" +msgstr "Ličby z decimalnymi městnami formatěrować" #. MBqzn #: format_value.xhp @@ -6250,7 +6250,7 @@ "par_id3148576\n" "help.text" msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point." -msgstr "" +msgstr "Zapodajće ličbu do tabele, na přikład 1234,5678. Tuta ličba so w standardnym ličbnym formaće pokaza, z dwěmaj decimalnymaj městnomaj. Budźeće 1234,57 widźeć, hdyž zapodaće wobkrućeće. Jenož zwobraznjenje w dokumenće so skruži; ale ličba internje wšě štyri decimalne městna za decimalnej komu wobchowuje." #. 5PHhG #: format_value.xhp @@ -6259,7 +6259,7 @@ "par_id3154012\n" "help.text" msgid "To format numbers with decimals:" -msgstr "" +msgstr "Zo byšće ličby z decimalnymi městnami formatěrował:" #. 3AGec #: format_value.xhp @@ -6268,7 +6268,7 @@ "par_id3147394\n" "help.text" msgid "Set the cursor at the number and choose Format - Cells to start the Format Cells dialog." -msgstr "" +msgstr "Stajće kursor na ličbu a wubjerće Format – Cele…, zo byšće dialog Cele formatěrować wočinił." #. 6rPBs #: format_value.xhp @@ -6277,7 +6277,7 @@ "par_id3153157\n" "help.text" msgid "On the Numbers tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format." -msgstr "" +msgstr "W rajtarku Ličby widźiće wuběr předdefinowanych ličbnych formatow. Deleka naprawo w dialogu widźiće přehlad, kak by waša aktualna ličba wupadała, jeli byšće jej wěsty format dał." #. EpfA6 #: format_value.xhp @@ -6286,7 +6286,7 @@ "par_id3155766\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol" #. RuWXz #: format_value.xhp @@ -6295,7 +6295,7 @@ "par_id3149256\n" "help.text" msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the Number Format: Add Decimal Place or Number Format: Delete Decimal Place icons on the Formatting Bar." -msgstr "" +msgstr "Jeli jenož chceće ličbu pokazanych decimalnych městnow změnić, wužiwajće prosće symbol Ličbny format: Decimalne městno přidać abo Ličbny format: Decimalne městno zhašeć w symbolowej lajsće Formatěrowanje." #. 4h8BG #: format_value_userdef.xhp @@ -6304,7 +6304,7 @@ "tit\n" "help.text" msgid "User-defined Number Formats" -msgstr "" +msgstr "Swójske ličbne formaty" #. GcvLD #: format_value_userdef.xhp @@ -6313,7 +6313,7 @@ "bm_id3143268\n" "help.text" msgid "numbers;user-defined formatting formatting; user-defined numbers number formats; millions format codes; user-defined number formats" -msgstr "" +msgstr "ličby; swójske formatěrowanjeformatěrowanje; swójske ličbyličbne formaty; milionyformatowe kody; swójske ličbne formaty" #. ATTjD #: format_value_userdef.xhp @@ -6322,7 +6322,7 @@ "hd_id3143268\n" "help.text" msgid "User-defined Number Formats" -msgstr "" +msgstr "Swójske ličbne formaty" #. AGNss #: format_value_userdef.xhp @@ -6331,7 +6331,7 @@ "par_id3150400\n" "help.text" msgid "You can define your own number formats to display numbers in %PRODUCTNAME Calc." -msgstr "" +msgstr "Móžeće swójske ličbne formaty definować, zo byšće ličby w %PRODUCTNAME Calc pokazał." #. NFeoQ #: format_value_userdef.xhp @@ -6340,7 +6340,7 @@ "par_id3150767\n" "help.text" msgid "As an example, to display the number 10,200,000 as 10.2 Million:" -msgstr "" +msgstr "Zo byšće na přikład ličbu 10.200.000 jako 10,2 milionaj pokazał:" #. D3ZeE #: format_value_userdef.xhp @@ -6349,7 +6349,7 @@ "par_id3150868\n" "help.text" msgid "Select the cells to which you want to apply a new, user-defined format." -msgstr "" +msgstr "Wubjerće cele, na kotrež chceće nowy, swójski format nałožić." #. EWTbr #: format_value_userdef.xhp @@ -6358,7 +6358,7 @@ "par_id3149664\n" "help.text" msgid "Choose Format - Cells - Numbers." -msgstr "" +msgstr "Wubjerće Format – Cele… – Rajtark: Ličby." #. dDV7y #: format_value_userdef.xhp @@ -6367,7 +6367,7 @@ "par_id3149260\n" "help.text" msgid "In the Categories list box select \"User-defined\"." -msgstr "" +msgstr "Wubjerće w lisćinowym polu Kategorija zapisk „Swójski“." #. CAX4U #: format_value_userdef.xhp @@ -6376,7 +6376,7 @@ "par_id3148646\n" "help.text" msgid "In the Format code text box enter the following code:" -msgstr "" +msgstr "Zapodajće slědowacy kod do tekstowehp pola Formatowy kod:" #. dkHFm #: format_value_userdef.xhp @@ -6385,7 +6385,7 @@ "par_id3152596\n" "help.text" msgid "0.0,, \"Million\"" -msgstr "" +msgstr "0,0.. \"milion(-aj, -ow)\"" #. tRigu #: format_value_userdef.xhp @@ -6394,7 +6394,7 @@ "par_id3144764\n" "help.text" msgid "Click OK." -msgstr "" +msgstr "Klikńće na W porjadku." #. BeeYr #: format_value_userdef.xhp @@ -6403,7 +6403,7 @@ "par_id3155417\n" "help.text" msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0." -msgstr "" +msgstr "Slědowaca tabela efekty skruženja, dźělatkow tysačnakow (.), decimalnych dźělatkow (,) a zastupowacych symbolow # a 0." #. rhoNR #: format_value_userdef.xhp @@ -6412,7 +6412,7 @@ "par_id3146971\n" "help.text" msgid "Number" -msgstr "" +msgstr "Ličba" #. gcKFX #: format_value_userdef.xhp @@ -6421,7 +6421,7 @@ "par_id3154757\n" "help.text" msgid ".#,, \"Million\"" -msgstr "" +msgstr "0,#.. \"milion(-aj, -ow)\"" #. ZDWJV #: format_value_userdef.xhp @@ -6430,7 +6430,7 @@ "par_id3147338\n" "help.text" msgid "0.0,, \"Million\"" -msgstr "" +msgstr "0,0.. \"milion(-aj, -ow)\"" #. F3THi #: format_value_userdef.xhp @@ -6439,7 +6439,7 @@ "par_id3146920\n" "help.text" msgid "#,, \"Million\"" -msgstr "" +msgstr "#.. \"milion(-aj, -ow)\"" #. CWvSi #: format_value_userdef.xhp @@ -6448,7 +6448,7 @@ "par_id3147344\n" "help.text" msgid "10200000" -msgstr "" +msgstr "10200000" #. LXQ8t #: format_value_userdef.xhp @@ -6457,7 +6457,7 @@ "par_id3147003\n" "help.text" msgid "10.2 Million" -msgstr "" +msgstr "10,2 milionaj" #. eYXd4 #: format_value_userdef.xhp @@ -6466,7 +6466,7 @@ "par_id3166426\n" "help.text" msgid "10.2 Million" -msgstr "" +msgstr "10,2 milionaj" #. zDUuF #: format_value_userdef.xhp @@ -6475,7 +6475,7 @@ "par_id3155113\n" "help.text" msgid "10 Million" -msgstr "" +msgstr "10 milionow" #. PLajw #: format_value_userdef.xhp @@ -6484,7 +6484,7 @@ "par_id3150369\n" "help.text" msgid "500000" -msgstr "" +msgstr "500000" #. jKNEA #: format_value_userdef.xhp @@ -6493,7 +6493,7 @@ "par_id3145585\n" "help.text" msgid ".5 Million" -msgstr "" +msgstr "0,5 milionow" #. rpB7A #: format_value_userdef.xhp @@ -6502,7 +6502,7 @@ "par_id3154486\n" "help.text" msgid "0.5 Million" -msgstr "" +msgstr "0,5 milionow" #. Bao4X #: format_value_userdef.xhp @@ -6511,7 +6511,7 @@ "par_id3146114\n" "help.text" msgid "1 Million" -msgstr "" +msgstr "1 milion" #. kqXDb #: format_value_userdef.xhp @@ -6520,7 +6520,7 @@ "par_id3155810\n" "help.text" msgid "100000000" -msgstr "" +msgstr "100000000" #. PMVAd #: format_value_userdef.xhp @@ -6529,7 +6529,7 @@ "par_id3153818\n" "help.text" msgid "100. Million" -msgstr "" +msgstr "100, milionow" #. h9FjQ #: format_value_userdef.xhp @@ -6538,7 +6538,7 @@ "par_id3151241\n" "help.text" msgid "100.0 Million" -msgstr "" +msgstr "100,0 milionow" #. 9GBRG #: format_value_userdef.xhp @@ -6547,7 +6547,7 @@ "par_id3144771\n" "help.text" msgid "100 Million" -msgstr "" +msgstr "100 milionow" #. chVng #: formula_copy.xhp @@ -6556,7 +6556,7 @@ "tit\n" "help.text" msgid "Copying Formulas" -msgstr "" +msgstr "Formle kopěrować" #. AKeo5 #: formula_copy.xhp @@ -6565,7 +6565,7 @@ "bm_id3151113\n" "help.text" msgid "formulas; copying and pastingcopying; formulaspasting;formulas" -msgstr "" +msgstr "formle; kopěrować a zasadźićkopěrować; formlezasadźić; formle" #. LVG2x #: formula_copy.xhp @@ -6574,7 +6574,7 @@ "hd_id3151113\n" "help.text" msgid "Copying Formulas" -msgstr "" +msgstr "Formle kopěrować" #. 3ZujS #: formula_copy.xhp @@ -6583,7 +6583,7 @@ "par_id3156424\n" "help.text" msgid "There are various ways to copy a formula. One suggested method is:" -msgstr "" +msgstr "Su wjacore móžnosće, z kotrymiž móžeće formlu kopěrować. Jedna namjetowana metoda je:" #. ujCBT #: formula_copy.xhp @@ -6592,7 +6592,7 @@ "par_id3150439\n" "help.text" msgid "Select the cell containing the formula." -msgstr "" +msgstr "Wubjerće celu, kotraž formlu wobsahuje." #. ZofEF #: formula_copy.xhp @@ -6601,7 +6601,7 @@ "par_id3154319\n" "help.text" msgid "Choose Edit - Copy, or press CommandCtrl+C to copy it." -msgstr "" +msgstr "Wubjerće Wobdźěłać – Kopěrować abo tłóčće cmd ⌘Strg+C, zo byšće ju kopěrował." #. r3npC #: formula_copy.xhp @@ -6610,7 +6610,7 @@ "par_id3159155\n" "help.text" msgid "Select the cell into which you want the formula to be copied." -msgstr "" +msgstr "Wubjerće celu, do kotrejež chceće formlu kopěrować." #. BTcCF #: formula_copy.xhp @@ -6619,7 +6619,7 @@ "par_id3153728\n" "help.text" msgid "Choose Edit - Paste, or press CommandCtrl+V. The formula will be positioned in the new cell." -msgstr "" +msgstr "Wubjerće Wobdźěłać – Zasadźić abo tłóčće cmd ⌘Strg+V. Formla so w nowej celi zasadźi." #. atCgW #: formula_copy.xhp @@ -6628,7 +6628,7 @@ "par_id3149961\n" "help.text" msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:" -msgstr "" +msgstr "Jeli chceće formlu do wjacorych celow kopěrować, je spěšna a lochka metoda, zo byšće ju do susodnych celowych wobłukow kopěrował:" #. gyrPq #: formula_copy.xhp @@ -6637,7 +6637,7 @@ "par_id3149400\n" "help.text" msgid "Select the cell containing the formula." -msgstr "" +msgstr "Wubjerće celu, kotraž formlu wobsahuje." #. fx7Nc #: formula_copy.xhp @@ -6646,7 +6646,7 @@ "par_id3154018\n" "help.text" msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol." -msgstr "" +msgstr "Stajće kursor myški deleka naprawo do wuzběhnjeneho ramika cele a dźeržće tastu myški stłóčenu, doniž so pokazowak myški do nitkoweho křiža njezměni." #. BmZDf #: formula_copy.xhp @@ -6655,7 +6655,7 @@ "par_id3150749\n" "help.text" msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula." -msgstr "" +msgstr "Ćehńće ze stłóčenej tastu myški dele abo naprawo přez cele, do kotrychž chceće formlu kopěrować." #. 5LuK6 #: formula_copy.xhp @@ -6664,7 +6664,7 @@ "par_id3153714\n" "help.text" msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted." -msgstr "" +msgstr "Hdyž tastu myški pušćeće, so formla do celow kopěruje a awtomatisce přiměrja." #. Ajamz #: formula_copy.xhp @@ -6673,7 +6673,7 @@ "par_id3156385\n" "help.text" msgid "If you do not want values and texts to be automatically adjusted, then hold down the CommandCtrl key when dragging. Formulas, however, are always adjusted accordingly." -msgstr "" +msgstr "Jeli nochceće, zo so hódnoty a teksty awtomatisce přiměrjeja, dźeržće tastu cmd ⌘Strg, mjeztym zo ćahaće. Formle wšak so přeco přiměrjeja." #. MrTXu #: formula_enter.xhp @@ -6682,7 +6682,7 @@ "tit\n" "help.text" msgid "Entering Formulas" -msgstr "" +msgstr "Formle zapodać" #. N8kvv #: formula_enter.xhp @@ -6691,7 +6691,7 @@ "bm_id3150868\n" "help.text" msgid "formula bar; input lineinput line in formula barformulas; inputtinginserting;formulas" -msgstr "" +msgstr "formlowa lajsta; zapodawanska linkazapodawanska linka w formlowej lajsćeformle; zapodaćzasadźić; formle" #. pfDFF #: formula_enter.xhp @@ -6700,7 +6700,7 @@ "hd_id3150868\n" "help.text" msgid "Entering Formulas" -msgstr "" +msgstr "Formle zapodać" #. H3w2m #: formula_enter.xhp @@ -6709,7 +6709,7 @@ "par_id6848353\n" "help.text" msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods." -msgstr "" +msgstr "Móžeće formle na wšelake wašnja zapodać: Wužiwajće symbole, zapodajće je z tastaturu abo wužiwajće měšeńcu wobeju metodow." #. HXqkB #: formula_enter.xhp @@ -6718,7 +6718,7 @@ "par_id3145364\n" "help.text" msgid "Click the cell in which you want to enter the formula." -msgstr "" +msgstr "Klikńće do cele, do kotrejež chceće formlu zapodać." #. 269e8 #: formula_enter.xhp @@ -6727,7 +6727,7 @@ "par_id3150012\n" "help.text" msgid "Click the Formula icon on the Formula Bar." -msgstr "" +msgstr "Klikńće na symbol Formla w formlowej lajsće." #. jtUAV #: formula_enter.xhp @@ -6736,7 +6736,7 @@ "par_id3156441\n" "help.text" msgid "You will now see an equals sign in the input line and you can begin to input the formula." -msgstr "" +msgstr "Widźiće znak runosće w zapodawanskej lince a móžeće započeć, formlu zapodawać." #. 6zCUk #: formula_enter.xhp @@ -6745,7 +6745,7 @@ "par_id3153726\n" "help.text" msgid "After entering the required values, press Enter or click Accept to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click Cancel." -msgstr "" +msgstr "Po tym zo sće trěbne hódnoty zapodał, tłóčće Enter abo klikńće na Akceptěrować, zo byšće wuslědk do aktiwneje cele zasadźił. Jeli chceće swoje zapodaće w zapodawanskej lince zhašał, tłóčće Esc abo klikńće na Přetorhnyć." #. b4AH4 #: formula_enter.xhp @@ -6754,7 +6754,7 @@ "par_id3147394\n" "help.text" msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign." -msgstr "" +msgstr "Móžeće tež hódnoty a formle direktnje do celow zapodawać, samo hdyž zapodawanski kursor njewidźiće. Formle dyrbja so přeco ze znakom runosće započeć." #. qLCxa #: formula_enter.xhp @@ -6763,7 +6763,7 @@ "par_id4206976\n" "help.text" msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:" -msgstr "" +msgstr "Móžeće tež tastu + abo - na numeriskej tastaturje tłóčić, zo byšće formlu zapodał. Tasta Num (⇩) dyrbi zmóžnjena być. Tłóčće na přikład slědowace tasty:" #. 7dRd8 #: formula_enter.xhp @@ -6772,7 +6772,7 @@ "par_id1836909\n" "help.text" msgid "+ 5 0 - 8 Enter" -msgstr "" +msgstr "+ 5 0 - 8 Enter" #. pADVE #: formula_enter.xhp @@ -6781,7 +6781,7 @@ "par_id8171330\n" "help.text" msgid "You see the result 42 in the cell. The cell contains the formula =+50-8." -msgstr "" +msgstr "Widźiće wuslědk 42 w celi. Cela formlu =50-8 wobsahuje." #. H7Gc5 #: formula_enter.xhp @@ -6790,7 +6790,7 @@ "par_id3155764\n" "help.text" msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. Show references in color can be deactivated under %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "" +msgstr "Jeli formlu z poćahami wobdźěłujeće, so poćahi a přisłušne cele ze samsnej barbu wuzběhuja. Móžeće nětko wulkosć poćahoweho ramika z myšku změnić, a poćah w formli, kotraž so w zapodawanskej lince pokazuje, so tež změni. Nastajenje Poćahi barbnje pokazać da so pod %PRODUCTNAME – NastajenjaNastroje – Nastajenja…%PRODUCTNAME Calc – Napohlad znjemóžnić." #. G2WDH #: formula_enter.xhp @@ -6799,7 +6799,7 @@ "par_id3149210\n" "help.text" msgid "If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. " -msgstr "" +msgstr "Jeli chceće sej wobličenje jednotliwych elementow formle wobhladać, wubjerće wotpowědne elementy a tłóčće F9. Wubjerće na přikład w formli SUMA(A1:B12)*SUMA(C1:D12) wotrězk SUMA(C1:D12) a tłóčće F9, zo byšće sej mjezywuslědk za tutón wobłuk wobhladał." #. UNkCH #: formula_enter.xhp @@ -6808,7 +6808,7 @@ "par_id3150304\n" "help.text" msgid "If an error occurs when creating the formula, an error message appears in the active cell." -msgstr "" +msgstr "Jeli zmylk nastawa, hdyž formlu wutworjeće, so zmylkowa zdźělenka w aktiwnej celi jewi." #. TMv6c #: formula_enter.xhp @@ -6817,7 +6817,7 @@ "par_id3152993\n" "help.text" msgid "Formula bar" -msgstr "" +msgstr "Formlowa lajsta" #. a5yvD #: formula_value.xhp @@ -6826,7 +6826,7 @@ "tit\n" "help.text" msgid "Displaying Formulas or Values" -msgstr "" +msgstr "Formle abo hódnoty pokazać" #. CSD33 #: formula_value.xhp @@ -6835,7 +6835,7 @@ "bm_id3153195\n" "help.text" msgid "formulas; displaying in cellsvalues; displaying in tablestables; displaying formulas/valuesresults display vs. formulas displaydisplaying; formulas instead of results" -msgstr "" +msgstr "formle; w celach pokazaćhódnoty; w tabelach pokazaćtabele; formle/hódnoty pokazaćpokazka wuslědkow resp. formlowpokazać; formle město wuslědkow" #. mHXkN #: formula_value.xhp @@ -6844,7 +6844,7 @@ "hd_id3153195\n" "help.text" msgid "Displaying Formulas or Values" -msgstr "" +msgstr "Formle abo hódnoty pokazać" #. MeZFx #: formula_value.xhp @@ -6853,7 +6853,7 @@ "par_id3150010\n" "help.text" msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:" -msgstr "" +msgstr "Jeli chceće formle w celach pokazać, na přikład w formje =SUMA(A1:B5), postupujće takle:" #. PADBf #: formula_value.xhp @@ -6862,7 +6862,7 @@ "par_id3151116\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "" +msgstr "Wubjerće %PRODUCTNAME – NastajenjaNastroje – Nastajenja… – %PRODUCTNAME Calc – Napohlad." #. 6tdYB #: formula_value.xhp @@ -6871,7 +6871,7 @@ "par_id3146120\n" "help.text" msgid "In the Display area mark the Formulas box. Click OK." -msgstr "" +msgstr "Markěrujće we wobłuku Pokazać polo Formle. Klikńće na W porjadku." #. Q5PPt #: formula_value.xhp @@ -6880,7 +6880,7 @@ "par_id3147396\n" "help.text" msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box." -msgstr "" +msgstr "Njemarkěrujće wšak polo Formle, jeli sej chceće wuslědki wobličenja město formle wobhladać." #. a6ria #: formula_value.xhp @@ -6889,7 +6889,7 @@ "par_id3153157\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View" -msgstr "" +msgstr "%PRODUCTNAME – NastajenjaNastroje – Nastajenja…%PRODUCTNAME Calc - Napohlad" #. xBkFL #: formulas.xhp @@ -6898,7 +6898,7 @@ "tit\n" "help.text" msgid "Calculating With Formulas" -msgstr "" +msgstr "Z formlemi ličić" #. 5J8TF #: formulas.xhp @@ -6907,7 +6907,7 @@ "bm_id3155411\n" "help.text" msgid "formulas;calculating withcalculating; with formulasexamples;formula calculation" -msgstr "" +msgstr "formle; ličić zličić; z formlemipřikłady; formlowe wobličenje" #. snrES #: formulas.xhp @@ -6916,7 +6916,7 @@ "hd_id3155411\n" "help.text" msgid "Calculating With Formulas" -msgstr "" +msgstr "Z formlemi ličić" #. iVVxK #: formulas.xhp @@ -6925,7 +6925,7 @@ "par_id3156281\n" "help.text" msgid "All formulas begin with an equals sign. The formulas can contain numbers, text, arithmetic operators, logic operators, or functions." -msgstr "" +msgstr "Wšě formle so ze znakom runosće započinaja. Formle móže ličby, tekst, aritmetiske operatory, logiske operatory abo funkcije wobsahować." #. VMHDP #: formulas.xhp @@ -6934,7 +6934,7 @@ "par_id3145272\n" "help.text" msgid "Remember that the basic arithmetic operators (+, -, *, /) can be used in formulas using the \"Multiplication and Division before Addition and Subtraction\" rule. Instead of writing =SUM(A1:B1) you can write =A1+B1." -msgstr "" +msgstr "Zabudźće na to, zo zakładne aritmetiske operatory (+, -, *, /) dadźa so w formlach z prawidłom „Dypkowe ličenje před smužkowym ličenjom“ wužiwać. Město =SUMA(A1:B1) móžeće =A1+B1 pisać." #. pr9Zq #: formulas.xhp @@ -6943,7 +6943,7 @@ "par_id3146119\n" "help.text" msgid "Parentheses can also be used. The result of the formula =(1+2)*3 produces a different result than =1+2*3." -msgstr "" +msgstr "Móžeće tež kulojte spinki wužiwać. Z formle =(1+2)*3 druhi wuslědk hač z =1+2+3 wuchadźa." #. xyGTS #: formulas.xhp @@ -6952,7 +6952,7 @@ "par_id3156285\n" "help.text" msgid "Here are a few examples of $[officename] Calc formulas:" -msgstr "" +msgstr "Tu su někotre přikłady formlow $[officename] Calc:" #. suAfx #: formulas.xhp @@ -6961,7 +6961,7 @@ "par_id3154015\n" "help.text" msgid "=A1+10" -msgstr "" +msgstr "=A1+10" #. CBA6j #: formulas.xhp @@ -6970,7 +6970,7 @@ "par_id3146972\n" "help.text" msgid "Displays the contents of cell A1 plus 10." -msgstr "" +msgstr "Pokazuje wobsah cele A1 plus 10." #. VFDp4 #: formulas.xhp @@ -6979,7 +6979,7 @@ "par_id3145643\n" "help.text" msgid "=A1*16%" -msgstr "" +msgstr "=A1*16%" #. yHNCY #: formulas.xhp @@ -6988,7 +6988,7 @@ "par_id3154255\n" "help.text" msgid "Displays 16% of the contents of A1." -msgstr "" +msgstr "Pokazuje 16 % wobsaha cele A1." #. JEQ4F #: formulas.xhp @@ -6997,7 +6997,7 @@ "par_id3146917\n" "help.text" msgid "=A1 * A2" -msgstr "" +msgstr "=A1 * A2" #. ZbQoA #: formulas.xhp @@ -7006,7 +7006,7 @@ "par_id3146315\n" "help.text" msgid "Displays the result of the multiplication of A1 and A2." -msgstr "" +msgstr "Pokazuje wuslědk multiplikacije celow A1 a A2." #. XUAPn #: formulas.xhp @@ -7015,7 +7015,7 @@ "par_id3154022\n" "help.text" msgid "=ROUND(A1;1)" -msgstr "" +msgstr "=SKRUŽIĆ(A1;1)" #. nZmjz #: formulas.xhp @@ -7024,7 +7024,7 @@ "par_id3150363\n" "help.text" msgid "Displays the contents of cell A1 rounded to one decimal place." -msgstr "" +msgstr "Pokazuje wobsah cele A1, na jedne decimalne městno skruženy." #. p46Wk #: formulas.xhp @@ -7033,7 +7033,7 @@ "par_id3150209\n" "help.text" msgid "=EFFECTIVE(5%;12)" -msgstr "" +msgstr "=EFEKTIWNY(5%;12)" #. LFSAU #: formulas.xhp @@ -7042,7 +7042,7 @@ "par_id3150883\n" "help.text" msgid "Calculates the effective interest for 5% annual nominal interest with 12 payments a year." -msgstr "" +msgstr "Wuličuje efektiwnu dań za lětnu nominalnu dań 5 % z 12 płaćenjemi wob lěto." #. 2A7E6 #: formulas.xhp @@ -7051,7 +7051,7 @@ "par_id3146114\n" "help.text" msgid "=B8-SUM(B10:B14)" -msgstr "" +msgstr "=B8-SUMA(B10:B14)" #. BwE2o #: formulas.xhp @@ -7060,7 +7060,7 @@ "par_id3154486\n" "help.text" msgid "Calculates B8 minus the sum of the cells B10 to B14." -msgstr "" +msgstr "Wuličuje B8 minus suma celow B10 do B14." #. a744P #: formulas.xhp @@ -7069,7 +7069,7 @@ "par_id3152890\n" "help.text" msgid "=SUM(B8;SUM(B10:B14))" -msgstr "" +msgstr "=SUMA(B8;SUMA(B10:B14))" #. 7AGzG #: formulas.xhp @@ -7078,7 +7078,7 @@ "par_id3159171\n" "help.text" msgid "Calculates the sum of cells B10 to B14 and adds the value to B8." -msgstr "" +msgstr "Wuličuje sumu celow B10 do B14 a aděruje celi B8 wuslědk." #. nPTep #: formulas.xhp @@ -7087,7 +7087,7 @@ "par_id3150109\n" "help.text" msgid "It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions." -msgstr "" +msgstr "Je tež móžno, funkcije do formlow zasadźić, kaž přikład pokazuje. Móžeće tež funkcije do funkcijow zakašćikować. Funkciski asistent was při dźěłanju ze zakašćikowanymi funkcijemi podpěruje." #. SEqap #: formulas.xhp @@ -7096,7 +7096,7 @@ "par_id3150213\n" "help.text" msgid "Functions list" -msgstr "" +msgstr "Lisćina funkcijow" #. iENLX #: formulas.xhp @@ -7105,7 +7105,7 @@ "par_id3152869\n" "help.text" msgid "Function Wizard" -msgstr "" +msgstr "Funkciski asistent" #. 6XzRE #: fraction_enter.xhp @@ -7114,7 +7114,7 @@ "tit\n" "help.text" msgid "Entering Fractions" -msgstr "" +msgstr "Łamki zapodać" #. AJMeW #: fraction_enter.xhp @@ -7123,7 +7123,7 @@ "bm_id3155411\n" "help.text" msgid "fractions; enteringnumbers; entering fractions inserting;fractions" -msgstr "" +msgstr "łamki; zapodaćličby; łamki zapodaćzasadźić; łamki" #. 8YdA3 #: fraction_enter.xhp @@ -7132,7 +7132,7 @@ "hd_id3155411\n" "help.text" msgid "Entering Fractions " -msgstr "" +msgstr "Łamki zapodać" #. NEuqx #: fraction_enter.xhp @@ -7141,7 +7141,7 @@ "par_id3153968\n" "help.text" msgid "You can enter a fractional number in a cell and use it for calculation:" -msgstr "" +msgstr "Móžeće łamk do cele zapodać a jón za wobličenje wužiwać:" #. EG6pz #: fraction_enter.xhp @@ -7150,7 +7150,7 @@ "par_id3155133\n" "help.text" msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation." -msgstr "" +msgstr "Zapodajće \"0 1/5\" do cele (bjez pazorkow) a tłóčće zapodawansku tastu. W zapodawanskej lince nad tabelowym dokumentom budźeće hódnotu 0,2 widźeć, kotraž so za wobličenje wužiwa." #. JGMCp #: fraction_enter.xhp @@ -7159,7 +7159,7 @@ "par_id3145750\n" "help.text" msgid "If you enter “0 1/2” AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character, ½. The same applies to 1/4 and 3/4. This replacement is defined in Tools - AutoCorrect - AutoCorrect Options - Options tab." -msgstr "" +msgstr "Jeli „0 1/2“ zapodawaće, awtomatiska korektura zawinuje, zo so tři znamješka 1, / a 2 z jeničkim znamješkom wuměnjeja, ½. Samsne za 1/4 a 3/4 płaći. Tuta wuměna so w Nastroje – Nastajenja awtomatiskeje korektury… – rajtark: Nastajenja." #. WncaT #: fraction_enter.xhp @@ -7168,7 +7168,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 "" +msgstr "Jeli chceće wjaceměstnowe łamki kaž na přikład „1/10“ pokazać, dyrbiće celowy format do napohlada wjaceměstnowych łamkow změnić. Wočińće kontekstowy meni cele a wubjerće Cele formatěrować. Wubjerće „Łamk z pola Kategorija a potom „-1234 10/81“. Móžeće potom łamki kaž 12/31 abo 12/32 zapodać. Łamki wšak so awtomatisce skrótša, tak zo w poslednim přikładźe 3/8 widźiće." #. ixdhC #: goalseek.xhp @@ -7177,7 +7177,7 @@ "tit\n" "help.text" msgid "Applying Goal Seek" -msgstr "" +msgstr "Pytanje cilowych hódnotow nałožić" #. i6KyW #: goalseek.xhp @@ -7186,7 +7186,7 @@ "bm_id3145068\n" "help.text" msgid "goal seeking;exampleequations in goal seekcalculating;variables in equationsvariables;calculating equationsexamples;goal seek" -msgstr "" +msgstr "pytanje cilowych hódnotow; přikładrunicy w pytanju cilowych hódnotowwuličić; wariable w runicachwariable; runicy wobličićpřikłady; pytanje cilowych hódnotow" #. 2jF9G #: goalseek.xhp @@ -7195,7 +7195,7 @@ "hd_id3145068\n" "help.text" msgid "Applying Goal Seek" -msgstr "" +msgstr "Pytanje cilowych hódnotow nałožić" #. yeBWn #: goalseek.xhp @@ -7204,7 +7204,7 @@ "par_id3145171\n" "help.text" msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula." -msgstr "" +msgstr "Z pomocu pytanja cilowych hódnotow móžeće hódnotu wuličić, kotraž jako dźěl formle k wuslědkej wjedźe, kotryž za formlu podawaće. Definujeće tuž formlu z wjacorymi njezměnitymi hódnotami a jednej wariabelnej hódnotu a wuslědk formle." #. viB9m #: goalseek.xhp @@ -7213,7 +7213,7 @@ "hd_id3153966\n" "help.text" msgid "Goal Seek Example" -msgstr "" +msgstr "Přikład pytanja cilowych hódnotow" #. gWfbJ #: goalseek.xhp @@ -7222,7 +7222,7 @@ "par_id3150871\n" "help.text" msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:" -msgstr "" +msgstr "Zo byšće lětnu dań (I) wuličił, wutworće tabelu z hódnotami za kapital (K), ličbu lět (n) a danjowej sadźbu (i). Formla je:" #. cSY4A #: goalseek.xhp @@ -7231,7 +7231,7 @@ "par_id3152596\n" "help.text" msgid "I = C * n* i" -msgstr "" +msgstr "I = K * n* i" #. UBFDH #: goalseek.xhp @@ -7240,7 +7240,7 @@ "par_id3155335\n" "help.text" msgid "Let us assume that the interest rate i of 7.5% and the number of years n (1) will remain constant. However, you want to know how much the investment capital C would have to be modified in order to attain a particular return I. For this example, calculate how much capital C would be required if you want an annual return of $15,000." -msgstr "" +msgstr "Připušćmy, zo danjowa sadźba i 7,5 % a ličba lět n (1) stej njezměnitej. Chceće wšak wědźeć, kak jara dyrbjał so zasadźeny kapital C změnić, zo byšće wěsty wunošk I docpěł. Wuličće na přikład, kelko kapitala C by trěbne było, jeli chceće lětny wunošk 15.000 € docpěć." #. E8wVE #: goalseek.xhp @@ -7249,7 +7249,7 @@ "par_id3155960\n" "help.text" msgid "Enter each of the values for Capital C (an arbitrary value like $100,000), number of years n (1), and interest rate i (7.5%) in one cell each. Enter the formula to calculate the interest I in another cell. Instead of C, n, and i use the reference to the cell with the corresponding value." -msgstr "" +msgstr "Zapodajće přisłušne hódnoty za Kapital K (někajkažkuli hódnota kaž 100.000 €, ličbu lět n (1) a danjowu sadźbu i (7,5 % do dateje cele. Zapodajće formlu, zo byšće dań I w druhej celi wuličił. Město K, n a i wužiwaće poćah na celu z wotpowědnej hódnotu." #. ETmjE #: goalseek.xhp @@ -7258,7 +7258,7 @@ "par_id3147001\n" "help.text" msgid "Place the cursor in the cell containing the interest I, and choose Tools - Goal Seek. The Goal Seek dialog appears." -msgstr "" +msgstr "Stajće kursor do cele, kotraž dań I wobsahuje a wubjerće Nastroje – Cilowu hódnotu pytać…. Dialog Cilowu hódnotu pytać so zjewi." #. AuvJG #: goalseek.xhp @@ -7267,7 +7267,7 @@ "par_id3150088\n" "help.text" msgid "The correct cell is already entered in the field Formula Cell." -msgstr "" +msgstr "Prawa cela je hižo do pola Formlowa cela zapodata." #. 5eePU #: goalseek.xhp @@ -7276,7 +7276,7 @@ "par_id3166426\n" "help.text" msgid "Place the cursor in the field Variable Cell. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value C." -msgstr "" +msgstr "Stajće kursor do pola Přeměnjata cela. Klikńće w tabeli do cele, kotraž hódnotu wobsahuje, kotraž so ma změnić, w tutym přikładźe je to cela z kapitalowej hódnotu K." #. UGtG2 #: goalseek.xhp @@ -7285,7 +7285,7 @@ "par_id3150369\n" "help.text" msgid "Enter the expected result of the formula in the Target Value text box. In this example, the value is 15,000. Click OK." -msgstr "" +msgstr "Zapodajće wočakowany wuslědk formle do tekstoweho pola Cilowa hódnota. W tutym přikładźe je to 15.000. Klikńće na W porjadku." #. JPSHu #: goalseek.xhp @@ -7294,7 +7294,7 @@ "par_id3146978\n" "help.text" msgid "A dialog appears informing you that the Goal Seek was successful. Click Yes to enter the result in the cell with the variable value." -msgstr "" +msgstr "Dialog so zjewi, kotryž wam zdźěla, zo pytanje cilowych hódnotow běše wuspěšne. Klikńće na Haj, zo byšće wuslědk do cele z přeměnjatej hódnotu zapodał." #. 6hzpw #: goalseek.xhp @@ -7303,7 +7303,7 @@ "par_id3149409\n" "help.text" msgid "Goal Seek" -msgstr "" +msgstr "Pytanje cilowych hódnotow" #. UhcpV #: html_doc.xhp @@ -7312,7 +7312,7 @@ "tit\n" "help.text" msgid "Saving and Opening Sheets in HTML" -msgstr "" +msgstr "Tabele w HTML składować a wočinić" #. hqPFT #: html_doc.xhp @@ -7321,7 +7321,7 @@ "bm_id3150542\n" "help.text" msgid "HTML; sheetssheets; HTMLsaving; sheets in HTMLopening; sheets in HTML" -msgstr "" +msgstr "HTML; tabeletabele; HTMLskładować; tabele w HTMLwočinić; tabele w HTML" #. KAWf3 #: html_doc.xhp @@ -7330,7 +7330,7 @@ "hd_id3150542\n" "help.text" msgid "Saving and Opening Sheets in HTML" -msgstr "" +msgstr "Tabele w HTML składować a wočinić" #. qFyZS #: html_doc.xhp @@ -7339,7 +7339,7 @@ "hd_id3154124\n" "help.text" msgid "Saving Sheets in HTML" -msgstr "" +msgstr "Tabele w HTML składować" #. LGxfn #: html_doc.xhp @@ -7348,7 +7348,7 @@ "par_id3145785\n" "help.text" msgid "%PRODUCTNAME Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document." -msgstr "" +msgstr "%PRODUCTNAME Calc wšě tabele dokumenta Calc hromadźe jako HTML-dokument składuje. Na spočatku HTML-dokumenta, so nadpismo a lisćina hyperwotkazow awtomatisce přidawatej, kotrež k jednotliwym tabelam w dokumenće wjedu." #. mtAQs #: html_doc.xhp @@ -7357,7 +7357,7 @@ "par_id3155854\n" "help.text" msgid "Numbers are shown as written. In addition, in the HTML tag, the exact internal number value is written so that after opening the HTML document with %PRODUCTNAME you know you have the exact values." -msgstr "" +msgstr "Ličby so jako napisane pokazuja. Nimo toho so w HTML-značce dokładna nutřkowna ličbna hódnota pisa, zo byšće po wočinjenju HTML-dokumenta z %PRODUCTNAME wědźał, zo maće dokładne hódnoty." #. uKM4A #: html_doc.xhp @@ -7366,7 +7366,7 @@ "par_id3153188\n" "help.text" msgid "To save the current Calc document as HTML, choose File - Save As." -msgstr "" +msgstr "Zo byšće aktualny dokument Calc jako HTML składował, wubjerće Dataja – Składować jako…." #. BUVST #: html_doc.xhp @@ -7375,7 +7375,7 @@ "par_id3148645\n" "help.text" msgid "In the File type list box, in the area with the other %PRODUCTNAME Calc filters, choose the file type \"HTML Document (%PRODUCTNAME Calc)\"." -msgstr "" +msgstr "Wubjerće w lisćinowym polu Dateityp (słuša k dźěłowemu systemej) we wobłuku z filtrami %PRODUCTNAME Calc datajowy typ „HTML-dokument (%PRODUCTNAME Calc)“." #. cEXDE #: html_doc.xhp @@ -7384,7 +7384,7 @@ "par_id3154729\n" "help.text" msgid "Enter a File name and click Save." -msgstr "" +msgstr "Zapodajće datajowe mjeno do pola „Dateiname“ (słuša k dźěłowemu systemej) a klikńće na Speichern (słuša k dźěłowemu systemej)." #. G9crT #: html_doc.xhp @@ -7393,7 +7393,7 @@ "hd_id3149379\n" "help.text" msgid "Opening Sheets in HTML" -msgstr "" +msgstr "Tabele w HTML wočinić" #. hZdEW #: html_doc.xhp @@ -7402,7 +7402,7 @@ "par_id3149959\n" "help.text" msgid "%PRODUCTNAME offers various filters for opening HTML files, which you can select under File - Open in the Files of type list box:" -msgstr "" +msgstr "%PRODUCTNAME wšelake filtry za wočinjenje HTML-datajow skići, kotrež móžeće pod Dataja – Wočinić… w lisćinowym polu Dateityp (słuša k dźěłowemu systemej) wubrać:" #. GXftR #: html_doc.xhp @@ -7411,7 +7411,7 @@ "par_id3146969\n" "help.text" msgid "Choose the file type \"HTML Document (%PRODUCTNAME Calc)\" to open in %PRODUCTNAME Calc." -msgstr "" +msgstr "Wubjerće datajowy typ „HTML-dokument (%PRODUCTNAME Calc)“, zo byšće w %PRODUCTNAME Calc wočinił." #. tj7SQ #: html_doc.xhp @@ -7420,7 +7420,7 @@ "par_id3155446\n" "help.text" msgid "All %PRODUCTNAME Calc options are now available to you. However, not all options that %PRODUCTNAME Calc offers for editing can be saved in HTML format." -msgstr "" +msgstr "Wšě nastajenja %PRODUCTNAME Calc su wam nětko k dispoziciji. Ale nic wšě nastajenja, kotrež %PRODUCTNAME Calc za wobdźěłowanje skići, dadźa so w HTML-formaće składować." #. jZZG4 #: html_doc.xhp @@ -7429,7 +7429,7 @@ "par_id3150370\n" "help.text" msgid "File - Open" -msgstr "" +msgstr "Dataja – Wočinić…" #. kdzh5 #: html_doc.xhp @@ -7438,7 +7438,7 @@ "par_id3150199\n" "help.text" msgid "File - Save As" -msgstr "" +msgstr "Dataja – Składować jako…" #. 66Qu3 #: integer_leading_zero.xhp @@ -7447,7 +7447,7 @@ "tit\n" "help.text" msgid "Entering a Number with Leading Zeros" -msgstr "" +msgstr "Ličbu z načolnymi nulemi zapodać" #. GGTWq #: integer_leading_zero.xhp @@ -7456,7 +7456,7 @@ "bm_id3147560\n" "help.text" msgid "zero values; entering leading zeros numbers; with leading zeros leading zeros integers with leading zeros cells; changing text/number formats formats; changing text/number text in cells; changing to numbers converting;text with leading zeros, into numbers" -msgstr "" +msgstr "nulowe hódnoty; načolne nule zapodaćličby; z načolnymi nuleminačolne nulecyłe ličby z načolnymi nulemicele; tekstowe/ličbne formaty změnićformaty; tekst/ličbu změnićtekst w celach; do ličbow změnićpřetworić; tekst z načolnymi nulemi, do ličbow" #. KD3G4 #: integer_leading_zero.xhp @@ -7465,7 +7465,7 @@ "hd_id3147560\n" "help.text" msgid "Entering a Number with Leading Zeros" -msgstr "" +msgstr "Ličbu z načolnymi nulemi zapodać" #. ZFk6Q #: integer_leading_zero.xhp @@ -7474,7 +7474,7 @@ "par_id3153194\n" "help.text" msgid "There are various ways to enter integers starting with a zero:" -msgstr "" +msgstr "Su rozdźělne metody, z kotrymiž móžeće cyłe ličby zapodać, kotrež so z nulu započinaja:" #. kqPoV #: integer_leading_zero.xhp @@ -7483,7 +7483,7 @@ "par_id3146119\n" "help.text" msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, '0987). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number." -msgstr "" +msgstr "Zapodajće ličbu jako tekst. Najlóša móžnosć je zapodawanje ličby, kotraž so z apostrofom započina (na přikład '0987). Apostrof so w celi njezjewi, a ličba so jako tekst formatěruje. Dokelž je w tekstowym formaće njemóžeće z tutej ličbu ličić." #. jQBnH #: integer_leading_zero.xhp @@ -7492,7 +7492,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 "" +msgstr "Formatěrujće celu z ličbnym formatom kaž \\0000. Tutón format da so w polu Formatowy kod w rajtarku Format – Cele… – Ličby připokazać a definuje celowe zwobraznjenje jako „přeco najprjedy nulu stajić a potom cyłu ličbu, kotraž ma znajmjeńša tři městna a je wotlěwa z nulemi wupjelnjena, jeli su mjenje hač tři městna“." #. 9RanL #: integer_leading_zero.xhp @@ -7501,7 +7501,7 @@ "par_id3153158\n" "help.text" msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:" -msgstr "" +msgstr "Jeli chceće numeriski format na špalty z ličbami w tekstowym formaće (na přikład „000123“do „123“) přetworić, čińće tole:" #. Y9PcH #: integer_leading_zero.xhp @@ -7510,7 +7510,7 @@ "par_id3149377\n" "help.text" msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"." -msgstr "" +msgstr "Wubjerće špaltu, w kotrejž su ličby w tekstowym formaće. Stajće celowy format w tej špalće na „Ličba“." #. KR9G6 #: integer_leading_zero.xhp @@ -7519,7 +7519,7 @@ "par_id3154944\n" "help.text" msgid "Choose Edit - Find & Replace" -msgstr "" +msgstr "Wubjerće Wobdźěłać – Pytać a wuměnić…" #. MJUjm #: integer_leading_zero.xhp @@ -7528,7 +7528,7 @@ "par_id3154510\n" "help.text" msgid "In the Find box, enter ^[0-9]" -msgstr "" +msgstr "Zapodajće ^[0-9] do pola Pytać" #. 6gHkJ #: integer_leading_zero.xhp @@ -7537,7 +7537,7 @@ "par_id3155068\n" "help.text" msgid "In the Replace box, enter &" -msgstr "" +msgstr "Zapodajće w polu Wuměnić &" #. 2e4FS #: integer_leading_zero.xhp @@ -7546,7 +7546,7 @@ "par_id3149018\n" "help.text" msgid "Check Regular expressions" -msgstr "" +msgstr "Markěrujće Regularne wurazy" #. Ek4jF #: integer_leading_zero.xhp @@ -7555,7 +7555,7 @@ "par_id3156382\n" "help.text" msgid "Check Current selection only" -msgstr "" +msgstr "Markěrujće Jenož aktualny wuběr" #. noLgp #: integer_leading_zero.xhp @@ -7564,7 +7564,7 @@ "par_id3146916\n" "help.text" msgid "Click Replace All" -msgstr "" +msgstr "Klikńće na Wšě wuměnić" #. MSHQ3 #: keyboard.xhp @@ -7573,7 +7573,7 @@ "tit\n" "help.text" msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)" -msgstr "" +msgstr "Tastowe skrótšenki (%PRODUCTNAME Calc bjezbarjernosć)" #. 8nhV7 #: keyboard.xhp @@ -7582,7 +7582,7 @@ "bm_id3145120\n" "help.text" msgid "accessibility; %PRODUCTNAME Calc shortcutsshortcut keys;%PRODUCTNAME Calc accessibility" -msgstr "" +msgstr "bjezbarjernosć; tastowe skrótšenki %PRODUCTNAME Calctastowe skrótšenki; bjezbarjernosć %PRODUCTNAME Calc" #. apy4f #: keyboard.xhp @@ -7591,7 +7591,7 @@ "hd_id3145120\n" "help.text" msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)" -msgstr "" +msgstr "Tastowe skrótšenki (%PRODUCTNAME Calc bjezbarjernosć)" #. P7WD8 #: keyboard.xhp @@ -7600,7 +7600,7 @@ "par_id3154760\n" "help.text" msgid "Refer also to the lists of shortcut keys for %PRODUCTNAME Calc and %PRODUCTNAME in general." -msgstr "" +msgstr "Hlejće tež lisćiny tastowych skrótšenkow za %PRODUCTNAME Calc a %PRODUCTNAME powšitkownje." #. fvTfW #: keyboard.xhp @@ -7609,7 +7609,7 @@ "hd_id3153360\n" "help.text" msgid "Cell Selection Mode" -msgstr "" +msgstr "Modus celoweho wuběra" #. GhNyL #: keyboard.xhp @@ -7618,7 +7618,7 @@ "par_id3150870\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol" #. YBDA2 #: keyboard.xhp @@ -7627,7 +7627,7 @@ "par_id3154319\n" "help.text" msgid "In a text box that has a button to minimize the dialog, press F2 to enter the cell selection mode. Select any number of cells, then press F2 again to show the dialog." -msgstr "" +msgstr "Tłóčće w tekstowym polu, kotrež ma tłóčatko za miniměrowanje dialoga, F2, zo byšće do modusa celoweho wuběra zastupił. Wubjerće jednu celu abo wjacore cele a tłóčće potom F2 znowa, zo byšće dialog pokazał." #. h4DAg #: keyboard.xhp @@ -7636,7 +7636,7 @@ "par_id3145272\n" "help.text" msgid "In the cell selection mode, you can use the common navigation keys to select cells." -msgstr "" +msgstr "W modusu celoweho wuběra móžeće zwučene nawigaciske tasty wužiwać, zo byšće cele wubrał." #. UdBhU #: keyboard.xhp @@ -7645,7 +7645,7 @@ "hd_id3148646\n" "help.text" msgid "Controlling the Outline" -msgstr "" +msgstr "Rozrjad wodźić" #. CCpxA #: keyboard.xhp @@ -7654,7 +7654,7 @@ "par_id3146120\n" "help.text" msgid "You can use the keyboard in Outline:" -msgstr "" +msgstr "Móžeće tastaturu w rozrjedźe wužiwać:" #. L9VfN #: keyboard.xhp @@ -7663,7 +7663,7 @@ "par_id3147394\n" "help.text" msgid "Press F6 or Shift+F6 until the vertical or horizontal outline window has the focus." -msgstr "" +msgstr "Tłóčće F6 abo Umsch (⇧)+F6, doniž wertikalne abo horicontalne rozrjadowanske wokno fokus nima." #. YfB3C #: keyboard.xhp @@ -7672,7 +7672,7 @@ "par_id3149379\n" "help.text" msgid "Tab - cycle through all visible buttons from top to bottom or from left to right." -msgstr "" +msgstr "Tabulator (↹) – přeběži wšě widźomne tłóčatka wothorjeka dele abo wotlěwa doprawa." #. woNKZ #: keyboard.xhp @@ -7681,7 +7681,7 @@ "par_id3156286\n" "help.text" msgid "Shift+Tab - cycle through all visible buttons in the opposite direction." -msgstr "" +msgstr "Umsch+tabulator (⇧+↹) – přeběži wšě widźomne tłóčatka k napřećiwnemu směrej." #. sEF7Z #: keyboard.xhp @@ -7690,7 +7690,7 @@ "par_id3149403\n" "help.text" msgid "Command+1 to Command+8Ctrl+1 to Ctrl+8 - show all levels up to the specified number; hide all higher levels." -msgstr "" +msgstr "cmd ⌘+1 do cmd ⌘+8Strg+1 do Strg+8 – pokazuje wšě runiny hač do podatej ličbje; chowa wyše runiny." #. tHbqV #: keyboard.xhp @@ -7699,7 +7699,7 @@ "par_id3150329\n" "help.text" msgid "Use + or - to show or hide the focused outline group." -msgstr "" +msgstr "Wužiwajće + abo -, zo byšće rozrjadowansku skupinu z fokusom pokazał abo schował." #. kvXDz #: keyboard.xhp @@ -7708,7 +7708,7 @@ "par_id3155446\n" "help.text" msgid "Press Enter to activate the focused button." -msgstr "" +msgstr "Tłóčće Enter (↵), zo byšće tłóčatko z fokusom aktiwizował." #. cbpG5 #: keyboard.xhp @@ -7717,7 +7717,7 @@ "par_id3154253\n" "help.text" msgid "Use Up, Down, Left, or Right arrow to cycle through all buttons in the current level." -msgstr "" +msgstr "Wužiwajće šipk Horje (↑), Dele (↓), Nalěwo (←) abo Naprawo (→), zo byšće wšě tłóčatka w aktualnej runinje přeběžał." #. up5Eo #: keyboard.xhp @@ -7726,7 +7726,7 @@ "hd_id3147343\n" "help.text" msgid "Selecting a Drawing Object or a Graphic" -msgstr "" +msgstr "Rysowanski objekt abo grafiku wubrać" #. ND75D #: keyboard.xhp @@ -7735,7 +7735,7 @@ "par_idN107AA\n" "help.text" msgid "Choose View - Toolbars - Drawing to open the Drawing toolbar." -msgstr "" +msgstr "Wubjerće Napohlad – Symbolowe lajsty – Rysowanka, zo byšće symbolowu lajstu Rysowanka wočinił." #. staPK #: keyboard.xhp @@ -7744,7 +7744,7 @@ "par_id3155333\n" "help.text" msgid "Press F6 until the Drawing toolbar is selected." -msgstr "" +msgstr "Tłóčće F6, doniž symbolowa lajsta Rysowanka wubrana njeje." #. 4SuXi #: keyboard.xhp @@ -7753,7 +7753,7 @@ "par_id3150345\n" "help.text" msgid "If the selection tool is active, press CommandCtrl+Enter. This selects the first drawing object or graphic in the sheet." -msgstr "" +msgstr "Jeli wuběranski nstroj je aktiwny, tłóčće cmd ⌘Strg+Enter (↩). To prěni rysowanski objekt abo prěnju grafiku w tabeli wuběra." #. AnBgF #: keyboard.xhp @@ -7762,7 +7762,7 @@ "par_id3159240\n" "help.text" msgid "With CommandCtrl+F6 you set the focus to the document." -msgstr "" +msgstr "Z cmd ⌘Strg+F6 stajeće fokus na dokument." #. GLSGe #: keyboard.xhp @@ -7771,7 +7771,7 @@ "par_id3155379\n" "help.text" msgid "Now you can use Tab to select the next drawing object or graphic and Shift+Tab to select the previous one." -msgstr "" +msgstr "Nětko móžeće tabulator (↹), zo byšće přichodny rysowanski objekt abo přichodnu grafiku wubrał a Umsch+tabulator (⇧+↩), zo byšće předchadny rysowanski objekt abo předchadnu grafiku wubrał." #. DE22p #: line_fix.xhp @@ -7780,7 +7780,7 @@ "tit\n" "help.text" msgid "Freezing Rows or Columns as Headers" -msgstr "" +msgstr "Linki abo špalty jako hłowowe linki fiksować" #. T2rdS #: line_fix.xhp @@ -7789,7 +7789,7 @@ "bm_id3154684\n" "help.text" msgid "tables; freezing title rows; freezing during table split rows; freezing columns; freezing freezing rows or columns headers; freezing during table split scrolling prevention in tables windows; splitting tables; splitting windows" -msgstr "" +msgstr "tabele; fiksowaćtitulne linki; za dźělenje tabele fiksowaćlinki; fiksowaćšpalty; fiksowaćlinki abo špalty fiksowaćhłowowe linki; za dźělenje tabele fiksowaćkulenju w tabelach zadźěwaćwokna; dźělićtabele; wokna dźělić" #. R5isM #: line_fix.xhp @@ -7798,7 +7798,7 @@ "hd_id3154684\n" "help.text" msgid "Freezing Rows or Columns as Headers " -msgstr "" +msgstr "Linki abo špalty jako hłowowe linki fiksować" #. rQbwQ #: line_fix.xhp @@ -7807,7 +7807,7 @@ "par_id3148576\n" "help.text" msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data." -msgstr "" +msgstr "Jeli dołhe datowe linki abo špalty maće, kotrež so přez widźomny wobłuk tabele rozpřestrěwaja, móžeće někotre linki abo špalty fiksować, štož wam zmóžnja, sfiksowane špalty abo linki widźeć, hdyž po zbytku datow kuleće." #. uE6Wi #: line_fix.xhp @@ -7816,7 +7816,7 @@ "par_id3156441\n" "help.text" msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen." -msgstr "" +msgstr "Wubjerće linku pod linku abo špaltu naprawo pódla špalty, kotraž ma w sfiksowanym wobłuku być. Wšě linki nad wuběrom abo wšě špalty nalěwo pódla wuběra so fiksuja." #. YS2LL #: line_fix.xhp @@ -7825,7 +7825,7 @@ "par_id3153158\n" "help.text" msgid "To freeze both horizontally and vertically, select the cell that is below the row and to the right of the column that you want to freeze." -msgstr "" +msgstr "Zo byšće horicontalnje kaž tež wertikalnje fiksował, wubjerće celu, kotraž je pod linku a naprawo pódla špalty, kotruž chceće fiksować." #. Ly3Ez #: line_fix.xhp @@ -7834,7 +7834,7 @@ "par_id3156286\n" "help.text" msgid "Choose View - Freeze Rows and Columns." -msgstr "" +msgstr "Wubjerće Napohlad – Linki a špalty fiksować." #. Exqyb #: line_fix.xhp @@ -7843,7 +7843,7 @@ "par_id3151073\n" "help.text" msgid "To deactivate, choose View - Freeze Rows and Columns again." -msgstr "" +msgstr "Zo byšće deaktiwizował, wubjerće Napohlad – Linki a špalty fiksować znowa." #. U7GBK #: line_fix.xhp @@ -7852,7 +7852,7 @@ "par_id3155335\n" "help.text" msgid "If the area defined is to be scrollable, apply the View - Split Window command." -msgstr "" +msgstr "Jeli wobłuk je jako kulomny definowany, wubjerće Napohlad – Wokno rozdźělić." #. izbC9 #: line_fix.xhp @@ -7861,7 +7861,7 @@ "par_id3147345\n" "help.text" msgid "If you want to print a certain row on all pages of a document, choose Format - Print ranges - Edit." -msgstr "" +msgstr "Jeli chceće wěstu linku na wšěch stronach dokumenta ćišćeć, wubjerće Format – Ćišćerske wobłuki – Wobdźěłać…." #. wn5VL #: line_fix.xhp @@ -7870,7 +7870,7 @@ "par_id3147004\n" "help.text" msgid "View - Freeze Rows and Columns" -msgstr "" +msgstr "Napohlad – Linki a špalty fiksować" #. mJABn #: line_fix.xhp @@ -7879,7 +7879,7 @@ "par_id3150088\n" "help.text" msgid "View - Split Window" -msgstr "" +msgstr "Napohlad – Wokno rozdźělić" #. rLJGy #: line_fix.xhp @@ -7888,7 +7888,7 @@ "par_id3150304\n" "help.text" msgid "Format - Print ranges - Edit" -msgstr "" +msgstr "Format – Ćišćerske wobłuki – Wobdźěłać…" #. JGxbG #: main.xhp @@ -7897,7 +7897,7 @@ "tit\n" "help.text" msgid "Instructions for Using $[officename] Calc" -msgstr "" +msgstr "Instrukcije za wužiwanje $[officename] Calc" #. 8cLFT #: main.xhp @@ -7906,7 +7906,7 @@ "bm_id3150770\n" "help.text" msgid "HowTos for Calcinstructions; $[officename] Calc" -msgstr "" +msgstr "Nawody za Calcinstrukcije; $[officename] Calc" #. Hjpmb #: main.xhp @@ -7915,7 +7915,7 @@ "hd_id3150770\n" "help.text" msgid "Instructions for Using $[officename] Calc" -msgstr "" +msgstr "Instrukcije za wužiwanje $[officename] Calc" #. izTXs #: main.xhp @@ -7924,7 +7924,7 @@ "hd_id3145748\n" "help.text" msgid "Formatting Tables and Cells" -msgstr "" +msgstr "Tabele a cele formatěrować" #. wegGK #: main.xhp @@ -7933,7 +7933,7 @@ "hd_id3154022\n" "help.text" msgid "Entering Values and Formulas" -msgstr "" +msgstr "Hódnoty a formle zapodać" #. gbmwG #: main.xhp @@ -7942,7 +7942,7 @@ "hd_id3152899\n" "help.text" msgid "Entering References" -msgstr "" +msgstr "Poćahi zapodać" #. Dpeey #: main.xhp @@ -7951,7 +7951,7 @@ "hd_id3155382\n" "help.text" msgid "Database Ranges in Tables" -msgstr "" +msgstr "Wobłuki datoweje banki w tabelach" #. WdS4k #: main.xhp @@ -7960,7 +7960,7 @@ "hd_id3159229\n" "help.text" msgid "Advanced Calculations" -msgstr "" +msgstr "Rozšěrjene wobličenja" #. tfcNX #: main.xhp @@ -7969,7 +7969,7 @@ "hd_id3153070\n" "help.text" msgid "Printing and Print Preview" -msgstr "" +msgstr "Ćišćeć a ćišćerski přehlad" #. 5wFpk #: main.xhp @@ -7978,7 +7978,7 @@ "hd_id3150437\n" "help.text" msgid "Importing and Exporting Documents" -msgstr "" +msgstr "Dokumenty importować a eksportować" #. uCMKm #: main.xhp @@ -7987,7 +7987,7 @@ "hd_id3166464\n" "help.text" msgid "Miscellaneous" -msgstr "" +msgstr "Dalše" #. TC4cU #: mark_cells.xhp @@ -7996,7 +7996,7 @@ "tit\n" "help.text" msgid "Selecting Multiple Cells" -msgstr "" +msgstr "Wjacore cele wubrać" #. uhRQX #: mark_cells.xhp @@ -8005,7 +8005,7 @@ "bm_id3153361\n" "help.text" msgid "cells; selecting marking cells selecting;cells multiple cells selection selection modes in spreadsheets tables; selecting ranges" -msgstr "" +msgstr "cele; wubraćcele markěrowaćwubrać; celewuběranje wjacorych celowwuběranske modusy w tabelowych dokumentachtabele; wobłuki wubrać" #. mGHxj #: mark_cells.xhp @@ -8014,7 +8014,7 @@ "hd_id3153361\n" "help.text" msgid "Selecting Multiple Cells" -msgstr "" +msgstr "Wjacore cele wubrać" #. DnPDm #: mark_cells.xhp @@ -8023,7 +8023,7 @@ "hd_id3145272\n" "help.text" msgid "Select a rectangular range" -msgstr "" +msgstr "Praworóžkaty wobłuk wubrać" #. XjgG6 #: mark_cells.xhp @@ -8032,7 +8032,7 @@ "par_id3149261\n" "help.text" msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range." -msgstr "" +msgstr "Ćehńće ze stłóčenej tastu myški wot jednoho róžka do diagonalnje napřećiwneho róžka wobłuka." #. JDShL #: mark_cells.xhp @@ -8041,7 +8041,7 @@ "hd_id3151119\n" "help.text" msgid "Mark a single cell" -msgstr "" +msgstr "Markěrujće jednotliwu celu" #. VwvYL #: mark_cells.xhp @@ -8050,7 +8050,7 @@ "par_id3146975\n" "help.text" msgid "Do one of the following:" -msgstr "" +msgstr "Přewjedźće jedyn ze slědowacych krokow:" #. 8XfBg #: mark_cells.xhp @@ -8059,7 +8059,7 @@ "par_id3163710\n" "help.text" msgid "Click, then Shift-click the cell." -msgstr "" +msgstr "Klikńće a dźeržće potom tastu Umsch (⇧) stłóčenu a klikńće na celu." #. smrDt #: mark_cells.xhp @@ -8068,7 +8068,7 @@ "par_id3149959\n" "help.text" msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop." -msgstr "" +msgstr "Ćehńće ze stłóčenej tastu myški wobłuk po dwěmaj celomaj, bjeztoho zo byšće tastu myški pušćił a ćehńće wróćo k prěnjej celi. Pušćće tastu myški. Móžeće nětko jednotliwu celu přez ćehnjenje a pušćenje přesunyć." #. b6dRj #: mark_cells.xhp @@ -8077,7 +8077,7 @@ "hd_id3154942\n" "help.text" msgid "Select various dispersed cells" -msgstr "" +msgstr "Wšelake rozbrojene cele wubrać" #. 8TSyD #: mark_cells.xhp @@ -8086,7 +8086,7 @@ "par_id1001200901072060\n" "help.text" msgid "Do one of the following:" -msgstr "" +msgstr "Přewjedźće jedyn ze slědowacych krokow:" #. ueuNX #: mark_cells.xhp @@ -8095,7 +8095,7 @@ "par_id3156284\n" "help.text" msgid "Mark at least one cell. Then while pressing CommandCtrl, click each of the additional cells." -msgstr "" +msgstr "Markěrujće znajmjeńša jednu celu. Klikńće potom ze stłóčenej tastu cmd ⌘Strg na kóždu z dalšich celow." #. 4MdDB #: mark_cells.xhp @@ -8104,7 +8104,7 @@ "par_id1001200901072023\n" "help.text" msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select." -msgstr "" +msgstr "Klikńće w statusowej lajsće na wobłuk STD / ROZ / PŘID, doniž so PŘIDAĆ njejewi. Klikńće nětko na wšě cele, kotrež chceće wubrać." #. bGGYT #: mark_cells.xhp @@ -8113,7 +8113,7 @@ "hd_id3146971\n" "help.text" msgid "Switch marking mode" -msgstr "" +msgstr "Wuběranski modus přepinać" #. qTUCj #: mark_cells.xhp @@ -8122,7 +8122,7 @@ "par_id3155064\n" "help.text" msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:" -msgstr "" +msgstr "Klikńće w statusowej lajsće na polo z legendu STD / ROZ / PŘID, zo byšće wuběranski modus přepinał:" #. 3SPfk #: mark_cells.xhp @@ -8131,7 +8131,7 @@ "par_id3159264\n" "help.text" msgid "Field contents" -msgstr "" +msgstr "Pólny wobsah" #. HbCYq #: mark_cells.xhp @@ -8140,7 +8140,7 @@ "par_id3155337\n" "help.text" msgid "Effect of clicking the mouse" -msgstr "" +msgstr "Efekt kliknjenja myški" #. qCjXD #: mark_cells.xhp @@ -8149,7 +8149,7 @@ "par_id3149568\n" "help.text" msgid "STD" -msgstr "" +msgstr "STD" #. uCt66 #: mark_cells.xhp @@ -8158,7 +8158,7 @@ "par_id3148486\n" "help.text" msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells." -msgstr "" +msgstr "Kliknjenje z myšku celu wuběra, na kotruž sće kliknył. Wuběr wšě markěrowane cele so zběhnje." #. HQyai #: mark_cells.xhp @@ -8167,7 +8167,7 @@ "par_id3150090\n" "help.text" msgid "EXT" -msgstr "" +msgstr "ROZ" #. 5FQEV #: mark_cells.xhp @@ -8176,7 +8176,7 @@ "par_id3150305\n" "help.text" msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell." -msgstr "" +msgstr "Kliknjenje z myšku praworóžkaty wobłuk wot aktualneje cele do cele, na kotruž sće kliknył. Abo móžeće ze stłóčenej tastu Umsch (⇧) na celu kliknyć." #. TBk4P #: mark_cells.xhp @@ -8185,7 +8185,7 @@ "par_id3145587\n" "help.text" msgid "ADD" -msgstr "" +msgstr "PŘID" #. hQCw9 #: mark_cells.xhp @@ -8194,7 +8194,7 @@ "par_id3154368\n" "help.text" msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, CommandCtrl-click the cells." -msgstr "" +msgstr "Kliknjenje z myšku do cele ju hižo markěrowanym celam přidawa. Kliknjenje z myšku do markěrowaneje cele wuběr zběhnje. Abo klikaće ze stłóčenej tastu cmd ⌘Strg na cele." #. BBU2x #: mark_cells.xhp @@ -8203,7 +8203,7 @@ "par_id3154487\n" "help.text" msgid "Status bar" -msgstr "" +msgstr "Statusowa lajsta" #. AU6FR #: matrixformula.xhp @@ -8212,7 +8212,7 @@ "tit\n" "help.text" msgid "Entering Matrix Formulas" -msgstr "" +msgstr "Matriksowe formle zapodać" #. 2goEn #: matrixformula.xhp @@ -8221,7 +8221,7 @@ "bm_id3153969\n" "help.text" msgid "matrices; entering matrix formulasformulas; matrix formulasinserting;matrix formulas" -msgstr "" +msgstr "matriksy; matriksowe formle zapodaćformle; matriksowe formlezasadźić; matriksowe formle" #. vKCkN #: matrixformula.xhp @@ -8230,7 +8230,7 @@ "hd_id3153969\n" "help.text" msgid "Entering Matrix Formulas" -msgstr "" +msgstr "Matriksowe formle zapodać" #. uo5ny #: matrixformula.xhp @@ -8239,7 +8239,7 @@ "par_id3153144\n" "help.text" msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions." -msgstr "" +msgstr "Slědowacy přikład pokazuje, kak móžeće matriksowu formlu zapodać, bjeztoho zo bychmy z podrobnosćemi matriksowych funkcijow zaběrali." #. E2PiE #: matrixformula.xhp @@ -8248,7 +8248,7 @@ "par_id3153188\n" "help.text" msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C." -msgstr "" +msgstr "Připušćmy, zo sće 10 ličbow do špaltow A a B (A1:A10 a B1:B10) zapodał a chceće sumu kóždeje linki w špalće C wuličić." #. AuPqQ #: matrixformula.xhp @@ -8257,7 +8257,7 @@ "par_id3154321\n" "help.text" msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed." -msgstr "" +msgstr "Wubjerće z myšku wobłuk C1:C10, w kotrychž so maja wuslědki pokazać." #. kXuHe #: matrixformula.xhp @@ -8266,7 +8266,7 @@ "par_id3149260\n" "help.text" msgid "Press F2, or click in the input line of the Formula bar." -msgstr "" +msgstr "Tłóčće F2 abo klikńće do zapodawanskeje linki formloweje lajsty." #. 6wMhC #: matrixformula.xhp @@ -8275,7 +8275,7 @@ "par_id3154944\n" "help.text" msgid "Enter an equal sign (=)." -msgstr "" +msgstr "Zapodajće znak runosće (=)." #. Yxpmu #: matrixformula.xhp @@ -8284,7 +8284,7 @@ "par_id3145252\n" "help.text" msgid "Select the range A1:A10, which contains the first values for the sum formula." -msgstr "" +msgstr "Wubjerće wobłuk A1:A10, kotryž prěnje hódnoty za sumowu formlu wobsahuje." #. JQGTN #: matrixformula.xhp @@ -8293,7 +8293,7 @@ "par_id3144767\n" "help.text" msgid "Press the (+) key from the numerical keypad." -msgstr "" +msgstr "Tłóčće tastu plus (+) na numeriskej tastaturje." #. y6wkD #: matrixformula.xhp @@ -8302,7 +8302,7 @@ "par_id3154018\n" "help.text" msgid "Select the numbers in the second column in cells B1:B10." -msgstr "" +msgstr "Wubjerće ličby w druhej špalće w celach B1:B10." #. e5wGm #: matrixformula.xhp @@ -8311,7 +8311,7 @@ "par_id3150716\n" "help.text" msgid "End the input with the matrix key combination: Shift+CommandCtrl+Enter." -msgstr "" +msgstr "Skónčće zapodaće z matriksowej tastowej kombinaciju: cmd ⌘Strg+Umsch+Enter (⇧+↩)." #. D8QXG #: matrixformula.xhp @@ -8320,7 +8320,7 @@ "par_id3145640\n" "help.text" msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background." -msgstr "" +msgstr "Matriksowy wobłuk so awtomatisce přećiwo změnam škita, na přikład přećiwo hašenju linkow abo špaltow. Je wšak móžno, formatěrowanje wobdźěłać, na přikład celowy pozadk." #. zHLbu #: move_dragdrop.xhp @@ -8329,7 +8329,7 @@ "tit\n" "help.text" msgid "Moving Cells by Drag-and-Drop" -msgstr "" +msgstr "Cele přez ćehnjenje a pušćenje přesunyć" #. CoB5w #: move_dragdrop.xhp @@ -8338,7 +8338,7 @@ "bm_id3155686\n" "help.text" msgid "drag and drop; moving cellscells; moving by drag and drop rows;moving by drag and dropcolumns;moving by drag and dropmoving;cells, rows and columns by drag and dropinserting;cells, by drag and drop" -msgstr "" +msgstr "ćahnyć a pušćić; cele přesunyćcele; přez ćehnjenje a pušćenje přesunyćlinki; přez ćehnjenje a pušćenje přesunyćšpalty; přez ćehnjenje a pušćenje přesunyćpřesunyć; cele, linki a špalty přez ćehnjenje a pušćenjezasadźić; cele, přez ćehnjenje a pušćenje" #. EJFwU #: move_dragdrop.xhp @@ -8347,7 +8347,7 @@ "hd_id986358\n" "help.text" msgid "Moving Cells by Drag-and-Drop" -msgstr "" +msgstr "Cele přez ćehnjenje a pušćenje přesunyć" #. g9ZDg #: move_dragdrop.xhp @@ -8356,7 +8356,7 @@ "par_id2760093\n" "help.text" msgid "When you drag-and-drop a selection of cells, rows or columns on a Calc sheet, the cells (including the ones in selected rows or columns) normally overwrite the existing cells in the area where you drop. This is the normal overwrite mode." -msgstr "" +msgstr "Hdyž wuběr celow, linkow abo špaltow w tabeli Calc přez ćehnjenje a pušćenje přesuwaće, cele (inkluziwnje te we wubranych linkach abo špaltach) w normalnym padźe eksistowace cele w tym wobłuku přepisuja, hdźež pušćeće. To je normalny přepisanski modus." #. BGUHG #: move_dragdrop.xhp @@ -8365,7 +8365,7 @@ "par_id2760101\n" "help.text" msgid "Note that to drag-and-drop entire rows or columns, you must select the rows or columns you want to move (or copy) first, then start dragging from selected cells, not from the row or column headers (cells would be deselected by this)." -msgstr "" +msgstr "Dźiwajće na to, zo dyriće linki abo špalty, kotrež chceće přesunyć (abo kopěrować) najprjedy wubrać, zo byšće je ćahnył a pušćił. Potom móžeće wubrane cele ćahnyć, ale nic z linkowych abo špaltowych hłowow (markěrowanje celow by so hewak zběhnyło)." #. cgwHu #: move_dragdrop.xhp @@ -8374,7 +8374,7 @@ "par_id9527268\n" "help.text" msgid "When you hold down the OptionAlt key while releasing the mouse button, you enter the insert mode." -msgstr "" +msgstr "Hdyž tastu ⌥ optionAlt stłóčenu dźeržiće, mjeztym zo tastu myški pušćeće, přeńdźeće k zasadźenskemu modusej." #. FJBmQ #: move_dragdrop.xhp @@ -8383,7 +8383,7 @@ "par_id79653\n" "help.text" msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting." -msgstr "" +msgstr "W zasadźenskim modusu so, hdźež pušćeće, eksistowace cele, naprawo abo dele přesuwaja, a pušćene cele so do nowych prózdnych pozicijow bjez přepisanja zasadźuja." #. CLKQq #: move_dragdrop.xhp @@ -8392,7 +8392,7 @@ "par_id8676717\n" "help.text" msgid "The surrounding box of the moved cells looks different in insert mode." -msgstr "" +msgstr "Ramik přesunjenych celow w zasadźenskim modusu hinak wupada." #. jfPyT #: move_dragdrop.xhp @@ -8401,7 +8401,7 @@ "par_id3968932\n" "help.text" msgid "In overwrite mode you see all four borders around the selected area. In insert mode you see only the left border when target cells will be shifted to the right. You see only the upper border when target cells will be shifted down." -msgstr "" +msgstr "W přepisanskim modusu widźiće wšě štyri ramiki wokoło wubraneho wobłuka. W zasadźenskim modusu widźiće jenož lěwy ramik, hdyž so cilowe cele naprawo přesuwaja. Widźiće jenož horni ramik, hdyž so cilowe cele dele přesuwaja." #. ZZbmo #: move_dragdrop.xhp @@ -8410,7 +8410,7 @@ "par_id7399517\n" "help.text" msgid "Whether the target area will be shifted to the right or to the bottom depends on the distance between source and target cells, if you move within the same sheet. It depends on the number of horizontal or vertical cells in the moved area, if you move to a different sheet." -msgstr "" +msgstr "Hač so cilowy wobłuk naprawo abo dele přesuwa, wotwisuje wot wotstup mjez žórłowymi a cilowymi celemi, jeli w samsnej tabeli přesuwaće. Wotwisuje wot ličby horicontalnych abo wertikalnych celow w přesunjenym wobłuku, jeli do druheje tabele přesuwaće." #. PtNLn #: move_dragdrop.xhp @@ -8419,7 +8419,7 @@ "par_id8040406\n" "help.text" msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area." -msgstr "" +msgstr "Jeli cele w zasadźenskim modusu w samsnej lince (jenož horicontalnje) přesuwaće, so po zasadźenju celow wšě cele nalěwo přesuwaja, zo by so žórłowy wobłuk wupjelnił." #. LEvkD #: move_dragdrop.xhp @@ -8428,7 +8428,7 @@ "par_id2586748\n" "help.text" msgid "In both modes, you can hold down the CommandCtrl key, or CommandCtrl+Shift keys while you release the mouse button to insert a copy or a link, respectively." -msgstr "" +msgstr "We woběmaj modusomaj móžeće tastu cmd ⌘Strg stłóčenu dźeržeć, abo cmd ⌘Strg+Umsch (⇧), mjeztym zo tastu myški pušćeće, zo byšće kopiju abo wotkaz zasadźił." #. RmAjD #: move_dragdrop.xhp @@ -8437,7 +8437,7 @@ "par_id5814081\n" "help.text" msgid "Keys pressed while releasing the mouse button" -msgstr "" +msgstr "Tasty, kotrež so při pušćenju tasty myški tłóča" #. zh9LK #: move_dragdrop.xhp @@ -8446,7 +8446,7 @@ "par_id6581316\n" "help.text" msgid "Result" -msgstr "" +msgstr "Wuslědk" #. 96Caz #: move_dragdrop.xhp @@ -8455,7 +8455,7 @@ "par_id9906613\n" "help.text" msgid "No key" -msgstr "" +msgstr "Žana tasta" #. rLLCx #: move_dragdrop.xhp @@ -8464,7 +8464,7 @@ "par_id2815637\n" "help.text" msgid "Cells are moved and overwrite the cells in the target area. Source cells are emptied." -msgstr "" +msgstr "Cele so přesuwaja a přepisuja cele w cilowym wobłuku. Žórłowe cele so prózdnja." #. VqGjf #: move_dragdrop.xhp @@ -8473,7 +8473,7 @@ "par_id6161687\n" "help.text" msgid "CommandCtrl key" -msgstr "" +msgstr "cmd ⌘Strg" #. dHibC #: move_dragdrop.xhp @@ -8482,7 +8482,7 @@ "par_id4278389\n" "help.text" msgid "Cells are copied and overwrite the cells in the target area. Source cells stay as they are." -msgstr "" +msgstr "Cele so kopěruja a přepisuja cele w cilowym wobłuku. Žórłowe cele wostawaja kaž su." #. 2HVTA #: move_dragdrop.xhp @@ -8491,7 +8491,7 @@ "par_id2805566\n" "help.text" msgid "CommandCtrl+Shift keys" -msgstr "" +msgstr "cmd ⌘Strg+Umsch (⇧)" #. HMLtJ #: move_dragdrop.xhp @@ -8500,7 +8500,7 @@ "par_id5369121\n" "help.text" msgid "Links to the source cells are inserted and overwrite the cells in the target area. Source cells stay as they are." -msgstr "" +msgstr "Wotkazy na žórłowe cele so zasadźuja a přepisuja cele w cilowym wobłuku. Žórłowe cele wostawaja kaž su." #. GLDS6 #: move_dragdrop.xhp @@ -8509,7 +8509,7 @@ "par_id9518723\n" "help.text" msgid "OptionAlt key" -msgstr "" +msgstr "⌥ optionAlt" #. mFaYd #: move_dragdrop.xhp @@ -8518,7 +8518,7 @@ "par_id2926419\n" "help.text" msgid "Cells are moved and shift the cells in the target area to the right or to the bottom. Source cells are emptied, except if you move within the same rows on the same sheet." -msgstr "" +msgstr "Cele so přesuwaja a přesuwaja cele w cilowym wobłuku naprawo abo dele. Žórłowe cele so prózdnja, chibazo přesuwaće w samsnych linkach w samsnej tabeli." #. DDgJR #: move_dragdrop.xhp @@ -8527,7 +8527,7 @@ "par_id4021423\n" "help.text" msgid "If you move within the same rows on the same sheet, the cells in the target area shift to the right, and then the whole row shifts to fill the source area." -msgstr "" +msgstr "Jeli w samsnych linkach w samsnej tabeli přesuwaće, so cele w cylowym wobłuku naprawo přesuwaja a potom so cyła linka přesuwa, zo by žórłowy wobłuk wupjelniła." #. ZkkAv #: move_dragdrop.xhp @@ -8536,7 +8536,7 @@ "par_id2783898\n" "help.text" msgid "Option+Command Alt+Ctrl keys" -msgstr "" +msgstr "option+cmd (⌥+⌘)Alt+Strg" #. FAxCD #: move_dragdrop.xhp @@ -8545,7 +8545,7 @@ "par_id2785119\n" "help.text" msgid "Cells are copied and shift the cells in the target area to the right or to the bottom. Source cells stay as they are." -msgstr "" +msgstr "Cele so kopěruja a přesuwaja cele w cilowym wobłuku naprawo abo dele. Žórłowe cele wostawaja kaž su." #. PzPB4 #: move_dragdrop.xhp @@ -8554,7 +8554,7 @@ "par_id584124\n" "help.text" msgid "Option+CommandAlt+Ctrl+Shift keys" -msgstr "" +msgstr "option+cmd (⌥+⌘)Alt+Strg+Umsch (⇧)" #. VpQTf #: move_dragdrop.xhp @@ -8563,7 +8563,7 @@ "par_id5590990\n" "help.text" msgid "Links to the source cells are inserted and shift the cells in the target area to the right or to the bottom. Source cells stay as they are." -msgstr "" +msgstr "Wotkazy na žórłowe cele so zasadźuja a přesuwaja cele w cilowym wobłuku naprawo abo dele. Žórłowe cele wostawaja kaž su." #. fEsX4 #: multi_tables.xhp @@ -8572,7 +8572,7 @@ "tit\n" "help.text" msgid "Navigating Through Sheets Tabs" -msgstr "" +msgstr "Po rajtarkach tabele nawigěrować" #. Dtosi #: multi_tables.xhp @@ -8581,7 +8581,7 @@ "bm_id3150769\n" "help.text" msgid "sheets; showing multiplesheet tabs;usingviews;multiple sheets" -msgstr "" +msgstr "tabele; wjacore pokazaćtabelowe rajtarki; wužiwaćnapohlady; wjacore tabele" #. WcDqZ #: multi_tables.xhp @@ -8590,7 +8590,7 @@ "hd_id3150769\n" "help.text" msgid "Navigating Through Sheet Tabs " -msgstr "" +msgstr "Po rajtarkach tabele nawigěrować" #. Fpcz8 #: multi_tables.xhp @@ -8599,7 +8599,7 @@ "par_id3153771\n" "help.text" msgid "By default $[officename] displays three sheets \"Sheet1\" to \"Sheet3\", in each new spreadsheet. You can switch between sheets in a spreadsheet using the sheet tabs at the bottom of the screen." -msgstr "" +msgstr "Po standardźe $[officename] tři tabele „Tabela1“ do „Tabela3“ w kóždym nowym tabelowym dokumenće pokazuje. Móžeće mjez tabelemi w tabelowym dokumenće z pomocu tabelowych rajtarkow deleka na wobrazowce přepinać." #. 4KYVc #: multi_tables.xhp @@ -8608,7 +8608,7 @@ "par_idN106AF\n" "help.text" msgid "Sheet Tabs" -msgstr "" +msgstr "Tabelowe rajtarki" #. XGC9c #: multi_tables.xhp @@ -8617,7 +8617,7 @@ "par_id3153144\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol" #. cF9mG #: multi_tables.xhp @@ -8626,7 +8626,7 @@ "par_id3147396\n" "help.text" msgid "Use the navigation buttons to display all the sheets belonging to your document. Clicking the button on the far left or the far right displays, respectively, the first or last sheet tab. The middle buttons allow the user to scroll forward and backward through all sheet tabs. To display the sheet itself click on the sheet tab." -msgstr "" +msgstr "Wužiwajće nawigaciske tłóčatka, zo byšće wšě tabele pokazał, kotrež k wašemu dokumentej słušeja. Hdyž na tłóčatko nalěwo zwonka abo naprawo zwonka klikaće, so prěni abo posledni tabelowy rajtark pokazuje. Srjedźne tłóčatka wužiwarjej zmóžnjeja, doprědka abo dozady po tabelowych rajtarkach přeběžeć. Zo byšće tabelu samu pokazał, klikńće na tabelowy rajtark." #. c6FGv #: multioperation.xhp @@ -8635,7 +8635,7 @@ "tit\n" "help.text" msgid "Applying Multiple Operations" -msgstr "" +msgstr "Wjacore operacije nałožić" #. Wm4DX #: multioperation.xhp @@ -8644,7 +8644,7 @@ "bm_id3147559\n" "help.text" msgid "multiple operationswhat if operations;two variablestables; multiple operations indata tables; multiple operations incross-classified tables" -msgstr "" +msgstr "wjacore operacijeoperacije što by było, jeli (what if); dwě wariablitabele; wjacore operacije wdatowe tabele; wjacore operacije wkřižne tabele" #. XKeKS #: multioperation.xhp @@ -8653,7 +8653,7 @@ "hd_id3147559\n" "help.text" msgid "Applying Multiple Operations" -msgstr "" +msgstr "Wjacore operacije nałožić" #. mX8Gh #: multioperation.xhp @@ -8662,7 +8662,7 @@ "hd_id3145171\n" "help.text" msgid "Multiple Operations in Columns or Rows" -msgstr "" +msgstr "Wjacore operacije w špaltach abo linkach" #. GgvB4 #: multioperation.xhp @@ -8671,7 +8671,7 @@ "par_id4123966\n" "help.text" msgid "The Data - Multiple Operations command provides a planning tool for \"what if\" questions. In your spreadsheet, you enter a formula to calculate a result from values that are stored in other cells. Then, you set up a cell range where you enter some fixed values, and the Multiple Operations command will calculate the results depending on the formula." -msgstr "" +msgstr "Přikaz Daty – Wjacore operacije… planowanski nastroj za prašenja „Što by było, jeli“ skići. Zapodajće swojim tabelowym dokumenće formlu, zo byšće wuslědk z hódnotow wuličił, kotrež su w druhich celach składowane. Wutworće poton celowy wobłuk, hdźež někotre njezměnite hódnoty zapodawaće a přikaz Wjacore operacije wuslědki wotwisujo wot formle wuliči." #. wW4Vg #: multioperation.xhp @@ -8680,7 +8680,7 @@ "par_id3156424\n" "help.text" msgid "In the Formulas field, enter the cell reference to the formula that applies to the data range. In the Column input cell/Row input cell field, enter the cell reference to the corresponding cell that is part of the formula. This can be explained best by examples:" -msgstr "" +msgstr "Zapodajće celowy poćah do formle w polu Formle, kotraž za datowy wobłuk płaći. W polu Špalta/Cela zapodawaće celowy poćah do wotpowědneje cele, kotraž je dźěl formle. To da so najlěpje přez přikłady wujasnić:" #. aZap6 #: multioperation.xhp @@ -8689,7 +8689,7 @@ "hd_id3159153\n" "help.text" msgid "Examples" -msgstr "" +msgstr "Přikłady" #. 7GHff #: multioperation.xhp @@ -8698,7 +8698,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 "" +msgstr "Produkujeće hrajki, kotrež po 10 € předawaće. Zhotowjenje kóždeje hrajki 2 € płaći, nimo toho maće njezměnite kóšty 10.000 € wob lěto. Kak wysoki budźe lětny dobytk wob lěto, jeli wěstu ličbu hrajkow předawaće?" #. vdeBS #: multioperation.xhp @@ -8707,7 +8707,7 @@ "par_id6478774\n" "help.text" msgid "what-if sheet area" -msgstr "" +msgstr "Tabelowy wobłuk Što by było jeli" #. KavvR #: multioperation.xhp @@ -8716,7 +8716,7 @@ "hd_id3145239\n" "help.text" msgid "Calculating With One Formula and One Variable" -msgstr "" +msgstr "Z jednej formlu a jednej wariablu ličić" #. nCki4 #: multioperation.xhp @@ -8725,7 +8725,7 @@ "par_id3146888\n" "help.text" msgid "To calculate the profit, first enter any number as the quantity (items sold) - in this example 2000. The profit is found from the formula Profit=Quantity * (Selling price - Direct costs) - Fixed costs. Enter this formula in B5." -msgstr "" +msgstr "Zo byšće dobytk wuličił, zapodajće najprjedy někajku ličbu jako mnóstwo (předatu ličbu) – w tutym přikładźe 2000. Dobytk wuńdźe z formle Dobytk=mnóstwo * (předawanska płaćizna - drobne kóšty) - krute kóšty. Zapodajće tutu formlu do cele B5." #. 4zUKz #: multioperation.xhp @@ -8734,7 +8734,7 @@ "par_id3157875\n" "help.text" msgid "In column D enter given annual sales, one below the other; for example, 500 to 5000, in steps of 500." -msgstr "" +msgstr "Zapodajće jednu pod druhej date lětne předawanske ličby do špalty D, na přikład 500 do 5000 w krokach 500." #. vABD4 #: multioperation.xhp @@ -8743,7 +8743,7 @@ "par_id3159115\n" "help.text" msgid "Select the range D2:E11, and thus the values in column D and the empty cells alongside in column E." -msgstr "" +msgstr "Wubjerće wobłuk D2:E11, tuž hódnoty w špalće D a pódla njeje prózdne cele w špalće E." #. b4zBY #: multioperation.xhp @@ -8752,7 +8752,7 @@ "par_id3149723\n" "help.text" msgid "Choose Data - Multiple operations." -msgstr "" +msgstr "Wubjerće Daty – Wjacore operacije…" #. p8VjP #: multioperation.xhp @@ -8761,7 +8761,7 @@ "par_id3149149\n" "help.text" msgid "With the cursor in the Formulas field, click cell B5." -msgstr "" +msgstr "Hdyž kursor je w polu Formle, klikńće na celu B5." #. NBWeD #: multioperation.xhp @@ -8770,7 +8770,7 @@ "par_id3149355\n" "help.text" msgid "Set the cursor in the Column input cell field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values." -msgstr "" +msgstr "Stajće kursor do pola Špalta a klikńće na celu B4. To rěka, zo B4, mnóstwo, je wariabla w formli, kotraž so přez wubrane špaltowe hódnoty wuměnja." #. SyPmA #: multioperation.xhp @@ -8779,7 +8779,7 @@ "par_id3149009\n" "help.text" msgid "Close the dialog with OK. You see the profits for the different quantities in column E." -msgstr "" +msgstr "Začińće dialog z W porjadku. Widźiće dobytki za rozdźělne mnóstwa w špalće E." #. CqtUM #: multioperation.xhp @@ -8788,7 +8788,7 @@ "hd_id3148725\n" "help.text" msgid "Calculating with Several Formulas Simultaneously" -msgstr "" +msgstr "Z wjacorymi formlemi naraz ličić" #. DxqGZ #: multioperation.xhp @@ -8797,7 +8797,7 @@ "par_id3146880\n" "help.text" msgid "Delete column E." -msgstr "" +msgstr "Zhašejće špaltu E." #. h4umZ #: multioperation.xhp @@ -8806,7 +8806,7 @@ "par_id3154675\n" "help.text" msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold." -msgstr "" +msgstr "Zapodajće slědowacu formlu do cele C5: = B5 / B4. Wuličujeće nětko lětny dobytk na předaty kus." #. GpoD9 #: multioperation.xhp @@ -8815,7 +8815,7 @@ "par_id3148885\n" "help.text" msgid "Select the range D2:F11, thus three columns." -msgstr "" +msgstr "Wubjerće wobłuk D2:F11, tuž tři špalty." #. 5GyFY #: multioperation.xhp @@ -8824,7 +8824,7 @@ "par_id3147474\n" "help.text" msgid "Choose Data - Multiple Operations." -msgstr "" +msgstr "Wubjerće Daty – Wjacore operacije…." #. vVE2F #: multioperation.xhp @@ -8833,7 +8833,7 @@ "par_id3154846\n" "help.text" msgid "With the cursor in the Formulas field, select cells B5 thru C5." -msgstr "" +msgstr "Z kursorom w polu Formle wuběraće cele B5 do C5." #. CBN2h #: multioperation.xhp @@ -8842,7 +8842,7 @@ "par_id3153931\n" "help.text" msgid "Set the cursor in the Column input cell field and click cell B4." -msgstr "" +msgstr "Stajće kursor do pola Špalta a klikńće na celu B4." #. mfN9d #: multioperation.xhp @@ -8851,7 +8851,7 @@ "par_id3150862\n" "help.text" msgid "Close the dialog with OK. You will now see the profits in column E and the annual profit per item in column F." -msgstr "" +msgstr "Začińće dialog z W porjadku. Widźiće nětko dobytki w špalće E a lětny dobytk na kus w špalće F." #. avEUy #: multioperation.xhp @@ -8860,7 +8860,7 @@ "hd_id3146139\n" "help.text" msgid "Multiple Operations Across Rows and Columns" -msgstr "" +msgstr "Wjacore operacije přez linki a špalty" #. 3abTJ #: multioperation.xhp @@ -8869,7 +8869,7 @@ "par_id3148584\n" "help.text" msgid "%PRODUCTNAME allows you to carry out joint multiple operations for columns and rows in so-called cross-tables. The formula cell has to refer to both the data range arranged in rows and the one arranged in columns. Select the range defined by both data ranges and call the multiple operation dialog. Enter the reference to the formula in the Formulas field. The Row input cell and the Column input cell fields are used to enter the reference to the corresponding cells of the formula." -msgstr "" +msgstr "%PRODUCTNAME wam zmóžnja, zwjazane wjacore operacije za špalty a linki w tak mjenowanych křižnych tabelach wuwjesć. Formlowa cela dyrbi so na datowy wobłuk poćahować, kotryž je w linkach zrjadowany kaž tež tón, kotryž je w špaltach zrjadowany. Wubjerće wobłuk, kotryž je přez wobaj datowej wobłukaj definowany a wočińće dialog Wjacore operacijow. Zapodajće poćah na formlu do pola Formle. Poli Linka a Špalta so za zapodaće poćaha na wotpowědne cele formle wužiwatej." #. uHGGD #: multioperation.xhp @@ -8878,7 +8878,7 @@ "hd_id3149949\n" "help.text" msgid "Calculating with Two Variables" -msgstr "" +msgstr "Z dwěmaj wariablomaj ličić" #. 7MGG4 #: multioperation.xhp @@ -8887,7 +8887,7 @@ "par_id3154808\n" "help.text" msgid "Consider columns A and B of the sample table above. You now want to vary not just the quantity produced annually, but also the selling price, and you are interested in the profit in each case." -msgstr "" +msgstr "Wobkedźbujće špalće A a B přikładneje tabele horjeka. Chceće nětko nic jenož mnóstwo lětneje produkcije změnić, ale tež předawansku płaćiznu a zajimujeće so za daty dobytk." #. kRNub #: multioperation.xhp @@ -8896,7 +8896,7 @@ "par_id3149731\n" "help.text" msgid "Expand the table shown above. D2 thru D11 contain the numbers 500, 1000 and so on, up to 5000. In E1 through H1 enter the numbers 8, 10, 15 and 20." -msgstr "" +msgstr "Rozšěrće horjeka pokazanu tabelu. Cele D2 do D11 ličby 500, 1000 a tak dale wobsahuja, hač do 5000. Zapodajće ličby 8, 10, 15 a 20 do celow E1 do H1." #. LdMQc #: multioperation.xhp @@ -8905,7 +8905,7 @@ "par_id3152810\n" "help.text" msgid "Select the range D1:H11." -msgstr "" +msgstr "Wubjerće wobłuk D1:H11." #. FKGVk #: multioperation.xhp @@ -8914,7 +8914,7 @@ "par_id3153620\n" "help.text" msgid "Choose Data - Multiple Operations." -msgstr "" +msgstr "Wubjerće Daty – Wjacore operacije…." #. uv9gg #: multioperation.xhp @@ -8923,7 +8923,7 @@ "par_id3149981\n" "help.text" msgid "With the cursor in the Formulas field, click cell B5." -msgstr "" +msgstr "Hdyž kursor je w polu Formle, klikńće na celu B5." #. ABmDF #: multioperation.xhp @@ -8932,7 +8932,7 @@ "par_id3156113\n" "help.text" msgid "Set the cursor in the Row input cell field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)." -msgstr "" +msgstr "Stajće kursor do pola Linka a klikńće na celu B1. To rěka, zo cela B1, předawanska płaćizna, je horicontalnje zapodata wariabla (z hódnotami 8, 10, 15 a 20)." #. yrzWJ #: multioperation.xhp @@ -8941,7 +8941,7 @@ "par_id3154049\n" "help.text" msgid "Set the cursor in the Column input cell field and click in B4. This means that B4, the quantity, is the vertically entered variable." -msgstr "" +msgstr "Stajće kursor do pola Špalta a klikńće na celu B4. To rěka, zo cela B4, mnóstwo, je wertikalnje zapodata wariabla." #. YEQAH #: multioperation.xhp @@ -8950,7 +8950,7 @@ "par_id3149141\n" "help.text" msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11." -msgstr "" +msgstr "Začińće dialog z W porjadku. Widźiće dobytki za rozdźělne předawanske płaćizny we wobłuku E2:H11." #. fgJoa #: multioperation.xhp @@ -8959,7 +8959,7 @@ "par_id3155104\n" "help.text" msgid "Multiple operations" -msgstr "" +msgstr "Wjacore operacije" #. fdSJp #: multitables.xhp @@ -8968,7 +8968,7 @@ "tit\n" "help.text" msgid "Applying Multiple Sheets" -msgstr "" +msgstr "Wjacore tabele wužiwać" #. eVtFk #: multitables.xhp @@ -8977,7 +8977,7 @@ "bm_id3154759\n" "help.text" msgid "sheets; inserting inserting; sheets sheets; selecting multiple appending sheets selecting;multiple sheets multiple sheets calculating;multiple sheets" -msgstr "" +msgstr "tabele; zasadźićzasadźić; tabeletabele; wjacore wubraćtabele připowěsnyćwubrać; wjacore tabelewjacore tabelewobličić; wjacore tabele" #. EaKEB #: multitables.xhp @@ -8986,7 +8986,7 @@ "hd_id3154759\n" "help.text" msgid "Applying Multiple Sheets" -msgstr "" +msgstr "Wjacore tabele wužiwać" #. VB2mS #: multitables.xhp @@ -8995,7 +8995,7 @@ "hd_id3148576\n" "help.text" msgid "Inserting a Sheet" -msgstr "" +msgstr "Tabelu zasadźić" #. 2Ej8G #: multitables.xhp @@ -9004,7 +9004,7 @@ "par_id3154731\n" "help.text" msgid "Choose Insert - Sheet to insert a new sheet or an existing sheet from another file." -msgstr "" +msgstr "Wubjerće Zasadźić – Tabelu zasadźić…, zo byšće nowu tabelu abo eksistowacu tabelu z druheje dataje zasadźił." #. 6pGCA #: multitables.xhp @@ -9013,7 +9013,7 @@ "par_id05092009140203598\n" "help.text" msgid "Opens a dialog box where you can assign macros to sheet events." -msgstr "" +msgstr "Wočinja dialogowe polo, hdźež móžeće tabelowym podawkam makra připokazać." #. 66AKV #: multitables.xhp @@ -9022,7 +9022,7 @@ "par_id05092009140203523\n" "help.text" msgid "Opens a window where you can assign a color to the sheet tab." -msgstr "" +msgstr "Wočinja wokno, hdźež móžeće tabelowemu rajtarkej barbu připokazać." #. eBdGF #: multitables.xhp @@ -9031,7 +9031,7 @@ "par_id050920091402035\n" "help.text" msgid "Click to select all sheets in the document." -msgstr "" +msgstr "Klikńće, zo byšće wšě tabele w dokumenće wubrał." #. dMywe #: multitables.xhp @@ -9040,7 +9040,7 @@ "par_id0509200914020391\n" "help.text" msgid "Click to deselect all sheets in the document, except the current sheet." -msgstr "" +msgstr "Klikńće, zo byšće wuběr wšěch tabelow w dokumenće zběhnył, nimo aktualneje tabele." #. JGNCt #: multitables.xhp @@ -9049,7 +9049,7 @@ "hd_id3154491\n" "help.text" msgid "Selecting Multiple Sheets" -msgstr "" +msgstr "Wjacore tabele wubrać" #. K9EAh #: multitables.xhp @@ -9058,7 +9058,7 @@ "par_id3145251\n" "help.text" msgid "The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing CommandCtrl you can select multiple sheets." -msgstr "" +msgstr "Tabelowy rajtark aktualneje tabele so přeco běły před druhimi tabelowymi rajtarkami zwobraznjuje. Druhe tabelowe rajtarki su šěre, hdyž wubrane njejsu. Hdyž na druhe tabelowe rajtarki klikaće, mjeztym zo cmd ⌘Strg tłóčiće, móžeće wjacore tabele wubrać." #. mtheu #: multitables.xhp @@ -9067,7 +9067,7 @@ "par_idN106B7\n" "help.text" msgid "You can use Shift+CommandCtrl+Page Up or Page Down to select multiple sheets using the keyboard." -msgstr "" +msgstr "Móžeće cmd ⌘Strg+Umsch (⇧)+Bild ↑ abo Bild ↓ wužiwać, zo byšće wjacore tabele z pomocu tastatury wubrał." #. LHpti #: multitables.xhp @@ -9076,7 +9076,7 @@ "hd_id3155600\n" "help.text" msgid "Undoing a Selection" -msgstr "" +msgstr "Wuběr cofnyć" #. ZDEzm #: multitables.xhp @@ -9085,7 +9085,7 @@ "par_id3146969\n" "help.text" msgid "To undo the selection of a sheet, click its sheet tab again while pressing the CommandCtrl key. The sheet that is currently visible cannot be removed from the selection." -msgstr "" +msgstr "Zo byšće wuběr tabele cofnył, klikńće na jeje tabelowy rajtark, mjeztym zo tastu cmd ⌘Strg tłóčiće. Tabela, kotraž je tuchwilu widźomna, njeda so z wuběra wotstronić." #. AzZ8a #: multitables.xhp @@ -9094,7 +9094,7 @@ "hd_id3156382\n" "help.text" msgid "Calculating Across Multiple Sheets" -msgstr "" +msgstr "Přez wjacore tabele ličić" #. g6eib #: multitables.xhp @@ -9103,7 +9103,7 @@ "par_id3155333\n" "help.text" msgid "You can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, =SUM(Sheet1.A1:Sheet3.A1) sums up all A1 cells on Sheet1 through Sheet3." -msgstr "" +msgstr "Móžeće sp na wobłuk tabelow w formli poćahować, hdyž prěnju a poslednju wobłuka podawaće, na přikład =SUMA(Tabela1.A1:Tabela3.A1) wšě cele A1 wot Tabela1 do Tabele3 suměruje." #. BCGTB #: note_insert.xhp @@ -9112,7 +9112,7 @@ "tit\n" "help.text" msgid "Inserting and Editing Comments" -msgstr "" +msgstr "Komentary zasadźić a wobdźěłać" #. P8tBc #: note_insert.xhp @@ -9121,7 +9121,7 @@ "bm_id3153968\n" "help.text" msgid "comments; on cells cells;comments remarks on cells formatting;comments on cells viewing;comments on cells displaying; comments" -msgstr "" +msgstr "komentary; w celachcele; komentarypřispomnjenki w celachformatěrować; komentary w celachpokazać; komentary w celachpokazać; komentary" #. GBkCp #: note_insert.xhp @@ -9130,7 +9130,7 @@ "hd_id3153968\n" "help.text" msgid "Inserting and Editing Comments" -msgstr "" +msgstr "Komentary zasadźić a wobdźěłać" #. LT56i #: note_insert.xhp @@ -9139,7 +9139,7 @@ "par_id3150440\n" "help.text" msgid "You can assign a comment to each cell by choosing Insert - Comment. The comment is indicated by a small red square, the comment indicator, in the cell." -msgstr "" +msgstr "Wubjerće Zasadźić – Komentar, zo byšće kóždej celi komentar připokazał. Komentar so přez mały čerwjeny kwadrat, komentarowy indikator, w celi woznamjenja." #. ZGJBc #: note_insert.xhp @@ -9148,7 +9148,7 @@ "par_id3145750\n" "help.text" msgid "The comment is visible whenever the mouse pointer is over the cell." -msgstr "" +msgstr "Komentar je widźomny, hdyžkuli pokazowak myški je nad celu." #. C4Eo5 #: note_insert.xhp @@ -9157,7 +9157,7 @@ "par_id3148575\n" "help.text" msgid "When you select the cell, you can choose Show Comment from the context menu of the cell. Doing so keeps the comment visible until you deactivate the Show Comment command from the same context menu." -msgstr "" +msgstr "Hdyž celu wuběraće, móžeće Komentar pokazać z kontekstoweho menija cele wubrać. Přez to komentar widźomny wostawa, doniž přikaz Komentar pokazać ze samsneho kontekstoweho menija njeznjemóžnjeće." #. KdF5M #: note_insert.xhp @@ -9166,7 +9166,7 @@ "par_id3149958\n" "help.text" msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted." -msgstr "" +msgstr "Zo byšće stajnje widźomny komentar wobdźěłał, klikńće prosće na njón. Jeli cyły tekst komentara zhašeće, so komentar sam zhaša." #. hWoCg #: note_insert.xhp @@ -9175,7 +9175,7 @@ "par_idN10699\n" "help.text" msgid "Move or resize each comment as you like." -msgstr "" +msgstr "Přesuńće kóždy komentar abo změńće jeho wulkosć po swojim dobrozdaću." #. kwi8z #: note_insert.xhp @@ -9184,7 +9184,7 @@ "par_idN1069D\n" "help.text" msgid "Format each comment by specifying background color, transparency, border style, and text alignment. Choose the commands from the context menu of the comment." -msgstr "" +msgstr "Postajće pozadkowu barbu, transparencu, ramikowy stil a tekstowe wusměrjenje, zo byšće kóždy komentar formatěrował. Wubjerće přikazy z kontekstoweho menija komentara." #. vNMSR #: note_insert.xhp @@ -9193,7 +9193,7 @@ "par_id3144764\n" "help.text" msgid "To show or hide the comment indicator, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View and mark or unmark the Comment indicator check box." -msgstr "" +msgstr "Zo byšće komentarowy indikator pokazał abo schował, wubjerće %PRODUCTNAME – NastajenjaNastroje – Nastajenja – %PRODUCTNAME Calc – Napohlad a zmóžńcé abo znjemóžńće kontrolny kašćik Komentarowy indikator." #. TYg9E #: note_insert.xhp @@ -9202,7 +9202,7 @@ "par_id3150715\n" "help.text" msgid "To display a help tip for a selected cell, use Data - Validity - Input Help." -msgstr "" +msgstr "Zo byšće za wubranu celu pokiw pokazał, wužiwajće Daty – Płaćiwosć… – rajtark: Zapodwanska pomoc." #. pF67W #: note_insert.xhp @@ -9211,7 +9211,7 @@ "par_id3153707\n" "help.text" msgid "Insert - Comment" -msgstr "" +msgstr "Zasadźć – Komentar" #. 97G62 #: numbers_text.xhp @@ -9220,7 +9220,7 @@ "tit\n" "help.text" msgid "Converting Text to Numbers" -msgstr "" +msgstr "Tekst do ličbow přetworić" #. dP2GC #: numbers_text.xhp @@ -9229,7 +9229,7 @@ "bm_id3145068\n" "help.text" msgid "formats; text as numbers time format conversion date formats;conversion converting;text, into numbers" -msgstr "" +msgstr "formaty; tekst jako ličbypřetworjenje časoweho formatadatumowe formaty; přetworjenjepřetworić; tekst, do ličbow" #. AAaGt #: numbers_text.xhp @@ -9238,7 +9238,7 @@ "hd_id0908200901265171\n" "help.text" msgid "Converting Text to Numbers" -msgstr "" +msgstr "Tekst do ličbow přetworić" #. rpHje #: numbers_text.xhp @@ -9247,7 +9247,7 @@ "par_id0908200901265127\n" "help.text" msgid "Defaults settings in Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error." -msgstr "" +msgstr "Standardne nastajenja w Calc tekst w celach do wotpowědnych numeriskich hódnotow přetworjeja, jeli jednozmyslne přetworjenje je móžne. Jeli přetworjenje móžne njeje, Calc zmylk #HÓDNOTA! wróći." #. yhhMM #: numbers_text.xhp @@ -9256,7 +9256,7 @@ "par_id0908200901265196\n" "help.text" msgid "Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored." -msgstr "" +msgstr "Jenož cyłe ličby inkluziwnje eksponenty so přetworjeja a datumowe a časowe podaća ISO 8601 w jich rozšěrjenych formatach z dźělatkami. Wšitko druhe, kaž łamkowe ličby z decimalnymi dźělatkami abo datumowe podaća, kotrež ISO 8601 njewotpowěduja, so njepřetworja, dokelž tekstowy znamješkowy rjećazk wot narodneje šemy wotwisuje. Načolne a naslědne mjezoty so ignoruja." #. KHDbE #: numbers_text.xhp @@ -9265,7 +9265,7 @@ "par_id0908200901265220\n" "help.text" msgid "The following ISO 8601 formats are converted:" -msgstr "" +msgstr "Slědowace format ISO 8601 so přetworjeja:" #. Wm625 #: numbers_text.xhp @@ -9274,7 +9274,7 @@ "par_id0908200901265288\n" "help.text" msgid "CCYY-MM-DD" -msgstr "" +msgstr "CCYY-MM-DD" #. FpDBW #: numbers_text.xhp @@ -9283,7 +9283,7 @@ "par_id0908200901265267\n" "help.text" msgid "CCYY-MM-DDThh:mm" -msgstr "" +msgstr "CCYY-MM-DDThh:mm" #. r9ueM #: numbers_text.xhp @@ -9292,7 +9292,7 @@ "par_id0908200901265248\n" "help.text" msgid "CCYY-MM-DDThh:mm:ss" -msgstr "" +msgstr "CCYY-MM-DDThh:mm:ss" #. 9nAGP #: numbers_text.xhp @@ -9301,7 +9301,7 @@ "par_id0908200901265374\n" "help.text" msgid "CCYY-MM-DDThh:mm:ss,s" -msgstr "" +msgstr "CCYY-MM-DDThh:mm:ss,s" #. GbRWC #: numbers_text.xhp @@ -9310,7 +9310,7 @@ "par_id0908200901265327\n" "help.text" msgid "CCYY-MM-DDThh:mm:ss.s" -msgstr "" +msgstr "CCYY-MM-DDThh:mm:ss.s" #. NAzAi #: numbers_text.xhp @@ -9319,7 +9319,7 @@ "par_id0908200901265399\n" "help.text" msgid "hh:mm" -msgstr "" +msgstr "hh:mm" #. fHx5R #: numbers_text.xhp @@ -9328,7 +9328,7 @@ "par_id0908200901265347\n" "help.text" msgid "hh:mm:ss" -msgstr "" +msgstr "hh:mm:ss" #. NhLDG #: numbers_text.xhp @@ -9337,7 +9337,7 @@ "par_id0908200901265349\n" "help.text" msgid "hh:mm:ss,s" -msgstr "" +msgstr "hh:mm:ss,s" #. zQp4V #: numbers_text.xhp @@ -9346,7 +9346,7 @@ "par_id0908200901265342\n" "help.text" msgid "hh:mm:ss.s" -msgstr "" +msgstr "hh:mm:ss.s" #. 2frj9 #: numbers_text.xhp @@ -9355,7 +9355,7 @@ "par_id0908200901265491\n" "help.text" msgid "The century code CC may not be omitted. Instead of the T date and time separator, exactly one space character may be used." -msgstr "" +msgstr "Kod CC za lětstotk njesmě so wuwostajić. Město datumoweho a časoweho dźělatka T da so tež jedna mjezota wužiwać." #. ertRH #: numbers_text.xhp @@ -9364,7 +9364,7 @@ "par_id0908200901265467\n" "help.text" msgid "If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999..." -msgstr "" +msgstr "Jeli datum je podaty, dyrbi płaćiwy gregorianiski protykowy datum być. W tutym padźe dyrbi někajki čas we wobłuku 00:00 to 23:59:59.99999... być." #. sztEG #: numbers_text.xhp @@ -9373,7 +9373,7 @@ "par_id0908200901265420\n" "help.text" msgid "If only a time string is given, it may have an hours value of more than 24, while minutes and seconds can have a maximum value of 59." -msgstr "" +msgstr "Jeli jenož časowy znamješkowy rjećazk je podaty, móže hodźinsku hódnotu měć, kotraž je wjetša hač 24 , mjeńšiny a sekundy pak móžeće maksimalnu hódnotu 59 měć." #. iCp9E #: numbers_text.xhp @@ -9382,7 +9382,7 @@ "par_id761567607207916\n" "help.text" msgid "The conversion is done for single scalar values only, not within ranges." -msgstr "" +msgstr "Přetworjenje so jenož za jednotliwe skalarne hódnoty přewjedźe, nic znutřka wobłukow." #. C6ykS #: numbers_text.xhp @@ -9391,7 +9391,7 @@ "par_id0908200901265448\n" "help.text" msgid "The conversion is done for single scalar values, as in =A1+A2, or =\"1E2\"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string." -msgstr "" +msgstr "Přetworjenje so za jednotliwe skalarne hódnoty kaž w =A1+A2, or =\"1E2\"+1 přewjedźe. Argumenty celoweho wobłuka potrjechene njejsu, tohodla so SUMA(A1:A2) wot A1+A2 rozeznawa, jeli znajmjeńša jedna z dweju celow konwertibelny znamješkowy rjećazk wobsahuje." #. N4xE3 #: numbers_text.xhp @@ -9400,7 +9400,7 @@ "par_id090820090126540\n" "help.text" msgid "Strings inside formulas are also converted, such as in =\"1999-11-22\"+42, which returns the date 42 days after November 22nd, 1999. Calculations involving localized dates as strings inside the formula return an error. For example, the localized date string \"11/22/1999\" or \"22.11.1999\" cannot be used for the automatic conversion." -msgstr "" +msgstr "Znamješkowe rjećazki w formlach so tež přetworjeja, na přikład w =\"1999-11-22\"+42, kotraž 42 dnjow po 22. nowembra 1999 wróća. Wobličenja, kotrež datumowe podaća w lokalnym formaće jako znamješkowe rjećazki w formli wobsahuja, zmylk wudawaja. Na přikład datumowy znamješkowy rjećazk \"11/22/1999\" abo \"22.11.1999\" njeda so za awtomatiske přetworjenje wužiwać." #. mvBJU #: numbers_text.xhp @@ -9409,7 +9409,7 @@ "hd_id1005200903485368\n" "help.text" msgid "Example" -msgstr "" +msgstr "Přikład" #. Wn9uE #: numbers_text.xhp @@ -9418,7 +9418,7 @@ "par_id1005200903485359\n" "help.text" msgid "In A1 enter the text '1e2 (which is converted to the number 100 internally)." -msgstr "" +msgstr "Zapodajće tekst !1e2 do cele A1 (kotryž so internje do ličby 100 přetworja)." #. CFpmx #: numbers_text.xhp @@ -9427,7 +9427,7 @@ "par_id1005200903485341\n" "help.text" msgid "In A2 enter =A1+1 (which correctly results in 101)." -msgstr "" +msgstr "Zapodajće =A1+1 do cele A2 (wuslědk je 101)." #. MLL7F #: numbers_text.xhp @@ -9436,7 +9436,7 @@ "par_id891567607263849\n" "help.text" msgid "The formula =SUM(A1:A2), returns 101 instead of 201 because the conversion does not occur in a range, only for single scalar values. Here, '1e2 is treated as string which is ignored for the SUM function." -msgstr "" +msgstr "Formla =SUMA(A1:A2) 101 město 201 wróći, dokelž so přetworjenje we wobłuku njestawa, jenož za jednotliwe skalarne hódnoty. Tu so '1e2 kaž ze znamješkowym rjećazkom wobchadźa, kotryž so za funkciju SUMA ignoruje." #. hoF73 #: numbers_text.xhp @@ -9445,7 +9445,7 @@ "par_id611567607779380\n" "help.text" msgid "=SUM(\"1E2\";1) returns #VALUE! because SUM() and some others that iterate over number sequences explicitly check the argument type." -msgstr "" +msgstr "=SUMA(\"1E2\";1) #HÓDNOTA! wróća, dokelž SUMA() a někotre druhe, kotrež nad ličbne slědy iteruja, argumentowy typ eksplicitnje přepruwuja." #. RNrFS #: numbers_text.xhp @@ -9454,7 +9454,7 @@ "hd_id871567772424915\n" "help.text" msgid "Changing the default text to number conversion settings" -msgstr "" +msgstr "Standardne nastajenja za přetworjenje teksta do ličby změnić" #. 9NL9J #: numbers_text.xhp @@ -9463,7 +9463,7 @@ "par_id111567772433803\n" "help.text" msgid "The text to number conversion can be customized in the Detailed Calculation Settings option." -msgstr "" +msgstr "Přetworjenje teksta do ličby da so z nastajenjom w Podrobne nastajenja za wobličenja přiměrić." #. igDCX #: numbers_text.xhp @@ -9472,7 +9472,7 @@ "par_id0908200901265544\n" "help.text" msgid "Format - Cells - Numbers" -msgstr "" +msgstr "Format – Cele… – rajtark: Ličby" #. 42xFw #: pivotchart.xhp @@ -9481,7 +9481,7 @@ "tit\n" "help.text" msgid "Pivot Chart" -msgstr "" +msgstr "Pivotowy diagram" #. M55mf #: pivotchart.xhp @@ -9490,7 +9490,7 @@ "bm_id541525139738752\n" "help.text" msgid "chart;pivot chart pivot table;pivot chart" -msgstr "" +msgstr "diagram; pivotowy diagrampivotowa tabela; pivotowy diagram" #. vGNqs #: pivotchart.xhp @@ -9499,7 +9499,7 @@ "hd_id141525139671420\n" "help.text" msgid "Pivot Chart" -msgstr "" +msgstr "Pivotowy diagram" #. 9ZWLh #: pivotchart.xhp @@ -9508,7 +9508,7 @@ "par_id291525139878423\n" "help.text" msgid "A pivot chart is a chart with data range and data series of a pivot table." -msgstr "" +msgstr "Pivotowy diagram je diagram z datowym wobłukom a datowym rjadom pivotoweje tabele." #. VMZRC #: pivotchart.xhp @@ -9517,7 +9517,7 @@ "par_id911525139890364\n" "help.text" msgid "Different from static sized tables, where the number of rows and columns are constant, pivot tables can have varying dimensions, depending on the pivot table settings and its data source contents." -msgstr "" +msgstr "Na rozdźěl wot statiskich tabelow, hdźež ličba linkow a špaltow je konstantna, móža pivotowe tabele rozdźělne dimensije měć, wotwisujo wot nastajenjow pivotoweje tabele a jeje datoweho žórłoweho wobsaha." #. WFAoP #: pivotchart.xhp @@ -9526,7 +9526,7 @@ "par_id201525141351484\n" "help.text" msgid "Pivot charts track the changes in the data issued from a pivot table and adjust the data series and data range accordingly." -msgstr "" +msgstr "Pivotowe diagramy změnam w datach slěduja, kotrež so přez pivotowu tabelu wudawaja, a přiměrjeja wotpowědnje datowe rjady." #. jvYUC #: pivotchart.xhp @@ -9535,7 +9535,7 @@ "par_id191525177790601\n" "help.text" msgid "Technical details on %PRODUCTNAME pivot chart implementation." -msgstr "" +msgstr "Techniske podrobnosće wo implementaciji pivotowych diagramow w %PRODUCTNAME." #. D4FkY #: pivotchart_create.xhp @@ -9544,7 +9544,7 @@ "tit\n" "help.text" msgid "Creating Pivot Charts" -msgstr "" +msgstr "Pivotowe diagramy wutworić" #. ycEFe #: pivotchart_create.xhp @@ -9553,7 +9553,7 @@ "bm_id531525141739769\n" "help.text" msgid "pivot chart;creating" -msgstr "" +msgstr "pivotowy diagram; wutworić" #. yyM9q #: pivotchart_create.xhp @@ -9562,7 +9562,7 @@ "hd_id441525141699185\n" "help.text" msgid "Creating Pivot Charts" -msgstr "" +msgstr "Pivotowe diagramy wutworić" #. UuRST #: pivotchart_create.xhp @@ -9571,7 +9571,7 @@ "par_id481525142550652\n" "help.text" msgid "To create a pivot chart proceed as below:" -msgstr "" +msgstr "Zo byšće pivotowy diagram wutworił, čińće tole:" #. EYcoc #: pivotchart_create.xhp @@ -9580,7 +9580,7 @@ "par_id761525140219212\n" "help.text" msgid "Click inside the pivot table that you want to present in your chart." -msgstr "" +msgstr "Klikńće do pivotoweje tabele, kotruž chceće w swojim diagramje zwobraznić." #. VXkUm #: pivotchart_create.xhp @@ -9589,7 +9589,7 @@ "par_id351525140237521\n" "help.text" msgid "Choose Insert – Chart or click in the Insert Chart Icon Insert Chart icon in the main toolbar." -msgstr "" +msgstr "Wubjerće Zasadźić – Diagram… abo klikńće na symbol symbol za Diagram zasadźićDiagram zasadźić we hłownej symbolowej lajsće." #. AE2L6 #: pivotchart_create.xhp @@ -9598,7 +9598,7 @@ "par_id151525140367370\n" "help.text" msgid "%PRODUCTNAME Calc automatically detects the pivot table and opens the pivot chart wizard." -msgstr "" +msgstr "%PRODUCTNAME Calc pivotowu tabelu awtomatisce wotkrywa a wočinja asistent pivotoweho diagrama." #. 4WYiS #: pivotchart_create.xhp @@ -9607,7 +9607,7 @@ "par_id861525140391601\n" "help.text" msgid "Select the Chart type for the data in the chart wizard." -msgstr "" +msgstr "Wubjerće diagramowy typ za daty w diagramowym asistenće." #. DkotR #: pivotchart_create.xhp @@ -9616,7 +9616,7 @@ "par_id41525141917275\n" "help.text" msgid "The data range and the data series pages of the chart wizard are not enabled. They are controlled by the pivot table." -msgstr "" +msgstr "Strony datoweho wobłuka a datoweho rjada diagramoweho asistenta zmóžnjene njejsu. Kontroluja so přez pivotowu tabelu." #. c3MzL #: pivotchart_create.xhp @@ -9625,7 +9625,7 @@ "par_id511525140411625\n" "help.text" msgid "Select the Chart Elements of the pivot chart in the wizard." -msgstr "" +msgstr "Wubjerće diagramowe elementy pivotoweho diagrama w asistenće." #. DiBBF #: pivotchart_create.xhp @@ -9634,7 +9634,7 @@ "par_id1001525165156188\n" "help.text" msgid "Click OK to close the wizard and create the pivot chart." -msgstr "" +msgstr "Klikńće na W porjadku, zo byšće asistent začinił a pivotowy diagram wutworił." #. gQpGG #: pivotchart_delete.xhp @@ -9643,7 +9643,7 @@ "tit\n" "help.text" msgid "Deleting Pivot Charts" -msgstr "" +msgstr "Pivotowe diagramy zhašeć" #. 4gxme #: pivotchart_delete.xhp @@ -9652,7 +9652,7 @@ "hd_id231525147891984\n" "help.text" msgid "Deleting a Pivot Chart" -msgstr "" +msgstr "Pivotowy diagram zhašeć" #. GRQDA #: pivotchart_delete.xhp @@ -9661,7 +9661,7 @@ "bm_id231525149357908\n" "help.text" msgid "pivot chart;deleting" -msgstr "" +msgstr "pivotowy diagram; zhašeć" #. cJkJT #: pivotchart_delete.xhp @@ -9670,7 +9670,7 @@ "par_id141525147903623\n" "help.text" msgid "To delete a pivot chart, select the chart and press Del." -msgstr "" +msgstr "Zo byšće pivotowy diagram zhašał, wubjerće diagram a tłóčćeEntf." #. DFffk #: pivotchart_delete.xhp @@ -9679,7 +9679,7 @@ "par_id431525148462157\n" "help.text" msgid "When deleting a pivot chart, the linked pivot table is not affected." -msgstr "" +msgstr "Hdyž so pivotowy diagram zhaša, zwjazana pivotowa tabela potrjechena njeje." #. izc4D #: pivotchart_delete.xhp @@ -9688,7 +9688,7 @@ "par_id141525148751543\n" "help.text" msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion." -msgstr "" +msgstr "Jeli pivotowu tabelu zhašeće, kotrež je z pivotowym diagramom zwjazana, so tež pivotowy diagram zhaša. Dialogowe polo so wočinja, hdźež móžeće zhašenje pivotoweho diagrama wobkrućić." #. KEqLt #: pivotchart_edit.xhp @@ -9697,7 +9697,7 @@ "tit\n" "help.text" msgid "Editing Pivot Charts" -msgstr "" +msgstr "Pivotowe diagramy wobdźěłać" #. LsYBC #: pivotchart_edit.xhp @@ -9706,7 +9706,7 @@ "bm_id661525144028976\n" "help.text" msgid "pivot chart;editing" -msgstr "" +msgstr "pivotowy diagram; wobdźěłać" #. tCuUT #: pivotchart_edit.xhp @@ -9715,7 +9715,7 @@ "hd_id271525144002806\n" "help.text" msgid "Editing Pivot Charts" -msgstr "" +msgstr "Pivotowe diagramy wobdźěłać" #. tyqEE #: pivotchart_edit.xhp @@ -9724,7 +9724,7 @@ "par_id971525144066574\n" "help.text" msgid "Edit a pivot chart in the same way as normal charts." -msgstr "" +msgstr "Wobdźěłajće pivotowy diagram na samsne wašnje kaž normalne diagramy." #. RtcFm #: pivotchart_edit.xhp @@ -9733,7 +9733,7 @@ "hd_id5631580\n" "help.text" msgid "To edit a pivot chart" -msgstr "" +msgstr "Pivotowy diagram wobdźěłać" #. 4J9iC #: pivotchart_filter.xhp @@ -9742,7 +9742,7 @@ "tit\n" "help.text" msgid "Filtering Pivot Charts" -msgstr "" +msgstr "Pivotowe diagramy filtrować" #. BQj5B #: pivotchart_filter.xhp @@ -9751,7 +9751,7 @@ "hd_id401525165755583\n" "help.text" msgid "Filtering Pivot Charts" -msgstr "" +msgstr "Pivotowe diagramy filtrować" #. AkGAs #: pivotchart_filter.xhp @@ -9760,7 +9760,7 @@ "par_id781525166702239\n" "help.text" msgid "Filters are used to remove unwanted data from the pivot chart. You can use filters in the pivot chart or in the corresponding pivot table, since the resulting chart is exactly the same." -msgstr "" +msgstr "Filtry so wužiwaja, zo bychu njewitane daty z pivotoweho diagrama wotstronili. Móžeće filtry w pivotowym diagramje abo we wotpowědnej pivotowej tabeli wužiwać, dokelž samsny diagram wuńdźe." #. n2tCy #: pivotchart_filter.xhp @@ -9769,7 +9769,7 @@ "hd_id201525166689277\n" "help.text" msgid "Pivot chart field buttons" -msgstr "" +msgstr "Tłóčatka za pola pivotoweho diagrama" #. h5tHY #: pivotchart_filter.xhp @@ -9778,7 +9778,7 @@ "par_id751525167435160\n" "help.text" msgid "Pivot chart buttons are unique to pivot charts, normal charts don't have them. The buttons shows the layout of the pivot table, which are the pivot table fields. If present, filters are displayed in the top. Row fields are displayed on the bottom of the chart next to each other and the legend shows the buttons from column fields stacked." -msgstr "" +msgstr "Tłóčatka pivotoweho diagrama su jenož w pivotowych diagramach, normalne diagramy je nimaja. Tłóčatka, kotrež su pola pivotoweje tabele, wuhotowanje pivatoweje tabele pokazuja. Jeli tajke eksistuja, so filtry horjeka pokazuja. Linkowe pola so deleka w diagramje pódla sebje pokazuja, a legenda tłóčatka ze špalty nastaplowane pokazuje." #. HiBfg #: pivotchart_filter.xhp @@ -9787,7 +9787,7 @@ "par_id681525167692377\n" "help.text" msgid "Pivot chart buttons" -msgstr "" +msgstr "Tłóčatka pivotoweho diagrama" #. 6hniX #: pivotchart_filter.xhp @@ -9796,7 +9796,7 @@ "par_id851525167448337\n" "help.text" msgid "The buttons have a pop-up action attached to them. If there is some filtering applied, then the arrow turns blue (similar to the pivot table), so it is easier to see when a field has any filter applied." -msgstr "" +msgstr "Tłóčatka akciju za wuskakowanje pódla sebje. Jeli so filtrowanje nałožuje, so šipk módri (podobnje na pivotowu tabelu), potom je lóšo widźeć, hdyž je so filter na polo nałožił." #. 2A39k #: pivotchart_filter.xhp @@ -9805,7 +9805,7 @@ "par_id401525167457977\n" "help.text" msgid "Existing filters shows what is filtered: when nothing is filtered \"- all -\" is shown, when some data is filtered, then \"- multiple -\" is shown and when only one value is not filtered, the value is shown." -msgstr "" +msgstr "Eksistowacy filter pokazuje, štož je so filtrowało: Hdyž ničo njeje so filtrowało, so „-wšě-„-“ pokazuje, hdyž su so někotre daty filtrowali, so „-wjacore-“ pokazuje a hdyž so jenož jedna hódnota njefiltruje, so hódnota pokazuje." #. Qprys #: pivotchart_update.xhp @@ -9814,7 +9814,7 @@ "tit\n" "help.text" msgid "Pivot Chart Update" -msgstr "" +msgstr "Pivotowy diagram aktualizować" #. cUrFa #: pivotchart_update.xhp @@ -9823,7 +9823,7 @@ "bm_id801525146393791\n" "help.text" msgid "pivot chart;update" -msgstr "" +msgstr "pivotowy diagram; aktualizować" #. XvU7B #: pivotchart_update.xhp @@ -9832,7 +9832,7 @@ "hd_id281525146417678\n" "help.text" msgid "Updating Pivot Charts" -msgstr "" +msgstr "Pivotowe diagramy aktualizować" #. JmbEt #: pivotchart_update.xhp @@ -9841,7 +9841,7 @@ "par_id831525146706944\n" "help.text" msgid "If the data of the source sheet has been changed, you must refresh the pivot table and the pivot chart is updated accordingly. To refresh the pivot table (and thus the pivot chart):" -msgstr "" +msgstr "Jeli su so daty žórłoweje tabele změnili, dyrbiće pivotowu tabelu aktualizować a pivotowy diagram so wotpowědnje aktualizuje. Zo byšće pivotowu tabelu aktualizował (tuž tež pivotowy diagram):" #. dDjSB #: pivotchart_update.xhp @@ -9850,7 +9850,7 @@ "par_id451525146722974\n" "help.text" msgid "Choose Data - Pivot Table - Refresh." -msgstr "" +msgstr "Wubjerće Daty – Pivotowa tabela – Aktualizować." #. Q3QuQ #: pivotchart_update.xhp @@ -9859,7 +9859,7 @@ "par_id331525146738273\n" "help.text" msgid "Choose Refresh... in the context menu of any cell in the pivot table." -msgstr "" +msgstr "Wubjerće Aktualizować w kontekstowym meniju cele w pivotowej tabeli." #. wpTTH #: print_details.xhp @@ -9868,7 +9868,7 @@ "tit\n" "help.text" msgid "Printing Sheet Details" -msgstr "" +msgstr "Tabelowe podrobnosće ćišćeć" #. qrcho #: print_details.xhp @@ -9877,7 +9877,7 @@ "bm_id3154346\n" "help.text" msgid "printing;sheet detailssheets; printing detailsgrids; printing sheet gridsformulas; printing, instead of resultscomments; printingcharts;printingsheet grids; printingcells; printing gridsborders; printing cellszero values; printingnull values; printingdraw objects;printing" -msgstr "" +msgstr "ćišćeć; tabelowe podrobnosćetabele; podrobnosće ćišćećlěsycy; tabelowe lěsycy ćišćećformle; ćišćeć, město wuslědkowkomentary; ćišćećdiagramy; ćišćećtabelowe lěsycy; ćišćećcele; lěsycy ćišćećramiki; cele ćišćećnulowe hódnoty; ćišćeććišćeć; nulowe hódnotyrysowanske objekty; ćišćeć" #. ikmor #: print_details.xhp @@ -9886,7 +9886,7 @@ "hd_id3154346\n" "help.text" msgid "Printing Sheet Details" -msgstr "" +msgstr "Tabelowe podrobnosće ćišćeć" #. hGEFc #: print_details.xhp @@ -9895,7 +9895,7 @@ "par_id3153728\n" "help.text" msgid "When printing a sheet you can select which details are to be printed:" -msgstr "" +msgstr "Při ćišćenju tabele, móžeće wubrać, kotre podrobnosće maja so ćišćeć:" #. sTXzq #: print_details.xhp @@ -9904,7 +9904,7 @@ "par_id3150010\n" "help.text" msgid "Row and column headers" -msgstr "" +msgstr "Linkowe a špaltowe hłowy" #. Rxa8b #: print_details.xhp @@ -9913,7 +9913,7 @@ "par_id3154013\n" "help.text" msgid "Sheet grid" -msgstr "" +msgstr "Tabelowa lěsyca" #. Bn5n8 #: print_details.xhp @@ -9922,7 +9922,7 @@ "par_id3145273\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Komentary" #. DsPaj #: print_details.xhp @@ -9931,7 +9931,7 @@ "par_id3145801\n" "help.text" msgid "Objects and images" -msgstr "" +msgstr "Objekty a wobrazy" #. BBrSF #: print_details.xhp @@ -9940,7 +9940,7 @@ "par_id3154491\n" "help.text" msgid "Charts" -msgstr "" +msgstr "Diagramy" #. nJzAL #: print_details.xhp @@ -9949,7 +9949,7 @@ "par_id3154731\n" "help.text" msgid "Drawing objects" -msgstr "" +msgstr "Rysowanske objekty" #. BRFB5 #: print_details.xhp @@ -9958,7 +9958,7 @@ "par_id3149400\n" "help.text" msgid "Formulas" -msgstr "" +msgstr "Formle" #. 7m79J #: print_details.xhp @@ -9967,7 +9967,7 @@ "par_id3150752\n" "help.text" msgid "To choose the details proceed as follows:" -msgstr "" +msgstr "Zo byšće podrobnosće wubrał, čińće tole:" #. jXek8 #: print_details.xhp @@ -9976,7 +9976,7 @@ "par_id3145640\n" "help.text" msgid "Select the sheet you want to print." -msgstr "" +msgstr "Wubjerće tabelu, kotruž chceće ćišćeć." #. L6kAV #: print_details.xhp @@ -9985,7 +9985,7 @@ "par_id3150042\n" "help.text" msgid "Choose Format - Page Style." -msgstr "" +msgstr "Wubjerće Format – Předłoha strony …." #. 4sJjb #: print_details.xhp @@ -9994,7 +9994,7 @@ "par_id3147340\n" "help.text" msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the Edit File icon on the Standard Bar." -msgstr "" +msgstr "Přikaz widźomny njeje, jeli tabela je so ze zmóžnjenym pisanskim škitom wočiniła. Klikńće w tym padźe na symbol Dataju wobdźěłać w symbolowej lajsće Standard." #. iLHHD #: print_details.xhp @@ -10003,7 +10003,7 @@ "par_id3146916\n" "help.text" msgid "Select the Sheet tab. In the Print area mark the details to be printed and click OK." -msgstr "" +msgstr "Wubjerće rajtark Tabela. Wubjerće we wobłuku Ćišćeć podrobnosće, kotrež so maja ćišćeć a klikńće na W porjadku." #. FBQsr #: print_details.xhp @@ -10012,7 +10012,7 @@ "par_id3145789\n" "help.text" msgid "Print the document." -msgstr "" +msgstr "Ćišćće dokument." #. TSBnz #: print_details.xhp @@ -10021,7 +10021,7 @@ "par_id3150345\n" "help.text" msgid "View - Page Break" -msgstr "" +msgstr "Napohlad – Łamanje strony" #. AgAiH #: print_exact.xhp @@ -10030,7 +10030,7 @@ "tit\n" "help.text" msgid "Defining Number of Pages for Printing" -msgstr "" +msgstr "Ličbu stronow za ćišć nastajić" #. HQatF #: print_exact.xhp @@ -10039,7 +10039,7 @@ "bm_id3153194\n" "help.text" msgid "printing; sheet countssheets; printing sheet countspage breaks; spreadsheet previewediting;print rangesviewing;print rangespreviews;page breaks for printing" -msgstr "" +msgstr "ćišćeć; ličba tabelowtabele; ličbu tabelow ćišćećłamanja strony; přehlad tabeloweho dokumentawobdźěłać; wobłuki ćišćećpokazać; wobłuki ćišćećpřehlady; łamanja strony za ćišćenje" #. FEWmm #: print_exact.xhp @@ -10048,7 +10048,7 @@ "hd_id3153194\n" "help.text" msgid "Defining Number of Pages for Printing" -msgstr "" +msgstr "Ličbu stronu za ćišć nastajić" #. 8omBt #: print_exact.xhp @@ -10057,7 +10057,7 @@ "par_id3153771\n" "help.text" msgid "If a sheet is too large for a single printed page, $[officename] Calc will print the current sheet evenly divided over several pages. Since the automatic page break does not always take place in the optimal position, you can define the page distribution yourself." -msgstr "" +msgstr "Jeli tabela je přewulka za jednotliwu wućišćanu stronu, budźe $[officename] Calc aktualnu tabelu jenak po wjacorych stronach rozdźěleć. Dokelž awtomatiske łamanje strony so nić přeco na optimalnej poziciji stawa, móžeće rozdźělenje po stronach sam definować." #. qdCU7 #: print_exact.xhp @@ -10066,7 +10066,7 @@ "par_id3159155\n" "help.text" msgid "Go to the sheet to be printed." -msgstr "" +msgstr "Přeńdźće k tabeli, kotraž so ma ćišćeć." #. TkCsA #: print_exact.xhp @@ -10075,7 +10075,7 @@ "par_id3150012\n" "help.text" msgid "Choose View - Page Break." -msgstr "" +msgstr "Wubjerće Napohlad – Łamanje strony." #. eWnDG #: print_exact.xhp @@ -10084,7 +10084,7 @@ "par_id3146974\n" "help.text" msgid "You will see the automatic distribution of the sheet across the print pages. The automatically created print ranges are indicated by dark blue lines, and the user-defined ones by light blue lines. The page breaks (line breaks and column breaks) are marked as black lines." -msgstr "" +msgstr "Widźiće awtomatiske rozdźělenje tabele po ćišćerskich stronach. Awtomatisce wutworjene ćišćerske wobłuku so přez ćmowe módre linije woznamjenjeja, a swójske přez swětłe módre linije. Łamanja strony (łamanja linki a łamanja špalty) so jako čorne linije markěruja." #. wTFAy #: print_exact.xhp @@ -10093,7 +10093,7 @@ "par_id3152578\n" "help.text" msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks." -msgstr "" +msgstr "Móžeće módre linije z myšku přesunyć. Namakaće dalše nastajenja w kontekstowym meniju, mjez nimi nastajenje za přidawanje přidatneho ćišćerskeho wobłuka, za wotstronjenje skalěrowanja a zasadźowanje přidatnych linkowych a špaltowych łamanjow." #. pv9mo #: print_exact.xhp @@ -10102,7 +10102,7 @@ "par_id3151073\n" "help.text" msgid "View - Page Break" -msgstr "" +msgstr "Napohlad – Łamanje strony" #. ruFna #: print_landscape.xhp @@ -10111,7 +10111,7 @@ "tit\n" "help.text" msgid "Printing Sheets in Landscape Format" -msgstr "" +msgstr "Tabele w prěčnym formaće ćišćeć" #. rEKGF #: print_landscape.xhp @@ -10120,7 +10120,7 @@ "bm_id3153418\n" "help.text" msgid "printing; sheet selections sheets; printing in landscape printing; landscape landscape printing" -msgstr "" +msgstr "ćišćeć; tabelowe wuběrytabele; w prěčnym formaće ćišćeććišćeć; prěčny formatćišćenje w prěčnym formaće" #. Yw45t #: print_landscape.xhp @@ -10129,7 +10129,7 @@ "hd_id3153418\n" "help.text" msgid "Printing Sheets in Landscape Format" -msgstr "" +msgstr "Tabele w prěčnym formaće ćišćeć" #. Ce8BB #: print_landscape.xhp @@ -10138,7 +10138,7 @@ "par_id3149257\n" "help.text" msgid "In order to print a sheet you have a number of interactive options available under View - Page Break. Drag the delimiter lines to define the range of printed cells on each page." -msgstr "" +msgstr "Zo byšće tabelu ćišćał, su wam wjacore interaktiwne nastajenja pod Napohlad – Łamanje strony k dispoziciji. Ćehńće wobmjezowace linije, zo byšće wobłuk celow definował, kotrež so maja ćišćeć." #. LBGFD #: print_landscape.xhp @@ -10147,7 +10147,7 @@ "par_id3153963\n" "help.text" msgid "To print in landscape format, proceed as follows:" -msgstr "" +msgstr "Zo byšće w prěčnym formaće ćišćał, čińće tole:" #. GGu4V #: print_landscape.xhp @@ -10156,7 +10156,7 @@ "par_id3154020\n" "help.text" msgid "Go to the sheet to be printed." -msgstr "" +msgstr "Přeńdźće k tabeli, kotraž so ma ćišćeć." #. AfCsx #: print_landscape.xhp @@ -10165,7 +10165,7 @@ "par_id3150786\n" "help.text" msgid "Choose Format - Page Style." -msgstr "" +msgstr "Wubjerće Format – Předłoha strony …." #. BTD2G #: print_landscape.xhp @@ -10174,7 +10174,7 @@ "par_id3150089\n" "help.text" msgid "The command is not visible if the sheet has been opened with write protection on. In that case, click the Edit File icon on the Standard bar." -msgstr "" +msgstr "Přikaz widźomny njeje, jeli tabela je ze zmóžnjenym pisanskim škitom wočinjena. Klikńće w tym padźe na symbol Dataju wobdźěłać w symbolowej lajsće Standard." #. MXEBJ #: print_landscape.xhp @@ -10183,7 +10183,7 @@ "par_id3166430\n" "help.text" msgid "Select the Page tab. Select the Landscape paper format and click OK." -msgstr "" +msgstr "Wubjerće rajtark Strona. Wubjerće papjerowy format Prěčny format a klikńće na W porjadku." #. Ffpa2 #: print_landscape.xhp @@ -10192,7 +10192,7 @@ "par_id3150885\n" "help.text" msgid "Choose File - Print. You will see the Print dialog." -msgstr "" +msgstr "Wubjerće Dataja – Ćišćeć…. Widźiće dialog Ćišćeć." #. t2d4C #: print_landscape.xhp @@ -10201,7 +10201,7 @@ "par_id3156288\n" "help.text" msgid "Depending on the printer driver and the operating system, it may be necessary to click the Properties button and to change your printer to landscape format there." -msgstr "" +msgstr "Wotwisujo wot ćišćerskeho ćěrjaka a dźěłoweho systema je snano trjeba, na tłóčatko Kajkosće kliknyć a waš ćišćak na prěčny format stajić." #. naUGC #: print_landscape.xhp @@ -10210,7 +10210,7 @@ "par_id3149404\n" "help.text" msgid "In the Print dialog in the General tab page, select the contents to be printed:" -msgstr "" +msgstr "Wubjerće w dialogu Ćišćeć na rajtarku Powšitkowne wobsah, kotryž so ma ćišćeć." #. QtMET #: print_landscape.xhp @@ -10219,7 +10219,7 @@ "par_id3153305\n" "help.text" msgid "All sheets - All sheets will be printed." -msgstr "" +msgstr "Wšě tabele ćišćeć – Wšě tabele so ćišća." #. uVqb5 #: print_landscape.xhp @@ -10228,7 +10228,7 @@ "par_id3148871\n" "help.text" msgid "Selected sheets - Only the selected sheets will be printed. All sheets whose names (at the bottom on the sheet tabs) are selected will be printed. By pressing CommandCtrl while clicking a sheet name you can change this selection." -msgstr "" +msgstr "Wubrane tabele ćišćeć – Jenož wubrane tabele so ćišća. Wšě tabele, kotrychž mjena su deleka w tabelowych rajtarkach wubrane, so ćišća. Móžeće tutón wuběr změnić, hdyž cmd ⌘Strg tłóčiće, mjeztym zo na mjeno tabele klikaće." #. rrUVv #: print_landscape.xhp @@ -10237,7 +10237,7 @@ "par_id3764763\n" "help.text" msgid "Selected cells - All selected cells are printed." -msgstr "" +msgstr "Wubrane cele ćišćeć – Wšě wubrane cele so ćišća." #. uYBdU #: print_landscape.xhp @@ -10246,7 +10246,7 @@ "par_id5538804\n" "help.text" msgid "From all the paper pages that result from the above selection, you can select the range of paper pages to be printed:" -msgstr "" +msgstr "Ze wšěch ćišćerskich stronow, kotrež z wuběra horjeka wuńdu, móžeće wobłuk ćišćerskich stronow wubrać, kotryž so ma ćišćeć:" #. 9UzuE #: print_landscape.xhp @@ -10255,7 +10255,7 @@ "par_id14343\n" "help.text" msgid "All pages - Print all resulting pages." -msgstr "" +msgstr "Wšě strony – Wšě strony so ćišća." #. eUkMY #: print_landscape.xhp @@ -10264,7 +10264,7 @@ "par_id3148699\n" "help.text" msgid "Pages - Enter the pages to be printed. The pages will also be numbered from the first sheet onwards. If you see in the Page Break Preview that Sheet1 will be printed on 4 pages and you want to print the first two pages of Sheet2, enter 5-6 here." -msgstr "" +msgstr "Strony – Zapodajće strony, kotrež so maja ćišćeć. Strony so wot prěnjeje tabele liča. Jeli w přehledźe łamanja strony widźiće, zo tabela Tabela1 so na 4 stronach ćišći a chceće prěnjej dwě stronje tabele Tabela2 ćišćeć, zapodajće tu 5-6." #. JiCgW #: print_landscape.xhp @@ -10273,7 +10273,7 @@ "par_id3145076\n" "help.text" msgid "If under Format - Print ranges you have defined one or more print ranges, only the contents of these print ranges will be printed." -msgstr "" +msgstr "Jeli sće pod Format – Ćišćerske wobłuki jedyn ćišćerski wobłuk abo wjacore ćišćerske wobłuki nastajił, so jenož wobsah tutych ćišćerskich wobłukow ćišći." #. DHHJg #: print_landscape.xhp @@ -10282,7 +10282,7 @@ "par_id3156019\n" "help.text" msgid "View - Page Break" -msgstr "" +msgstr "Napohlad – Łamanje strony" #. vbjmr #: print_landscape.xhp @@ -10291,7 +10291,7 @@ "par_id8254646\n" "help.text" msgid "Defining Print Ranges on a Sheet" -msgstr "" +msgstr "Ćišćerske wobłuki na tabeli definować" #. 5uE2T #: print_title_row.xhp @@ -10300,7 +10300,7 @@ "tit\n" "help.text" msgid "Printing Rows or Columns on Every Page" -msgstr "" +msgstr "Linki abo špalty na kóždej stronje ćišćeć" #. i2Etr #: print_title_row.xhp @@ -10309,7 +10309,7 @@ "bm_id3151112\n" "help.text" msgid "printing; sheets on multiple pagessheets; printing on multiple pagesrows; repeating when printingcolumns; repeating when printingrepeating;columns/rows on printed pagestitle rows; printing on all sheetsheaders; printing on sheetsfooters; printing on sheetsprinting; rows/columns as table headingsheadings;repeating rows/columns as" -msgstr "" +msgstr "ćišćeć; tabele na wjacorych stronachtabele; na wjacorych stronach ćišćećlinki; při ćišćenju wospjetowaćšpalty; při ćišćenju wospjetowaćwospjetować; špalty/linki na wućišćanych stronachtitulne linki; na wšěch tabelach ćišćećhłowowe linki; na tabelach ćišćećnohowe linki; na tabelach ćišćeććišćeć; linki/špalty jako tabelowe nadpismanadpisma; linki/špalty wospjetować" #. BsWC9 #: print_title_row.xhp @@ -10318,7 +10318,7 @@ "hd_id3153727\n" "help.text" msgid "Printing Rows or Columns on Every Page" -msgstr "" +msgstr "Linki abo špalty na kóždej stronje ćišćeć" #. kzA5T #: print_title_row.xhp @@ -10327,7 +10327,7 @@ "par_id3154014\n" "help.text" msgid "If you have a sheet that is so large that it will be printed multiple pages, you can set up rows or columns to repeat on each printed page." -msgstr "" +msgstr "Jeli tabelu maće, kotraž je tak dołha, zo by so na wjacorych stronach ćišćała, móžeće za linki abo špalty takle postajić, zo so na kóždej wućišćanej stronje wospjetuja." #. CHPC8 #: print_title_row.xhp @@ -10336,7 +10336,7 @@ "par_id3146975\n" "help.text" msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A) on all pages, do the following:" -msgstr "" +msgstr "Jeli na přikład chceće wobě wyšej lince tabele kaž tež prěnju špaltu (A) na wšěch stronach ćišćeć, čińće tole:" #. SggEJ #: print_title_row.xhp @@ -10345,7 +10345,7 @@ "par_id3163710\n" "help.text" msgid "Choose Format - Print Ranges - Edit. The Edit Print Ranges dialog appears." -msgstr "" +msgstr "Wubjerće Format – Ćišćerske wobłuki – Wobdźěłać…. Dialog Ćišćerske wobłuki wobdźěłać so zjewi." #. Gz7dZ #: print_title_row.xhp @@ -10354,7 +10354,7 @@ "par_id3149958\n" "help.text" msgid "Click the icon at the far right of the Rows to repeat area." -msgstr "" +msgstr "Klikńće na symbol cyle naprawo we wobłuku Wospjetowanske linki." #. CMsDN #: print_title_row.xhp @@ -10363,7 +10363,7 @@ "par_id3145800\n" "help.text" msgid "The dialog shrinks so that you can see more of the sheet." -msgstr "" +msgstr "Dialog so pomjeńša, zo byšće wjace tabele widźał." #. 3Sk4w #: print_title_row.xhp @@ -10372,7 +10372,7 @@ "par_id3155602\n" "help.text" msgid "Select the first two rows and, for this example, click cell A1 and drag to A2." -msgstr "" +msgstr "Wubjerće prěnjej dwě lince a klikńće na přikład na celu A1 a ćehńće do A2." #. 3qAdo #: print_title_row.xhp @@ -10381,7 +10381,7 @@ "par_id3154018\n" "help.text" msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat." -msgstr "" +msgstr "W pomjeńšenym dialogu widźiće $1:$2. Lince 1 a 2 stej nětko wospjetowanskej lince." #. RsCa5 #: print_title_row.xhp @@ -10390,7 +10390,7 @@ "par_id3153707\n" "help.text" msgid "Click the icon at the far right of the Rows to repeat area. The dialog is restored again." -msgstr "" +msgstr "Klikńće na symbol cyle naprawo we wobłuku Wospjetowanske linki. Dialog so zaso powjetšuje." #. GC8hz #: print_title_row.xhp @@ -10399,7 +10399,7 @@ "par_id3155443\n" "help.text" msgid "If you also want column A as a column to repeat, click the icon at the far right of the Columns to repeat area." -msgstr "" +msgstr "Jeli chceće, zo so tež špalta A wospjetuje, klikńće na symbol cyle naprawo we wobłuku Wospjetowanske špalty." #. sHfQp #: print_title_row.xhp @@ -10408,7 +10408,7 @@ "par_id3154256\n" "help.text" msgid "Click column A (not in the column header)." -msgstr "" +msgstr "Klikńće na špaltu A (nic na špaltowu hłowu)." #. EyDEo #: print_title_row.xhp @@ -10417,7 +10417,7 @@ "par_id3154704\n" "help.text" msgid "Click the icon again at the far right of the Columns to repeat area." -msgstr "" +msgstr "Klikńće hišće raz na symbol cyle naprawo we wobłuku Wospjetowanske špalty." #. Hd7VJ #: print_title_row.xhp @@ -10426,7 +10426,7 @@ "par_id3150088\n" "help.text" msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in Format - Page Style." -msgstr "" +msgstr "Wospjetowanske linki su linki z tabele. Móžeće hłowoe linki a nohowe linki definować, kotrež so maja na kóždej ćišćerskej stronje ćišćeć, njewotwisujo wot toho w Format – Předłoha strony …" #. PX4LE #: print_title_row.xhp @@ -10435,7 +10435,7 @@ "par_id3155380\n" "help.text" msgid "View - Page Break Preview" -msgstr "" +msgstr "Napohlad – Łamanje strony" #. vccDH #: print_title_row.xhp @@ -10444,7 +10444,7 @@ "par_id3154371\n" "help.text" msgid "Format - Print ranges - Edit" -msgstr "" +msgstr "Format – Ćišćerske wobłuki – Wobdźěłać…" #. 9zjha #: print_title_row.xhp @@ -10453,7 +10453,7 @@ "par_id3146113\n" "help.text" msgid "Format - Page Style - (Header / Footer)" -msgstr "" +msgstr "Format – Předłoha strony … – rajtark: Hłowowa/Nohowa linka" #. AK3vB #: printranges.xhp @@ -10462,7 +10462,7 @@ "tit\n" "help.text" msgid "Using Print Ranges on a Spreadsheet" -msgstr "" +msgstr "Ćišćerske wobłuki w tabelowym dokumenće wužiwać" #. QQGLQ #: printranges.xhp @@ -10471,7 +10471,7 @@ "bm_id14648\n" "help.text" msgid "exporting;cellsprinting; cellsranges;print rangesPDF export of print rangescell ranges; printingcells; print rangesprint rangesclearing, see also deleting/removingdefining;print rangesextending print rangesdeleting;print ranges" -msgstr "" +msgstr "eksportować; celećišćeć; celewobłuki; wobłuki ćišćećPDF-eksport ćišćerskich wobłukowcelowe wobłuki; ćišćećcele; ćišćerske wobłukićišćerske wobłukiprózdnić, hlejće tež zhašeć/wotstronićdefinować; ćišćerske wobłukićišćerske wobłuki rozšěrićzhašeć; ćišćerske wobłuki" #. USFyE #: printranges.xhp @@ -10480,7 +10480,7 @@ "par_idN108D7\n" "help.text" msgid "Defining Print Ranges on a Sheet" -msgstr "" +msgstr "Ćišćerske wobłuki za tabelu definować" #. h4dAF #: printranges.xhp @@ -10489,7 +10489,7 @@ "par_idN108F5\n" "help.text" msgid "You can define which range of cells on a spreadsheet to print." -msgstr "" +msgstr "Móžeće definować, kotry celowy wobłuk tabeloweho dokumenta ma so ćišćeć." #. sD9qE #: printranges.xhp @@ -10498,7 +10498,7 @@ "par_idN108FB\n" "help.text" msgid "The cells on the sheet that are not part of the defined print range are not printed or exported. Sheets without a defined print range are not printed and not exported to a PDF file, unless the document uses the Excel file format." -msgstr "" +msgstr "Cele w tabeli, kotrež dźěl definowaneho ćišćerskeho wobłuka njejsu, so njećišća abo njeeksportuja. Tabele bjez definowaneho ćišćerskeho wobłuka so njećišća a do PDF-dataje njeeksportuja, chibazo dokument datajowy format Excel wužiwa." #. HkA7y #: printranges.xhp @@ -10507,7 +10507,7 @@ "par_idN1077A\n" "help.text" msgid "For files opened in Excel format, all sheets that do not contain a defined print range are printed. The same behavior occurs when you export the Excel formatted spreadsheet to a PDF file." -msgstr "" +msgstr "Za dataje, kotrež su so w formaće Excel wočinili, so wšě tabele, kotrež definowany ćišćerski wobłuk njewobsahuja, ćišća. Samsne zadźerženje wustupuje, hdyž z Excel formatěrowany tabelowy dokument do PDF-dataje eksportujeće." #. 62UF5 #: printranges.xhp @@ -10516,7 +10516,7 @@ "par_idN108FE\n" "help.text" msgid "To Define a Print Range" -msgstr "" +msgstr "Zo byšće ćišćerski wobłuk definował:" #. tffSG #: printranges.xhp @@ -10525,7 +10525,7 @@ "par_idN10905\n" "help.text" msgid "Select the cells that you want to print." -msgstr "" +msgstr "Wubjerće cele, kotrež chceće ćišćeć." #. qPKQF #: printranges.xhp @@ -10534,7 +10534,7 @@ "par_idN10909\n" "help.text" msgid "Choose Format - Print Ranges - Define." -msgstr "" +msgstr "Wubjerće Format – Ćišćerske wobłuki – Definować." #. 5GFUH #: printranges.xhp @@ -10543,7 +10543,7 @@ "par_idN10910\n" "help.text" msgid "To Add Cells to a Print Range" -msgstr "" +msgstr "Zo byšće ćišćerskemu wobłukej cele přidał:" #. fwkxc #: printranges.xhp @@ -10552,7 +10552,7 @@ "par_idN10917\n" "help.text" msgid "Select the cells that you want to add to the existing print range." -msgstr "" +msgstr "Wubjerće cele, kotrež chceće eksistowacemu ćišćerskemu wobłukej přidać." #. uNLYf #: printranges.xhp @@ -10561,7 +10561,7 @@ "par_idN1091B\n" "help.text" msgid "Choose Format - Print Ranges - Add." -msgstr "" +msgstr "Wubjerće Format – Ćišćerske wobłuki – Přidać." #. Xj8rT #: printranges.xhp @@ -10570,7 +10570,7 @@ "par_idN10922\n" "help.text" msgid "To Clear a Print Range" -msgstr "" +msgstr "Zo byšće ćišćerski wobłuk zhašał:" #. dYHcz #: printranges.xhp @@ -10579,7 +10579,7 @@ "par_idN10929\n" "help.text" msgid "Choose Format - Print Ranges - Clear." -msgstr "" +msgstr "Wubjerće Format – Ćišćerske wobłuki – Zhašeć." #. GLmBw #: printranges.xhp @@ -10588,7 +10588,7 @@ "par_idN10953\n" "help.text" msgid "Using the Page Break Preview to Edit Print Ranges" -msgstr "" +msgstr "Přehlad łamanja strony za wobdźěłanje ćišćerskich wobłukow wužiwać" #. fA865 #: printranges.xhp @@ -10597,7 +10597,7 @@ "par_idN1093E\n" "help.text" msgid "In the Page Break Preview, print ranges as well as page break regions are outlined by a blue border and contain a centered page number in gray. Nonprinting areas have a gray background." -msgstr "" +msgstr "W přehledźe łamanja strony so ćišćerske wobłuki a wobłuki łamanja strony so přez módry ramik wobkromuja a wobsahuja centrowane šěre čisło strony. Njećišćomne wobłuki maja šěry pozadk." #. S5enN #: printranges.xhp @@ -10606,7 +10606,7 @@ "par_id3153143\n" "help.text" msgid "To define a new page break region, drag the border to a new location. When you define a new page break region, an automatic page break is replaced by a manual page break." -msgstr "" +msgstr "Zo byšće nowy wobłuk łamanja strony definował, ćehńće ramik k nowemu městnu. Hdyž nowy wobłuk łamanja strony definujeće, so awtomatiske łamanje strony z manuelnym łamanjom strony wuměnja." #. DCNh4 #: printranges.xhp @@ -10615,7 +10615,7 @@ "par_idN10930\n" "help.text" msgid "To View and Edit Print Ranges" -msgstr "" +msgstr "Ćišćerske wobłuki pokazać a wobdźěłać" #. KmLhz #: printranges.xhp @@ -10624,7 +10624,7 @@ "par_idN10937\n" "help.text" msgid "Choose View - Page Break Preview." -msgstr "" +msgstr "Wubjerće Napohlad – Łamanje strony." #. d3cdC #: printranges.xhp @@ -10633,7 +10633,7 @@ "par_idN1082A\n" "help.text" msgid "To change the default zoom factor of the Page Break Preview, double click the percentage value on the Status bar, and select a new zoom factor." -msgstr "" +msgstr "Zo byšće standardny skalowanski faktor přehlada łamanja strony změnił, klikńće dwójce na procentowu hódnotu na statusowej lajsće a wubjerće nowy skalowanski faktor." #. RFe8B #: printranges.xhp @@ -10642,7 +10642,7 @@ "par_idN10836\n" "help.text" msgid "Edit the print range." -msgstr "" +msgstr "Wobdźěłajće ćišćerski wobłuk." #. dQeMn #: printranges.xhp @@ -10651,7 +10651,7 @@ "par_idN10944\n" "help.text" msgid "To change the size of a print range, drag a border of the range to a new location." -msgstr "" +msgstr "Zo byšće wulkosć ćišćerskeho wobłuka změnił, ćehńće ramik wobłuka k nowemu městnu." #. HwnGq #: printranges.xhp @@ -10660,7 +10660,7 @@ "par_id3151075\n" "help.text" msgid "To delete a manual page break that is contained in a print range, drag the border of the page break outside of the print range." -msgstr "" +msgstr "Zo byšće manuelne łamanje strony zhašał, kotrež je w ćišćerskim wobłuku, ćehńće ramik łamanja strony z ćišćerskeho wobłuka won." #. xLgnw #: printranges.xhp @@ -10669,7 +10669,7 @@ "par_idN10948\n" "help.text" msgid "To clear a print range, drag a border of the range onto the opposite border of the range." -msgstr "" +msgstr "Zo byšće ćišćerski wobłuk zhašał, ćehńće ramik wobłuka k napřećiwnemu ramikej wobłuka." #. wATRM #: printranges.xhp @@ -10678,7 +10678,7 @@ "par_idN10862\n" "help.text" msgid "To exit the Page Break Preview, choose View - Normal." -msgstr "" +msgstr "Zo byšće přehlad łamanja strony wopušćił, wubjerće Napohlad – Normalny." #. D7AdB #: printranges.xhp @@ -10687,7 +10687,7 @@ "par_idN109CF\n" "help.text" msgid "Editing Print Ranges" -msgstr "" +msgstr "Ćišćerske wobłuki wobdźěłać" #. eUvgA #: relativ_absolut_ref.xhp @@ -10696,7 +10696,7 @@ "tit\n" "help.text" msgid "Addresses and References, Absolute and Relative" -msgstr "" +msgstr "Adresy a poćahi, absolutne a relatiwne" #. ZvNEh #: relativ_absolut_ref.xhp @@ -10714,7 +10714,7 @@ "hd_id3156423\n" "help.text" msgid "Addresses and References, Absolute and Relative" -msgstr "" +msgstr "Adrese a poćahi, aboslutne a relatiwne" #. 6AVDc #: relativ_absolut_ref.xhp @@ -10723,7 +10723,7 @@ "hd_id3163712\n" "help.text" msgid "Relative Addressing" -msgstr "" +msgstr "Relatiwne adresowanje" #. rb6GT #: relativ_absolut_ref.xhp @@ -10732,7 +10732,7 @@ "par_id3146119\n" "help.text" msgid "The cell in column A, row 1 is addressed as A1. You can address a range of adjacent cells by first entering the coordinates of the upper left cell of the area, then a colon followed by the coordinates of the lower right cell. For example, the square formed by the first four cells in the upper left corner is addressed as A1:B2." -msgstr "" +msgstr "Cela w špalće A, lince 1 so jako A1 adresuje. Móžeće wobłuk susodnych celow adresować, hdyž najprjedy koordinaty cele horjeka nalěwo we wobłuku zapodawaće, potom dwudypk pisaće, slědowany wot koordinatow cele deleka naprawo. Kwadrat, kotryž so přez prěnje štyri cele horjeka nalěwo formuje, ma adresu A1:B2." #. 8A4F3 #: relativ_absolut_ref.xhp @@ -10741,7 +10741,7 @@ "par_id3154730\n" "help.text" msgid "By addressing an area in this way, you are making a relative reference to A1:B2. Relative here means that the reference to this area will be adjusted automatically when you copy the formulas." -msgstr "" +msgstr "Hdyž wobłuk na tute wašnje adresujeće, nastawa relatiwny poćah na A1:B2. Relatiwny tu rěka, zo so poćah na tutón wobłuk awtomatisce přiměrja, hdyž formle kopěrujeće." #. BX9Er #: relativ_absolut_ref.xhp @@ -10750,7 +10750,7 @@ "hd_id3149377\n" "help.text" msgid "Absolute Addressing" -msgstr "" +msgstr "Absolutne adresowanje" #. xBKEc #: relativ_absolut_ref.xhp @@ -10759,7 +10759,7 @@ "par_id3154943\n" "help.text" msgid "Absolute referencing is the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2." -msgstr "" +msgstr "Absolutne adresowanje je napřećiwk relatiwneho adresowanja. W absolutnym poćahu so dolarowe znamješko před kóždy pismik a kóždu ličbu staja, na přikład $A$1:$B$2." #. i9Afo #: relativ_absolut_ref.xhp @@ -10768,7 +10768,7 @@ "par_id3147338\n" "help.text" msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)" -msgstr "" +msgstr "$[officename] móže aktualny poćah, w kotrymž kursor je w zapodawanskej lince, wot relatiwneho do absolutneho poćaha a nawopak přetworić, hdyž F4 tłóčiće. Jeli z relatiwnej adresu kaž A1 započinaće, so prěni raz, hdyž tutu tastu tłóčiće, linka kaž tež špalta jako absolutne poćahi ($A$1) nastajatej. Druhi raz so jenož linka (A$1) a třeći raz jenož špalta ($A1) . Jeli tastu hišće raz tłóčiće, budźetej špaltowy poćah a linkowy poćah zaso relatiwnej (A1)." #. MaL7p #: relativ_absolut_ref.xhp @@ -10777,7 +10777,7 @@ "par_id3153963\n" "help.text" msgid "$[officename] Calc shows the references to a formula. If, for example, you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way." -msgstr "" +msgstr "$[officename] Calc poćahi na formlu pokazuje. Jeli na přikład na formlu =SUMA(A1:C5;D15:D24) w celi klikaće, so dwě referencowanej wobłukaj w tabeli barbnje wuzběhujetej. Na přikład móže formlowa komponenta „A1:C5“ módra być a přisłušny celowy wobłuk so w samsnym módrym wotsćinje zaramikuje. Přichodna formlowa komponenta „D15:D24“ da so na samsne wašnje čerwjena markěrować." #. 7hFuB #: relativ_absolut_ref.xhp @@ -10786,7 +10786,7 @@ "hd_id3154704\n" "help.text" msgid "When to Use Relative and Absolute References" -msgstr "" +msgstr "Hdy relatiwne a hdy absolutne poćahi wužiwać" #. VRg9u #: relativ_absolut_ref.xhp @@ -10795,7 +10795,7 @@ "par_id3147346\n" "help.text" msgid "What distinguishes a relative reference? Assume you want to calculate in cell E1 the sum of the cells in range A1:B2. The formula to enter into E1 would be: =SUM(A1:B2). If you later decide to insert a new column in front of column A, the elements you want to add would then be in B1:C2 and the formula would be in F1, not in E1. After inserting the new column, you would therefore have to check and correct all formulas in the sheet, and possibly in other sheets." -msgstr "" +msgstr "Što relatiwny poćah wuznamjenja? Připušćmy, zo chceće w celi E1 sumu celow we wobłuku A1:B2 wuličić. Formla, kotruž dyrbiće do cele E1 zapodać, je =SUMA(A1:B2). Jeli pozdźišo rozsudźeće, nowu špaltu před špaltu A zasadźić, elementy, kotrež chceće přidać, bychu potom w B1:C2 byli a formla by w F1 była, nic w E1. Po tym sće nowu špaltu zasadźił, dyrbiće tohodla wšě formle w tabeli přepruwować a porjedźić, snano tež w druhich tabelach." #. 5ja9B #: relativ_absolut_ref.xhp @@ -10804,7 +10804,7 @@ "par_id3155335\n" "help.text" msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references." -msgstr "" +msgstr "Na zbožo $[officename] Calc wam tute dźěło wotewza. Po tym zo sće nowu špaltu A zasadźił, so formla =SUMA(A1:B2) awtomatisce na =SUMA(B1:C2) aktualizuje. Linkowe čisła so tež awtomatisce přiměrjeja, hdyž so nowa linka 1 zasadźuje. Absolutne a relatiwne poćahi so w $[officename] Calc přeco přiměrjeja, hdyžkuli so referencowany wobłuk přesuwa. Ale dźiwajće na to, zo, jeli formlu kopěrujeće, so w tym padźe jenož relatiwne poćahi přiměrjeja, nic absolutne poćahi." #. HEJFq #: relativ_absolut_ref.xhp @@ -10813,7 +10813,7 @@ "par_id3145791\n" "help.text" msgid "Absolute references are used when a calculation refers to one specific cell in your sheet. If a formula that refers to exactly this cell is copied relatively to a cell below the original cell, the reference will also be moved down if you did not define the cell coordinates as absolute." -msgstr "" +msgstr "Absolutne poćahi so wužiwaja, hdyž so wobličenja na wěstu celu we wašej tabeli poćahuja. Jeli formla, kotraž so na tutu celu poćahuje, so relatiwnje do cele pod prěnjotnej celu kopěruje, so poćah tež dele přesuwa, jeli njejsće celowe koordinaty jako absolutne postajił." #. eMTKy #: relativ_absolut_ref.xhp @@ -10822,7 +10822,7 @@ "par_id3147005\n" "help.text" msgid "Aside from when new rows and columns are inserted, references can also change when an existing formula referring to particular cells is copied to another area of the sheet. Assume you entered the formula =SUM(A1:A9) in row 10. If you want to calculate the sum for the adjacent column to the right, simply copy this formula to the cell to the right. The copy of the formula in column B will be automatically adjusted to =SUM(B1:B9)." -msgstr "" +msgstr "Wothladajo wot zasadźowanja nowyh linkow a špaltow móža so poćahi tež změnić, hdyž so eksistowaca forma, kotraž so na wěste cele poćahuje, do druheho wobłuka tabele kopěruje. Připušćmy, zo sće formlu =SUMA(A1:A9) w lince 10 zapodał. Jeli chceće sumu za susodnu špaltu naprawo wuličić, kopěrujće tutu formlu prosće do cele naprawo pódla njeje. Kopija formle w špalće B so awtomatisce do =SUMA(B1:B9) změni." #. kAFBF #: remove_duplicates.xhp @@ -10831,7 +10831,7 @@ "tit\n" "help.text" msgid "Removing Duplicate Values" -msgstr "" +msgstr "Dwójne hódnoty wotstronić" #. hGQvA #: remove_duplicates.xhp @@ -10840,7 +10840,7 @@ "bm_id3153896\n" "help.text" msgid "filters; removing duplicates filters; finding unique values" -msgstr "" +msgstr "filtry; dwójne hódnoty wotstronićfiltry; jónkróćne hódnoty pytać" #. HAqBY #: remove_duplicates.xhp @@ -10849,7 +10849,7 @@ "hd_id501630021281902\n" "help.text" msgid "Removing Duplicate Values" -msgstr "" +msgstr "Dwójne hódnoty wotstronić" #. ocizx #: remove_duplicates.xhp @@ -10858,7 +10858,7 @@ "par_id3150869\n" "help.text" msgid "Consider a single column with values where some may be duplicates. To remove duplicate values and obtain only the unique entries in the column:" -msgstr "" +msgstr "Předstajće so jednotliwu špaltu z hódnotami, z kotrychž někotre móhli duplikaty być. Zo byšće dwójne hódnoty wotstronił a jenož jónkróćne hódnoty w špalće dóstał:" #. omVUk #: remove_duplicates.xhp @@ -10867,7 +10867,7 @@ "par_id631630021463659\n" "help.text" msgid "Select the range of values from which duplicate values are to be removed. The values have to be arranged in a single column." -msgstr "" +msgstr "Wubjerće wobłuk hódnotow, z kotrehož dwójne hódnoty su wotstronjene. Hódnoty dyrbja so w jeničkej špalće rjadować." #. WA3SF #: remove_duplicates.xhp @@ -10876,7 +10876,7 @@ "par_id31630021517873\n" "help.text" msgid "Go to Data - More Filters - Standard Filter. This opens the Standard Filter dialog." -msgstr "" +msgstr "Wubjerće Daty – Dalše filtry – Standardny filter…. To dialog Standardny filter wočinja." #. EVEzq #: remove_duplicates.xhp @@ -10885,7 +10885,7 @@ "par_id801630022108301\n" "help.text" msgid "In Field Name make sure that the selected column is the column where the values are stored. If a single column is selected this field will be set automatically." -msgstr "" +msgstr "Přepruwujće pod Pólne mjeno, hač wubrana špalta je ta špalta, w kotrejž hódnoty su składowane. Jeli jednotliwa špalta je wubrana, so tute polo awtomatisce staja." #. TesFn #: remove_duplicates.xhp @@ -10894,7 +10894,7 @@ "par_id461630022298515\n" "help.text" msgid "In Condition choose the option = (equals sign), which is the default option." -msgstr "" +msgstr "Wubjerće pod Wuměnjenje nastajenje = (znak runosće), kotrež je standardne nastajenje." #. nWrGh #: remove_duplicates.xhp @@ -10903,7 +10903,7 @@ "par_id261630022372414\n" "help.text" msgid "In Value choose the option Not Empty." -msgstr "" +msgstr "Wubjerće pod Hódnota nastajenje Njeprózdny." #. fFZRM #: remove_duplicates.xhp @@ -10912,7 +10912,7 @@ "par_id441630022436605\n" "help.text" msgid "Click Options and select No duplications. If the first value is the column header check Range contains column labels." -msgstr "" +msgstr "Klikńće na Nastajenja a wubjerće Žane duplikaty. Jeli prěnja hódnota je špaltowe nadpismo, zmóžńće Wobłuk wobsahuje špaltowe popisy." #. sdBSD #: remove_duplicates.xhp @@ -10921,7 +10921,7 @@ "par_id841630022924442\n" "help.text" msgid "Check Copy results and use the input box below it to inform a cell address where the unique entries are to be entered." -msgstr "" +msgstr "Zmóžńće Wuslědki kopěrować do: a wužiwajće zapodawanske polo pod tym, zo byšće celowej adresy zdźělił, hdźež so maja jónkróćne zapiski zapodać." #. DJcXh #: remove_duplicates.xhp @@ -10930,7 +10930,7 @@ "par_id61630023053412\n" "help.text" msgid "Click OK. The unique values in the range will be entered starting with the cell selected in the previous step." -msgstr "" +msgstr "Klikńće na W porjadku. Jónkróćne hódnoty we wobłuku so zapodawaja, započinajo z celu, kotraž je so w předchadnym kroku wubrała." #. 3qh4V #: remove_duplicates.xhp @@ -10939,7 +10939,7 @@ "par_id81630022708336\n" "help.text" msgid "The No duplications option is case sensitive. Therefore, values \"A\" and \"a\" are each considered as unique values." -msgstr "" +msgstr "Nastajenje Žane duplikaty mjez mało- a wulkopisanjom rozeznawa. Tohodla hódnoće „A“ a „a“ jako jónkróćne hódnoty płaćitej." #. cPpmr #: rename_table.xhp @@ -10948,7 +10948,7 @@ "tit\n" "help.text" msgid "Renaming Sheets" -msgstr "" +msgstr "Tabele přemjenować" #. fuPJn #: rename_table.xhp @@ -10957,7 +10957,7 @@ "bm_id3150398\n" "help.text" msgid "renaming;sheets sheet tabs;renaming tables;renaming names; sheets" -msgstr "" +msgstr "přemjenować; tabeletabelowe rajtarki; přemjenowaćtabele; přemjenowaćmjena; tabele" #. vikAG #: rename_table.xhp @@ -10966,7 +10966,7 @@ "hd_id3150398\n" "help.text" msgid "Renaming Sheets" -msgstr "" +msgstr "Tabele přemjenować" #. zEnG4 #: rename_table.xhp @@ -10975,7 +10975,7 @@ "par_id701519308848244\n" "help.text" msgid "Setting sheet names is an important feature to produce readable and understandable spreadsheets documents." -msgstr "" +msgstr "Postajenje tabelowych mjenow je wažna funkcija za wutworjenje čitajomnych a zrozumliwych tabelowych dokumentow." #. DE2ji #: rename_table.xhp @@ -10984,7 +10984,7 @@ "par_id3155444\n" "help.text" msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file." -msgstr "" +msgstr "Mjeno tabele je njewotwisne wot mjena tabeloweho dokumenta. Zapodawaće mjeno tabeloweho dokumenta, hdyž jón prěni raz jako dataju składujeće." #. rMuCd #: rename_table.xhp @@ -10993,7 +10993,7 @@ "par_id471607437423400\n" "help.text" msgid "To rename a sheet in your document:" -msgstr "" +msgstr "Zo byšće tabelu w swojim dokumenće přemjenował:" #. 99JMV #: rename_table.xhp @@ -11002,7 +11002,7 @@ "par_id3146976\n" "help.text" msgid "Double-click the sheet tab or open its context menu and choose Rename Sheet. A dialog box appears where you can enter a new name." -msgstr "" +msgstr "Klikńće dwójce na tabelowy rajtark abo wočińće jeho kontekstowy meni a wubjerće Tabelu přemjenować. Dialogowe polo so jewi, hdźež móžeće nowe mjeno zapodać." #. GtGtQ #: rename_table.xhp @@ -11011,7 +11011,7 @@ "par_id3149260\n" "help.text" msgid "Enter a new name for the sheet and click OK." -msgstr "" +msgstr "Zapodajće nowe mjeno za tabelu a klikńće na W porjadku." #. NELoF #: rename_table.xhp @@ -11020,7 +11020,7 @@ "par_id3149667\n" "help.text" msgid "Alternatively, hold down the Option keyAlt key and click on any sheet name and enter the new name directly." -msgstr "" +msgstr "Móžeće tež tastu ⌥ optionAlt stłóčenu dźeržeć, na někajke tabelowe mjeno kliknyć a nowe mjeno direktnje zapodać." #. FUXLc #: rename_table.xhp @@ -11029,7 +11029,7 @@ "par_id471519308256437\n" "help.text" msgid "The document can contain up to 10,000 individual sheets, which must have different names." -msgstr "" +msgstr "Dokument móže hač do 10.000 jednotliwych tabelow wobsahować, kotrež dyrbja rozdźělne mjena měć." #. VDtVj #: rename_table.xhp @@ -11038,7 +11038,7 @@ "hd_id541607437294635\n" "help.text" msgid "Sheet Naming Restrictions" -msgstr "" +msgstr "Wobmjezowanja za pomjenowanje tabelow" #. ynfez #: rename_table.xhp @@ -11047,7 +11047,7 @@ "par_id0909200810502833\n" "help.text" msgid "Sheet names can contain almost any character. Some naming restrictions apply, the following characters are not allowed in sheet names:" -msgstr "" +msgstr "Tabelowe mjena móža nimale kóžde znamješko wobsahować. Płaća někotre wobmjezowanja za pomjenowanje, slědowace znamješka w tabelowych mjenach dowolene njejsu:" #. GW256 #: rename_table.xhp @@ -11056,7 +11056,7 @@ "par_id090920081050281\n" "help.text" msgid "colon :" -msgstr "" +msgstr "dwudypk :" #. a2JXE #: rename_table.xhp @@ -11065,7 +11065,7 @@ "par_id0909200810502897\n" "help.text" msgid "back slash \\" -msgstr "" +msgstr "Wróćosmužka \\" #. mkHAC #: rename_table.xhp @@ -11074,7 +11074,7 @@ "par_id090920081050299\n" "help.text" msgid "forward slash /" -msgstr "" +msgstr "nakósna smužka /" #. V9Z6i #: rename_table.xhp @@ -11083,7 +11083,7 @@ "par_id0909200810502913\n" "help.text" msgid "question mark ?" -msgstr "" +msgstr "prašak ?" #. 42B5r #: rename_table.xhp @@ -11092,7 +11092,7 @@ "par_id090920081050298\n" "help.text" msgid "asterisk *" -msgstr "" +msgstr "hwěžka *" #. sAMTR #: rename_table.xhp @@ -11101,7 +11101,7 @@ "par_id0909200810502969\n" "help.text" msgid "left square bracket [" -msgstr "" +msgstr "lěwa róžkata spinka [" #. 32rAi #: rename_table.xhp @@ -11110,7 +11110,7 @@ "par_id0909200810502910\n" "help.text" msgid "right square bracket ]" -msgstr "" +msgstr "prawa róžkata spinka ]" #. ESD5B #: rename_table.xhp @@ -11119,7 +11119,7 @@ "par_id0909200810502971\n" "help.text" msgid "single quote ' as the first or last character of the name" -msgstr "" +msgstr "jednora pazorka ' jako prěnje abo poslednje znamješko mjena" #. 36nvo #: rename_table.xhp @@ -11128,7 +11128,7 @@ "par_id761607437686157\n" "help.text" msgid "The single quote is Unicode U+0027, also known as apostrophe. Other single-quote characters, similar to apostrophe, are allowed, such as ʼ and ." -msgstr "" +msgstr "Jednora pazorka je znamješko Unicode U+0027, tež znate jako apostrof. Druhe jednore pazorki, kotrež su na apostrof podobne, na přikład ʼ a ." #. DMm29 #: rename_table.xhp @@ -11137,7 +11137,7 @@ "hd_id251607438968588\n" "help.text" msgid "Using a Default Prefix for Sheet Names" -msgstr "" +msgstr "Standardny prefiks za tabelowe mjena wužiwać" #. MEc8r #: rename_table.xhp @@ -11146,7 +11146,7 @@ "par_id81519309108908\n" "help.text" msgid "You can set a prefix for the names of new sheets you create. Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Defaults and enter the prefix name in Prefix name for new worksheet." -msgstr "" +msgstr "Móžeće prefiks za mjena nowych tabelow postajić, kotrež wutworjeće. Wubjerće %PRODUCTNAME – NastajenjaNastroje – Nastajenja – %PRODUCTNAME Calc – Standard a zapodajće prefiksowe mjeno w Prefiksowe mjeno za nowe dźěłowe łopjeno." #. Ev9Ae #: rename_table.xhp @@ -11155,7 +11155,7 @@ "hd_id821607437571713\n" "help.text" msgid "Referencing Sheet Names with Special Characters" -msgstr "" +msgstr "Tabelowe mjena z wosebitymi znamješkami referencować" #. BAZ4z #: rename_table.xhp @@ -11164,7 +11164,7 @@ "par_id090920081050307\n" "help.text" msgid "In cell references, a sheet name must be enclosed in single quotes ' when the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes)." -msgstr "" +msgstr "W celowych poćahach dyrbja so tabelowe mjeno wot jednorych pazorkow ' wobdać, hdyž mjeno druhe znamješka haš alfanumeriske znamješka abo podsmužku wobsahuje. Jedne jednore pazorki w mjenje dyrbja so podwojić (dwoje jednore pazorki)." #. ZjbDT #: rename_table.xhp @@ -11173,7 +11173,7 @@ "par_id321519307869857\n" "help.text" msgid "For example, you want to reference the cell A1 on a sheet named This year's sheet." -msgstr "" +msgstr "Na přikład chceće celu A1 w tabeli z mjenom Verdi'owe opery." #. tAj5V #: rename_table.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/scalc.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/scalc.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-02 12:20+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. ZxQeC #: main0000.xhp @@ -445,7 +445,7 @@ "par_id3145171\n" "help.text" msgid "The Format menu contains commands for formatting selected cells, objects, and cell contents in your document." -msgstr "Meni Format přikazy za formatowanje wubranych celow, objektow a celoweho wobsaha we wašim dokumenće wobsahuje." +msgstr "Meni Format přikazy za formatěrowanje wubranych celow, objektow a celoweho wobsaha we wašim dokumenće wobsahuje." #. KhDZu #: main0105.xhp @@ -490,7 +490,7 @@ "hd_id3159206\n" "help.text" msgid "Conditional Formatting" -msgstr "Wuměnjene formatowanje" +msgstr "Wuměnjene formatěrowanje" #. tnar9 #: main0105.xhp @@ -778,7 +778,7 @@ "tit\n" "help.text" msgid "Formatting Bar" -msgstr "Symbolowa lajsta Formatowanje" +msgstr "Symbolowa lajsta Formatěrowanje" #. VzJEC #: main0202.xhp @@ -787,7 +787,7 @@ "hd_id3150448\n" "help.text" msgid "Formatting Bar" -msgstr "Symbolowa lajsta Formatowanje" +msgstr "Symbolowa lajsta Formatěrowanje" #. ayoCz #: main0202.xhp @@ -796,7 +796,7 @@ "par_id3153897\n" "help.text" msgid "The Formatting bar contains basic commands for applying manually formatting." -msgstr "Symbolowa lajsta Formatowanje zakładne přikazy wobsahuje, z kotrymiž móžeće manuelnje formatować." +msgstr "Symbolowa lajsta Formatěrowanje zakładne přikazy wobsahuje, z kotrymiž móžeće manuelnje formatěrować." #. 7GEuZ #: main0202.xhp @@ -976,7 +976,7 @@ "par_idN108FD\n" "help.text" msgid "The text formatted in a complex text layout language is entered from right to left." -msgstr "Tekst, kotryž je so w kompleksnej rěči tekstoweho wuhotowanja sformatował, so wotprawa dolěwa zapodawa." +msgstr "Tekst, kotryž je so w kompleksnej rěči tekstoweho wuhotowanja sformatěrował, so wotprawa dolěwa zapodawa." #. NVkBC #: main0202.xhp @@ -1039,7 +1039,7 @@ "par_id3149656\n" "help.text" msgid "The Drawing Object Properties Bar for objects that you select in the sheet contains formatting and alignment commands." -msgstr "Symbolowa lajsta Kajkosće rysowanskeho objekta za objekty, kotrež w tabeli wuběraće, přikazy za formatowanje a wusměrjenje wobsahuje." +msgstr "Symbolowa lajsta Kajkosće rysowanskeho objekta za objekty, kotrež w tabeli wuběraće, přikazy za formatěrowanje a wusměrjenje wobsahuje." #. qe7FF #: main0203.xhp @@ -1084,7 +1084,7 @@ "tit\n" "help.text" msgid "Text Formatting Bar" -msgstr "Symbolowa lajsta Tekstowe formatowanje" +msgstr "Symbolowa lajsta Tekstowe formatěrowanje" #. A2hAJ #: main0205.xhp @@ -1093,7 +1093,7 @@ "hd_id3156330\n" "help.text" msgid "Text Formatting Bar" -msgstr "Symbolowa lajsta Tekstowe formatowanje" +msgstr "Symbolowa lajsta Tekstowe formatěrowanje" #. h55fM #: main0205.xhp @@ -1102,7 +1102,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 "Symbolowa lajsta Tekstowe formatowanje, kotraž so pokazuje, hdyž kursor je w tekstowym objekće, na přikład w tekstowym polu abo rysowanskim objekće, přikazy za formatowanje a wusměrjenje wobsahuje." +msgstr "Symbolowa lajsta Tekstowe formatěrowanje, kotraž so pokazuje, hdyž kursor je w tekstowym objekće, na přikład w tekstowym polu abo rysowanskim objekće, přikazy za formatěrowanje a wusměrjenje wobsahuje." #. jnWok #: main0205.xhp @@ -1336,7 +1336,7 @@ "hd_id3147394\n" "help.text" msgid "Format Page" -msgstr "Stronu formatować" +msgstr "Stronu formatěrować" #. w9KJc #: main0210.xhp @@ -1624,7 +1624,7 @@ "par_id3154490\n" "help.text" msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals." -msgstr "Z mało kliknjenjemi myški móžeće swój tabelowy dokument přestrukturować, zo byšće wěste datowe wobłuki pokazał abo schował, abo zo byšće wobłuki po wosebitych wuměnjenjach formatował, zo byšće móhł spěšnje dźělne a cyłkowne wuslědki wobličić." +msgstr "Z mało kliknjenjemi myški móžeće swój tabelowy dokument přestrukturować, zo byšće wěste datowe wobłuki pokazał abo schował, abo zo byšće wobłuki po wosebitych wuměnjenjach formatěrował, zo byšće móhł spěšnje dźělne a cyłkowne wuslědki wobličić." #. JBCHF #: main0503.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/schart/00.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/schart/00.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/schart/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/schart/00.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-22 14:05+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. E9tti #: 00000004.xhp @@ -112,7 +112,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 "Wubjerće Format – Wuběr formatować – Datowe popisy (hdyž datowy rjad abo datowy dypk diagrama je wubrany)" +msgstr "Wubjerće Format – Wuběr formatěrować – Datowe popisy (hdyž datowy rjad abo datowy dypk diagrama je wubrany)" #. SQbvj #: 00000004.xhp @@ -211,7 +211,7 @@ "par_id3153246\n" "help.text" msgid "Choose Format - Format Selection (Charts)" -msgstr "Wubjerće Format - Wuběr formatować… (diagram dyrbi zasadźeny być)" +msgstr "Wubjerće Format - Wuběr formatěrować… (diagram dyrbi zasadźeny być)" #. DqsZe #: 00000004.xhp @@ -220,7 +220,7 @@ "par_id3150214\n" "help.text" msgid "Choose Format - Format Selection - Data Point dialog (Charts)" -msgstr "Wubjerće Format - Wuběr formatować… – dialog Datowy dypk (diagram dyrbi zasadźeny być)" +msgstr "Wubjerće Format - Wuběr formatěrować… – dialog Datowy dypk (diagram dyrbi zasadźeny być)" #. ASTDr #: 00000004.xhp @@ -229,7 +229,7 @@ "par_id3154765\n" "help.text" msgid "Choose Format - Format Selection - Data Series dialog (Charts)" -msgstr "Wubjerće Format – Wuběr formatować… – dialog Datowy rjad (diagram dyrbi zasadźeny być)" +msgstr "Wubjerće Format – Wuběr formatěrować… – dialog Datowy rjad (diagram dyrbi zasadźeny być)" #. p2eYn #: 00000004.xhp @@ -238,7 +238,7 @@ "par_id3153009\n" "help.text" msgid "Choose Format - Format Selection - Data Series - Options tab (Charts)" -msgstr "Wubjerće Format – Wuběr formatować… – rajtark Opcije (diagram dyrbi zasadźeny być)" +msgstr "Wubjerće Format – Wuběr formatěrować… – rajtark Opcije (diagram dyrbi zasadźeny być)" #. yRSaN #: 00000004.xhp @@ -256,7 +256,7 @@ "par_id3155758\n" "help.text" msgid "Choose Format - Format Selection - Title dialog (Charts)" -msgstr "Wubjerće Format – Wuběr formatować… – dialog Titul (diagram dyrbi zasadźeny być)" +msgstr "Wubjerće Format – Wuběr formatěrować… – dialog Titul (diagram dyrbi zasadźeny być)" #. icD4Y #: 00000004.xhp @@ -265,7 +265,7 @@ "par_id3153075\n" "help.text" msgid "Choose Format - Format Selection - Title dialog (Charts)" -msgstr "Wubjerće Format – Wuběr formatować… – dialog Titul (diagram dyrbi zasadźeny być)" +msgstr "Wubjerće Format – Wuběr formatěrować… – dialog Titul (diagram dyrbi zasadźeny być)" #. aEnjy #: 00000004.xhp @@ -292,7 +292,7 @@ "par_id3147297\n" "help.text" msgid "Choose Format - Legend, or Format - Format Selection - Legend (Charts)" -msgstr "Wubjerće Format - Legenda… abo Format - Wuběr formatować… - Legenda (diagram dyrbi zasadźeny być)" +msgstr "Wubjerće Format - Legenda… abo Format - Wuběr formatěrować… - Legenda (diagram dyrbi zasadźeny być)" #. R5dmc #: 00000004.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/schart/01.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/schart/01.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/schart/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/schart/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-08 10:42+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. DsZFP #: 03010000.xhp @@ -121,7 +121,7 @@ "par_id3236182\n" "help.text" msgid "The data series are organized in columns. The role of the left most column is set to categories or data labels respectively. The contents of the left most column are always formatted as text. You can insert more text columns to be used as hierarchical labels." -msgstr "Datowe rjady su w špaltach zrjadowane. Špalta cyle nalěwo kategorije abo datowe popisy wobsahuje. Wobsah špalty cyle nalěwo so přeco jako tekst formatuje. Móžeće dalše tekstowe špalty zasadźić, kotrež so jako hierarchiske popisy wužiwaja." +msgstr "Datowe rjady su w špaltach zrjadowane. Špalta cyle nalěwo kategorije abo datowe popisy wobsahuje. Wobsah špalty cyle nalěwo so přeco jako tekst formatěruje. Móžeće dalše tekstowe špalty zasadźić, kotrež so jako hierarchiske popisy wužiwaja." #. RSA5B #: 03010000.xhp @@ -472,7 +472,7 @@ "par_id3149124\n" "help.text" msgid "To show or hide a legend, click Legend On/Off on the Formatting bar." -msgstr "Zo byšće legendu pokazał abo schował, klikńće na Legenda zapinjena/wupinjena w symbolowej lajsće Formatowanje." +msgstr "Zo byšće legendu pokazał abo schował, klikńće na Legenda zapinjena/wupinjena w symbolowej lajsće Formatěrowanje." #. CxQSK #: 04020000.xhp @@ -1642,7 +1642,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 "Trendowa linija ma samsnu barbu kaž wotpowědny datowy rjad. Zo byšće linijowe kajkosće změnił, wubjerće trendowu liniju a potom Format – Wuběr formatować… – Rajtark: Linija." +msgstr "Trendowa linija ma samsnu barbu kaž wotpowědny datowy rjad. Zo byšće linijowe kajkosće změnił, wubjerće trendowu liniju a potom Format – Wuběr formatěrować… – Rajtark: Linija." #. JVZCk #: 04050100.xhp @@ -1687,7 +1687,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 "Zo byšće format hódnotow změnił (mjenje signifikantnych městnow abo wědomostnu notaciju wužiwać), wubjerće runicu w diagramje, klikńće z prawej tastu, zo byšće kontekstowy meni wočinił a wubjerće Runicu trendoweje linije formatować… – Rajtark: Ličby." +msgstr "Zo byšće format hódnotow změnił (mjenje signifikantnych městnow abo wědomostnu notaciju wužiwać), wubjerće runicu w diagramje, klikńće z prawej tastu, zo byšće kontekstowy meni wočinił a wubjerće Runicu trendoweje linije formatěrować… – Rajtark: Ličby." #. e957n #: 04050100.xhp @@ -1696,7 +1696,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 "Standardna runica x jako abscisowu wariablu wužiwa a f(x) jako ordinatowu wariablu. Zo byšće tute mjena změnił, wubjerće trendowu liniju, potom Format – Wuběr formatować… – Rajtark: Typ a zapodajće mjena do tekstoweju polow Mjeno wariable X a Mjeno wariable Y." +msgstr "Standardna runica x jako abscisowu wariablu wužiwa a f(x) jako ordinatowu wariablu. Zo byšće tute mjena změnił, wubjerće trendowu liniju, potom Format – Wuběr formatěrować… – Rajtark: Typ a zapodajće mjena do tekstoweju polow Mjeno wariable X a Mjeno wariable Y." #. jAs3d #: 04050100.xhp @@ -2659,7 +2659,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 "Symbol Wertikalne lěsycy na symbolowej lajsće Formatowanje lěsycu X-wóski pokazuje resp. chowa. Su tři móžnosće: žana lěsyca, hłowna lěsyca a hłowna a pomocna lěsyca. Změna budźe so na kontrolne kašćiki w Zasadźić – Lěsycy wuskutkować." +msgstr "Symbol Wertikalne lěsycy na symbolowej lajsće Formatěrowanje lěsycu X-wóski pokazuje resp. chowa. Su tři móžnosće: žana lěsyca, hłowna lěsyca a hłowna a pomocna lěsyca. Změna budźe so na kontrolne kašćiki w Zasadźić – Lěsycy wuskutkować." #. b5caj #: 04070000.xhp @@ -2686,7 +2686,7 @@ "par_id3150344\n" "help.text" msgid "The Horizontal Grids icon on the Formatting bar toggles the visibility of the grid display for the Y 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 ">Symbol Horicontalne lěsycy na symbolowej lajsće Formatowanje lěsycu Y-wóski pokazuje resp. chowa. Su tři móžnosće: žana lěsyca, hłowna lěsyca a hłowna a pomocna lěsyca. Změna budźe so na kontrolne kašćiki w Zasadźić – Lěsycy wuskutkować." +msgstr ">Symbol Horicontalne lěsycy na symbolowej lajsće Formatěrowanje lěsycu Y-wóski pokazuje resp. chowa. Su tři móžnosće: žana lěsyca, hłowna lěsyca a hłowna a pomocna lěsyca. Změna budźe so na kontrolne kašćiki w Zasadźić – Lěsycy wuskutkować." #. LnVn3 #: 04070000.xhp @@ -2785,7 +2785,7 @@ "tit\n" "help.text" msgid "Format Selection" -msgstr "Wuběr formatować" +msgstr "Wuběr formatěrować" #. JGKU8 #: 05010000.xhp @@ -2803,7 +2803,7 @@ "hd_id3149666\n" "help.text" msgid "Format Selection" -msgstr "Wuběr formatować" +msgstr "Wuběr formatěrować" #. mefpJ #: 05010000.xhp @@ -2812,7 +2812,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 "Formatuje wubrany objekt. Wotwisujo wot wubraneho objekta, přikaz dialogi wočinja, kotrež móžeće tež wočinić, hdyž slědowace přikazy z menija Format wuběraće:" +msgstr "Formatěruje wubrany objekt. Wotwisujo wot wubraneho objekta, přikaz dialogi wočinja, kotrež móžeće tež wočinić, hdyž slědowace přikazy z menija Format wuběraće:" #. vxgDS #: 05010000.xhp @@ -2911,7 +2911,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 "Tutón dialog wam zmóžnja, kajkosće wubraneho datoweho dypka změnić. Dialog so jewi, hdyž je jenož jedyn datowy dypk wubrany, hdyž Format – Wuběr formatować… wuběraće. Někotre menijowe zapiski su jenož za 2D- abo 3D-diagramy k dispoziciji." +msgstr "Tutón dialog wam zmóžnja, kajkosće wubraneho datoweho dypka změnić. Dialog so jewi, hdyž je jenož jedyn datowy dypk wubrany, hdyž Format – Wuběr formatěrować… wuběraće. Někotre menijowe zapiski su jenož za 2D- abo 3D-diagramy k dispoziciji." #. QGeL3 #: 05010100.xhp @@ -2947,7 +2947,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 "Z tym móžeće kajkosće wubraneho datoweho rjada změnić. Dialog so jewi, hdyž je jenož jedyn datowy rjad wubrany, hdyž Format – Wuběr formatować… wuběraće. Někotre menijowe zapiski su jenož za 2D- abo 3D-diagramy k dispoziciji." +msgstr "Z tym móžeće kajkosće wubraneho datoweho rjada změnić. Dialog so jewi, hdyž je jenož jedyn datowy rjad wubrany, hdyž Format – Wuběr formatěrować… wuběraće. Někotre menijowe zapiski su jenož za 2D- abo 3D-diagramy k dispoziciji." #. 9jEEq #: 05010200.xhp @@ -2983,7 +2983,7 @@ "bm_id3150791\n" "help.text" msgid "titles; formatting chartsformatting; chart titles" -msgstr "titule; diagramy formatowaćformatować; diagramowe titule" +msgstr "titule; diagramy formatěrowaćformatěrować; diagramowe titule" #. oZeTX #: 05020000.xhp @@ -3235,7 +3235,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 "Symbol Wóskowy titul zapinjeny/wupinjeny w symbolowej lajsće Formatowanje popisy wšěch wóskow zapina abo wupina." +msgstr "Symbol Wóskowy titul zapinjeny/wupinjeny w symbolowej lajsće Formatěrowanje popisy wšěch wóskow zapina abo wupina." #. RAUCj #: 05020201.xhp @@ -3658,7 +3658,7 @@ "bm_id3153768\n" "help.text" msgid "axes;formatting" -msgstr "wóski; formatować" +msgstr "wóski; formatěrować" #. FFWZu #: 05040100.xhp @@ -3712,7 +3712,7 @@ "bm_id3145673\n" "help.text" msgid "Y axes; formatting" -msgstr "y-wóski; formatować" +msgstr "y-wóski; formatěrować" #. wNayb #: 05040200.xhp @@ -3982,7 +3982,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 "Za někotre wóskowe typy móžeće podać, hač so ma wóska jako tekst abo datum formatować abo hač so ma typ awtomatisce spóznać. Za wóskowy typ „Datum“ móžeće slědowace nastajenja postajić:" +msgstr "Za někotre wóskowe typy móžeće podać, hač so ma wóska jako tekst abo datum formatěrować abo hač so ma typ awtomatisce spóznać. Za wóskowy typ „Datum“ móžeće slědowace nastajenja postajić:" #. ZDvDA #: 05040201.xhp @@ -4315,7 +4315,7 @@ "bm_id3155602\n" "help.text" msgid "grids; formatting axesaxes; formatting grids" -msgstr "lěsycy; wóski formatowaćwóski; lěsycy formatować" +msgstr "lěsycy; wóski formatěrowaćwóski; lěsycy formatěrować" #. eX5Ah #: 05050000.xhp @@ -4333,7 +4333,7 @@ "par_id3155764\n" "help.text" msgid "Opens a submenu, where you select the grid you want to format." -msgstr "Wočinja podmeni, hdźež lěsycu wuběraće, kotruž chceće formatować." +msgstr "Wočinja podmeni, hdźež lěsycu wuběraće, kotruž chceće formatěrować." #. k6RCs #: 05050000.xhp @@ -4414,7 +4414,7 @@ "bm_id3150398\n" "help.text" msgid "X axes;grid formattingY axes;grid formattingZ axes; grid formatting" -msgstr "X-wóski; lěsycu formatowaćY-wóski; lěsycu formatowaćZ-wóski; lěsycu formatować" +msgstr "X-wóski; lěsycu formatěrowaćY-wóski; lěsycu formatěrowaćZ-wóski; lěsycu formatěrować" #. h3HmA #: 05050100.xhp @@ -4450,7 +4450,7 @@ "bm_id3150792\n" "help.text" msgid "charts; formatting wallsformatting;chart walls" -msgstr "diagramy; sćěny formatowaćformatować; diagramowe sćěny" +msgstr "diagramy; sćěny formatěrowaćformatěrować; diagramowe sćěny" #. HBA8i #: 05060000.xhp @@ -4486,7 +4486,7 @@ "bm_id3154346\n" "help.text" msgid "charts; formatting floorsformatting; chart floors" -msgstr "diagramy; diagramowe dna formatowaćformatować; diagramowe dna" +msgstr "diagramy; diagramowe dna formatěrowaćformatěrować; diagramowe dna" #. BF6Cr #: 05070000.xhp @@ -4522,7 +4522,7 @@ "bm_id3149670\n" "help.text" msgid "charts; formatting areasformatting; chart areas" -msgstr "diagramy; płoniny formatowaćformatować; diagramowy płoniny" +msgstr "diagramy; płoniny formatěrowaćformatěrować; diagramowy płoniny" #. mQBdC #: 05080000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/schart.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/schart.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/schart.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/schart.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-08 10:42+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. wtFDe #: main0000.xhp @@ -256,7 +256,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 "W diagramowym wobdźěłanskim modusu widźiće symbolowu lajstu Formatowanje za diagramy blisko hornjeje kromy dokumenta. Symbolowa lajsta Rysowanka za diagramy so blisko delnjeje kromy dokumenta jewi. Symbolowa lajsta Rysowanka dźěl symbolow ze symboloweje lajsty Rysowanka z Draw a Impress pokazuje." +msgstr "W diagramowym wobdźěłanskim modusu widźiće symbolowu lajstu Formatěrowanje za diagramy blisko hornjeje kromy dokumenta. Symbolowa lajsta Rysowanka za diagramy so blisko delnjeje kromy dokumenta jewi. Symbolowa lajsta Rysowanka dźěl symbolow ze symboloweje lajsty Rysowanka z Draw a Impress pokazuje." #. sNqMe #: main0000.xhp @@ -265,7 +265,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 "Móžeće z prawej tastu na diagramowy element kliknyć, zo byšće kontekstowy meni wočinił. Kontekstowy meni wjele přikazow skići, z kotrymiž móžeće wubrany element formatować." +msgstr "Móžeće z prawej tastu na diagramowy element kliknyć, zo byšće kontekstowy meni wočinił. Kontekstowy meni wjele přikazow skići, z kotrymiž móžeće wubrany element formatěrować." #. dQSHt #: main0000.xhp @@ -274,7 +274,7 @@ "par_id081020090354489\n" "help.text" msgid "Formats the selected title." -msgstr "Formatuje wubrany titul." +msgstr "Formatěruje wubrany titul." #. orDAZ #: main0000.xhp @@ -283,7 +283,7 @@ "par_id0810200903405629\n" "help.text" msgid "Formats the chart area." -msgstr "Formatuje diagramowu płoninu." +msgstr "Formatěruje diagramowu płoninu." #. FAkFX #: main0000.xhp @@ -292,7 +292,7 @@ "par_id0810200903544867\n" "help.text" msgid "Formats the chart wall." -msgstr "Formatuje diagramowu sćěnu." +msgstr "Formatěruje diagramowu sćěnu." #. GBwcB #: main0000.xhp @@ -301,7 +301,7 @@ "par_id0810200903544952\n" "help.text" msgid "Formats the chart floor." -msgstr "Formatuje diagramowe dno." +msgstr "Formatěruje diagramowe dno." #. VsRbA #: main0000.xhp @@ -310,7 +310,7 @@ "par_id0810200903544927\n" "help.text" msgid "Formats the chart legend." -msgstr "Formatuje diagramowu legendu." +msgstr "Formatěruje diagramowu legendu." #. dahmw #: main0000.xhp @@ -319,7 +319,7 @@ "par_id0810200903544949\n" "help.text" msgid "Formats the selected axis." -msgstr "Formatuje wubranu wósku." +msgstr "Formatěruje wubranu wósku." #. dnReG #: main0000.xhp @@ -328,7 +328,7 @@ "par_id0810200903544984\n" "help.text" msgid "Formats the selected data point." -msgstr "Formatuje wubrany datowy dypk." +msgstr "Formatěruje wubrany datowy dypk." #. Em2oQ #: main0000.xhp @@ -337,7 +337,7 @@ "par_id0810200903545096\n" "help.text" msgid "Formats the major grid." -msgstr "Formatuje hłownu lěsycu." +msgstr "Formatěruje hłownu lěsycu." #. dSJTX #: main0000.xhp @@ -346,7 +346,7 @@ "par_id0810200903545057\n" "help.text" msgid "Formats the minor grid." -msgstr "Formatuje pomocnu lěsycu." +msgstr "Formatěruje pomocnu lěsycu." #. 8Dius #: main0000.xhp @@ -355,7 +355,7 @@ "par_id0810200903545095\n" "help.text" msgid "Formats the data series." -msgstr "Formatuje datowe rjady." +msgstr "Formatěruje datowe rjady." #. 9FeGU #: main0000.xhp @@ -364,7 +364,7 @@ "par_id0810200903545094\n" "help.text" msgid "Formats the stock loss indicators." -msgstr "Formatuje indikatory straty wobstatka." +msgstr "Formatěruje indikatory straty wobstatka." #. uhG9U #: main0000.xhp @@ -373,7 +373,7 @@ "par_id0810200903545113\n" "help.text" msgid "Formats the stock gain indicators." -msgstr "Formatuje indikatory dobytka wobstatka." +msgstr "Formatěruje indikatory dobytka wobstatka." #. RshCo #: main0000.xhp @@ -382,7 +382,7 @@ "par_id0810200903545149\n" "help.text" msgid "Formats the data labels." -msgstr "Formatuje datowe popisy." +msgstr "Formatěruje datowe popisy." #. 7Gexq #: main0000.xhp @@ -391,7 +391,7 @@ "par_id0810200903545159\n" "help.text" msgid "Formats the Y error bars." -msgstr "Formatuje zmylkowe Y-hrjady." +msgstr "Formatěruje zmylkowe Y-hrjady." #. MhtWH #: main0000.xhp @@ -400,7 +400,7 @@ "par_id081020090354524\n" "help.text" msgid "Formats the mean value line." -msgstr "Formatuje liniju srjedźneje hódnoty." +msgstr "Formatěruje liniju srjedźneje hódnoty." #. H44aA #: main0000.xhp @@ -409,7 +409,7 @@ "par_id0810200903545274\n" "help.text" msgid "Formats the trendline." -msgstr "Formatuje trendowu liniju." +msgstr "Formatěruje trendowu liniju." #. QYEkZ #: main0000.xhp @@ -418,7 +418,7 @@ "par_id0810200904063285\n" "help.text" msgid "Formats the trendline equation." -msgstr "Formatuje runicu trendoweje linije." +msgstr "Formatěruje runicu trendoweje linije." #. zgFB3 #: main0000.xhp @@ -427,7 +427,7 @@ "par_id0810200904063252\n" "help.text" msgid "Formats the selected data label." -msgstr "Formatuje wubrany datowy popis." +msgstr "Formatěruje wubrany datowy popis." #. AdNa8 #: main0000.xhp @@ -634,7 +634,7 @@ "tit\n" "help.text" msgid "Formatting Bar" -msgstr "Symbolowa lajsta Formatowanje" +msgstr "Symbolowa lajsta Formatěrowanje" #. 4erwk #: main0202.xhp @@ -643,7 +643,7 @@ "hd_id0810200911433792\n" "help.text" msgid "Formatting Bar" -msgstr "Symbolowa lajsta Formatowanje" +msgstr "Symbolowa lajsta Formatěrowanje" #. bGXHw #: main0202.xhp @@ -661,7 +661,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 "Móžeće formatowanje diagrama z pomocu wodźenskich elementow a symbolow na symbolowej lajsće Formatowanje wobdźěłać." +msgstr "Móžeće formatěrowanje diagrama z pomocu wodźenskich elementow a symbolow na symbolowej lajsće Formatěrowanje wobdźěłać." #. MnXYr #: main0202.xhp @@ -679,7 +679,7 @@ "par_id0810200902300479\n" "help.text" msgid "Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element." -msgstr "Wubjerće element z diagrama, kotryž chceće formatować. Element so w diagramowym přehledźe wubjerje. Klikńće na Format – Wuběr formatować…, zo byšće dialog kajkosćow za wubrany element wočinił." +msgstr "Wubjerće element z diagrama, kotryž chceće formatěrować. Element so w diagramowym přehledźe wubjerje. Klikńće na Format – Wuběr formatěrować…, zo byšće dialog kajkosćow za wubrany element wočinił." #. uGAFF #: main0202.xhp @@ -688,7 +688,7 @@ "hd_id0810200902300555\n" "help.text" msgid "Format Selection" -msgstr "Wuběr formatować" +msgstr "Wuběr formatěrować" #. BSwBH #: main0202.xhp @@ -751,7 +751,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 "Symbol horicontalnych lěsycow w symbolowej lajsće Formatowanje widźomnosć lěsyčnych linijow za Y-wósku přešaltuje." +msgstr "Symbol horicontalnych lěsycow w symbolowej lajsće Formatěrowanje widźomnosć lěsyčnych linijow za Y-wósku přešaltuje." #. dqfgM #: main0202.xhp @@ -769,7 +769,7 @@ "par_id081020090230076\n" "help.text" msgid "To show or hide a legend, click Legend On/Off on the Formatting bar." -msgstr "Zo byšće legendu pokazał abo schował, klikńće na Legenda zapinjena/wupinjena w symbolowej lajsće Formatowanje." +msgstr "Zo byšće legendu pokazał abo schował, klikńće na Legenda zapinjena/wupinjena w symbolowej lajsće Formatěrowanje." #. ACmgc #: main0202.xhp @@ -868,7 +868,7 @@ "hd_id3149665\n" "help.text" msgid "Individual Formatting" -msgstr "Jednotliwe formatowanje" +msgstr "Jednotliwe formatěrowanje" #. AuSKr #: main0503.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/00.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/00.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/00.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 12:19+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. EDSDr #: 00000004.xhp @@ -175,4 +175,4 @@ "par_id301566157911675\n" "help.text" msgid "Choose Page - Navigate." -msgstr "Wubjerće Strona - Nawigować" +msgstr "Wubjerće Strona - Nawigěrować" diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/01.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/01.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-22 14:12+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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" #. ybhKD #: 3dsettings_toolbar.xhp @@ -616,7 +616,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 "Kombinujće susodne tekstowe pola z podobnym wotstawkowym formatowanjom za lěpše wuslědki. Formatowanje znamješkow w tekstowych polach so wobchowuja. Kombinowanje tekstowych polow z wotstawkowymi formatami (nadpisma, lisćina a druhe) sej manuelne wobdźěłowanje wužada, zo by so prěnjotne tekstowe wuhotowanje wobnowiło." +msgstr "Kombinujće susodne tekstowe pola z podobnym wotstawkowym formatěrowanjom za lěpše wuslědki. Formatěrowanje znamješkow w tekstowych polach so wobchowuja. Kombinowanje tekstowych polow z wotstawkowymi formatami (nadpisma, lisćina a druhe) sej manuelne wobdźěłowanje wužada, zo by so prěnjotne tekstowe wuhotowanje wobnowiło." #. 4JVcT #: delete_page.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/guide.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sdraw/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-22 14:12+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+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" #. cZbDh #: align_arrange.xhp @@ -1903,7 +1903,7 @@ "par_id3153188\n" "help.text" msgid "Press F6 to navigate to the Drawing bar." -msgstr "Tłóčće F6, zo byšće k symbolowej lajsće Rysowanka nawigował." +msgstr "Tłóčće F6, zo byšće k symbolowej lajsće Rysowanka nawigěrował." #. 8Jf2p #: keyboard.xhp @@ -2830,7 +2830,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 "Klikńće dwójce na tekst, zo byšće jón wobdźěłał abo tekstowe kajkosće kaž na přikład pismowu wulkosć abo pismowu barbu formatował. Klikńće na ramik tekstoweho pola, zo byšće objektowe kajkosće kaž ramikowu barbu abo poziciju před abo za druhimi objektami wobdźěłał." +msgstr "Klikńće dwójce na tekst, zo byšće jón wobdźěłał abo tekstowe kajkosće kaž na přikład pismowu wulkosć abo pismowu barbu formatěrował. Klikńće na ramik tekstoweho pola, zo byšće objektowe kajkosće kaž ramikowu barbu abo poziciju před abo za druhimi objektami wobdźěłał." #. CutFB #: text_enter.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sdraw.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sdraw.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/sdraw.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/sdraw.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-19 14:18+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. dHbww #: main0000.xhp @@ -904,7 +904,7 @@ "par_id3152578\n" "help.text" msgid "Contains commands for formatting the layout and the contents of your document." -msgstr "Wobsahuje přikazy za formatowanje wuhotowanja a wobsaha wašeho dokumenta." +msgstr "Wobsahuje přikazy za formatěrowanje wuhotowanja a wobsaha wašeho dokumenta." #. BMF3u #: main_format.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared/00.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared/00.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared/00.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-08 10:42+0000\n" +"PO-Revision-Date: 2023-03-22 12: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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. 3B8ZN #: 00000001.xhp @@ -1606,7 +1606,7 @@ "hd_id161521663319917\n" "help.text" msgid "Open file with example:" -msgstr "" +msgstr "Dataju z přikładom wočinić:" #. yACEn #: 00000004.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared/02.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-08-10 13:23+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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" #. Edm6o #: 01110000.xhp @@ -15133,7 +15133,7 @@ "hd_id3149751\n" "help.text" msgid "Operator" -msgstr "" +msgstr "Operator" #. 6iFEc #: 12090100.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared/04.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared/04.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared/04.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared/04.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-22 14:12+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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" #. GEuoc #: 01010000.xhp @@ -913,7 +913,7 @@ "hd_id31541233\n" "help.text" msgid "Shortcut keys for editing or formatting documents" -msgstr "Tastowe skrótšenki za wobdźěłowanje abo formatowanje dokumentow" +msgstr "Tastowe skrótšenki za wobdźěłowanje abo formatěrowanje dokumentow" #. gFNeG #: 01010000.xhp @@ -1057,7 +1057,7 @@ "par_id0716200912253022\n" "help.text" msgid "Pastes unformatted text from the clipboard. The text is pasted using the format that exists at the insertion point." -msgstr "Zasadźuje njeformatowany tekst z mjezyskłada. Tekst so z formatom zasadźuje, kotryž na zasadźenskim městnje eksistuje." +msgstr "Zasadźuje njesformatěrowany tekst z mjezyskłada. Tekst so z formatom zasadźuje, kotryž na zasadźenskim městnje eksistuje." #. FK2WE #: 01010000.xhp @@ -1219,7 +1219,7 @@ "par_idN10BE8\n" "help.text" msgid "Removes direct formatting from selected text or objects (as in Format - Clear Direct Formatting)." -msgstr "Wotstronja formatowanje z wubraneho teksta abo objektow (kaž w Format – Direktne fomatowanje wotstronić)." +msgstr "Wotstronja formatěrowanje z wubraneho teksta abo objektow (kaž w Format – Direktne fomatěrowanje wotstronić)." #. 2B6BC #: 01010000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared/05.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared/05.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared/05.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared/05.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-22 14:12+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+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" #. WPTtk #: 00000001.xhp @@ -1561,7 +1561,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 "Wužiwajće tłóčatce Wróćo a Doprědka wobhladowaka, zo byšće mjez stronami nawigował. W najwjace wobhladowakach dołhe kliknjenje na tłóčatko Wróćo wuběransku lisćinu do toho wopytanych stronow pokazuje a dołhe kliknjenje na tłóčatko Doprědka lisćinu stronow pokazuje, kotrež su so po aktualnej stronje wopytali." +msgstr "Wužiwajće tłóčatce Wróćo a Doprědka wobhladowaka, zo byšće mjez stronami nawigěrował. W najwjace wobhladowakach dołhe kliknjenje na tłóčatko Wróćo wuběransku lisćinu do toho wopytanych stronow pokazuje a dołhe kliknjenje na tłóčatko Doprědka lisćinu stronow pokazuje, kotrež su so po aktualnej stronje wopytali." #. HG7Ez #: new_help.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared/autopi.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared/autopi.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared/autopi.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-12 11:34+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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" @@ -5917,7 +5917,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 "Tekstowe formatowanje so z rysowanki abo prezentacije přewozmje. Tuta strona so přeskakuje, jeli kontrolny kašćik Titulnu stronu wutworić znjemóžnjeće, abo jeli awtomatiski eksport abo eksport WebCast wuběraće." +msgstr "Tekstowe formatěrowanje so z rysowanki abo prezentacije přewozmje. Tuta strona so přeskakuje, jeli kontrolny kašćik Titulnu stronu wutworić znjemóžnjeće, abo jeli awtomatiski eksport abo eksport WebCast wuběraće." #. pGnYD #: 01110600.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/shared.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/shared.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-19 14:18+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. fcmzq #: find_toolbar.xhp @@ -193,7 +193,7 @@ "hd_id271641582528169\n" "help.text" msgid "Formatted Display" -msgstr "Formatowane zwobraznjenje" +msgstr "Sformatěrowane zwobraznjenje" #. Cd89c #: find_toolbar.xhp @@ -202,7 +202,7 @@ "par_id571641582522939\n" "help.text" msgid "Performs the search considering the formatted value in a cell." -msgstr "Přewjedźe pytanje dźiwajo na formatowanu hódnotu w celi." +msgstr "Přewjedźe pytanje dźiwajo na sformatěrowanu hódnotu w celi." #. L8K8f #: find_toolbar.xhp @@ -985,7 +985,7 @@ "par_id16200812240344\n" "help.text" msgid "Opens the Table Design. Double-click a preview to format the table." -msgstr "Wočinja tabelowy naćisk. Klikńće dwójce na přehlad, zo byšće tabelu formatował." +msgstr "Wočinja tabelowy naćisk. Klikńće dwójce na přehlad, zo byšće tabelu formatěrował." #. P72mU #: main0204.xhp @@ -2551,7 +2551,7 @@ "par_id398855439580083\n" "help.text" msgid "Opens a submenu where you can choose text formatting commands." -msgstr "Wočinja podmeni, hdźež móžeće přikazy za tekstowe formatowanje wubrać." +msgstr "Wočinja podmeni, hdźež móžeće přikazy za tekstowe formatěrowanje wubrać." #. JCTNH #: submenu_text.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/simpress/01.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/simpress/01.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/simpress/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/simpress/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-12 17:47+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+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" @@ -112,7 +112,7 @@ "bm_id3149664\n" "help.text" msgid "Navigator; presentationspresentations; navigating" -msgstr "Nawigator; prezentacijeprezentacije; nawigować" +msgstr "Nawigator; prezentacijeprezentacije; nawigěrować" #. 5GtBf #: 02110000.xhp @@ -985,7 +985,7 @@ "bm_id3145251\n" "help.text" msgid "fields; editing editing; fields fields; formatting formatting; fields" -msgstr "pola; wobdźěłaćwobdźěłać; polapola; formatowaćformatować; pola" +msgstr "pola; wobdźěłaćwobdźěłać; polapola; formatěrowaćformatěrować; pola" #. EDohk #: 02160000.xhp @@ -1318,7 +1318,7 @@ "par_id3150715\n" "help.text" msgid "The Text Formatting bar contains the following icons for slide titles:Promote, Demote, Move Up and Move Down. If you want to reorder slide titles with the keyboard, ensure that the cursor is at the beginning of a title and press Tab to move the title one level lower in the hierarchy. To move the title up one level, press Shift+Tab." -msgstr "Symbolowa lajsta Tekstowe formatowanje slědowace symbole za folijowe titule wobsahuje:Wo runinu wyše přesunyć , Wo runinu niže přesunyć, Horje a Dele. Jeli chceće folijowe titule z tastaturu přerjadować, přeswědčće so, zo kursor je na spočatku titula a tłóčće tabulatorowu tastu, zo byšće titul wo jednu runinu dele w hierarchiji přesunył. Zo byšće titul wo jednu runinu horje přesunył, tłóčće Umsch (⇧)+Tab (↹)." +msgstr "Symbolowa lajsta Tekstowe formatěrowanje slědowace symbole za folijowe titule wobsahuje:Wo runinu wyše přesunyć , Wo runinu niže přesunyć, Horje a Dele. Jeli chceće folijowe titule z tastaturu přerjadować, přeswědčće so, zo kursor je na spočatku titula a tłóčće tabulatorowu tastu, zo byšće titul wo jednu runinu dele w hierarchiji přesunył. Zo byšće titul wo jednu runinu horje přesunył, tłóčće Umsch (⇧)+Tab (↹)." #. ADcC3 #: 03090000.xhp @@ -1642,7 +1642,7 @@ "bm_id3153144\n" "help.text" msgid "notes;default formatting backgrounds;notes speaker notes;defaults" -msgstr "noticy; standardne formatowanjepozadki; noticyrěčniske noticy; standard" +msgstr "noticy; standardne formatěrowanjepozadki; noticyrěčniske noticy; standard" #. wGoUW #: 03150300.xhp @@ -1660,7 +1660,7 @@ "par_id3154491\n" "help.text" msgid "Displays the master notes, where you can set the default formatting for notes." -msgstr "Pokazuje noticowu předłohu, hdźež móžeće standardne formatowanje za noticy nastajić." +msgstr "Pokazuje noticowu předłohu, hdźež móžeće standardne formatěrowanje za noticy nastajić." #. FjtAU #: 03151000.xhp @@ -2740,7 +2740,7 @@ "par_id3149018\n" "help.text" msgid "The inserted text uses the default text formatting of the active slide. If you want, you can drag a text box in your slide, and then insert the text. The box automatically extends downwards for longer text passages." -msgstr "Zasadźeny tekst standardne tekstowe formatowanje aktiwneje folije wužiwa. Jeli chceće, móžeće tekstowe polo do swojeje folije ćahnyć a potom tekst zasadźić. Polo so awtomatisce za dlěše tekstowe pasaže dele rozšěrja." +msgstr "Zasadźeny tekst standardne tekstowe formatěrowanje aktiwneje folije wužiwa. Jeli chceće, móžeće tekstowe polo do swojeje folije ćahnyć a potom tekst zasadźić. Polo so awtomatisce za dlěše tekstowe pasaže dele rozšěrja." #. zJb7d #: 04110200.xhp @@ -3217,7 +3217,7 @@ "tit\n" "help.text" msgid "Format Cells" -msgstr "Cele formatować" +msgstr "Cele formatěrować" #. C87jt #: 05090000m.xhp @@ -3226,7 +3226,7 @@ "hd_id3147172\n" "help.text" msgid "Format Cells" -msgstr "Cele formatować" +msgstr "Cele formatěrować" #. nkTrY #: 05090000m.xhp @@ -3352,7 +3352,7 @@ "par_id3148488\n" "help.text" msgid "Show styles for formatting graphical elements, including text objects." -msgstr "Pokazuje předłohi za formatowanje grafiskich elementow, mjez nimi tekstowe objekty." +msgstr "Pokazuje předłohi za formatěrowanje grafiskich elementow, mjez nimi tekstowe objekty." #. XNPx5 #: 05100000.xhp @@ -3460,7 +3460,7 @@ "par_id3150653\n" "help.text" msgid "Updates the Style selected in the Styles window with the current formatting of the selected object." -msgstr "Aktualizuje předłohu, kotraž je we woknje Předłohi z aktualnym formatowanjom wubraneho objekta wubrana." +msgstr "Aktualizuje předłohu, kotraž je we woknje Předłohi z aktualnym formatěrowanjom wubraneho objekta wubrana." #. niAJk #: 05100000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/simpress/02.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/simpress/02.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/simpress/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/simpress/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-25 12:45+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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" #. AiACn #: 04010000.xhp @@ -5188,7 +5188,7 @@ "tit\n" "help.text" msgid "Show Formatting" -msgstr "Formatowanje pokazać" +msgstr "Formatěrowanje pokazać" #. hD2V5 #: 11100000.xhp @@ -5197,7 +5197,7 @@ "bm_id3150012\n" "help.text" msgid "formatting;slides headings" -msgstr "formatowanje;folijowe nadpisma" +msgstr "formatěrowanje;folijowe nadpisma" #. HEjQS #: 11100000.xhp @@ -5206,7 +5206,7 @@ "hd_id3150012\n" "help.text" msgid "Show Formatting" -msgstr "Formatowanje pokazać" +msgstr "Formatěrowanje pokazać" #. x3uAQ #: 11100000.xhp @@ -5215,7 +5215,7 @@ "par_id3151073\n" "help.text" msgid "Shows or hides the character formatting of the slide headings. To change the character formatting of a heading, open the Styles window, right-click a style, and then choose Modify." -msgstr "Pokazuje abo chowa znamješkowe formatowanje folijowych nadpismow. Zo byšće znamješkowe formatowanje nadpisma změnił, wočińće wokno Formatowe předłohi, klikńće z prawej tastu na předłohu a wubjerće potom Změnić." +msgstr "Pokazuje abo chowa znamješkowe formatěrowanje folijowych nadpismow. Zo byšće znamješkowe formatěrowanje nadpisma změnił, wočińće wokno Formatowe předłohi, klikńće z prawej tastu na předłohu a wubjerće potom Změnić." #. wpgbG #: 11100000.xhp @@ -5224,7 +5224,7 @@ "par_id3156382\n" "help.text" msgid "Show Formatting Icon" -msgstr "Symbol za Formatowanje pokazać" +msgstr "Symbol za Formatěrowanje pokazać" #. 6tAg5 #: 11100000.xhp @@ -5233,7 +5233,7 @@ "par_id3145789\n" "help.text" msgid "Show Formatting" -msgstr "Formatowanje pokazać" +msgstr "Formatěrowanje pokazać" #. qb3uX #: 11110000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/simpress/04.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/simpress/04.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/simpress/04.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/simpress/04.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-22 14:12+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+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" #. mYCYv #: 01020000.xhp @@ -1732,7 +1732,7 @@ "hd_id3149138\n" "help.text" msgid "Navigating with the Keyboard in Slide Sorter and Slide Pane" -msgstr "Z tastaturu po folijowym sortěrowanju a folijowym wobłuku nawigować." +msgstr "Z tastaturu po folijowym sortěrowanju a folijowym wobłuku nawigěrować." #. 8SbTN #: 01020000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/simpress/guide.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/simpress/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/simpress/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-07 17:55+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+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" #. S83CC #: 3d_create.xhp @@ -1219,7 +1219,7 @@ "par_idN1082F\n" "help.text" msgid "Choose Slide - Properties to change the slide background, or choose other formatting commands. Objects that you add here will be visible on all slides that are based on this master slide.Choose Page - Properties to change the page background, or choose other formatting commands. Objects that you add here will be visible on all pages that are based on this master page.." -msgstr "Wubjerće Folija – Kajkosće…, zo byšće folijowy pozadk změnił, abo wubjerće druhe formatowanske přikazy. Objekty, kotrež tu přidawaće, budu widźomne na wšěch folijach, kotrež na tutej folijowej předłoze bazuja.Wubjerće Folija – Kajkosće…, zo byšće folijowy pozadk změnił, abo wubjerće druhe formatowanske přikazy. Objekty, kotrež tu přidawaće, budu widźomne na wšěch folijach, kotrež na tutej folijowej předłoze bazuja." +msgstr "Wubjerće Folija – Kajkosće…, zo byšće folijowy pozadk změnił, abo wubjerće druhe formatěrowanske přikazy. Objekty, kotrež tu přidawaće, budu widźomne na wšěch folijach, kotrež na tutej folijowej předłoze bazuja.Wubjerće Folija – Kajkosće…, zo byšće folijowy pozadk změnił, abo wubjerće druhe formatěrowanske přikazy. Objekty, kotrež tu přidawaće, budu widźomne na wšěch folijach, kotrež na tutej folijowej předłoze bazuja." #. LTDkg #: background.xhp @@ -1426,7 +1426,7 @@ "par_id8217413\n" "help.text" msgid "When you switch to the master view, you can move those areas to any position on the master. Also, you can enter additional text into them, resize them, and select their contents to apply text formatting. For example, you can change the font size or color." -msgstr "Hdyž k napohladej předłohi přeńdźćeće, móžeće tute wobłuki do někajkeje pozicije na předłoze přesunyć. Móžeće tež přidatny tekst do nich zapodać, jich wulkosć změnić a jich wobsah wubrać, zo byšće tekstowe formatowanje nałožił. Móžeće na přikład wulkosć abo barbu pisma změnić." +msgstr "Hdyž k napohladej předłohi přeńdźćeće, móžeće tute wobłuki do někajkeje pozicije na předłoze přesunyć. Móžeće tež přidatny tekst do nich zapodać, jich wulkosć změnić a jich wobsah wubrać, zo byšće tekstowe formatěrowanje nałožił. Móžeće na přikład wulkosć abo barbu pisma změnić." #. KjNAg #: footer.xhp @@ -1507,7 +1507,7 @@ "par_id1956236\n" "help.text" msgid "If you want to change the position and formatting of the master objects, choose View - Master." -msgstr "Jeli chceće poziciju a formatowanje objekty folijoweje předłohi změnić, wubjerće Napohlad – Folijowa předłoha." +msgstr "Jeli chceće poziciju a formatěrowanje objekty folijoweje předłohi změnić, wubjerće Napohlad – Folijowa předłoha." #. M7H3u #: footer.xhp @@ -1516,7 +1516,7 @@ "par_id5259559\n" "help.text" msgid "You see the master slide with areas near the bottom. You can move the areas , and you can select the fields and apply some formatting. You can also enter some text here which will be shown next to the fields." -msgstr "Widźiće folijowu předłohu z wobłukami blisko delnjeje kromy. Móžeće wobłuki přesunyć, a móžeće pola wubrać a formatowanja nałožić. Móžeće tu tež tekst zapodać, kotryž so pódla polow pokazuje." +msgstr "Widźiće folijowu předłohu z wobłukami blisko delnjeje kromy. Móžeće wobłuki přesunyć, a móžeće pola wubrać a formatěrowanja nałožić. Móžeće tu tež tekst zapodać, kotryž so pódla polow pokazuje." #. 4rmFa #: footer.xhp @@ -1525,7 +1525,7 @@ "par_id2521439\n" "help.text" msgid "Click the Date Area and move the time and date field. Select the field and apply some formatting to change the format for the date and time on all slides. The same applies to the Footer Area and the Slide Number Area." -msgstr "Klikńće na datumowy wobłuk a přesuńće časowe a datumowe polo. Wubjerće polo a nałožće formatowanja, zo byšće format za datum a čas na wšěch folijach změnił. Samsne za wobłuk nohoweje linki a folijoweho čisła płaći." +msgstr "Klikńće na datumowy wobłuk a přesuńće časowe a datumowe polo. Wubjerće polo a nałožće formatěrowanja, zo byšće format za datum a čas na wšěch folijach změnił. Samsne za wobłuk nohoweje linki a folijoweho čisła płaći." #. DhBjE #: footer.xhp @@ -2740,7 +2740,7 @@ "par_id3148610\n" "help.text" msgid "You can use the keyboard to access $[officename] Impress commands as well as to navigate through the workspace. $[officename] Impress uses the same shortcut keys as $[officename] Draw to create drawing objects." -msgstr "Móžeće tastaturu za přistup k přikazam $[officename] Impress wužiwać a zo byšće přez dźěłowy wobłuk nawigował. $[officename] Impress samsne tastowe skrótšenki kaž $[officename] Draw wužiwa, zo by rysowanske objekty wutworił." +msgstr "Móžeće tastaturu za přistup k přikazam $[officename] Impress wužiwać a zo byšće přez dźěłowy wobłuk nawigěrował. $[officename] Impress samsne tastowe skrótšenki kaž $[officename] Draw wužiwa, zo by rysowanske objekty wutworił." #. EEyi5 #: keyboard.xhp @@ -2929,7 +2929,7 @@ "par_id3155930\n" "help.text" msgid "Use the arrow keys to navigate to the slide that you want to select, and then press the Spacebar. To add to the selection, use the arrow keys to navigate to the slide(s) that you want to add, and press Spacebar again. To deselect a slide, navigate to the slide, and then press Spacebar." -msgstr "Wužiwajće šipkowe tasty, zo byšće k foliji nawigował, kotruž chceće wubrać, a tłóčće mjezotowu tastu. Zo byšće folije k wuběrej přidał, wužiwajće šipkowe tasty, zo byšće k folijam nawigował, kotrež chceće přidać, a tłóčće mjezotowu tastu znowa. Zo byšće foliju z wuběra wotstronił, nawigujće k foliji a tłóčće mjezotowu tastu." +msgstr "Wužiwajće šipkowe tasty, zo byšće k foliji nawigěrował, kotruž chceće wubrać, a tłóčće mjezotowu tastu. Zo byšće folije k wuběrej přidał, wužiwajće šipkowe tasty, zo byšće k folijam nawigěrował, kotrež chceće přidać, a tłóčće mjezotowu tastu znowa. Zo byšće foliju z wuběra wotstronił, nawigěrujće k foliji a tłóčće mjezotowu tastu." #. AdoWk #: keyboard.xhp @@ -3766,7 +3766,7 @@ "par_id3154017\n" "help.text" msgid "Every slide in a presentation has exactly one master slide. A master slide determines the text formatting style for the title and outline and the background design for all slides that use this master slide." -msgstr "Kóžda folija w prezentaciji ma eksaktnje jednu folijowu předłohu. Folijowa předłoha tekstowe formatowanje za titul a rozrjad a pozadkowy design za wšě folije postaja, kotrež tutu folijowu předłohu wužiwaja." +msgstr "Kóžda folija w prezentaciji ma eksaktnje jednu folijowu předłohu. Folijowa předłoha tekstowe formatěrowanje za titul a rozrjad a pozadkowy design za wšě folije postaja, kotrež tutu folijowu předłohu wužiwaja." #. fj6wF #: masterpage.xhp @@ -3775,7 +3775,7 @@ "par_id4154017\n" "help.text" msgid "Every page in a drawing has exactly one master page. A master page determines the text formatting style for the title and outline and the background design for all pages that use this master page." -msgstr "Kóžda strona w rysowance ma eksaktnje jednu předłohu. Předłoha tekstowe formatowanje za titul a rozrjad a pozadkowy design za wšě strony postaja, kotrež tutu předłohu wužiwaja." +msgstr "Kóžda strona w rysowance ma eksaktnje jednu předłohu. Předłoha tekstowe formatěrowanje za titul a rozrjad a pozadkowy design za wšě strony postaja, kotrež tutu předłohu wužiwaja." #. xwKko #: masterpage.xhp @@ -5629,7 +5629,7 @@ "par_id9209875\n" "help.text" msgid "Insert a native table - you enter the data into the cells and apply fancy formatting using the Table Design section on the Tasks pane." -msgstr "Zasadźće swójsku tabelu – zapodajće daty do celow a nałožće šikwane formatowanje z pomocu wotrězka Tabelowy naćisk w dźěłowym wobłuku." +msgstr "Zasadźće swójsku tabelu – zapodajće daty do celow a nałožće šikwane formatěrowanje z pomocu wotrězka Tabelowy naćisk w dźěłowym wobłuku." #. s7Uxa #: table_insert.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/simpress.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/simpress.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/simpress.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/simpress.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-19 14:18+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. GdQGG #: format_submenu_lists.xhp @@ -625,7 +625,7 @@ "tit\n" "help.text" msgid "Text Formatting Bar" -msgstr "Symbolowa lajsta Tekstowe formatowanje" +msgstr "Symbolowa lajsta Tekstowe formatěrowanje" #. k4Bz5 #: main0203.xhp @@ -634,7 +634,7 @@ "hd_id3150010\n" "help.text" msgid "Text Formatting Bar" -msgstr "Symbolowa lajsta Tekstowe formatowanje" +msgstr "Symbolowa lajsta Tekstowe formatěrowanje" #. 9JJNQ #: main0203.xhp @@ -643,7 +643,7 @@ "par_id3152597\n" "help.text" msgid "To display the Text Formatting Bar, place the cursor inside a text object." -msgstr "Zo byšće symbolowu lajstu Tekstowe formatowanje pokazał, stajće kursor w tekstowym objekće." +msgstr "Zo byšće symbolowu lajstu Tekstowe formatěrowanje pokazał, stajće kursor w tekstowym objekće." #. RDafD #: main0203.xhp @@ -1570,7 +1570,7 @@ "par_id3145801\n" "help.text" msgid "Contains commands for formatting the layout and the contents of your document." -msgstr "Wobsahuje přikazy za formatowanje wuhotowanja a wobsaha wašeho dokumenta." +msgstr "Wobsahuje přikazy za formatěrowanje wuhotowanja a wobsaha wašeho dokumenta." #. EzBaC #: main_format.xhp @@ -1588,7 +1588,7 @@ "par_id461602975083850\n" "help.text" msgid "Opens a submenu where you can modify the formatting of list paragraphs." -msgstr "Wočinja podmeni, hdźež móžeće formatowanje lisćinowych wotstawkow změnić." +msgstr "Wočinja podmeni, hdźež móžeće formatěrowanje lisćinowych wotstawkow změnić." #. vmbqC #: main_format.xhp @@ -1651,7 +1651,7 @@ "par_id61615217563797\n" "help.text" msgid "Shows commands to format, edit, and delete a table and its elements." -msgstr "Pokazuje přikazy za formatowanje, wobdźěłowanje a zhašenje tabelow a jich elementow." +msgstr "Pokazuje přikazy za formatěrowanje, wobdźěłowanje a zhašenje tabelow a jich elementow." #. iZgpC #: main_format.xhp @@ -1975,7 +1975,7 @@ "par_id741615495336473\n" "help.text" msgid "Navigates to the last edited slide in the document." -msgstr "Nawiguje k poslednjej wobdźěłanej foliji w dokumenće." +msgstr "Nawigěruje k poslednjej wobdźěłanej foliji w dokumenće." #. FA3Ra #: main_slide.xhp @@ -2038,7 +2038,7 @@ "hd_id301615489789755\n" "help.text" msgid "Navigate" -msgstr "Nawigować" +msgstr "Nawigěrować" #. 62VZA #: main_slide.xhp @@ -2065,7 +2065,7 @@ "par_id131615558173437\n" "help.text" msgid "To Previous Slide: Navigates to the previous slide with respect to the currently selected slide." -msgstr "Do předchadneje folije: Nawiguje k předchadnej foliji nastupajo tuchwilu wubranu foliju." +msgstr "Do předchadneje folije: Nawigěruje k předchadnej foliji nastupajo tuchwilu wubranu foliju." #. YXD3o #: main_slide.xhp @@ -2074,7 +2074,7 @@ "par_id941615558176178\n" "help.text" msgid "To Next Slide: Navigates to the next slide with respect to the currently selected slide." -msgstr "Do přichodnje folije: Nawiguje k přichodneje foliji nastupajo tuchwilu wubranu foliju." +msgstr "Do přichodnje folije: Nawigěruje k přichodneje foliji nastupajo tuchwilu wubranu foliju." #. dspAA #: main_slide.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/smath/01.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/smath/01.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/smath/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/smath/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 17:18+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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" @@ -400,7 +400,7 @@ "par_id3149500\n" "help.text" msgid "This is a list of operators, functions, symbols and format options that can be inserted into the formula." -msgstr "To je lisćina operatorow, funkcijow, symbolow a formatowanske nastajenja, kotrež dadźa so do formle zasadźić." +msgstr "To je lisćina operatorow, funkcijow, symbolow a formatěrowanske nastajenja, kotrež dadźa so do formle zasadźić." #. GcfPD #: 03090000.xhp @@ -4477,7 +4477,7 @@ "par_id3150101\n" "help.text" msgid "Inserts a placeholder with bold formatting. You can also type bold in the Commands window." -msgstr "Zasadźuje zastupowacy symbol z tučnym formatowanjom. Móžeće tež bold do wokna Přikazy zapodać." +msgstr "Zasadźuje zastupowacy symbol z tučnym formatěrowanjom. Móžeće tež bold do wokna Přikazy zapodać." #. aq56x #: 03090600.xhp @@ -4504,7 +4504,7 @@ "par_id3147355\n" "help.text" msgid "Inserts a placeholder with italic formatting. You can also type ital or italic in the Commands window." -msgstr "Zasadźuje zastupowacy symbol z kursiwnym formatowanjom. Móžeće tež ital abo italic do wokna Přikazy zapodać." +msgstr "Zasadźuje zastupowacy symbol z kursiwnym formatěrowanjom. Móžeće tež ital abo italic do wokna Přikazy zapodać." #. 59E2J #: 03090600.xhp @@ -4576,7 +4576,7 @@ "par_id3146071\n" "help.text" msgid "The nbold and nitalic commands remove the bold or italic default fonts of formula components. For example, remove italics from the x in the formula 5 x + 3=28 by typing nitalic before the x as in 5 nitalic x + 3=28." -msgstr "Přikazaj nbold a nitalic tučne abo kursiwne standardne pisma formlowych komponentow wotstronjatej. Zapodajće nitalic před x kaž w 5 nitalic x + 3 = 28, zo byšće kursiwne formatowanje pismika x w formli 5 x + 3 = 28 wotstronił." +msgstr "Přikazaj nbold a nitalic tučne abo kursiwne standardne pisma formlowych komponentow wotstronjatej. Zapodajće nitalic před x kaž w 5 nitalic x + 3 = 28, zo byšće kursiwne formatěrowanje pismika x w formli 5 x + 3 = 28 wotstronił." #. VcdGT #: 03090600.xhp @@ -4612,7 +4612,7 @@ "par_id3145230\n" "help.text" msgid "For more information about formatting in %PRODUCTNAME Math, see Brackets and Grouping." -msgstr "Za dalše informacije wo formatowanju w %PRODUCTNAME Math hlejće Spinki a zeskupjenje." +msgstr "Za dalše informacije wo formatěrowanju w %PRODUCTNAME Math hlejće Spinki a zeskupjenje." #. un8c6 #: 03090600.xhp @@ -4639,7 +4639,7 @@ "bm_id3153150\n" "help.text" msgid "formatting;in $[officename] Math$[officename] Math; formattingsuperscriptsbinomialsvertical elementslines; inserting in formulassubscriptsstacksvertical arrangement of elementssmall gapsalignment; left (Math)left-justified alignment (Math)alignment; horizontally centered (Math)centered horizontally; alignment (Math)alignment; right (Math)right-justified alignment in %PRODUCTNAME Mathmatrices; arrangingspaces in formulasgaps in formulasinserting; gapsarranging;matricesformulas;aligningaligning formulas" -msgstr "formatowanje; w $[officename] Math$[officename] Math; formatowanjewyše stajenybinomywertikalne elementylinije; do formlow zasadźićnišo stajenystaplewertikalny porjad elementowmałe mjezerywusměrjenje; nalěwo (Math)na lěwu kromu wusměrjeny (Math)wusměrjenje; horicontalnje centrowane (Math)horicontalnje centrowany; wusměrjenje (Math)wusměrjenje; naprawo (Math)na prawu kromu wusměrjeny w %PRODUCTNAME Mathmatriksy; rjadowaćmjezoty w formlachmjezery w formlachzasadźić; mjezeryrjadować; matriksyformle; wusměrićformle wusměrić" +msgstr "formatěrowanje; w $[officename] Math$[officename] Math; formatěrowanjewyše stajenybinomywertikalne elementylinije; do formlow zasadźićnišo stajenystaplewertikalny porjad elementowmałe mjezerywusměrjenje; nalěwo (Math)na lěwu kromu wusměrjeny (Math)wusměrjenje; horicontalnje centrowane (Math)horicontalnje centrowany; wusměrjenje (Math)wusměrjenje; naprawo (Math)na prawu kromu wusměrjeny w %PRODUCTNAME Mathmatriksy; rjadowaćmjezoty w formlachmjezery w formlachzasadźić; mjezeryrjadować; matriksyformle; wusměrićformle wusměrić" #. xe4YA #: 03090700.xhp @@ -4657,7 +4657,7 @@ "par_id3147262\n" "help.text" msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the context menu of the Commands window." -msgstr "Móžeće mjez wšelakimi nastajenjemi za formatowanje formle $[officename] Math wubrać. Formatowanske nastajenja so w delnim dźělu wobłuka Elementy pokazuja. Tute nastajenja so tež w kontekstowym meniju wokna Přikazy nalistuja." +msgstr "Móžeće mjez wšelakimi nastajenjemi za formatěrowanje formle $[officename] Math wubrać. Formatěrowanske nastajenja so w delnim dźělu wobłuka Elementy pokazuja. Tute nastajenja so tež w kontekstowym meniju wokna Přikazy nalistuja." #. oGTCQ #: 03090700.xhp @@ -4666,7 +4666,7 @@ "par_id3154263\n" "help.text" msgid "The following is a complete list of all available formatting options in $[officename] Math. The icon next to the formatting option indicates that it can be accessed through the Elements pane (menu View - Elements) or through the context menu of the Commands window." -msgstr "Slědowaca lisćina je dospołna lisćina formatowanskich nastajenjow, kotrež su w $[officename] Math k dispoziciji. Symbol pódla formatowanskeho nastajenja podawa, zo byšće přistup k njemu přez wobłuk Elementy (wubjerće Napohlad – Elementy) abo přez kontekstowy meni wokna Přikazy měł." +msgstr "Slědowaca lisćina je dospołna lisćina formatěrowanskich nastajenjow, kotrež su w $[officename] Math k dispoziciji. Symbol pódla formatěrowanskeho nastajenja podawa, zo byšće přistup k njemu přez wobłuk Elementy (wubjerće Napohlad – Elementy) abo přez kontekstowy meni wokna Přikazy měł." #. Cb8X9 #: 03090700.xhp @@ -4675,7 +4675,7 @@ "par_id3153536\n" "help.text" msgid "The letter \"a\" refers to the placeholder in your formula which you would like to assign to the respective formatting. You can substitute this character for any other you like." -msgstr "Pismik „a“ so na zastupowacy symbol we wašej formli poćahuje, kotryž chceće wotpowědnemu formatowanju připokazać. Móžeće tute znamješko z někajkim druhim wuměnić." +msgstr "Pismik „a“ so na zastupowacy symbol we wašej formli poćahuje, kotryž chceće wotpowědnemu formatěrowanju připokazać. Móžeće tute znamješko z někajkim druhim wuměnić." #. GmDzn #: 03090700.xhp @@ -4684,7 +4684,7 @@ "hd_id3151104\n" "help.text" msgid "Formatting options" -msgstr "Formatowanske nastajenja" +msgstr "Formatěrowanske nastajenja" #. GEczu #: 03090700.xhp @@ -5215,7 +5215,7 @@ "par_id3148708\n" "help.text" msgid "Click Brackets and Grouping for more information about formatting in $[officename] Math." -msgstr "Klikńće na Spinki a zeskupjenje za dalše informacije wo formatowanju w $[officename] Math." +msgstr "Klikńće na Spinki a zeskupjenje za dalše informacije wo formatěrowanju w $[officename] Math." #. spENU #: 03090700.xhp @@ -6934,7 +6934,7 @@ "par_id3149502\n" "help.text" msgid "This reference section contains lists of many operators, functions, symbols and formatting features available in $[officename] Math. Many of the commands displayed can be inserted using the icons in the Elements window or the context menu of the Commands window." -msgstr "Tutón referencny wotrězk lisćiny wjele operatorow, funkcijow, symbolow a formatowanskich funkcijow wobsahuje, kotrež su w $[officename] Math k dispoziciji. Wjele pokazanych přikazow da so z pomocu symbolow do wokna Elementy abo do kontekstoweho menija wokna Přikazy zasadźić." +msgstr "Tutón referencny wotrězk lisćiny wjele operatorow, funkcijow, symbolow a formatěrowanskich funkcijow wobsahuje, kotrež su w $[officename] Math k dispoziciji. Wjele pokazanych přikazow da so z pomocu symbolow do wokna Elementy abo do kontekstoweho menija wokna Přikazy zasadźić." #. 2BbFW #: 03091501.xhp @@ -10894,7 +10894,7 @@ "tit\n" "help.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. HsVeG #: 03091509.xhp @@ -10903,7 +10903,7 @@ "bm_id3184255\n" "help.text" msgid "formatting; reference list (Math)" -msgstr "formatowanje; referencna lisćina (Math)" +msgstr "formatěrowanje; referencna lisćina (Math)" #. 5uYSD #: 03091509.xhp @@ -10912,7 +10912,7 @@ "hd_id1155735\n" "help.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. J6wjz #: 03091509.xhp @@ -12001,7 +12001,7 @@ "par_id3154566\n" "help.text" msgid "In this section of the Fonts dialog you can define fonts, with which you can format other text components in the formula. The three basic fonts Serif, Sans and Fixed are available. You can add any other font to each standard installed basic font. Every font installed on your system is available for you to use. Select the Modify button to expand the selection offered in the list box." -msgstr "W tutym wotrězku dialoga Pisma móžeće pisma definować, z kotrymiž móžeće druhe tekstowe komponenty w formli formatować. Tři zakładne pisma Serif, Sans a Fixed su k dispoziciji. Móžeće kóždemu zainstalowanemu zakładnemu pismu dalše pisma přidać. Kóžde pismo na wašim systemje je za wužiwanje k dispoziciji. Wubjerće tłóčatko Změnić, zo byšće wuběr w lisćinowym polu rozšěrił." +msgstr "W tutym wotrězku dialoga Pisma móžeće pisma definować, z kotrymiž móžeće druhe tekstowe komponenty w formli formatěrować. Tři zakładne pisma Serif, Sans a Fixed su k dispoziciji. Móžeće kóždemu instalowanemu zakładnemu pismu dalše pisma přidać. Kóžde pismo na wašim systemje je za wužiwanje k dispoziciji. Wubjerće tłóčatko Změnić, zo byšće wuběr w lisćinowym polu rozšěrił." #. 9WJEc #: 05010000.xhp @@ -12046,7 +12046,7 @@ "par_id3155900\n" "help.text" msgid "You can specify the font to be used for sans font formatting." -msgstr "Móžeće pismo podać, kotrež so ma za formatowanje pisma sans wužiwać." +msgstr "Móžeće pismo podać, kotrež so ma za formatěrowanje pisma sans wužiwać." #. f9PR5 #: 05010000.xhp @@ -12064,7 +12064,7 @@ "par_id3154198\n" "help.text" msgid "You can specify the font to be used for fixed font formatting." -msgstr "Móžeće pismo podać, kotrež so ma za formatowanje pisma fixed wužiwać." +msgstr "Móžeće pismo podać, kotrež so ma za formatěrowanje pisma fixed wužiwać." #. G2BHu #: 05010000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/smath/guide.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/smath/guide.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/smath/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/smath/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-02 12:20+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. P9FEQ #: align.xhp @@ -103,7 +103,7 @@ "bm_id3145792\n" "help.text" msgid "attributes; changing in $[officename] Mathfont attributes;changing defaultsformatting;changing default attributesdefaults;changing default formattingchanging;default formatting" -msgstr "atributy; w $[officename] Math změnićpismowe atributy;standardne hódnoty změnićformatować;standardne atributy změnićstandardne hódnoty;standardne formatowanje změnićzměnić;standardne formatowanje" +msgstr "atributy; w $[officename] Math změnićpismowe atributy;standardne hódnoty změnićformatěrować;standardne atributy změnićstandardne hódnoty;standardne formatěrowanje změnićzměnić;standardne formatěrowanje" #. tFymM #: attributes.xhp @@ -130,7 +130,7 @@ "par_id3148870\n" "help.text" msgid "Some parts of formulas are always formatted bold or italic by default." -msgstr "Někotre formlowe dźěle so přeco po standardźe tučnje abo kursiwnje formatuja." +msgstr "Někotre formlowe dźěle so přeco po standardźe tučnje abo kursiwnje formatěruja." #. 7A7Vi #: attributes.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/smath.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/smath.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/smath.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/smath.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-22 14:12+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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" #. yKBT5 #: main0000.xhp @@ -94,7 +94,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 "Menijowa lajsta wšě přikazy za dźěło z $[officename] Math wobsahuje. Wobsahuje lisćinu wšěch operatorow, kotrež su k dispoziciji, a přikazy za wobdźěłowanje, wobhladowanje, rjadowanje, formatowanje a ćišćenje formlowych dokumentow a objekty, kotrež su w nich wobsahowane. Najwjace menijowych přikazow je jenož k dispoziciji, hdyž formlu wutworjeće abo wobdźěłujeće." +msgstr "Menijowa lajsta wšě přikazy za dźěło z $[officename] Math wobsahuje. Wobsahuje lisćinu wšěch operatorow, kotrež su k dispoziciji, a přikazy za wobdźěłowanje, wobhladowanje, rjadowanje, formatěrowanje a ćišćenje formlowych dokumentow a objekty, kotrež su w nich wobsahowane. Najwjace menijowych přikazow je jenož k dispoziciji, hdyž formlu wutworjeće abo wobdźěłujeće." #. PvGHJ #: main0101.xhp @@ -211,7 +211,7 @@ "par_id3149018\n" "help.text" msgid "This menu contains commands needed to format formulas." -msgstr "Tutón meni přikazy wobsahuje, kotrež su za formatowanje formlow trěbne." +msgstr "Tutón meni přikazy wobsahuje, kotrež su za formatěrowanje formlow trěbne." #. G9yVX #: main0105.xhp @@ -454,7 +454,7 @@ "par_id3148486\n" "help.text" msgid "$[officename] Math provides numerous operators, functions and formatting assistants to help you create formulas. These are all listed in a selection window, in which you can click the required element with the mouse to insert the object into your work. There is an exhaustive reference list and numerous samples contained in the Help." -msgstr "$[officename] Math wjele operatorow, funkcijow a formatowanskich asistentow skići, zo by wam pomhał, formle wutworić. Tute su wšě we wuběranskim woknje nalistowane, w kotrymž móžeće na trěbny element kliknyć, zo byšće objekt do swojeho dźěła zasadźił. Su wučerpowaca referencna tabela a wjele přikładow w Pomocy k dispoziciji." +msgstr "$[officename] Math wjele operatorow, funkcijow a formatěrowanskich asistentow skići, zo by wam pomhał, formle wutworić. Tute su wšě we wuběranskim woknje nalistowane, w kotrymž móžeće na trěbny element kliknyć, zo byšće objekt do swojeho dźěła zasadźił. Su wučerpowaca referencna tabela a wjele přikładow w Pomocy k dispoziciji." #. dA2Fo #: main0503.xhp @@ -472,7 +472,7 @@ "par_id3145386\n" "help.text" msgid "As with charts and images, formulas are created as objects within a document. Inserting a formula into a document automatically starts $[officename] Math. You can create, edit and format the formula using a large selection of predefined symbols and functions." -msgstr "Kaž diagramy a wobrazy so formle jako objekty znutřka dokumenta wutworjeja. Hdyž formlu do dokumenta zasadźujeće, so $[officename] Math awtomatisce startuje. Móžeće formlu z wulkim wuběrom předdefinowanych symbolow a funkcijow wutworić, wobdźěłać a formatować." +msgstr "Kaž diagramy a wobrazy so formle jako objekty znutřka dokumenta wutworjeja. Hdyž formlu do dokumenta zasadźujeće, so $[officename] Math awtomatisce startuje. Móžeće formlu z wulkim wuběrom předdefinowanych symbolow a funkcijow wutworić, wobdźěłać a formatěrować." #. 6nhjN #: main0503.xhp @@ -490,7 +490,7 @@ "par_id3150213\n" "help.text" msgid "If you are familiar with the $[officename] Math language, you can also type a formula directly into the document. For example, type this formula into a text document: \"a sup 2 + b sup 2 = c sup 2\". Select this text and choose Insert - Object - Formula. The text will be converted into a formatted formula." -msgstr "Jeli so w rěči $[officename] Math wuznawaće, móžeće tež formlu direktnje do dokumenta zapodać. Zapodajće na přikład slědowacu formlu do tekstoweho dokumenta: „a sup 2 + b sup 2 = c sup 2“. Markěrujće tutón tekst a wubjerće potom Zasadźić – Objekt – Formla. Tekst so do formatowaneje formle konwertuje." +msgstr "Jeli so w rěči $[officename] Math wuznawaće, móžeće tež formlu direktnje do dokumenta zapodać. Zapodajće na přikład slědowacu formlu do tekstoweho dokumenta: „a sup 2 + b sup 2 = c sup 2“. Markěrujće tutón tekst a wubjerće potom Zasadźić – Objekt – Formla. Tekst so do sformatěrowaneje formle konwertuje." #. 5HQmG #: main0503.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/swriter/00.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/swriter/00.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/swriter/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/swriter/00.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-11-22 14:12+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. E9tti #: 00000004.xhp @@ -481,7 +481,7 @@ "par_id3155625\n" "help.text" msgid "Choose View - Formatting Marks" -msgstr "Wubjerće Napohlad – Formatowanske znamješka" +msgstr "Wubjerće Napohlad – Formatěrowanske znamješka" #. ZPf6L #: 00000403.xhp @@ -508,7 +508,7 @@ "par_id3150932\n" "help.text" msgid "Formatting Marks Icon" -msgstr "Symbol za Formatowanske znamješka" +msgstr "Symbol za Formatěrowanske znamješka" #. hqSje #: 00000403.xhp @@ -517,7 +517,7 @@ "par_id3153716\n" "help.text" msgid "Formatting Marks" -msgstr "Formatowanske znamješka" +msgstr "Formatěrowanske znamješka" #. LmXFe #: 00000403.xhp @@ -2695,7 +2695,7 @@ "par_id3151330\n" "help.text" msgid "Choose Tools - Update - Page Formatting" -msgstr "Wubjerće Nastroje – Aktualizować – Formatowanje strony" +msgstr "Wubjerće Nastroje – Aktualizować – Formatěrowanje strony" #. gnwPv #: 00000406.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/swriter/02.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/swriter/02.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/swriter/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/swriter/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-11-22 14:12+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+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" #. sqxGb #: 02110000.xhp @@ -571,7 +571,7 @@ "tit\n" "help.text" msgid "Demote Outline Level with Subpoints" -msgstr "Rozrjadowu runinu z poddypkami dele přesunyć" +msgstr "Rozrjadowansku runinu z poddypkami dele přesunyć" #. JVsVH #: 06070000.xhp @@ -580,7 +580,7 @@ "hd_id3145826\n" "help.text" msgid "Demote Outline Level with Subpoints" -msgstr "Rozrjadowu runinu z poddypkami dele přesunyć" +msgstr "Rozrjadowansku runinu z poddypkami dele přesunyć" #. eFSaF #: 06070000.xhp @@ -598,7 +598,7 @@ "par_id3145084\n" "help.text" msgid "Icon Demote Outline Level with Subpoints" -msgstr "Symbol za Rozrjadowu runinu z poddypkami dele přesunyć" +msgstr "Symbol za Rozrjadowansku runinu z poddypkami dele přesunyć" #. gUUUN #: 06070000.xhp @@ -607,7 +607,7 @@ "par_id3145088\n" "help.text" msgid "Demote Outline Level With Subpoints" -msgstr "Rozrjadowu runinu z poddypkami dele přesunyć" +msgstr "Rozrjadowansku runinu z poddypkami dele přesunyć" #. kG3Fb #: 06080000.xhp @@ -616,7 +616,7 @@ "tit\n" "help.text" msgid "Promote Outline Level With Subpoints" -msgstr "Rozrjadowu runinu z poddypkami horje přesunyć" +msgstr "Rozrjadowansku runinu z poddypkami horje přesunyć" #. Gkdat #: 06080000.xhp @@ -625,7 +625,7 @@ "hd_id3154507\n" "help.text" msgid "Promote Outline Level With Subpoints" -msgstr "Rozrjadowu runinu z poddypkami horje přesunyć" +msgstr "Rozrjadowansku runinu z poddypkami horje přesunyć" #. KkHwc #: 06080000.xhp @@ -643,7 +643,7 @@ "par_id3145410\n" "help.text" msgid "Icon Promote Outline Level With Subpoints" -msgstr "Symbol za Rozrjadowu runinu z poddypkami horje přesunyć" +msgstr "Symbol za Rozrjadowansku runinu z poddypkami horje přesunyć" #. BEMRR #: 06080000.xhp @@ -652,7 +652,7 @@ "par_id3145417\n" "help.text" msgid "Promote Outline Level With Subpoints" -msgstr "Rozrjadowu runinu z poddypkami horje přesunyć" +msgstr "Rozrjadowansku runinu z poddypkami horje přesunyć" #. jPBGz #: 06090000.xhp @@ -904,7 +904,7 @@ "par_id3151184\n" "help.text" msgid "The current page number is displayed in this field of the status bar. A click opens \"Go to Page\", with which you can navigate in the document. A right-click shows all bookmarks in the document. Click a bookmark to position the text cursor at the bookmark location." -msgstr "Aktualne čisło strony so w tutym polu statusoweje lajsty pokazuje. Kliknjenje dialog „K stronje přeńć“ wočinja, z kotrymž móžeće w dokumenće nawigować. Kliknjenje z prawej tastu wšě zapołožki w dokumenće pokazuje. Klikńće na zapołožku, zo byšće tekstowy kursor na městnje zapołožki pozicioněrował." +msgstr "Aktualne čisło strony so w tutym polu statusoweje lajsty pokazuje. Kliknjenje dialog „K stronje přeńć“ wočinja, z kotrymž móžeće w dokumenće nawigěrować. Kliknjenje z prawej tastu wšě zapołožki w dokumenće pokazuje. Klikńće na zapołožku, zo byšće tekstowy kursor na městnje zapołožki pozicioněrował." #. BinAk #: 08010000.xhp @@ -3640,7 +3640,7 @@ "par_id651655490756305\n" "help.text" msgid "You can specify the behavior of the direct cursor by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids." -msgstr "Wubjerće %PRODUCTNAME – NastajenjaNastroje – Nastajenja…%PRODUCTNAME Writer – Formatowanske pomocki, zo byšće zadźerženje direktneho kursora podał." +msgstr "Wubjerće %PRODUCTNAME – NastajenjaNastroje – Nastajenja…%PRODUCTNAME Writer – Formatěrowanske pomocki, zo byšće zadźerženje direktneho kursora podał." #. 5c3tj #: 18130000.xhp @@ -4045,7 +4045,7 @@ "par_id711616001147778\n" "help.text" msgid "The list labeling and indent formatting are applied to the selected paragraphs. The position of the paragraphs in the document does not change." -msgstr "Lisćinowe popisanje a formatowanje zasunjenjow so na wubrane wotstawki nałožuja. Pozicija wotstawkow w dokumenće so njeměnja." +msgstr "Lisćinowe popisanje a formatěrowanje zasunjenjow so na wubrane wotstawki nałožuja. Pozicija wotstawkow w dokumenće so njeměnja." #. L9RdM #: add_to_list.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/swriter/04.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/swriter/04.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/swriter/04.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/swriter/04.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-02 12:20+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. brcGC #: 01020000.xhp @@ -1786,7 +1786,7 @@ "par_id3144447386\n" "help.text" msgid "Paste the contents of the clipboard as unformatted text." -msgstr "Wobsah mjezyskłada jako njeformatowany tekst zasadźić." +msgstr "Wobsah mjezyskłada jako njesformatěrowany tekst zasadźić." #. 9qfif #: 01020000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/swriter.po libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/swriter.po --- libreoffice-7.5.1~rc2/translations/source/hsb/helpcontent2/source/text/swriter.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/helpcontent2/source/text/swriter.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-02 12:20+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. x2qZ6 #: mailmergetoolbar.xhp @@ -616,7 +616,7 @@ "par_id3147218\n" "help.text" msgid "Contains commands for formatting the layout and the contents of your document." -msgstr "Wobsahuje přikazy za formatowanje wuhotowanja a wobsaha wašeho dokumenta." +msgstr "Wobsahuje přikazy za formatěrowanje wuhotowanja a wobsaha wašeho dokumenta." #. zjGX9 #: main0105.xhp @@ -670,7 +670,7 @@ "par_id461602975083850\n" "help.text" msgid "Opens a submenu where you can modify the formatting of list paragraphs." -msgstr "Wočinja podmeni, hdźež móžeće formatowanje lisćinowych wotstawkow změnić." +msgstr "Wočinja podmeni, hdźež móžeće formatěrowanje lisćinowych wotstawkow změnić." #. aJdFV #: main0105.xhp @@ -715,7 +715,7 @@ "par_id61602976356685\n" "help.text" msgid "When comments are present, the character dialog is presented. Changes to font and font formatting are applied to all comments." -msgstr "Hdyž komentary eksistuja, so dialog „Znamješko“ pokazuje. Změny pisma a pismoweho formatowanja so na wšě komentary nałožuja." +msgstr "Hdyž komentary eksistuja, so dialog „Znamješko“ pokazuje. Změny pisma a pismoweho formatěrowanja so na wšě komentary nałožuja." #. ZZgeT #: main0105.xhp @@ -1633,7 +1633,7 @@ "par_id971529881437377\n" "help.text" msgid "Update the paragraph style with the direct formatting applied to the current paragraph." -msgstr "Aktualizujće wotstawkowu předłohu z direktnym formatowanjom aktualneho wotstawka." +msgstr "Aktualizujće wotstawkowu předłohu z direktnym formatěrowanjom aktualneho wotstawka." #. DdHfV #: main0115.xhp @@ -1822,7 +1822,7 @@ "tit\n" "help.text" msgid "Formatting Bar" -msgstr "Symbolowa lajsta Formatowanje" +msgstr "Symbolowa lajsta Formatěrowanje" #. NemzY #: main0202.xhp @@ -1831,7 +1831,7 @@ "hd_id3154270\n" "help.text" msgid "Formatting Bar" -msgstr "Symbolowa lajsta Formatowanje" +msgstr "Symbolowa lajsta Formatěrowanje" #. nFs3x #: main0202.xhp @@ -1840,7 +1840,7 @@ "par_id3147762\n" "help.text" msgid "The Formatting bar contains several text formatting functions." -msgstr "Symbolowa lajsta Formatowanje wšelake tekstowe formatowanske funkcije wobsahuje." +msgstr "Symbolowa lajsta Formatěrowanje wšelake tekstowe formatěrowanske funkcije wobsahuje." #. 5SXPT #: main0202.xhp @@ -1957,7 +1957,7 @@ "par_id3147625\n" "help.text" msgid "The text formatted in a complex text layout language is entered from right to left." -msgstr "Tekst, kotryž je so w kompleksnej rěči tekstoweho wuhotowanja sformatował, so wotprawa dolěwa zapodawa." +msgstr "Tekst, kotryž je so w kompleksnej rěči tekstoweho wuhotowanja sformatěrował, so wotprawa dolěwa zapodawa." #. BdpWg #: main0203.xhp @@ -1984,7 +1984,7 @@ "par_id3147756\n" "help.text" msgid "The Image Bar contains functions for formatting and positioning selected bitmap graphics." -msgstr "Symbolowa lajsta Wobraz funkcije za formatowanje a pozicioněrowanje wubranych bitmapowych grafikow wobsahuje." +msgstr "Symbolowa lajsta Wobraz funkcije za formatěrowanje a pozicioněrowanje wubranych bitmapowych grafikow wobsahuje." #. DDVSp #: main0203.xhp @@ -2245,7 +2245,7 @@ "par_id291603808357876\n" "help.text" msgid "Choose More to open the character formatting dialog with more options." -msgstr "Wubjerće Wjace…, zo byšće dialog „Znamješko“ z dalšimi móžnosćemi za formatowanje wočinił." +msgstr "Wubjerće Wjace…, zo byšće dialog „Znamješko“ z dalšimi móžnosćemi za formatěrowanje wočinił." #. zeCHC #: main0208.xhp @@ -2434,7 +2434,7 @@ "par_id3154239\n" "help.text" msgid "By double-clicking on the ruler, you can open the Paragraph dialog and assign direct paragraph formatting for the current paragraph or all selected paragraphs." -msgstr "Hdyž na lineal dwójce klikaće, móžeće dialog Wotstawk a direktne wotstawkowe formatowanja za aktualny wotstawk abo wšě wubrane wotstawki připokazać." +msgstr "Hdyž na lineal dwójce klikaće, móžeće dialog Wotstawk a direktne wotstawkowe formatěrowanja za aktualny wotstawk abo wšě wubrane wotstawki připokazać." #. LqCV4 #: main0214.xhp @@ -2488,7 +2488,7 @@ "par_id3154272\n" "help.text" msgid "When a frame is selected, the Frame Bar provides the most important functions for formatting and positioning the frame." -msgstr "Hdyž wobłuk je wubrany, symbolowa lajsta Wobłuk najwažniše funkcije za formatowanje a pozicioněrowanje wobłuka skići." +msgstr "Hdyž wobłuk je wubrany, symbolowa lajsta Wobłuk najwažniše funkcije za formatěrowanje a pozicioněrowanje wobłuka skići." #. jAEEf #: main0215.xhp @@ -2587,7 +2587,7 @@ "par_id3150746\n" "help.text" msgid "The OLE Object bar appears when objects are selected, and contains the most important functions for formatting and positioning objects." -msgstr "Symbolowa lajsta OLE-objekt so jewi, hdyž su objekty wubrane, a wobsahuje najwažniše funkcije za formatowanje a pozicioněrowanje objektow." +msgstr "Symbolowa lajsta OLE-objekt so jewi, hdyž su objekty wubrane, a wobsahuje najwažniše funkcije za formatěrowanje a pozicioněrowanje objektow." #. 2gbs5 #: main0216.xhp @@ -2677,7 +2677,7 @@ "par_id3155386\n" "help.text" msgid "Contains formatting commands for text that is contained in a draw object. The Text Object bar appears when you double-click inside a draw object." -msgstr "Wobsahuje formatowanske přikazy za tekst, kotryž je w rysowanskim objekće wobsahowany. Symbolowa lajsta Tekstowy objekt so jewi, hdyž w rysowanskim objekće dwójce klikaće." +msgstr "Wobsahuje formatěrowanske přikazy za tekst, kotryž je w rysowanskim objekće wobsahowany. Symbolowa lajsta Tekstowy objekt so jewi, hdyž w rysowanskim objekće dwójce klikaće." #. MHQMu #: main0220.xhp @@ -2830,7 +2830,7 @@ "par_id3145610\n" "help.text" msgid "$[officename] Writer contains numerous desktop publishing and drawing tools to assist you in creating professionally styled documents, such as brochures, newsletters and invitations. You can format your documents with multi-column layouts, frames, graphics, tables, and other objects." -msgstr "$[officename] Writer wjele DTP- a rysowanske nastroje wobsahuje, kotrež wam pomhaja, profesionelnje wuhotowane dokumenty kaž na přikład brošurki, newslettery abo přeprošenki wutworić. Móžeće swoje dokumenty we wjacorych špaltach, z wobłukami, grafikami, tabelemi a druhimi objektami formatować." +msgstr "$[officename] Writer wjele DTP- a rysowanske nastroje wobsahuje, kotrež wam pomhaja, profesionelnje wuhotowane dokumenty kaž na přikład brošurki, newslettery abo přeprošenki wutworić. Móžeće swoje dokumenty we wjacorych špaltach, z wobłukami, grafikami, tabelemi a druhimi objektami formatěrować." #. EpFCE #: main0503.xhp @@ -2956,7 +2956,7 @@ "bm_id131655501267679\n" "help.text" msgid "navigate forward navigate backward" -msgstr "doprědka nawigowaćwróćo nawigować" +msgstr "doprědka nawigěrowaćwróćo nawigěrować" #. GfGdk #: navigate_toolbar.xhp @@ -2992,7 +2992,7 @@ "hd_id271655497247655\n" "help.text" msgid "Navigate forward" -msgstr "Doprědka nawigować" +msgstr "Doprědka nawigěrować" #. JCuNM #: navigate_toolbar.xhp @@ -3028,7 +3028,7 @@ "hd_id681655497252447\n" "help.text" msgid "Navigate backward" -msgstr "Wróćo nawigować" +msgstr "Wróćo nawigěrować" #. 3RAwT #: navigate_toolbar.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-02-02 12:18+0000\n" +"PO-Revision-Date: 2023-03-18 02: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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565003053.000000\n" #. W5ukN @@ -524,7 +524,7 @@ "ContextLabel\n" "value.text" msgid "Clear ~Direct Formatting" -msgstr "~Direktne formatowanje wotstronić" +msgstr "~Direktne formatěrowanje wotstronić" #. uGVyg #: CalcCommands.xcu @@ -534,7 +534,7 @@ "TooltipLabel\n" "value.text" msgid "Clear Direct Formatting" -msgstr "Direktne formatowanje wotstronić" +msgstr "Direktne formatěrowanje wotstronić" #. BDpWM #: CalcCommands.xcu @@ -1354,7 +1354,7 @@ "Label\n" "value.text" msgid "C~onditional" -msgstr "W~uměnjene formatowanje" +msgstr "W~uměnjene formatěrowanje" #. 9zgw5 #: CalcCommands.xcu @@ -1364,7 +1364,7 @@ "Label\n" "value.text" msgid "Conditional Formatting: Condition" -msgstr "Wuměnjene formatowanje: Wuměnjenje" +msgstr "Wuměnjene formatěrowanje: Wuměnjenje" #. YxEsD #: CalcCommands.xcu @@ -1384,7 +1384,7 @@ "Label\n" "value.text" msgid "Conditional Formatting..." -msgstr "Wuměnjene formatowanje..." +msgstr "Wuměnjene formatěrowanje..." #. YFKd7 #: CalcCommands.xcu @@ -1394,7 +1394,7 @@ "Label\n" "value.text" msgid "Conditional Formatting: Color Scale" -msgstr "Wuměnjene formatowanje: Barbna skala" +msgstr "Wuměnjene formatěrowanje: Barbna skala" #. bkSZz #: CalcCommands.xcu @@ -1414,7 +1414,7 @@ "Label\n" "value.text" msgid "Conditional Formatting: Data Bar" -msgstr "Wuměnjene formatowanje: Datowa lajsta" +msgstr "Wuměnjene formatěrowanje: Datowa lajsta" #. rP7Qh #: CalcCommands.xcu @@ -1434,7 +1434,7 @@ "Label\n" "value.text" msgid "Conditional Formatting: Icon Set" -msgstr "Wuměnjene formatowanje: Symbolowa sadźba" +msgstr "Wuměnjene formatěrowanje: Symbolowa sadźba" #. DV5V6 #: CalcCommands.xcu @@ -1454,7 +1454,7 @@ "Label\n" "value.text" msgid "Conditional Formatting: Date" -msgstr "Wuměnjene formatowanje: Datum" +msgstr "Wuměnjene formatěrowanje: Datum" #. egG95 #: CalcCommands.xcu @@ -1484,7 +1484,7 @@ "Label\n" "value.text" msgid "Manage Conditional Formatting..." -msgstr "Wuměnjene formatowanje rjadować..." +msgstr "Wuměnjene formatěrowanje rjadować..." #. qAuk5 #: CalcCommands.xcu @@ -2384,7 +2384,7 @@ "Label\n" "value.text" msgid "Scale Screen Display" -msgstr "Zwobraznjenje wobrazowki skalować" +msgstr "Pokazku na wobrazowce skalować" #. csiq5 #: CalcCommands.xcu @@ -2984,7 +2984,7 @@ "Label\n" "value.text" msgid "Format ~Cells..." -msgstr "~Cele formatować..." +msgstr "~Cele formatěrować..." #. VyYMj #: CalcCommands.xcu @@ -3004,7 +3004,7 @@ "PopupLabel\n" "value.text" msgid "~Format Cells..." -msgstr "~Cele formatować..." +msgstr "~Cele formatěrować..." #. YEkyD #: CalcCommands.xcu @@ -3874,7 +3874,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Currency" -msgstr "Jako měnu formatować" +msgstr "Jako měnu formatěrować" #. UHwJu #: CalcCommands.xcu @@ -3894,7 +3894,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Currency" -msgstr "Jako měnu formatować" +msgstr "Jako měnu formatěrować" #. GAf7B #: CalcCommands.xcu @@ -3914,7 +3914,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Percent" -msgstr "Jako procent formatować" +msgstr "Jako procent formatěrować" #. Yq2ZF #: CalcCommands.xcu @@ -3934,7 +3934,7 @@ "TooltipLabel\n" "value.text" msgid "Format as General" -msgstr "Jako standard formatować" +msgstr "Jako standard formatěrować" #. oEtif #: CalcCommands.xcu @@ -3954,7 +3954,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Date" -msgstr "Jako datum formatować" +msgstr "Jako datum formatěrować" #. 7TEEu #: CalcCommands.xcu @@ -3974,7 +3974,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Number" -msgstr "Jako ličbu formatować" +msgstr "Jako ličbu formatěrować" #. sDWH8 #: CalcCommands.xcu @@ -3994,7 +3994,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Scientific" -msgstr "Jako wědomostny formatować" +msgstr "Jako wědomostny formatěrować" #. e83bu #: CalcCommands.xcu @@ -4014,7 +4014,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Time" -msgstr "Jako čas formatować" +msgstr "Jako čas formatěrować" #. DbAGi #: 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 @@ -4404,7 +4404,7 @@ "Label\n" "value.text" msgid "Format Cell Borders" -msgstr "Celowe ramiki formatować" +msgstr "Celowe ramiki formatěrować" #. 4gL7K #: CalcCommands.xcu @@ -5204,7 +5204,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. MwePB #: CalcWindowState.xcu @@ -5394,7 +5394,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. hCe45 #: CalcWindowState.xcu @@ -5444,7 +5444,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. Bvnfj #: CalcWindowState.xcu @@ -5494,7 +5494,7 @@ "UIName\n" "value.text" msgid "Text Formatting" -msgstr "Tekstowe formatowanje" +msgstr "Tekstowe formatěrowanje" #. EKwBa #: CalcWindowState.xcu @@ -5794,7 +5794,7 @@ "Label\n" "value.text" msgid "Format Selection..." -msgstr "Wuběr formatować..." +msgstr "Wuběr formatěrować..." #. 2Mrjz #: ChartCommands.xcu @@ -5804,7 +5804,7 @@ "Label\n" "value.text" msgid "Format Legend" -msgstr "Legendu formatować" +msgstr "Legendu formatěrować" #. kTSbA #: ChartCommands.xcu @@ -6124,7 +6124,7 @@ "Label\n" "value.text" msgid "Format Wall..." -msgstr "Diagramowu sćěnu formatować..." +msgstr "Diagramowu sćěnu formatěrować..." #. LXJ6q #: ChartCommands.xcu @@ -6134,7 +6134,7 @@ "Label\n" "value.text" msgid "Format Floor..." -msgstr "Diagramowe dno formatować..." +msgstr "Diagramowe dno formatěrować..." #. qcsAY #: ChartCommands.xcu @@ -6144,7 +6144,7 @@ "Label\n" "value.text" msgid "Format Chart Area..." -msgstr "Diagramowu płoninu formatować..." +msgstr "Diagramowu płoninu formatěrować..." #. EJgaX #: ChartCommands.xcu @@ -6164,7 +6164,7 @@ "Label\n" "value.text" msgid "Format Title..." -msgstr "Titul formatować..." +msgstr "Titul formatěrować..." #. E3VBk #: ChartCommands.xcu @@ -6194,7 +6194,7 @@ "Label\n" "value.text" msgid "Format Legend..." -msgstr "Legendu formatować..." +msgstr "Legendu formatěrować..." #. xBCAR #: ChartCommands.xcu @@ -6234,7 +6234,7 @@ "Label\n" "value.text" msgid "Format Axis..." -msgstr "Wósku formatować..." +msgstr "Wósku formatěrować..." #. AQnWn #: ChartCommands.xcu @@ -6274,7 +6274,7 @@ "Label\n" "value.text" msgid "Format Major Grid..." -msgstr "Hłownu lěsycu formatować..." +msgstr "Hłownu lěsycu formatěrować..." #. oecFv #: ChartCommands.xcu @@ -6304,7 +6304,7 @@ "Label\n" "value.text" msgid "Format Minor Grid..." -msgstr "Pomocnu lěsycu formatować..." +msgstr "Pomocnu lěsycu formatěrować..." #. 5tswt #: ChartCommands.xcu @@ -6334,7 +6334,7 @@ "Label\n" "value.text" msgid "Format Trend Line..." -msgstr "Trendowu liniju formatować..." +msgstr "Trendowu liniju formatěrować..." #. AunGC #: ChartCommands.xcu @@ -6394,7 +6394,7 @@ "Label\n" "value.text" msgid "Format Trend Line Equation..." -msgstr "Runicu trendoweje linije formatować..." +msgstr "Runicu trendoweje linije formatěrować..." #. ho5Fo #: ChartCommands.xcu @@ -6424,7 +6424,7 @@ "Label\n" "value.text" msgid "Format Mean Value Line..." -msgstr "Liniju přerězneje hódnoty formatować..." +msgstr "Liniju přerězneje hódnoty formatěrować..." #. QZnBn #: ChartCommands.xcu @@ -6454,7 +6454,7 @@ "Label\n" "value.text" msgid "Format X Error Bars..." -msgstr "Zmylkowe hrjady X formatować..." +msgstr "Zmylkowe hrjady X formatěrować..." #. nLUhP #: ChartCommands.xcu @@ -6484,7 +6484,7 @@ "Label\n" "value.text" msgid "Format Y Error Bars..." -msgstr "Zmylkowe hrjady Y formatować..." +msgstr "Zmylkowe hrjady Y formatěrować..." #. r2zFH #: ChartCommands.xcu @@ -6514,7 +6514,7 @@ "Label\n" "value.text" msgid "Format Data Labels..." -msgstr "Datowe popisy formatować..." +msgstr "Datowe popisy formatěrować..." #. Zt2Yk #: ChartCommands.xcu @@ -6544,7 +6544,7 @@ "Label\n" "value.text" msgid "Format Single Data Label..." -msgstr "Jedyn datowy popis formatować..." +msgstr "Jedyn datowy popis formatěrować..." #. J5NGA #: ChartCommands.xcu @@ -6574,7 +6574,7 @@ "Label\n" "value.text" msgid "Format Data Series..." -msgstr "Datowy rjad formatować..." +msgstr "Datowy rjad formatěrować..." #. 2A33p #: ChartCommands.xcu @@ -6584,7 +6584,7 @@ "Label\n" "value.text" msgid "Format Data Point..." -msgstr "Datowy dypk formatować..." +msgstr "Datowy dypk formatěrować..." #. Gget5 #: ChartCommands.xcu @@ -6614,7 +6614,7 @@ "Label\n" "value.text" msgid "Format Stock Loss..." -msgstr "Stratu wobstatka formatować..." +msgstr "Stratu wobstatka formatěrować..." #. gVH2f #: ChartCommands.xcu @@ -6624,7 +6624,7 @@ "Label\n" "value.text" msgid "Format Stock Gain..." -msgstr "Dobytk wobstatka formatować..." +msgstr "Dobytk wobstatka formatěrować..." #. yp45D #: ChartCommands.xcu @@ -6914,7 +6914,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. aPW8y #: ChartWindowState.xcu @@ -7074,7 +7074,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. gT898 #: DbReportWindowState.xcu @@ -8984,7 +8984,7 @@ "Label\n" "value.text" msgid "Format Page" -msgstr "Stronu formatować" +msgstr "Stronu formatěrować" #. FbDxM #: DrawImpressCommands.xcu @@ -9004,7 +9004,7 @@ "Label\n" "value.text" msgid "Format Slide" -msgstr "Foliju formatować" +msgstr "Foliju formatěrować" #. GNR3n #: DrawImpressCommands.xcu @@ -11684,7 +11684,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. 8ZAuc #: DrawWindowState.xcu @@ -12024,7 +12024,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. fpibM #: DrawWindowState.xcu @@ -12144,7 +12144,7 @@ "UIName\n" "value.text" msgid "Text Formatting" -msgstr "Tekstowe formatowanje" +msgstr "Tekstowe formatěrowanje" #. wABDL #: DrawWindowState.xcu @@ -16014,7 +16014,7 @@ "Name\n" "value.text" msgid "Navigate" -msgstr "Nawigować" +msgstr "Nawigěrować" #. 2yKvJ #: GenericCategories.xcu @@ -17484,7 +17484,7 @@ "Label\n" "value.text" msgid "Flowchart: Display" -msgstr "Wotběhowy diagram: Zwobraznjenje" +msgstr "Wotběhowy diagram: Pokazka" #. KDopC #: GenericCommands.xcu @@ -18454,7 +18454,7 @@ "Label\n" "value.text" msgid "Search Formatted Display String" -msgstr "Formatowane znamješkowe rjećazki pytać" +msgstr "Sformatěrowane znamješkowe rjećazki pytać" #. hoECC #: GenericCommands.xcu @@ -20356,7 +20356,7 @@ "Label\n" "value.text" msgid "Show Formatting" -msgstr "Formatowanje pokazać" +msgstr "Formatěrowanje pokazać" #. jgLRo #: GenericCommands.xcu @@ -20696,7 +20696,7 @@ "Label\n" "value.text" msgid "Formatted Field" -msgstr "Formatowane polo" +msgstr "Sformatěrowane polo" #. Ra3DV #: GenericCommands.xcu @@ -22136,7 +22136,7 @@ "ContextLabel\n" "value.text" msgid "Clone Formatting" -msgstr "Formatowanje klonować" +msgstr "Formatěrowanje klonować" #. 7uXaL #: GenericCommands.xcu @@ -22146,7 +22146,7 @@ "TooltipLabel\n" "value.text" msgid "Clone Formatting (double click for multi-selection)" -msgstr "Formatowanje klonować (dwójne kliknjenje za wjacory wuběr)" +msgstr "Formatěrowanje klonować (dwójne kliknjenje za wjacory wuběr)" #. Kx4N5 #: GenericCommands.xcu @@ -22206,7 +22206,7 @@ "Label\n" "value.text" msgid "Paste Unformatted Text" -msgstr "Njeformatowany tekst zasadźić" +msgstr "Njeformatěrowany tekst zasadźić" #. eC9Aj #: GenericCommands.xcu @@ -22216,7 +22216,7 @@ "PopupLabel\n" "value.text" msgid "~Unformatted Text" -msgstr "~Njeformatowany tekst" +msgstr "~Njeformatěrowany tekst" #. nWivr #: GenericCommands.xcu @@ -23206,7 +23206,7 @@ "ContextLabel\n" "value.text" msgid "Clear ~Direct Formatting" -msgstr "~Direktne formatowanje wotstronić" +msgstr "~Direktne formatěrowanje wotstronić" #. knBUW #: GenericCommands.xcu @@ -23216,7 +23216,7 @@ "TooltipLabel\n" "value.text" msgid "Clear Direct Formatting" -msgstr "Direktne formatowanje zhašeć" +msgstr "Direktne formatěrowanje zhašeć" #. yPMEe #: GenericCommands.xcu @@ -25046,7 +25046,7 @@ "Label\n" "value.text" msgid "Formatted Field" -msgstr "Formatowane polo" +msgstr "Sformatěrowane polo" #. QWesw #: GenericCommands.xcu @@ -25256,7 +25256,7 @@ "Label\n" "value.text" msgid "Replace with Formatted Field" -msgstr "Z formatowanym polom wuměnić" +msgstr "Z sformatěrowanym polom wuměnić" #. Ga7yE #: GenericCommands.xcu @@ -25636,7 +25636,7 @@ "Label\n" "value.text" msgid "Format All Comments" -msgstr "Wšě komentary formatować" +msgstr "Wšě komentary formatěrować" #. daD6s #: GenericCommands.xcu @@ -26226,7 +26226,7 @@ "Label\n" "value.text" msgid "Formatting Mark" -msgstr "Formatowanske znamješko" +msgstr "Formatěrowanske znamješko" #. FbCCL #: GenericCommands.xcu @@ -26846,7 +26846,7 @@ "Label\n" "value.text" msgid "Navigate" -msgstr "Nawigować" +msgstr "Nawigěrować" #. 3Bg25 #: GenericCommands.xcu @@ -27326,7 +27326,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. 5eXvx #: ImpressWindowState.xcu @@ -27606,7 +27606,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. oiWFi #: ImpressWindowState.xcu @@ -27866,7 +27866,7 @@ "UIName\n" "value.text" msgid "Text Formatting" -msgstr "Tekstowe formatowanje" +msgstr "Tekstowe formatěrowanje" #. kAM8r #: ImpressWindowState.xcu @@ -28496,7 +28496,7 @@ "Label\n" "value.text" msgid "~Conditional Formatting..." -msgstr "Wu~měnjene formatowanje..." +msgstr "Wu~měnjene formatěrowanje..." #. ExGip #: ReportCommands.xcu @@ -28526,7 +28526,7 @@ "Label\n" "value.text" msgid "~Clear Direct Formatting" -msgstr "~Direktne formatowanje zhašeć" +msgstr "~Direktne formatětowanje zhašeć" #. ti7jv #: ReportCommands.xcu @@ -28796,7 +28796,7 @@ "Label\n" "value.text" msgid "Select all Formatted Fields" -msgstr "Wšě formatowane pola wubrać" +msgstr "Wšě sformatěrowane pola wubrać" #. REJMA #: ReportCommands.xcu @@ -32296,7 +32296,7 @@ "ContextLabel\n" "value.text" msgid "Clear ~Direct Formatting" -msgstr "~Direktne formatowanje wotstronić" +msgstr "~Direktne formatěrowanje wotstronić" #. eogPF #: WriterCommands.xcu @@ -32306,7 +32306,7 @@ "TooltipLabel\n" "value.text" msgid "Clear Direct Formatting" -msgstr "Direktne formatowanje zhašeć" +msgstr "Direktne formatěrowanje zhašeć" #. ADpEh #: WriterCommands.xcu @@ -33616,7 +33616,7 @@ "Label\n" "value.text" msgid "Page Formatting" -msgstr "Formatowanje strony" +msgstr "Formatěrowanje strony" #. neAhV #: WriterCommands.xcu @@ -33626,7 +33626,7 @@ "PopupLabel\n" "value.text" msgid "Update Page Formatting" -msgstr "Formatowanje strony aktualizować" +msgstr "Formatěrowanje strony aktualizować" #. yyVam #: WriterCommands.xcu @@ -34716,7 +34716,7 @@ "Label\n" "value.text" msgid "Formatting Marks" -msgstr "Formatowanske znamješka" +msgstr "Formatěrowanske znamješka" #. FFNXc #: WriterCommands.xcu @@ -34736,7 +34736,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Formatting Marks" -msgstr "Formatowanske znamješka přepinać" +msgstr "Formatěrowanske znamješka přepinać" #. 2GDoU #: WriterCommands.xcu @@ -34826,7 +34826,7 @@ "Label\n" "value.text" msgid "Remove Direct Character Formats" -msgstr "Direktne znamješkowe formatowanja wotstronić" +msgstr "Direktne znamješkowe formatěrowanja wotstronić" #. ExWEB #: WriterCommands.xcu @@ -34906,7 +34906,7 @@ "ContextLabel\n" "value.text" msgid "Clone Formatting" -msgstr "Formatowanje klonować" +msgstr "Formatěrowanje klonować" #. 59EAt #: WriterCommands.xcu @@ -34916,7 +34916,7 @@ "TooltipLabel\n" "value.text" msgid "Clone Formatting (double click and Ctrl or Cmd to alter behavior)" -msgstr "Formatowanje klonować (klikńće dwójce a Strg abo Cmd, zo byšće zadźeržanje změnił)" +msgstr "Formatěrowanje klonować (klikńće dwójce a Strg abo Cmd, zo byšće zadźeržanje změnił)" #. VToen #: WriterCommands.xcu @@ -35166,7 +35166,7 @@ "PopupLabel\n" "value.text" msgid "~Format All Comments..." -msgstr "Wšě komentary ~formatować..." +msgstr "Wšě komentary ~formatěrować..." #. kivrj #: WriterCommands.xcu @@ -35276,7 +35276,7 @@ "Label\n" "value.text" msgid "Navigate By" -msgstr "Nawigować po" +msgstr "Nawigěrować po" #. 2bsCo #: WriterCommands.xcu @@ -35646,7 +35646,7 @@ "Label\n" "value.text" msgid "Pre~formatted Text" -msgstr "~Předformatowany tekst" +msgstr "~Předformatěrowany tekst" #. nGLkD #: WriterCommands.xcu @@ -35656,7 +35656,7 @@ "Label\n" "value.text" msgid "Pre~formatted Text" -msgstr "~Předformatowany tekst" +msgstr "~Předformatěrowany tekst" #. 6KDdJ #: WriterCommands.xcu @@ -35666,7 +35666,7 @@ "TooltipLabel\n" "value.text" msgid "Preformatted Text Paragraph Style" -msgstr "Wotstawkowa předłoha Předformatowany tekst" +msgstr "Wotstawkowa předłoha Předformatěrowany tekst" #. fQ4qE #: WriterCommands.xcu @@ -36376,7 +36376,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. qwMqS #: WriterFormWindowState.xcu @@ -36466,7 +36466,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. Bp5Du #: WriterFormWindowState.xcu @@ -36556,7 +36556,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. JRj52 #: WriterFormWindowState.xcu @@ -36866,7 +36866,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. B8gY2 #: WriterGlobalWindowState.xcu @@ -36966,7 +36966,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. 6QzrE #: WriterGlobalWindowState.xcu @@ -37046,7 +37046,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. pAEbK #: WriterGlobalWindowState.xcu @@ -37326,7 +37326,7 @@ "UIName\n" "value.text" msgid "Formatting (Styles)" -msgstr "Formatowanje (Předłohi)" +msgstr "Formatěrowanje (Předłohi)" #. ogQzM #: WriterReportWindowState.xcu @@ -37376,7 +37376,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. HzDhD #: WriterReportWindowState.xcu @@ -37466,7 +37466,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. FftME #: WriterReportWindowState.xcu @@ -37556,7 +37556,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. PFkcv #: WriterReportWindowState.xcu @@ -37846,7 +37846,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. 6fPVw #: WriterWebWindowState.xcu @@ -37946,7 +37946,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. BwCtL #: WriterWebWindowState.xcu @@ -38056,7 +38056,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. gwmKS #: WriterWebWindowState.xcu @@ -38286,7 +38286,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. Wo3oy #: WriterWindowState.xcu @@ -38406,7 +38406,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. UHYbB #: WriterWindowState.xcu @@ -38526,7 +38526,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. FE5oB #: WriterWindowState.xcu @@ -38936,7 +38936,7 @@ "UIName\n" "value.text" msgid "Formatting (Styles)" -msgstr "Formatowanje (Předłohi)" +msgstr "Formatěrowanje (Předłohi)" #. GqBDG #: XFormsWindowState.xcu @@ -38986,7 +38986,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. DTZxW #: XFormsWindowState.xcu @@ -39086,7 +39086,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. 89GBD #: XFormsWindowState.xcu @@ -39166,7 +39166,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formatowanje tekstoweho pola" +msgstr "Formatěrowanje tekstoweho pola" #. UQFwJ #: XFormsWindowState.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/reportdesign/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/reportdesign/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/reportdesign/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/reportdesign/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-28 07:37+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: 1516031280.000000\n" #. FBVr9 @@ -595,7 +595,7 @@ #: reportdesign/inc/strings.hrc:86 msgctxt "RID_STR_PROPTITLE_FORMATTED" msgid "Formatted Field" -msgstr "Formatowane polo" +msgstr "Sformatěrowane polo" #. aFQ9E #: reportdesign/inc/strings.hrc:87 @@ -643,7 +643,7 @@ #: reportdesign/inc/strings.hrc:94 msgctxt "RID_STR_UNDO_CONDITIONAL_FORMATTING" msgid "Conditional Formatting" -msgstr "Wuměnjene formatowanje" +msgstr "Wuměnjene formatěrowanje" #. o9ZV6 #: reportdesign/inc/strings.hrc:95 @@ -1076,7 +1076,7 @@ #: reportdesign/inc/strings.hrc:177 msgctxt "RID_STR_FORMATTEDFIELD" msgid "Formatted field" -msgstr "Formatowane polo" +msgstr "Sformatěrowane polo" #. ktd53 #: reportdesign/inc/strings.hrc:178 @@ -1160,7 +1160,7 @@ #: reportdesign/uiconfig/dbreport/ui/condformatdialog.ui:10 msgctxt "condformatdialog|CondFormat" msgid "Conditional Formatting" -msgstr "Wuměnjene formatowanje" +msgstr "Wuměnjene formatěrowanje" #. 4WAsE #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:53 @@ -1274,7 +1274,7 @@ #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:284 msgctxt "conditionwin|ToolBoxItem6" msgid "Character Formatting" -msgstr "Znamješkowe formatowanje" +msgstr "Znamješkowe formatěrowanje" #. PSCFe #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:365 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/sc/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/sc/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-21 15:35+0000\n" +"PO-Revision-Date: 2023-03-15 14: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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562190965.000000\n" #. kBovX @@ -2923,7 +2923,7 @@ "\n" " Do you want to edit the existing conditional format?" msgstr "" -"Wubrana cela hižo wuměnjene formatowanje wobsahuje. Móžeće pak eksistowacy wuměnjeny format wobdźěłać pak nowy wuměnjeny format definować.\n" +"Wubrana cela hižo wuměnjene formatěrowanje wobsahuje. Móžeće pak eksistowacy wuměnjeny format wobdźěłać pak nowy wuměnjeny format definować.\n" "\n" " Chceće eksistowacy wuměnjeny format wobdźěłać?" @@ -3081,13 +3081,13 @@ #: sc/inc/globstr.hrc:512 msgctxt "STR_UNDO_CONDFORMAT" msgid "Conditional Format" -msgstr "Wuměnjene formatowanje" +msgstr "Wuměnjene formatěrowanje" #. RJBPt #: sc/inc/globstr.hrc:513 msgctxt "STR_UNDO_CONDFORMAT_LIST" msgid "Conditional Formats" -msgstr "Wuměnjene formatowanja" +msgstr "Wuměnjene formatěrowanja" #. G5NhD #: sc/inc/globstr.hrc:514 @@ -6280,7 +6280,7 @@ #: sc/inc/scfuncs.hrc:835 msgctxt "SC_OPCODE_CELL" msgid "Determines information about address, formatting or contents of a cell." -msgstr "Postaja informacije wo adresy, formatowanju abo wobsahu cele." +msgstr "Postaja informacije wo adresy, formatěrowanju abo wobsahu cele." #. G9SiV #: sc/inc/scfuncs.hrc:836 @@ -15234,7 +15234,7 @@ #: sc/inc/scfuncs.hrc:3747 msgctxt "SC_OPCODE_FIXED" msgid "Formats a number with a fixed number of places after the decimal point and thousands separator." -msgstr "Formatuje ličbu z krutej ličbu městnow za decimalnej komu a dypkom tysačnakow." +msgstr "Formatěruje ličbu z krutej ličbu městnow za decimalnej komu a dypkom tysačnakow." #. KZCZj #: sc/inc/scfuncs.hrc:3748 @@ -15246,7 +15246,7 @@ #: sc/inc/scfuncs.hrc:3749 msgctxt "SC_OPCODE_FIXED" msgid "The number to be formatted." -msgstr "Ličba, kotraž so ma formatować." +msgstr "Ličba, kotraž so ma formatěrować." #. ysgvz #: sc/inc/scfuncs.hrc:3750 @@ -19095,7 +19095,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:206 msgctxt "autoformattable|extended_tip|add" msgid "Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats." -msgstr "Zmóžnja wam, lisćinje předdefinowanych awtomatiskich formatow aktualne formatowanje wobłuka ze znajmjeńša 4 x 4 celemi přidać." +msgstr "Zmóžnja wam, lisćinje předdefinowanych awtomatiskich formatow aktualne formatěrowanje wobłuka ze znajmjeńša 4 x 4 celemi přidać." #. DYbCK #: sc/uiconfig/scalc/ui/autoformattable.ui:225 @@ -19197,7 +19197,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:413 msgctxt "autoformattable|label2" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. cBw2F #: sc/uiconfig/scalc/ui/autoformattable.ui:446 @@ -19557,7 +19557,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:18 msgctxt "condformatmanager|CondFormatManager" msgid "Manage Conditional Formatting" -msgstr "Wuměnjene formatowanje rjadować" +msgstr "Wuměnjene formatěrowanje rjadować" #. FZLBr #: sc/uiconfig/scalc/ui/condformatmanager.ui:129 @@ -19575,7 +19575,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 "Lisćina wuměnjenych formatow aktiwne prawidła wuměnjenych formatowanjow aktualneje tabele pokazuje." +msgstr "Lisćina wuměnjenych formatow aktiwne prawidła wuměnjenych formatěrowanjow aktualneje tabele pokazuje." #. rCgD4 #: sc/uiconfig/scalc/ui/condformatmanager.ui:173 @@ -19587,7 +19587,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:179 msgctxt "condformatmanager|extended_tip|add" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "Tu móžeće jedne wuměnjene formatowanje abo wjacore wuměnjene formatowanja přidać, wobdźěłać abo wotstronić." +msgstr "Tu móžeće jedne wuměnjene formatěrowanje abo wjacore wuměnjene formatěrowanja přidać, wobdźěłać abo wotstronić." #. 8XXd8 #: sc/uiconfig/scalc/ui/condformatmanager.ui:191 @@ -19599,7 +19599,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:197 msgctxt "condformatmanager|extended_tip|edit" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "Tu móžeće jedne wuměnjene formatowanje abo wjacore wuměnjene formatowanja přidać, wobdźěłać abo wotstronić." +msgstr "Tu móžeće jedne wuměnjene formatěrowanje abo wjacore wuměnjene formatěrowanja přidać, wobdźěłać abo wotstronić." #. oLc2f #: sc/uiconfig/scalc/ui/condformatmanager.ui:209 @@ -19611,19 +19611,19 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:215 msgctxt "condformatmanager|extended_tip|remove" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "Tu móžeće jedne wuměnjene formatowanje abo wjacore wuměnjene formatowanja přidać, wobdźěłać abo wotstronić." +msgstr "Tu móžeće jedne wuměnjene formatěrowanje abo wjacore wuměnjene formatěrowanja přidać, wobdźěłać abo wotstronić." #. dV9US #: sc/uiconfig/scalc/ui/condformatmanager.ui:238 msgctxt "condformatmanager|label1" msgid "Conditional Formats" -msgstr "Wuměnjene formatowanje" +msgstr "Wuměnjene formatěrowanje" #. yDqGa #: sc/uiconfig/scalc/ui/condformatmanager.ui:263 msgctxt "condformatmanager|extended_tip|CondFormatManager" msgid "This dialog allows you to see all the conditional formatting defined in the spreadsheet." -msgstr "Tutón dialog wam zmóžnja, wšě wuměnjene formatowanja widźeć, kotrež su w tabelowym dokumenće definowane." +msgstr "Tutón dialog wam zmóžnja, wšě wuměnjene formatěrowanja widźeć, kotrež su w tabelowym dokumenće definowane." #. E8ANs #: sc/uiconfig/scalc/ui/conditionalentry.ui:75 @@ -20199,7 +20199,7 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:8 msgctxt "conditionalformatdialog|ConditionalFormatDialog" msgid "Conditional Formatting for" -msgstr "Wuměnjene formatowanje za" +msgstr "Wuměnjene formatěrowanje za" #. PYsX2 #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:34 @@ -20223,7 +20223,7 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:185 msgctxt "conditionalformatdialog|extended_tip|add" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "Tu móžeće jedne wuměnjene formatowanje abo wjacore wuměnjene formatowanja přidać, wobdźěłać abo wotstronić." +msgstr "Tu móžeće jedne wuměnjene formatěrowanje abo wjacore wuměnjene formatěrowanja přidać, wobdźěłać abo wotstronić." #. ejKTF #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:204 @@ -20283,7 +20283,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 "Wubjerće Wuměnjene formatowanje, zo byšće formatowe předłohi wotwisujo wot wěstych wuměnjenjow definował." +msgstr "Wubjerće Wuměnjene formatěrowanje, zo byšće formatowe předłohi wotwisujo wot wěstych wuměnjenjow definował." #. XFw3E #: sc/uiconfig/scalc/ui/conditionaliconset.ui:22 @@ -20535,7 +20535,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:416 msgctxt "consolidatedialog|ftdataarea" msgid "_Source data ranges:" -msgstr "Wo_błuki žórłowych datow:" +msgstr "Wo_błuk žórłowych datow:" #. VZzRg #: sc/uiconfig/scalc/ui/consolidatedialog.ui:430 @@ -21909,7 +21909,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:405 msgctxt "definedatabaserangedialog|KeepFormatting" msgid "Keep _formatting" -msgstr "_Formatowanje wobchować" +msgstr "_Formatěrowanje wobchować" #. nwtDB #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:413 @@ -23109,7 +23109,7 @@ #: sc/uiconfig/scalc/ui/formatcellsdialog.ui:8 msgctxt "formatcellsdialog|FormatCellsDialog" msgid "Format Cells" -msgstr "Cele formatować" +msgstr "Cele formatěrować" #. ngekD #: sc/uiconfig/scalc/ui/formatcellsdialog.ui:138 @@ -23895,7 +23895,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:617 msgctxt "headerfootercontent|extended_tip|HeaderFooterContent" msgid "Defines or formats a header or footer for a Page Style." -msgstr "Definuje abo formatuje hłowowu abo nohowu linku za předłohu strony." +msgstr "Definuje abo formatěruje hłowowu abo nohowu linku za předłohu strony." #. CAMCt #: sc/uiconfig/scalc/ui/headerfooterdialog.ui:8 @@ -26237,7 +26237,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1433 msgctxt "notebookbar_groups|conditionalb" msgid "Conditional" -msgstr "Wuměnjene formatowanje" +msgstr "Wuměnjene formatěrowanje" #. gDAQ5 #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1554 @@ -27479,7 +27479,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:374 msgctxt "pastespecial|extended_tip|formats" msgid "Inserts cell format attributes." -msgstr "Zasadźuje celowe formatowanja." +msgstr "Zasadźuje celowe formatěrowanja." #. vAFRC #: sc/uiconfig/scalc/ui/pastespecial.ui:385 @@ -29201,13 +29201,13 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:246 msgctxt "scgeneralpage|formatcb" msgid "Expand _formatting" -msgstr "_Formatowanje rozšěrić" +msgstr "_Formatěrowanje rozšěrić" #. 8fqgH #: 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 formatowanske atributry wubraneje cele awtomatisce na prózdne susodne cele nałožić." +msgstr "Podawa, hač so maja formatěrowanske atributry wubraneje cele awtomatisce na prózdne susodne cele nałožić." #. AzkVC #: sc/uiconfig/scalc/ui/scgeneralpage.ui:266 @@ -29639,7 +29639,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 "Kedźbu: Změny formatowanskich atributow kaž pismow, barbow a ličbnych formatow njebudu so składować a někotre funkcije kaž wobdźěłowanje diagramow a rysowanskich objektow w dźělenym modusu k dispoziciji njejsu. Znjemóžńće dźěleny modus, zo byšće ekskluziwny přistup na te změny a funkcije dóstał." +msgstr "Kedźbu: Změny formatěrowanskich atributow kaž pismow, barbow a ličbnych formatow njebudu so składować a někotre funkcije kaž wobdźěłowanje diagramow a rysowanskich objektow w dźělenym modusu k dispoziciji njejsu. Znjemóžńće dźěleny modus, zo byšće ekskluziwny přistup na te změny a funkcije dóstał." #. dQz77 #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:190 @@ -29669,7 +29669,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 formatowanskich atributow kaž pismow, barbow a ličbnych formatow njebudu so składować a někotre funkcije kaž wobdźěłowanje diagramow a rysowanskich objektow w dźělenym modusu k dispoziciji njejsu. Znjemóžńće dźěleny modus, zo byšće ekskluziwny přistup na te změny a funkcije dóstał." +msgstr "Změny formatěrowanskich atributow kaž pismow, barbow a ličbnych formatow njebudu so składować a někotre funkcije kaž wobdźěłowanje diagramow a rysowanskich objektow w dźělenym modusu k dispoziciji njejsu. Znjemóžńće dźěleny modus, zo byšće ekskluziwny přistup na te změny a funkcije dóstał." #. AWccB #: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:32 @@ -30257,7 +30257,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:202 msgctxt "sidebarnumberformat|leadingzeroeslabel" msgid "Leading _zeroes:" -msgstr "Zawodne n_ule:" +msgstr "Načolne n_ule:" #. 35pSE #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:215 @@ -30269,7 +30269,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:221 msgctxt "sidebarnumberformat|leadingzeroes-atkobject" msgid "Leading Zeroes" -msgstr "Zawodne nule" +msgstr "Načolne nule" #. jkDKD #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:232 @@ -30887,7 +30887,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:56 msgctxt "sortoptionspage|extended_tip|formats" msgid "Preserves the current cell formatting." -msgstr "Wobchowuje aktualne celowe formatowanje." +msgstr "Wobchowuje aktualne celowe formatěrowanje." #. Gtck5 #: sc/uiconfig/scalc/ui/sortoptionspage.ui:67 @@ -31997,7 +31997,7 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:178 msgctxt "subtotaloptionspage|extended_tip|formats" msgid "Considers formatting attributes when sorting." -msgstr "Wobkedźbuje formatowanske atributy při sortěrowanju." +msgstr "Wobkedźbuje formatěrowanske atributy při sortěrowanju." #. 4rGHy #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:189 @@ -32237,7 +32237,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:590 msgctxt "textimportcsv|quotedfieldastext" msgid "F_ormat quoted field as text" -msgstr "P_olo w pazorkach jako tekst formatować" +msgstr "P_olo w pazorkach jako tekst formatěrować" #. VAC6B #: sc/uiconfig/scalc/ui/textimportcsv.ui:598 @@ -32453,7 +32453,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 "Markěrujće polo Hódnotu wuzběhnyć, zo byšće celowy wobsah w rozdźělnych barbach wotwisujo wot typa pokazał. Tekstowe cele so čorne, formle zelene, ličbne cele módre a škitane cele ze swětłošěrym pozadkom formatuja, njewotwisujo wot toho, kak jich pokazanje je formatowane." +msgstr "Markěrujće polo Hódnotu wuzběhnyć, zo byšće celowy wobsah w rozdźělnych barbach wotwisujo wot typa pokazał. Tekstowe cele so čorne, formle zelene, ličbne cele módre a škitane cele ze swětłošěrym pozadkom formatěruja, njewotwisujo wot toho, kak jich pokazanje je sformatěrowane." #. ah84V #: sc/uiconfig/scalc/ui/tpviewpage.ui:102 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/sd/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/sd/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:12+0100\n" -"PO-Revision-Date: 2022-12-21 15:34+0000\n" +"PO-Revision-Date: 2023-03-12 10:33+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: 1562191169.000000\n" #. WDjkB @@ -9598,7 +9598,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.5.1~rc2/translations/source/hsb/sfx2/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/sfx2/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/sfx2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/sfx2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-09 11:30+0100\n" -"PO-Revision-Date: 2022-12-21 15:34+0000\n" +"PO-Revision-Date: 2023-03-18 02: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: 1559596982.000000\n" #. bHbFE @@ -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 @@ -2769,7 +2769,7 @@ #: sfx2/uiconfig/ui/alienwarndialog.ui:13 msgctxt "alienwarndialog|AlienWarnDialog" msgid "This document may contain formatting or content that cannot be saved in the currently selected file format “%FORMATNAME”." -msgstr "Tutón dokument móže formatowanja abo wobsah wobsahować, kotrež njedadźa so w tuchwilu wubranym datajowym formaće „%FORMATNAME“ składować." +msgstr "Tutón dokument móže formatěrowanja abo wobsah wobsahować, kotrež njedadźa so w tuchwilu wubranym datajowym formaće „%FORMATNAME“ składować." #. 3YA5c #: sfx2/uiconfig/ui/alienwarndialog.ui:14 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/starmath/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/starmath/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/starmath/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/starmath/messages.po 2023-03-24 16:53:38.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-10-10 13:36+0200\n" -"PO-Revision-Date: 2023-02-19 19:03+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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" @@ -2846,7 +2846,7 @@ #: starmath/uiconfig/smath/ui/fontdialog.ui:211 msgctxt "fontdialog|extended_tip|bold" msgid "Check this box to assign the bold attribute to the font." -msgstr "Wubjerće tutón kašćik, zo byšće pismo tučnje formatował." +msgstr "Wubjerće tutón kašćik, zo byšće pismo tučnje formatěrował." #. mBw2w #: starmath/uiconfig/smath/ui/fontdialog.ui:222 @@ -2858,7 +2858,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 "Wubjerće tutón kašćik, zo byšće pismo kursiwnje formatował." +msgstr "Wubjerće tutón kašćik, zo byšće pismo kursiwnje formatěrował." #. uvvT5 #: starmath/uiconfig/smath/ui/fontdialog.ui:245 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/svtools/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/svtools/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/svtools/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/svtools/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-21 15:35+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559327187.000000\n" #. fLdeV @@ -40,13 +40,13 @@ #: include/svtools/strings.hrc:30 msgctxt "STR_FORMAT_STRING" msgid "Unformatted text" -msgstr "Njeformatowany tekst" +msgstr "Njesformatěrowany tekst" #. FaGBp #: include/svtools/strings.hrc:31 msgctxt "STR_FORMAT_ID_STRING_TSVC" msgid "Unformatted text (TSV-Calc)" -msgstr "Njeformatowany tekst (TSV-Calc)" +msgstr "Njesformatěrowany tekst (TSV-Calc)" #. U29gL #: include/svtools/strings.hrc:32 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/svx/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/svx/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-02-02 12:19+0000\n" +"PO-Revision-Date: 2023-03-12 10:33+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: 1559327200.000000\n" #. 3GkZj @@ -3018,7 +3018,7 @@ #: include/svx/strings.hrc:528 msgctxt "STR_TABLE_NUMFORMAT" msgid "Format cell" -msgstr "Celu formatować" +msgstr "Celu formatěrować" #. pSCJC #: include/svx/strings.hrc:529 @@ -6194,7 +6194,7 @@ #: include/svx/strings.hrc:1114 msgctxt "RID_SVXSTR_CLEARFORM" msgid "Clear formatting" -msgstr "Formatowanje wotstronić" +msgstr "Formatěrowanje wotstronić" #. f6nP8 #: include/svx/strings.hrc:1115 @@ -6814,7 +6814,7 @@ #: include/svx/strings.hrc:1226 msgctxt "RID_STR_PROPTITLE_FORMATTED" msgid "Formatted Field" -msgstr "Formatowane polo" +msgstr "Sformatěrowane polo" #. V4iMu #: include/svx/strings.hrc:1228 @@ -7541,13 +7541,13 @@ #: include/svx/strings.hrc:1352 msgctxt "RID_SVXSTR_SEARCH" msgid "Search for formatting" -msgstr "Za formatowanjom pytać" +msgstr "Za formatěrowanjom pytać" #. K6Ave #: include/svx/strings.hrc:1353 msgctxt "RID_SVXSTR_REPLACE" msgid "Replace with formatting" -msgstr "Z formatowanjom wuměnić" +msgstr "Z formatěrowanjom wuměnić" #. USdBy #: include/svx/strings.hrc:1354 @@ -7829,7 +7829,7 @@ #: include/svx/strings.hrc:1408 msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED" msgid "Formatted Display" -msgstr "Formatowane zwobraznjenje" +msgstr "Sformatěrowana pokazka" #. hAmnh #: include/svx/strings.hrc:1410 @@ -15768,7 +15768,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:53 msgctxt "dockingfontwork|extended_tip|off" msgid "Removes baseline formatting." -msgstr "Wotstronja formatowanje zakładneje." +msgstr "Wotstronja formatěrowanje zakładneje." #. bEChS #: svx/uiconfig/ui/dockingfontwork.ui:75 @@ -16206,7 +16206,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 @@ -16458,13 +16458,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:221 msgctxt "findreplacedialog|searchformatted" msgid "For_matted display" -msgstr "Formatowane zwobraznjenje" +msgstr "Sfor_matěrowana pokazka" #. vzB7B #: svx/uiconfig/ui/findreplacedialog.ui:229 msgctxt "findreplacedialog|extended_tip|searchformatted" msgid "Includes number formatting characters in the search." -msgstr "Zapřijima znamješka za formatowanje ličbow do pytanja." +msgstr "Zapřijima znamješka za formatěrowanje ličbow do pytanja." #. eTjvm #: svx/uiconfig/ui/findreplacedialog.ui:245 @@ -16632,7 +16632,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:810 msgctxt "findreplacedialog|extended_tip|layout" msgid "Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Find list. To specify a replacement style, select a style from the Replace list." -msgstr "Pyta za tekstom, kotryž je z podatej předłohu formatowany. Wubjerće tutón kontrolny kašćik a wubjerće potom předłohu z lisćiny Pytać. Wubjerće předłohu z lisćiny Wuměnić, zo byšće narunansku předłohu podał." +msgstr "Pyta za tekstom, kotryž je z podatej předłohu sformatěrowany. Wubjerće tutón kontrolny kašćik a wubjerće potom předłohu z lisćiny Pytać. Wubjerće předłohu z lisćiny Wuměnić, zo byšće narunansku předłohu podał." #. wjEUp #: svx/uiconfig/ui/findreplacedialog.ui:821 diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/sw/messages.po libreoffice-7.5.2~rc2/translations/source/hsb/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/hsb/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/sw/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-21 15:34+0000\n" +"PO-Revision-Date: 2023-03-18 02: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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562190634.000000\n" #. v3oJv @@ -104,7 +104,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:30 msgctxt "STR_AVOID_TABS_FORMATTING" msgid "Avoid using tabs for formatting." -msgstr "Rajtarki za formatowanje wobeńć." +msgstr "Rajtarki za formatěrowanje wobeńć." #. qhNEG #: sw/inc/AccessibilityCheckStrings.hrc:31 @@ -116,7 +116,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:32 msgctxt "STR_TEXT_FORMATTING_CONVEYS_MEANING" msgid "The text formatting conveys additional meaning." -msgstr "Tekstowe formatowanje ma dalši woznam." +msgstr "Tekstowe formatěrowanje ma dalši woznam." #. MXVBm #: sw/inc/AccessibilityCheckStrings.hrc:33 @@ -152,7 +152,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:38 msgctxt "STR_TABLE_FORMATTING" msgid "Avoid using empty table cells for formatting." -msgstr "Wobeńdźće prózdne tabelowe cele za formatowanje." +msgstr "Wobeńdźće prózdne tabelowe cele za formatěrowanje." #. UWv4T #: sw/inc/AccessibilityCheckStrings.hrc:40 @@ -721,13 +721,13 @@ #: sw/inc/inspectorproperties.hrc:31 msgctxt "RID_CHAR_DIRECTFORMAT" msgid "Character Direct Formatting" -msgstr "Direktne znamješkowe formatowanje" +msgstr "Direktne znamješkowe formatěrowanje" #. fYAUc #: sw/inc/inspectorproperties.hrc:32 msgctxt "RID_PARA_DIRECTFORMAT" msgid "Paragraph Direct Formatting" -msgstr "Direktne wotstawkowe formatowanje" +msgstr "Direktne wotstawkowe formatěrowanje" #. YUbUQ #. Format names @@ -1628,7 +1628,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 @@ -3334,7 +3334,7 @@ #: sw/inc/strings.hrc:198 msgctxt "STR_POOLCOLL_HTML_PRE" msgid "Preformatted Text" -msgstr "Předformatowany tekst" +msgstr "Předformatěrowany tekst" #. AA9gY #: sw/inc/strings.hrc:199 @@ -3721,7 +3721,7 @@ #: sw/inc/strings.hrc:272 msgctxt "STR_STATSTR_AUTOFORMAT" msgid "Formatting document automatically..." -msgstr "Dokument so awtomatisce formatuje..." +msgstr "Dokument so awtomatisce formatěruje..." #. APY2j #: sw/inc/strings.hrc:273 @@ -3835,7 +3835,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 @@ -4833,7 +4833,7 @@ #: sw/inc/strings.hrc:465 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:466 @@ -5007,7 +5007,7 @@ #: sw/inc/strings.hrc:494 msgctxt "STR_UNDO_TABLE_AUTOFMT" msgid "AutoFormat Table" -msgstr "Tabelu awtomatisce formatować" +msgstr "Tabelu awtomatisce formatěrować" #. AAPTL #: sw/inc/strings.hrc:495 @@ -5055,7 +5055,7 @@ #: sw/inc/strings.hrc:502 msgctxt "STR_TABLE_NUMFORMAT" msgid "Format cell" -msgstr "Celu formatować" +msgstr "Celu formatěrować" #. UbSKw #: sw/inc/strings.hrc:503 @@ -5267,7 +5267,7 @@ #: sw/inc/strings.hrc:536 msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT" msgid "Paragraph formatting changed" -msgstr "Wotstawkowe formatowanje změnjene" +msgstr "Wotstawkowe formatěrowanje změnjene" #. nehrq #: sw/inc/strings.hrc:537 @@ -6010,7 +6010,7 @@ #: sw/inc/strings.hrc:667 msgctxt "STR_OUTLINE_LEVEL" msgid "Outline Level" -msgstr "Rozrjadowa runina" +msgstr "Rozrjadowanska runina" #. yERK6 #: sw/inc/strings.hrc:668 @@ -9117,7 +9117,7 @@ #: sw/inc/strings.hrc:1248 msgctxt "STR_REDLINE_FORMAT" msgid "Formatted" -msgstr "Formatowany" +msgstr "Sformatěrowany" #. YWr7C #: sw/inc/strings.hrc:1249 @@ -9135,7 +9135,7 @@ #: sw/inc/strings.hrc:1251 msgctxt "STR_REDLINE_PARAGRAPH_FORMAT" msgid "Paragraph formatting changed" -msgstr "Wotstawkowe formatowanje změnjene" +msgstr "Wotstawkowe formatěrowanje změnjene" #. wLDkj #: sw/inc/strings.hrc:1252 @@ -9249,7 +9249,7 @@ #: sw/inc/strings.hrc:1270 msgctxt "STR_FORMAT_HEADER" msgid "Format Header..." -msgstr "Hłowowu linku formatować..." +msgstr "Hłowowu linku formatěrować..." #. DrAUe #: sw/inc/strings.hrc:1271 @@ -9261,7 +9261,7 @@ #: sw/inc/strings.hrc:1272 msgctxt "STR_FORMAT_FOOTER" msgid "Format Footer..." -msgstr "Nohowu linku formatować..." +msgstr "Nohowu linku formatěrować..." #. ApT5B #: sw/inc/strings.hrc:1274 @@ -10288,7 +10288,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 @@ -10300,13 +10300,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:168 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:186 @@ -10546,7 +10546,7 @@ #: sw/uiconfig/swriter/ui/annotation.ui:96 msgctxt "annotationmenu|formatall" msgid "Format All Comments..." -msgstr "Wšě komentary formatować..." +msgstr "Wšě komentary formatěrować..." #. NPgr3 #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:8 @@ -11038,7 +11038,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:336 msgctxt "autoformattable|extended_tip|fontcb" msgid "Includes font formatting in the selected table style." -msgstr "Zapřijima pismowe formatowanja do wubraneje tabeloweje předłohi." +msgstr "Zapřijima pismowe formatěrowanja do wubraneje tabeloweje předłohi." #. BG3bD #: sw/uiconfig/swriter/ui/autoformattable.ui:347 @@ -11068,7 +11068,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:392 msgctxt "autoformattable|label2" msgid "Formatting" -msgstr "Formatowanje" +msgstr "Formatěrowanje" #. DFUNM #: sw/uiconfig/swriter/ui/autoformattable.ui:422 @@ -11308,7 +11308,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:575 msgctxt "autotext|extended_tip|AutoTextDialog" msgid "Creates, edits, or inserts AutoText. You can store formatted text, text with graphics, tables, and fields as AutoText. To quickly insert AutoText, type the shortcut for the AutoText in your document, and then press F3." -msgstr "Wutworja, wobdźěłuje abo zasadźuje awtomatiski tekst. Móžeće formatowany tekst, tekst z grafikami a pola jako awtomatiski tekst składować. Zo byšće awtomatiski tekst spěšnje zasadźił, zapodajće tastowu skrótšenku za awtomatiski tekst w swojim dokumenće a tłóčće potom F3." +msgstr "Wutworja, wobdźěłuje abo zasadźuje awtomatiski tekst. Móžeće sformatěrowany tekst, tekst z grafikami a pola jako awtomatiski tekst składować. Zo byšće awtomatiski tekst spěšnje zasadźił, zapodajće tastowu skrótšenku za awtomatiski tekst w swojim dokumenće a tłóčće potom F3." #. XKQvW #: sw/uiconfig/swriter/ui/bibliofragment.ui:45 @@ -11488,7 +11488,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 @@ -11872,7 +11872,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 @@ -12214,13 +12214,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 "Wubjerće formatowu předłohu z lisćiny za wopytane wotkazy. Zo byšće předłohu w tutej lisćinje přidał abo změnił, začińće tutón dialog a klikńće na symbol „Předłohi“ we formatowanskej lajsće." +msgstr "Wubjerće formatowu předłohu z lisćiny za wopytane wotkazy. Zo byšće předłohu w tutej lisćinje přidał abo změnił, začińće tutón dialog a klikńće na symbol „Předłohi“ we formatěrowanskej lajsće." #. 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 "Wubjerće formatowu předłohu z lisćiny za njewopytane wotkazy. Zo byšće předłohu w tutej lisćinje přidał abo změnił, začińće tutón dialog a klikńće na symbol „Předłohi“ we formatowanskej lajsće." +msgstr "Wubjerće formatowu předłohu z lisćiny za njewopytane wotkazy. Zo byšće předłohu w tutej lisćinje přidał abo změnił, začińće tutón dialog a klikńće na symbol „Předłohi“ we formatěrowanskej lajsće." #. 43fvG #: sw/uiconfig/swriter/ui/charurlpage.ui:308 @@ -12538,7 +12538,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 @@ -12616,61 +12616,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 @@ -12964,7 +12964,7 @@ #: 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 "Formatuje prěnju linku noweje tabele jako nadpismo." +msgstr "Formatěruje prěnju linku noweje tabele jako nadpismo." #. XqGoL #: sw/uiconfig/swriter/ui/converttexttable.ui:289 @@ -13060,7 +13060,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 @@ -13072,7 +13072,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 @@ -13084,7 +13084,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 @@ -13096,19 +13096,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 @@ -13378,7 +13378,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:346 msgctxt "dropcapspage|extended_tip|DropCapPage" msgid "Formats the first letter of a paragraph with a large capital letter, that can span several lines. The paragraph must span at least as many lines as you specify in the Lines box." -msgstr "Formatuje prěni pismik wotstawka z inicialom, kotryž móže so po wjacorych linkach wupřestrěwać. Wotstawk dyrbi so znajmjeńša po telko linkach wupřestrěwać, kotrež w polu „Linki“ podawaće." +msgstr "Formatěruje prěni pismik wotstawka z inicialom, kotryž móže so po wjacorych linkach wupřestrěwać. Wotstawk dyrbi so znajmjeńša po telko linkach wupřestrěwać, kotrež w polu „Linki“ podawaće." #. dkjDS #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:16 @@ -13876,7 +13876,7 @@ #: sw/uiconfig/swriter/ui/endnotepage.ui:313 msgctxt "endnotepage|extended_tip|EndnotePage" msgid "Specifies the formatting for endnotes." -msgstr "Podawa formatowanje za kónčne nóžki." +msgstr "Podawa formatěrowanje za kónčne nóžki." #. eMZQa #: sw/uiconfig/swriter/ui/envaddresspage.ui:49 @@ -15549,7 +15549,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:510 msgctxt "footnotepage|extended_tip|FootnotePage" msgid "Specifies the formatting for footnotes." -msgstr "Podawa formatowanje za nóžki." +msgstr "Podawa formatěrowanje za nóžki." #. MV5EC #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:51 @@ -17643,7 +17643,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 "Wubjerće kategoriju popisa abo zapodajće mjeno, zo byšće nowu kategoriju wutworił. Tekst kategorije so před čisłom popisa w mjenje popisa jewi. Kóžda předdefinowana kategorija popisa so z wotstawkowej předłohu ze samsnym mjenom formatuje." +msgstr "Wubjerće kategoriju popisa abo zapodajće mjeno, zo byšće nowu kategoriju wutworił. Tekst kategorije so před čisłom popisa w mjenje popisa jewi. Kóžda předdefinowana kategorija popisa so z wotstawkowej předłohu ze samsnym mjenom formatěruje." #. rJDNR #: sw/uiconfig/swriter/ui/insertcaption.ui:330 @@ -20655,13 +20655,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 @@ -20781,7 +20781,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:273 msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT" msgid "Outline Folding" -msgstr "Rozrjadowe fałdowanje" +msgstr "Rozrjadowanske fałdowanje" #. EBK2E #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:293 @@ -21027,7 +21027,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 @@ -21057,25 +21057,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 @@ -22522,19 +22522,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 @@ -22606,7 +22606,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 @@ -22744,7 +22744,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 @@ -23054,7 +23054,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:227 msgctxt "optcompatpage|format" msgid "Use OpenOffice.org 1.1 tabstop formatting" -msgstr "Tabulatorowe formatowanje OpenOffice.org 1.1 wužiwać" +msgstr "Tabulatorowe formatěrowanje OpenOffice.org 1.1 wužiwać" #. zmokm #: sw/uiconfig/swriter/ui/optcompatpage.ui:228 @@ -23354,7 +23354,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 "Pokazuje tekst, kotryž znamješkowy format „schowany“ wužiwa, hdyž meni „Napohlad - Formatowanske znamješka“ je zmóžnjeny." +msgstr "Pokazuje tekst, kotryž znamješkowy format „schowany“ wužiwa, hdyž meni „Napohlad - Formatěrowanske znamješka“ je zmóžnjeny." #. ubosK #: sw/uiconfig/swriter/ui/optformataidspage.ui:167 @@ -23376,7 +23376,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:259 msgctxt "optformataidspage|displayfl" msgid "Display Formatting" -msgstr "Formatowanje pokazać" +msgstr "Formatěrowanje pokazać" #. ufN3R #: sw/uiconfig/swriter/ui/optformataidspage.ui:287 @@ -23910,7 +23910,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:68 msgctxt "extended_tip|header" msgid "Specifies that the first row of the table is formatted with the \"Table heading\" Paragraph Style." -msgstr "Podawa, zo so prěnja linka tabele z wotstawkowej předłohu „Tabelowe nadpismo“ formatuje." +msgstr "Podawa, zo so prěnja linka tabele z wotstawkowej předłohu „Tabelowe nadpismo“ formatěruje." #. pUDwB #: sw/uiconfig/swriter/ui/opttablepage.ui:79 @@ -23964,7 +23964,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:181 msgctxt "extended_tip|numformatting" msgid "Specifies that numbers in a text table are recognized and formatted as numbers." -msgstr "Podawa, zo so ličby w tekstowej tabeli spóznawaja a jako ličby formatuja." +msgstr "Podawa, zo so ličby w tekstowej tabeli spóznawaja a jako ličby formatěruja." #. U6v8M #: sw/uiconfig/swriter/ui/opttablepage.ui:192 @@ -24288,7 +24288,7 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:243 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:259 @@ -25006,7 +25006,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 @@ -27346,7 +27346,7 @@ #: sw/uiconfig/swriter/ui/splittable.ui:121 msgctxt "splittable|extended_tip|customheadingapplystyle" msgid "Inserts a blank header row in the second table that is formatted with the style of the first row in the original table." -msgstr "Zasadźuje prózdnu hłowowu linku w druhej tabeli, kotraž je z předłohu prěnjeje linki prěnjotneje tabele formatowana." +msgstr "Zasadźuje prózdnu hłowowu linku w druhej tabeli, kotraž je z předłohu prěnjeje linki prěnjotneje tabele sformatěrowana." #. DKd7P #: sw/uiconfig/swriter/ui/splittable.ui:132 @@ -28012,7 +28012,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 @@ -28048,7 +28048,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 @@ -28162,7 +28162,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 @@ -28948,7 +28948,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:714 msgctxt "tocentriespage|label1" msgid "Structure and Formatting" -msgstr "Struktura a formatowanje" +msgstr "Struktura a formatěrowanje" #. 6jUXn #: sw/uiconfig/swriter/ui/tocentriespage.ui:746 @@ -29308,7 +29308,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:358 msgctxt "tocindexpage|extended_tip|fromheadings" msgid "Creates the index using outline levels. Paragraphs formatted with one of the predefined heading styles (Heading 1-10) are added to the index." -msgstr "Wutworja zapis z pomocu rozrjadowanskich runinow. Wotstawki, kotrež su z jednej z předdefinowanych nadpismowych předłohow (nadpisma 1-10) formatowane, so zapisej přidawaja." +msgstr "Wutworja zapis z pomocu rozrjadowanskich runinow. Wotstawki, kotrež su z jednej z předdefinowanych nadpismowych předłohow (nadpisma 1-10) sformatěrowane, so zapisej přidawaja." #. 6RPA5 #: sw/uiconfig/swriter/ui/tocindexpage.ui:369 @@ -29554,7 +29554,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:895 msgctxt "tocindexpage|label7" msgid "Formatting of the Entries" -msgstr "Formatowanje zapiskow" +msgstr "Formatěrowanje zapiskow" #. NGgFZ #: sw/uiconfig/swriter/ui/tocindexpage.ui:933 @@ -29578,7 +29578,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:961 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:972 @@ -29704,7 +29704,7 @@ #: sw/uiconfig/swriter/ui/tocstylespage.ui:114 msgctxt "tocstylespage|extended_tip|levels" msgid "Select the index level that you change the formatting of." -msgstr "Wubjerće zapisowu runinu, kotrejež formatowanje chceće změnić." +msgstr "Wubjerće zapisowu runinu, kotrejež formatěrowanje chceće změnić." #. AFBwE #: sw/uiconfig/swriter/ui/tocstylespage.ui:158 @@ -29722,7 +29722,7 @@ #: 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 "Staja formatowanje wubraneje runiny na wotstawkowu předłohu „Standard“ wróćo." +msgstr "Staja formatěrowanje wubraneje runiny na wotstawkowu předłohu „Standard“ wróćo." #. Dz6ag #: sw/uiconfig/swriter/ui/tocstylespage.ui:191 @@ -29740,7 +29740,7 @@ #: sw/uiconfig/swriter/ui/tocstylespage.ui:220 msgctxt "tocstylespage|extended_tip|assign" msgid "Formats the selected index level with the selected paragraph style." -msgstr "Formatuje wubranu indeksowu runinu z wubranej wotstawkowej předłohu." +msgstr "Formatěruje wubranu indeksowu runinu z wubranej wotstawkowej předłohu." #. ddB7L #: sw/uiconfig/swriter/ui/tocstylespage.ui:241 @@ -29986,7 +29986,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 @@ -30004,7 +30004,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.5.1~rc2/translations/source/hsb/swext/mediawiki/help.po libreoffice-7.5.2~rc2/translations/source/hsb/swext/mediawiki/help.po --- libreoffice-7.5.1~rc2/translations/source/hsb/swext/mediawiki/help.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/swext/mediawiki/help.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02 12:18+0000\n" +"PO-Revision-Date: 2023-02-28 22:07+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542303423.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 "Pisajće wosah do wikistrony. Móžeće formatowanja kaž tekstowe formaty, nadpisma, nóžki a wjace wužiwać. Hlejće tež lisćinu podpěranych formatow." +msgstr "Pisajće wosah do wikistrony. Móžeće formatěrowanja kaž tekstowe formaty, nadpisma, nóžki a wjace wužiwać. Hlejće tež lisćinu podpěranych formatow." #. sqvcC #: wiki.xhp @@ -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 "Nałožće wotstawkowe předłohi za nadpisma w dokumenće Writer na nadpisma. Wiki potom nadpismowe předłohi na samsneje rozrjadowanskeje runiny pokaza, formatowane po wikisystemje." +msgstr "Nałožće wotstawkowe předłohi za nadpisma w dokumenće Writer na nadpisma. Wiki potom nadpismowe předłohi na samsneje rozrjadowanskeje runiny pokaza, sformatěrowane po wikisystemje." #. YAjYW #: wikiformats.xhp @@ -545,7 +545,7 @@ "hd_id7486190\n" "help.text" msgid "Pre-formatted text" -msgstr "Předformatowany tekst" +msgstr "Předformatěrowany tekst" #. Luezz #: wikiformats.xhp @@ -554,7 +554,7 @@ "par_id1459395\n" "help.text" msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the wiki with a border around the text." -msgstr "Wotstawkowa předłoha z njeproporcialnym pismom so do předformatowaneho teksta konwertuje. Předformatowany tekst so we wikiju z ramikom wokoło teksta zwobraznja." +msgstr "Wotstawkowa předłoha z njeproporcialnym pismom so do předformatěrowaneho teksta konwertuje. Předformatěrowany tekst so we wikiju z ramikom wokoło teksta zwobraznja." #. 22nLD #: wikiformats.xhp @@ -608,7 +608,7 @@ "par_id3037202\n" "help.text" msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored." -msgstr "Jednore tabele so derje podpěruja. Tabelowe hłowy so do wotpowědnych tabelowych hłowow we wikiformaće konwertuja. Swójske formatowanja tabelowych kromow, špaltowych šěrokosćow a pozadkowych barbow wšak so ignoruja." +msgstr "Jednore tabele so derje podpěruja. Tabelowe hłowy so do wotpowědnych tabelowych hłowow we wikiformaće konwertuja. Swójske formatěrowanja tabelowych kromow, špaltowych šěrokosćow a pozadkowych barbow wšak so ignoruja." #. DF3o9 #: wikiformats.xhp @@ -653,7 +653,7 @@ "par_id1831110\n" "help.text" msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header." -msgstr "Njedźiwajo na swójske tabelowe formatowanja za ramiki a pozadk, so tabela přeco jako „prettytable“ eksportuje, kotraž so we wikimašinje z jednorymi ramikami a tučnym tabelowym nadpismom zwobraznjuje." +msgstr "Njedźiwajo na swójske tabelowe formatěrowanja za ramiki a pozadk, so tabela přeco jako „prettytable“ eksportuje, kotraž so we wikimašinje z jednorymi ramikami a tučnym tabelowym nadpismom zwobraznjuje." #. kDcRS #: wikiformats.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hsb/wizards/source/resources.po libreoffice-7.5.2~rc2/translations/source/hsb/wizards/source/resources.po --- libreoffice-7.5.1~rc2/translations/source/hsb/wizards/source/resources.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hsb/wizards/source/resources.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 14:06+0100\n" -"PO-Revision-Date: 2022-12-19 14:08+0000\n" +"PO-Revision-Date: 2023-03-01 20:16+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1556134825.000000\n" #. 8UKfi @@ -3902,7 +3902,7 @@ "STYLES_0\n" "property.text" msgid "Theme Selection" -msgstr "Wuběr temow" +msgstr "Wuběr drastow" #. DbGhN #: resources_en_US.properties diff -Nru libreoffice-7.5.1~rc2/translations/source/hu/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/hu/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/hu/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hu/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-09 11:30+0100\n" -"PO-Revision-Date: 2022-12-12 13:30+0000\n" +"PO-Revision-Date: 2023-03-13 17:34+0000\n" "Last-Translator: Armin Timar \n" -"Language-Team: Hungarian \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" "X-POOTLE-MTIME: 1538676487.000000\n" #. ViEWM @@ -5180,7 +5180,7 @@ "par_id351670939954166\n" "help.text" msgid "filterformula: A Calc formula that shall be applied to the given range to determine which cells will be affected. The specified formula must return True or False. If this argument is not specified, then all cells in the range are affected." -msgstr "" +msgstr "filterformula: Egy Calc-képlet, amelyet az adott tartományra kell alkalmazni annak meghatározására, hogy mely cellák lesznek érintettek. A megadott képletnek True vagy False értéket kell visszaadnia. Ha ez az argumentum nincs megadva, akkor a tartomány összes cellája érintett." #. Lvzwc #: sf_calc.xhp @@ -10175,7 +10175,7 @@ "par_id941619079997180\n" "help.text" msgid "before: This argument can be either the name of an existing menu entry before which the new menu will be placed or a number expressing the position of the new menu. If this argument is left blank the new menu is placed as the last entry." -msgstr "" +msgstr "előtte: Ez az argumentum lehet egy meglévő menüpont neve, amely elé az új menü kerül, vagy egy szám, amely az új menü pozícióját fejezi ki. Ha ez az argumentum üresen marad, az új menü az utolsó bejegyzésként kerül elhelyezésre." #. MXC5w #: sf_datasheet.xhp @@ -10337,7 +10337,7 @@ "par_id231671105664098\n" "help.text" msgid "row: The row number as a numeric value starting at 1. If the requested row exceeds the number of existing rows, the cursor is moved to the last row. If this argument is not specified, then the row is not changed." -msgstr "" +msgstr "sor: A sorszám numerikus értékként, 1-től kezdődően. Ha a kért sor meghaladja a meglévő sorok számát, a kurzor az utolsó sorba kerül. Ha ez az argumentum nincs megadva, akkor a sor nem változik." #. 4AYCp #: sf_datasheet.xhp @@ -10346,7 +10346,7 @@ "par_id941619079997124\n" "help.text" msgid "column: The name of the column as a String or the column position (starting at 1). If the requested column exceeds the number of existing columns, the cursor is moved to the last column. If this argument is not specified, then the column is not changed." -msgstr "" +msgstr "oszlop: Az oszlop neve String-ként vagy az oszlop pozíciója (1-től kezdődően). Ha a kért oszlop meghaladja a meglévő oszlopok számát, a kurzor az utolsó oszlopra kerül. Ha ez az argumentum nincs megadva, akkor az oszlop nem változik." #. t7xYa #: sf_datasheet.xhp @@ -10418,7 +10418,7 @@ "par_id511671106735805\n" "help.text" msgid "This method can remove menus that belong to the standard user interface as well as menus that were programmatically added with the CreateMenu method. The removal of standard menus is not permanent and they will reappear after the window is closed and reopened." -msgstr "" +msgstr "Ez a módszer eltávolíthatja a standard felhasználói felülethez tartozó menüket, valamint a CreateMenu módszerrel programozottan hozzáadott menüket. A szabványos menük eltávolítása nem végleges, és az ablak bezárása és újbóli megnyitása után újra megjelennek." #. ED3Co #: sf_datasheet.xhp @@ -11633,7 +11633,7 @@ "par_id291670871829824\n" "help.text" msgid "Dialogs may have multiple pages and the currently visible page is defined by the Page dialog property. If the Page property is left unchanged, the default visible page is equal to 0 (zero), meaning that no particular page is defined and all visible controls are displayed regardless of the value set in their own Page property." -msgstr "" +msgstr "A párbeszédablakoknak több oldala is lehet, és az aktuálisan látható oldalt a Page párbeszédablak-tulajdonság határozza meg. Ha a Page tulajdonság változatlanul marad, az alapértelmezett látható oldal értéke 0 (nulla), ami azt jelenti, hogy nincs meghatározott oldal definiálva, és minden látható vezérlőelem megjelenik, függetlenül a saját Page tulajdonságukban beállított értéktől." #. YB97d #: sf_dialog.xhp @@ -11759,7 +11759,7 @@ "par_id861670874176863\n" "help.text" msgid "Consider a dialog with three pages. The dialog has a ListBox control named \"aPageList\" that will be used to control the visible page. Additionally, there are two buttons named \"btnPrevious\" and \"btnNext\" that will be used as the Previous/Next buttons in the dialog." -msgstr "" +msgstr "Tekintsünk egy három oldalas párbeszédablakot. A párbeszédablak rendelkezik egy ListBox vezérlővel, amelynek neve \"aPageList\", és amely a látható oldal vezérlésére szolgál. Ezenkívül van két, \"btnPrevious\" és \"btnNext\" nevű gomb, amelyek a párbeszédablak Előző/Következő gombjaiként lesznek használva." #. ARCGg #: sf_dialog.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.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-12-08 19:46+0100\n" -"PO-Revision-Date: 2022-11-02 09:22+0000\n" -"Last-Translator: serval2412 \n" -"Language-Team: Hungarian \n" +"PO-Revision-Date: 2023-03-17 19: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" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542030217.000000\n" #. sZfWF @@ -2075,7 +2075,7 @@ "par_id2308201415431822157\n" "help.text" msgid "Round the number to a given number of Decimal Places." -msgstr "" +msgstr "A számot a megadott Tizedesjegyek értéknek megfelelően kerekíti." #. Wj97D #: 02140700.xhp @@ -3893,7 +3893,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 @@ -3902,7 +3902,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 @@ -3911,7 +3911,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 @@ -3947,7 +3947,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 @@ -3965,7 +3965,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." #. dSSCD #: 04060000.xhp @@ -20138,7 +20138,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 @@ -45320,7 +45320,7 @@ "par_id941662913907280\n" "help.text" msgid "Description" -msgstr "" +msgstr "Leírás" #. nP5Ym #: 05120100.xhp @@ -45455,7 +45455,7 @@ "par_id991665406132471\n" "help.text" msgid "Condition" -msgstr "" +msgstr "Feltétel" #. EeCxc #: 05120100.xhp @@ -45464,7 +45464,7 @@ "par_id191665406132471\n" "help.text" msgid "Description" -msgstr "" +msgstr "Leírás" #. ziYCE #: 05120100.xhp @@ -45779,7 +45779,7 @@ "par_id451665406273943\n" "help.text" msgid "Condition" -msgstr "" +msgstr "Feltétel" #. 3BdfG #: 05120100.xhp @@ -45788,7 +45788,7 @@ "par_id71665406273943\n" "help.text" msgid "Description" -msgstr "" +msgstr "Leírás" #. vFFDn #: 05120100.xhp @@ -62330,7 +62330,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 @@ -69863,7 +69863,7 @@ "par_id971589963431459\n" "help.text" msgid "Swarm algorithm" -msgstr "" +msgstr "Raj alapú algoritmus" #. cgpYF #: solver_options_algo.xhp @@ -70475,7 +70475,7 @@ "hd_id1000010\n" "help.text" msgid "Statistics" -msgstr "" +msgstr "Statisztika" #. iXfGE #: statistics.xhp @@ -71519,7 +71519,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." #. SVjc3 #: statistics_fourier.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/hu/helpcontent2/source/text/shared/01.po libreoffice-7.5.2~rc2/translations/source/hu/helpcontent2/source/text/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/hu/helpcontent2/source/text/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/hu/helpcontent2/source/text/shared/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-19 14:17+0000\n" +"PO-Revision-Date: 2023-03-22 12:34+0000\n" "Last-Translator: Armin Timar \n" -"Language-Team: Hungarian \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" "X-POOTLE-MTIME: 1542196892.000000\n" #. 3u8hR @@ -104,7 +104,7 @@ "par_id3145317\n" "help.text" msgid "Icon Text Document" -msgstr "" +msgstr "Szöveges Dokumentum ikon" #. DaHW6 #: 01010000.xhp @@ -122,7 +122,7 @@ "par_id3156153\n" "help.text" msgid "Creates a text document in $[officename] Writer." -msgstr "" +msgstr "Szöveges dokumentumot hoz létre a $[officename] Writer programban." #. DavTy #: 01010000.xhp @@ -131,7 +131,7 @@ "par_id3145121\n" "help.text" msgid "Icon Spreadsheet" -msgstr "" +msgstr "Munkafüzet ikon" #. gCPqt #: 01010000.xhp @@ -149,7 +149,7 @@ "par_id3154280\n" "help.text" msgid "Creates a spreadsheet document in $[officename] Calc." -msgstr "" +msgstr "Munkafüzet-dokumentumot hoz létre a $[officename] Calc programban." #. 3AG5h #: 01010000.xhp @@ -158,7 +158,7 @@ "par_id3149456\n" "help.text" msgid "Icon Presentation" -msgstr "" +msgstr "Bemutató ikon" #. AQMhm #: 01010000.xhp @@ -176,7 +176,7 @@ "par_id3154946\n" "help.text" msgid "Creates a presentation document in $[officename] Impress." -msgstr "" +msgstr "Bemutató dokumentumot hoz létre a $[officename] Impressben." #. FW2CS #: 01010000.xhp @@ -185,7 +185,7 @@ "par_id3150495\n" "help.text" msgid "Icon Drawing" -msgstr "" +msgstr "Rajz ikon" #. 8vFqa #: 01010000.xhp @@ -203,7 +203,7 @@ "par_id3149167\n" "help.text" msgid "Creates a drawing document in $[officename] Draw." -msgstr "" +msgstr "Rajzdokumentumot hoz létre a $[officename] Draw programban." #. GEwEA #: 01010000.xhp @@ -212,7 +212,7 @@ "par_id3155854\n" "help.text" msgid "Icon Formula" -msgstr "" +msgstr "Képlet ikon" #. bky4X #: 01010000.xhp @@ -230,7 +230,7 @@ "par_id3150872\n" "help.text" msgid "Creates a formula document in $[officename] Math." -msgstr "" +msgstr "Képletdokumentumot hoz létre a $[officename] Math fájlban." #. ipL2w #: 01010000.xhp @@ -239,7 +239,7 @@ "par_idN1089C\n" "help.text" msgid "Icon Database" -msgstr "" +msgstr "Adatbázis ikon" #. Qfe7v #: 01010000.xhp @@ -266,7 +266,7 @@ "par_id3159149\n" "help.text" msgid "Icon HTML Document" -msgstr "" +msgstr "HTML-dokumentum" #. n5cik #: 01010000.xhp @@ -284,7 +284,7 @@ "par_id3152460\n" "help.text" msgid "Creates a HTML document." -msgstr "" +msgstr "Létrehoz egy HTML-dokumentumot." #. heJts #: 01010000.xhp @@ -293,7 +293,7 @@ "par_idN107BF\n" "help.text" msgid "Icon XML Form Document" -msgstr "" +msgstr "XML-űrlapdokumentum ikon" #. 77KZQ #: 01010000.xhp @@ -311,7 +311,7 @@ "par_idN107F5\n" "help.text" msgid "Creates a XForms document." -msgstr "" +msgstr "Egy XForms-dokumentumot hoz létre." #. pC65M #: 01010000.xhp @@ -320,7 +320,7 @@ "par_id3154145\n" "help.text" msgid "Icon Labels" -msgstr "" +msgstr "Címkék ikon" #. WdDQu #: 01010000.xhp @@ -338,7 +338,7 @@ "par_id3148388\n" "help.text" msgid "Opens the Labels dialog where you can set the options for your labels, and then creates a text document for the labels in $[officename] Writer." -msgstr "" +msgstr "Megnyitja a Címkék párbeszédablakot, ahol beállíthatja a címkék beállításait, majd létrehoz egy szöveges dokumentumot a címkékhez a $[officename] Writerben." #. 6Gs6J #: 01010000.xhp @@ -347,7 +347,7 @@ "par_id3155415\n" "help.text" msgid "Icon Business Cards" -msgstr "" +msgstr "Névjegyek ikon" #. XTgC3 #: 01010000.xhp @@ -365,7 +365,7 @@ "par_id3150968\n" "help.text" msgid "Opens the Business Cards dialog where you can set the options for your business cards, and then creates a text document in $[officename] Writer." -msgstr "" +msgstr "Megnyitja aNévjegyek párbeszédablakot, ahol beállíthatja a névjegyek beállításait, majd létrehoz egy szöveges dokumentumot a névjegyekhez a $[officename] Writerben." #. BRwML #: 01010000.xhp @@ -374,7 +374,7 @@ "par_id3147426\n" "help.text" msgid "Icon Master Document" -msgstr "" +msgstr "Fődokumentum ikon" #. ZrAvP #: 01010000.xhp @@ -392,7 +392,7 @@ "par_id3150961\n" "help.text" msgid "Creates a master document." -msgstr "" +msgstr "Létrehoz egy fődokumentumot." #. CzBng #: 01010000.xhp @@ -401,7 +401,7 @@ "par_id3154729\n" "help.text" msgid "Icon Templates" -msgstr "" +msgstr "Sablonok ikon" #. 6CBVj #: 01010000.xhp @@ -419,7 +419,7 @@ "par_id3155603\n" "help.text" msgid "Creates a document using an existing template." -msgstr "" +msgstr "Dokumentumot hoz létre egy meglévő sablon használatával." #. 9wnyC #: 01010000.xhp @@ -455,7 +455,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.." #. AjRVz #: 01010001.xhp @@ -680,7 +680,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 @@ -788,7 +788,7 @@ "par_id3152349\n" "help.text" msgid "The paper type, the dimensions of the label and the labels grid are displayed at the bottom of the Format area." -msgstr "" +msgstr "A papír típusa, a címke méretei és a címkerács a Formátum terület alján láthatók." #. 4RW4s #: 01010202.xhp @@ -851,7 +851,7 @@ "par_id3152425\n" "help.text" msgid "Displays the distance between the top edge of a label or a business card and the top edge of the label or the business card. If you are defining a custom format, enter a value here." -msgstr "" +msgstr "Megjeleníti a címke vagy névjegy felső szélének és az alatta levő címke vagy névjegy felső szélének távolságát. Ha egyéni formátumot készít, írja ide az értéket." #. CSAJN #: 01010202.xhp @@ -914,7 +914,7 @@ "hd_id3156346\n" "help.text" msgid "Top margin" -msgstr "" +msgstr "Felső margó" #. Y7AcG #: 01010202.xhp @@ -968,7 +968,7 @@ "hd_id3144943\n" "help.text" msgid "Page width" -msgstr "" +msgstr "Oldalszélesség" #. 4Vwkr #: 01010202.xhp @@ -977,7 +977,7 @@ "par_id3148919\n" "help.text" msgid "Displays the width of the selected paper format. To define a custom format, enter a width here." -msgstr "" +msgstr "Megjeleníti a kijelölt papírformátum szélességét. Egyéni formátum megadásához adja meg itt a szélességet." #. PnC3T #: 01010202.xhp @@ -986,7 +986,7 @@ "hd_id3144949\n" "help.text" msgid "Page height" -msgstr "" +msgstr "Oldalmagasság" #. Vo6Mj #: 01010202.xhp @@ -995,7 +995,7 @@ "par_id3148918\n" "help.text" msgid "Displays the height of the selected paper format. To define a custom format, enter a height here." -msgstr "" +msgstr "Megjeleníti a kijelölt papírformátum magasságát. Egyéni formátum megadásához adja meg itt a magasságot." #. v93KC #: 01010202.xhp @@ -1139,7 +1139,7 @@ "par_id3145345\n" "help.text" msgid "Enter the column in which you want to place your single label or business card." -msgstr "" +msgstr "Adja meg az oszlopot, amelyben az egyes címkét vagy névjegyet szeretné elhelyezni." #. uNo8k #: 01010203.xhp @@ -1157,7 +1157,7 @@ "par_id3166410\n" "help.text" msgid "Enter the row in which you want to place your single label or business card." -msgstr "" +msgstr "Adja meg a sort, amelyben az egyetlen címkét vagy névjegyet szeretné elhelyezni." #. NFzAn #: 01010203.xhp @@ -1175,7 +1175,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 @@ -1382,7 +1382,7 @@ "par_id3159201\n" "help.text" msgid "Select the size format that you want to use. The available formats depend on what you selected in the Brand list. If you want to use a custom size format, select [User], and then click the Format tab to define the format." -msgstr "" +msgstr "Válassza ki a használni kívánt méretformátumot. A rendelkezésre álló formátumok a Márka listában kiválasztott márkától függenek. Ha egyéni címkeformátumot kíván használni, válassza az [Egyéni] lehetőséget, majd kattintson a Formátum fülre a formátum megadásához." #. K2VAS #: 01010301.xhp @@ -1697,7 +1697,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 @@ -1796,7 +1796,7 @@ "tit\n" "help.text" msgid "Open, Insert text" -msgstr "" +msgstr "Megnyitás, szöveg beszúrása" #. eoLC5 #: 01020000.xhp @@ -1814,7 +1814,7 @@ "hd_id3146936\n" "help.text" msgid "Open, Insert text" -msgstr "" +msgstr "Megnyitás, szöveg beszúrása" #. DGZ9z #: 01020000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/id/chart2/messages.po libreoffice-7.5.2~rc2/translations/source/id/chart2/messages.po --- libreoffice-7.5.1~rc2/translations/source/id/chart2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/id/chart2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:43+0100\n" -"PO-Revision-Date: 2023-01-09 10:27+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-03-10 12: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=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 diff -Nru libreoffice-7.5.1~rc2/translations/source/id/cui/messages.po libreoffice-7.5.2~rc2/translations/source/id/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/id/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/id/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-01-12 12:04+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-03-16 13: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: 1564987944.000000\n" #. GyY9M @@ -2756,7 +2756,7 @@ #: cui/inc/tipoftheday.hrc:148 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the curve, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork. Select one of the alignment options: Rotate, Upright, Slant Horizontal or Slant Vertical." -msgstr "Menulis sepanjang kurva? Gambar kurva, klik dua kali, ketik teksnya, Format ▸ Kotak Teks dan Bentuk ▸ Fontwork. Pilih salah satu pilihan perataan: Putar, Tegak, Miring Horizontal, atau Miring Vertikal." +msgstr "Menulis sepanjang kurva? Gambar kurva, klik dua kali, ketik teksnya, Format ▸ Kotak Teks dan Bentuk ▸ Seni Fonta. Pilih salah satu pilihan perataan: Putar, Tegak, Miring Horizontal, atau Miring Vertikal." #. ZE6D5 #: cui/inc/tipoftheday.hrc:149 @@ -12025,7 +12025,7 @@ #: cui/uiconfig/ui/langtoolconfigpage.ui:191 msgctxt "langtoolconfigpage|urldesc" msgid "Please use the base URL, i.e., without “/check” at the end." -msgstr "" +msgstr "Harap gunakan URL dasar, yaitu, tanpa \"/centang\" di bagian akhir." #. 77oav #: cui/uiconfig/ui/langtoolconfigpage.ui:211 @@ -17400,7 +17400,7 @@ #: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" -msgstr "Angin Sepoi" +msgstr "Breeze" #. dDE86 #: cui/uiconfig/ui/optviewpage.ui:424 @@ -17430,37 +17430,37 @@ #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "Sistem" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "Terang" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "Gelap" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "Menentukan apakah akan mengikuti mode tampilan sistem atau menimpa Gelap atau Terang." #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "Mode:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "Penampilan" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 diff -Nru libreoffice-7.5.1~rc2/translations/source/id/extras/source/autocorr/emoji.po libreoffice-7.5.2~rc2/translations/source/id/extras/source/autocorr/emoji.po --- libreoffice-7.5.1~rc2/translations/source/id/extras/source/autocorr/emoji.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/id/extras/source/autocorr/emoji.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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.5.1~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2022-11-29 18:26+0000\n" +"PO-Revision-Date: 2023-03-16 13: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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564751755.000000\n" #. W5ukN @@ -5644,7 +5644,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. 9sEbF #: CalcWindowState.xcu @@ -12014,7 +12014,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. jAXv5 #: DrawWindowState.xcu @@ -16274,7 +16274,7 @@ "Label\n" "value.text" msgid "Insert Fontwork" -msgstr "Sisipkan Fontwork" +msgstr "Sisipkan Seni Fonta" #. 5UN6F #: GenericCommands.xcu @@ -16284,7 +16284,7 @@ "ContextLabel\n" "value.text" msgid "Fontwork..." -msgstr "Seni fonta..." +msgstr "Seni Fonta (Fontwork)..." #. 6S6oz #: GenericCommands.xcu @@ -16294,7 +16294,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Fontwork Text" -msgstr "Sisipkan Teks Fontwork" +msgstr "Sisipkan Teks Seni Fonta" #. xaHfX #: GenericCommands.xcu @@ -16304,7 +16304,7 @@ "Label\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. TQ2td #: GenericCommands.xcu @@ -16314,7 +16314,7 @@ "Label\n" "value.text" msgid "Fontwork Same Letter Heights" -msgstr "Karakter Fontwork Sama Tinggi" +msgstr "Karakter Seni Fonta Sama Tinggi" #. GsMvi #: GenericCommands.xcu @@ -16324,7 +16324,7 @@ "Label\n" "value.text" msgid "Fontwork Alignment" -msgstr "Perataan Fontwork" +msgstr "Perataan Seni Fonta" #. yZJce #: GenericCommands.xcu @@ -16334,7 +16334,7 @@ "Label\n" "value.text" msgid "Fontwork Character Spacing" -msgstr "Jarak Antarkarakter Fontwork" +msgstr "Jarak Antarkarakter Seni Fonta" #. F49oZ #: GenericCommands.xcu @@ -17684,7 +17684,7 @@ "Label\n" "value.text" msgid "Plain Text" -msgstr "Teks Biasa" +msgstr "Teks Polos" #. rCAZo #: GenericCommands.xcu @@ -23676,7 +23676,7 @@ "Label\n" "value.text" msgid "Email as P~DF..." -msgstr "Surel sebagai P~DF" +msgstr "Surelkan sebagai P~DF" #. MCknE #: GenericCommands.xcu @@ -24866,7 +24866,7 @@ "ContextLabel\n" "value.text" msgid "~Email Document..." -msgstr "~Dokumen Surel..." +msgstr "Sur~elkan Dokumen..." #. 6yTaz #: GenericCommands.xcu @@ -27666,7 +27666,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. 8Srd2 #: ImpressWindowState.xcu @@ -29256,7 +29256,7 @@ "Title\n" "value.text" msgid "Fontwork" -msgstr "Seni fonta" +msgstr "Seni Fonta" #. vnPii #: Sidebar.xcu @@ -30816,7 +30816,7 @@ "Label\n" "value.text" msgid "Content Control Properties" -msgstr "Properti Kendali Konten" +msgstr "Properti Kendali Isi" #. npNpZ #: WriterCommands.xcu @@ -30996,7 +30996,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 @@ -31016,7 +31016,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 @@ -31026,7 +31026,7 @@ "Label\n" "value.text" msgid "Insert Picture Content Control" -msgstr "Sisipkan Kendali Konten Gambar" +msgstr "Sisipkan Kendali Isi Gambar" #. oxa64 #: WriterCommands.xcu @@ -31036,7 +31036,7 @@ "Label\n" "value.text" msgid "Insert Date Content Control" -msgstr "Sisipkan Kendali Konten Tanggal" +msgstr "Sisipkan Kendali Isi Tanggal" #. tumfQ #: WriterCommands.xcu @@ -31046,7 +31046,7 @@ "Label\n" "value.text" msgid "Insert Plain Text Content Control" -msgstr "Sisipkan Kendali Konten Teks Biasa" +msgstr "Sisipkan Kendali Isi Teks Polos" #. X4bBh #: WriterCommands.xcu @@ -31056,7 +31056,7 @@ "Label\n" "value.text" msgid "Insert Combo Box Content Control" -msgstr "Sisipkan Kendali Konten Kotak Kombo" +msgstr "Sisipkan Kendali Isi Kotak Kombo" #. HxFAE #: WriterCommands.xcu @@ -33146,7 +33146,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 @@ -34836,7 +34836,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Word..." -msgstr "Surel sebagai ~Microsoft Word..." +msgstr "Surelkan sebagai ~Microsoft Word..." #. CRkbD #: WriterCommands.xcu @@ -36816,7 +36816,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. LeAwq #: WriterGlobalWindowState.xcu @@ -37296,7 +37296,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. 8EuMQ #: WriterGlobalWindowState.xcu @@ -37816,7 +37816,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. TnUEj #: WriterWebWindowState.xcu @@ -38046,7 +38046,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. 67QjN #: WriterWebWindowState.xcu @@ -38776,7 +38776,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. GFM28 #: WriterWindowState.xcu @@ -39426,4 +39426,4 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" diff -Nru libreoffice-7.5.1~rc2/translations/source/id/svx/messages.po libreoffice-7.5.2~rc2/translations/source/id/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/id/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/id/svx/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-03-16 13: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: 1565578186.000000\n" #. 3GkZj @@ -1943,73 +1943,73 @@ #: include/svx/strings.hrc:348 msgctxt "SIP_XA_FORMTXTSTYLE" msgid "Fontwork style" -msgstr "Gaya Fontwork" +msgstr "Gaya Seni Fonta" #. qMnRZ #: include/svx/strings.hrc:349 msgctxt "SIP_XA_FORMTXTADJUST" msgid "Fontwork alignment" -msgstr "Perataan Fontwork" +msgstr "Perataan Seni Fonta" #. fpGEZ #: include/svx/strings.hrc:350 msgctxt "SIP_XA_FORMTXTDISTANCE" msgid "Fontwork spacing" -msgstr "Spasi Fontwork" +msgstr "Spasi Seni Fonta" #. CUBXL #: include/svx/strings.hrc:351 msgctxt "SIP_XA_FORMTXTSTART" msgid "Fontwork font begin" -msgstr "Karakter awal Fontwork" +msgstr "Karakter awal Seni Fonta" #. JSVHo #: include/svx/strings.hrc:352 msgctxt "SIP_XA_FORMTXTMIRROR" msgid "Fontwork mirror" -msgstr "Cermin Fontwork" +msgstr "Cermin Seni Fonta" #. P5W29 #: include/svx/strings.hrc:353 msgctxt "SIP_XA_FORMTXTOUTLINE" msgid "Fontwork outline" -msgstr "Kerangka Fontwork" +msgstr "Kerangka Seni Fonta" #. LKCDD #: include/svx/strings.hrc:354 msgctxt "SIP_XA_FORMTXTSHADOW" msgid "Fontwork shadow" -msgstr "Bayangan Fontwork" +msgstr "Bayangan Seni Fonta" #. oDiYn #: include/svx/strings.hrc:355 msgctxt "SIP_XA_FORMTXTSHDWCOLOR" msgid "Fontwork shadow color" -msgstr "Warna bayangan Fontwork" +msgstr "Warna bayangan Seni Fonta" #. sFLRA #: include/svx/strings.hrc:356 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:357 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:358 msgctxt "SIP_XA_FORMTXTHIDEFORM" msgid "Hide fontwork outline" -msgstr "Sembunyikan kerangka Fontwork" +msgstr "Sembunyikan kerangka Seni Fonta" #. 3sPPg #: include/svx/strings.hrc:359 msgctxt "SIP_XA_FORMTXTSHDWTRANSP" msgid "Fontwork shadow transparency" -msgstr "Transparansi bayangan Fontwork" +msgstr "Transparansi bayangan Seni Fonta" #. q6MHs #: include/svx/strings.hrc:360 @@ -5930,7 +5930,7 @@ #: include/svx/strings.hrc:1067 msgctxt "RID_GALLERYSTR_THEME_KEYBOARD" msgid "Keyboard" -msgstr "Papan Ketik" +msgstr "Papan Tik" #. LYdAf #: include/svx/strings.hrc:1068 @@ -6453,25 +6453,25 @@ #: include/svx/strings.hrc:1161 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:1162 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:1163 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:1164 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:1166 @@ -15458,7 +15458,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2332 msgctxt "docking3deffects|assign|tooltip_text" msgid "Assign" -msgstr "Berikan" +msgstr "Tugaskan" #. cjrJ9 #: svx/uiconfig/ui/docking3deffects.ui:2346 @@ -17160,19 +17160,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/id/sw/messages.po libreoffice-7.5.2~rc2/translations/source/id/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/id/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/id/sw/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-03-16 13: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: 1565578102.000000\n" #. v3oJv @@ -12735,7 +12735,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 @@ -12843,7 +12843,7 @@ #: 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 @@ -14948,7 +14948,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/it/cui/messages.po libreoffice-7.5.2~rc2/translations/source/it/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/it/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/it/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" -"Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"PO-Revision-Date: 2023-03-18 02:34+0000\n" +"Last-Translator: Elisabetta Manuele \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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 @@ -22339,7 +22339,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.5.1~rc2/translations/source/it/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/it/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/it/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/it/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.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: 2023-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-02-05 06:11+0000\n" -"Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"PO-Revision-Date: 2023-03-17 19:34+0000\n" +"Last-Translator: Elisabetta Manuele \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -5360,7 +5360,7 @@ "par_id461670942481008\n" "help.text" msgid "Refer to the ClearAll method documentation available above for examples on how to use the arguments filterformula and filterscope." -msgstr "Per degli esempi su come usare gli argomenti filterformula e filterscope fare riferimento alla documentazione, disponibile sopra, del metodo ClearAll." +msgstr "Fare riferimento alla documentazione del metodo ClearAll disponibile sopra per esempi di utilizzo degli argomenti filterformula e filterscope." #. sMwMp #: sf_calc.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/it/helpcontent2/source/text/shared/01.po libreoffice-7.5.2~rc2/translations/source/it/helpcontent2/source/text/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/it/helpcontent2/source/text/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/it/helpcontent2/source/text/shared/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-01-23 11:28+0000\n" -"Last-Translator: Elisabetta Manuele \n" -"Language-Team: Italian \n" +"PO-Revision-Date: 2023-03-13 17:33+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: 1565337097.000000\n" #. 3u8hR @@ -14162,7 +14162,7 @@ "hd_id8455153\n" "help.text" msgid "Single page" -msgstr "Singola pagina" +msgstr "Pagina singola" #. eDNZ4 #: 03010000.xhp @@ -51962,7 +51962,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.5.1~rc2/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" -"Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"PO-Revision-Date: 2023-03-03 12:22+0000\n" +"Last-Translator: Elisabetta Manuele \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564768553.000000\n" #. W5ukN @@ -31056,7 +31056,7 @@ "Label\n" "value.text" msgid "Insert Combo Box Content Control" -msgstr "Inserisci controllo contenuto Casella combinata" +msgstr "Inserisci controllo contenuto casella combinata" #. HxFAE #: WriterCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/it/sw/messages.po libreoffice-7.5.2~rc2/translations/source/it/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/it/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/it/sw/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-09 03:15+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564337991.000000\n" #. v3oJv @@ -8191,7 +8191,7 @@ #: sw/inc/strings.hrc:1092 msgctxt "STR_VIEWLAYOUT_ONE" msgid "Single-page view" -msgstr "Vista a singola pagina" +msgstr "Vista a pagina singola" #. 57ju6 #: sw/inc/strings.hrc:1093 diff -Nru libreoffice-7.5.1~rc2/translations/source/ja/cui/messages.po libreoffice-7.5.2~rc2/translations/source/ja/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/ja/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ja/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" -"Last-Translator: Jun NOGATA \n" -"Language-Team: Japanese \n" +"PO-Revision-Date: 2023-03-15 14:34+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: 1563975021.000000\n" #. GyY9M @@ -10905,7 +10905,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.5.1~rc2/translations/source/ja/filter/messages.po libreoffice-7.5.2~rc2/translations/source/ja/filter/messages.po --- libreoffice-7.5.1~rc2/translations/source/ja/filter/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ja/filter/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 13:11+0100\n" -"PO-Revision-Date: 2022-05-04 10:51+0000\n" -"Last-Translator: JO3EMC \n" -"Language-Team: Japanese \n" +"PO-Revision-Date: 2023-03-15 14:34+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: 1565928198.000000\n" #. 5AQgJ @@ -827,7 +827,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:983 msgctxt "pdfgeneralpage|commentsinmargin" msgid "_Comments in margin" -msgstr "" +msgstr "余白内のコメント(_C)" #. RpDqi #: filter/uiconfig/ui/pdfgeneralpage.ui:992 diff -Nru libreoffice-7.5.1~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" -"Last-Translator: Jun NOGATA \n" -"Language-Team: Japanese \n" +"PO-Revision-Date: 2023-03-22 11: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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565185748.000000\n" #. W5ukN @@ -23506,7 +23506,7 @@ "ContextLabel\n" "value.text" msgid "Automatic A~ccessibility Checking" -msgstr "" +msgstr "自動アクセシビリティチェック(~C)" #. DGCFi #: GenericCommands.xcu @@ -30586,7 +30586,7 @@ "Label\n" "value.text" msgid "Show Tracked ~Changes" -msgstr "" +msgstr "変更の追跡を表示(~C)" #. sMgCx #: WriterCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/ja/sfx2/messages.po libreoffice-7.5.2~rc2/translations/source/ja/sfx2/messages.po --- libreoffice-7.5.1~rc2/translations/source/ja/sfx2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ja/sfx2/messages.po 2023-03-24 16:53:38.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: 2023-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-02-15 14:24+0000\n" +"PO-Revision-Date: 2023-03-15 14:34+0000\n" "Last-Translator: Shinji Enoki \n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1991,13 +1991,13 @@ #: include/sfx2/strings.hrc:358 msgctxt "STR_ACTION_IMPORT" msgid "~Import" -msgstr "" +msgstr "インポート(~I)" #. 8Cwfk #: include/sfx2/strings.hrc:359 msgctxt "STR_ACTION_EXTENSIONS" msgid "E~xtensions" -msgstr "" +msgstr "拡張機能(~X)" #. idGvM #: include/sfx2/strings.hrc:360 @@ -3398,7 +3398,7 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:416 msgctxt "documentinfopage|image-preferred-dpi-checkbutton" msgid "Preferred resolution for images:" -msgstr "" +msgstr "画像の解像度の初期設定:" #. pukYD #: sfx2/uiconfig/ui/documentinfopage.ui:466 diff -Nru libreoffice-7.5.1~rc2/translations/source/ja/svx/messages.po libreoffice-7.5.2~rc2/translations/source/ja/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/ja/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ja/svx/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" -"Last-Translator: Jun NOGATA \n" -"Language-Team: Japanese \n" +"PO-Revision-Date: 2023-03-08 23:34+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: 1550994318.000000\n" #. 3GkZj @@ -11870,7 +11870,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/ja/sw/messages.po libreoffice-7.5.2~rc2/translations/source/ja/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/ja/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ja/sw/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" -"Last-Translator: Jun NOGATA \n" -"Language-Team: Japanese \n" +"PO-Revision-Date: 2023-03-22 11: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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563165692.000000\n" #. v3oJv @@ -10083,7 +10083,7 @@ #: sw/inc/strings.hrc:1445 msgctxt "STR_CONTENT_CONTROL_PLACEHOLDER" msgid "Click here to enter text" -msgstr "" +msgstr "ここをクリックしてテキストを入力" #. N3ocz #: sw/inc/strings.hrc:1446 @@ -17393,7 +17393,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:370 msgctxt "insertbookmark|edittext" msgid "Edit Text" -msgstr "" +msgstr "テキストの編集" #. hvWfd #: sw/uiconfig/swriter/ui/insertbookmark.ui:384 diff -Nru libreoffice-7.5.1~rc2/translations/source/kk/sc/messages.po libreoffice-7.5.2~rc2/translations/source/kk/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/kk/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/kk/sc/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-02 12:18+0000\n" +"PO-Revision-Date: 2023-03-21 10:34+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" -"Language-Team: Kazakh \n" +"Language-Team: Kazakh \n" "Language: kk\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: 1563104974.000000\n" #. kBovX @@ -21004,7 +21004,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.5.1~rc2/translations/source/nb/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/nb/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/nb/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nb/extensions/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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 11: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.5.1~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.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-12-08 19:46+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-01 23:55+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -40451,7 +40451,7 @@ "par_id2853372\n" "help.text" msgid "Calculates the two-tailed Student's T Distribution, which is a continuous probability distribution that is frequently used for testing hypotheses on small sample data sets." -msgstr "Beregner den tosidede studentens T-fordeling, som er en kontinuerlig sannsynlighetsfordeling som ofte brukes til å teste hypoteser på små utvalgsdatasett." +msgstr "Beregner studentens to-halede T-fordeling, som er en kontinuerlig sannsynlighetsfordeling som ofte brukes til å teste hypoteser på små utvalgsdatasett." #. WoA66 #: 04060185.xhp @@ -40946,7 +40946,7 @@ "par_id3149298\n" "help.text" msgid "PERMUTATIONA(Count1; Count2)" -msgstr "PERMUTATIONA(Count1; Count2)" +msgstr "PERMUTASJONA(Antall1; Antall2)" #. B7uB3 #: 04060185.xhp @@ -40991,7 +40991,7 @@ "par_id3150622\n" "help.text" msgid "=PERMUTATIONA(6;3) returns 216. There are 216 different possibilities to put a sequence of 3 playing cards together out of six playing cards if every card is returned before the next one is drawn." -msgstr "=PERMUTATIONA(6;3) returnerer 216. Det er 216 forskjellige muligheter for å sette sammen en sekvens av 3 spillekort av seks spillekort hvis hvert kort returneres før det neste. er trukket." +msgstr "=PERMUTATIONA(6;3) returnerer 216. Det er 216 forskjellige muligheter for å sette sammen en sekvens av 3 spillekort av seks spillekort hvis hvert kort returneres før det neste. er tegnet." #. VJEcn #: 04060185.xhp @@ -41018,7 +41018,7 @@ "par_id3154110\n" "help.text" msgid "Returns the probability that values in a range are between two limits. If there is no End value, this function calculates the probability based on the principle that the Data values are equal to the value of Start." -msgstr "Returnerer sannsynligheten for at verdier i et område er mellom to grenser. Hvis det ikke er noen Slutt-verdi, beregner denne funksjonen sannsynligheten basert på prinsippet om at dataverdiene er lik verdien av Start." +msgstr "Returnerer sannsynligheten for at verdier i et område er mellom to grenser. Hvis det ikke er noen Slutt-verdi, beregner denne funksjonen sannsynlighetsbasert på prinsippet om at dataverdiene er lik verdien av Start." #. GhGG7 #: 04060185.xhp @@ -41063,7 +41063,7 @@ "par_id3153694\n" "help.text" msgid "End (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the Start value is calculated." -msgstr "Slutt (valgfritt) er sluttverdien til intervallet hvis sannsynligheter skal summeres. Hvis denne parameteren mangler, beregnes sannsynligheten for Start-verdien." +msgstr "End (valgfritt) er sluttverdien til intervallet hvis sannsynligheter skal summeres. Hvis denne parameteren mangler, beregnes sannsynligheten for Start-verdien." #. jAigD #: 04060185.xhp @@ -48587,7 +48587,7 @@ "par_id3149655\n" "help.text" msgid "Selects a database range that you defined under Data - Define Range." -msgstr "Velger et databaseområde som du definerte under Data - Definer område." +msgstr "Velger et databaseområde som du definerte under Data - Definer område." #. qFxiF #: 12020000.xhp @@ -49595,7 +49595,7 @@ "par_id3152576\n" "help.text" msgid "Allows you to use regular expressions in the filter definition. For a list of the regular expressions that $[officename] supports, click here." -msgstr "Lar deg bruke regulære uttrykk i filterdefinisjonen. For en liste over regulære uttrykk som $[officename] støtter, klikk her." +msgstr "Lar deg bruke regulære uttrykk i filterdefinisjonen. For en liste over regulære uttrykk som $[officename] støtter, klikk her." #. khYZz #: 12040201.xhp @@ -51935,7 +51935,7 @@ "par_id3150768\n" "help.text" msgid "Displays the name of the filtered data range in the table." -msgstr "" +msgstr "Viser navnet på det filtrerte dataområdet i tabellen." #. CtjzM #: 12090104.xhp @@ -51944,7 +51944,7 @@ "par_id3154011\n" "help.text" msgid "List of Regular Expressions" -msgstr "" +msgstr "Liste over regulære uttrykk" #. CSzRe #: 12090105.xhp @@ -51980,7 +51980,7 @@ "par_id3154124\n" "help.text" msgid "The contents of this dialog is different for data fields in the Data area, and data fields in the Row or Column area of the Pivot Table dialog." -msgstr "" +msgstr "Innholdet i denne dialogboksen er forskjellig for datafelt i Data-området, og datafelt i rad- eller kolonne-området i Dialog for pivottabell." #. cW4qx #: 12090105.xhp @@ -52070,7 +52070,7 @@ "par_id3154490\n" "help.text" msgid "Click the type of subtotal that you want to calculate. This option is only available if the User-defined option is selected." -msgstr "" +msgstr "Klikk typen delsum du vil beregne. Dette alternativet er bare tilgjengelig hvis Brukerdefinert-alternativet er valgt." #. GyWi8 #: 12090105.xhp @@ -52079,7 +52079,7 @@ "hd_id3154944\n" "help.text" msgid "Show items without data" -msgstr "" +msgstr "Vis elementer uten data" #. 2pAzm #: 12090105.xhp @@ -52088,7 +52088,7 @@ "par_id3149403\n" "help.text" msgid "Includes empty columns and rows in the results table." -msgstr "" +msgstr "Inkluderer tomme kolonner og rader i resultattabellen." #. KYHnw #: 12090105.xhp @@ -52142,7 +52142,7 @@ "par_idN106F7\n" "help.text" msgid "Opens the Data Field Options dialog. The Options button is visible for filters and column or row fields only." -msgstr "" +msgstr "Åpner Datafeltalternativer-dialogboksen. Alternativer-knappen er kun synlig for filtre og kolonne- eller radfelt." #. pTDtv #: 12090105.xhp @@ -52187,7 +52187,7 @@ "par_idN10716\n" "help.text" msgid "Select the type of calculating of the displayed value for the data field." -msgstr "" +msgstr "Velg type beregning av den viste verdien for datafeltet." #. YVmxa #: 12090105.xhp @@ -52313,7 +52313,7 @@ "par_idN10770\n" "help.text" msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results." -msgstr "" +msgstr "Fra hvert resultat trekkes dens referanseverdi, og differansen deles på referanseverdien. Referanseverdien bestemmes på samme måte som for \"Differanse fra\". Totaler utenfor grunnfeltet vises som tomme resultater." #. nQLwe #: 12090105.xhp @@ -52322,7 +52322,7 @@ "par_idN10777\n" "help.text" msgid "Running total in" -msgstr "" +msgstr "Kjører totalt i" #. yVMiZ #: 12090105.xhp @@ -52358,7 +52358,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 "" +msgstr "Hvert resultat deles på det totale resultatet for sin rad i pivottabellen. Hvis det er flere datafelt, brukes summen for resultatets datafelt. Dersom det er delsummer med manuelt valgte oppsummeringsfunksjoner, brukes fortsatt summen med datafeltets oppsummeringsfunksjon." #. uu4sy #: 12090105.xhp @@ -52412,7 +52412,7 @@ "par_idN107B4\n" "help.text" msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:" -msgstr "" +msgstr "Rad- og kolonnetotalene og totalsummen, etter samme regler som ovenfor, brukes til å beregne følgende uttrykk:" #. 4i2FD #: 12090105.xhp @@ -52421,7 +52421,7 @@ "par_idN107B7\n" "help.text" msgid "( original result * grand total ) / ( row total * column total )" -msgstr "" +msgstr "( originalresultat * totalsum ) / ( radtotal * kolonnetotal )" #. Kfgj3 #: 12090105.xhp @@ -52439,7 +52439,7 @@ "par_idN107BE\n" "help.text" msgid "Select the field from which the respective value is taken as base for the calculation." -msgstr "" +msgstr "Velg feltet som den respektive verdien er tatt fra som grunnlag for beregningen." #. hEziA #: 12090105.xhp @@ -52457,7 +52457,7 @@ "par_idN107C5\n" "help.text" msgid "Select the item of the base field from which the respective value is taken as base for the calculation." -msgstr "" +msgstr "Velg elementet i basisfeltet som den respektive verdien tas fra som grunnlag for beregningen." #. 5w7xX #: 12090106.xhp @@ -52475,7 +52475,7 @@ "bm_id711386\n" "help.text" msgid "hiding;data fields, from calculations in pivot tabledisplay options in pivot tablesorting;options in pivot tabledata field options for pivot table" -msgstr "" +msgstr "skjuler;datafelt, fra beregninger i pivottabellvisningsalternativer i pivottabellsortering;alternativer i pivottabelldatafeltalternativer for pivot tabell" #. rZueD #: 12090106.xhp @@ -52493,7 +52493,7 @@ "par_idN10546\n" "help.text" msgid "You can specify additional options for column, row, and page data fields in the pivot table." -msgstr "" +msgstr "Du kan angi flere alternativer for kolonne-, rad- og sidedatafelt i pivottabellen." #. ATBoM #: 12090106.xhp @@ -52511,7 +52511,7 @@ "par_idN1055B\n" "help.text" msgid "Select the data field that you want to sort columns or rows by." -msgstr "" +msgstr "Velg datafeltet du vil sortere kolonner eller rader etter." #. BXKZ7 #: 12090106.xhp @@ -52529,7 +52529,7 @@ "par_idN10562\n" "help.text" msgid "Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field." -msgstr "" +msgstr "Sorterer verdiene fra laveste verdi til høyeste verdi. Hvis det valgte feltet er feltet som dialogen ble åpnet for, sorteres elementene etter navn. Hvis et datafelt ble valgt, sorteres elementene etter den resulterende verdien til det valgte datafeltet." #. CjwdF #: 12090106.xhp @@ -52547,7 +52547,7 @@ "par_idN10569\n" "help.text" msgid "Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field." -msgstr "" +msgstr "Sorterer verdiene som synker fra den høyeste verdien til den laveste verdien. Hvis det valgte feltet er feltet som dialogen ble åpnet for, sorteres elementene etter navn. Hvis et datafelt ble valgt, sorteres elementene etter den resulterende verdien til det valgte datafeltet." #. 8Q5nS #: 12090106.xhp @@ -52565,7 +52565,7 @@ "par_idN10570\n" "help.text" msgid "Sorts values alphabetically." -msgstr "" +msgstr "Sorterer verdier alfabetisk." #. EBKgh #: 12090106.xhp @@ -52601,7 +52601,7 @@ "par_idN10590\n" "help.text" msgid "Select the layout mode for the field in the list box." -msgstr "" +msgstr "Velg layoutmodus for feltet i listeboksen." #. fCEFC #: 12090106.xhp @@ -52619,7 +52619,7 @@ "par_idN10597\n" "help.text" msgid "Adds an empty row after the data for each item in the pivot table." -msgstr "" +msgstr "Legger til en tom rad etter dataene for hvert element i pivottabellen." #. CoAEB #: 12090106.xhp @@ -52655,7 +52655,7 @@ "par_idN105A5\n" "help.text" msgid "Turns on the automatic show feature." -msgstr "" +msgstr "Slår på funksjonen for automatisk visning." #. Dtgpx #: 12090106.xhp @@ -52673,7 +52673,7 @@ "par_idN105AC\n" "help.text" msgid "Enter the maximum number of items that you want to show automatically." -msgstr "" +msgstr "Skriv inn maksimalt antall elementer du vil vise automatisk." #. XmB6D #: 12090106.xhp @@ -52691,7 +52691,7 @@ "par_idN105B3\n" "help.text" msgid "Shows the top or bottom items in the specified sort order." -msgstr "" +msgstr "Viser de øverste eller nederste elementene i den angitte sorteringsrekkefølgen." #. DEqUx #: 12090106.xhp @@ -52709,7 +52709,7 @@ "par_idN105BA\n" "help.text" msgid "Select the data field that you want to sort the data by." -msgstr "" +msgstr "Velg datafeltet du vil sortere dataene etter." #. AcXgp #: 12090106.xhp @@ -52727,7 +52727,7 @@ "par_idN105C1\n" "help.text" msgid "Select the items that you want to hide from the calculations." -msgstr "" +msgstr "Velg elementene du vil skjule fra beregningene." #. ZWfrR #: 12090106.xhp @@ -52745,7 +52745,7 @@ "par_idN105C8\n" "help.text" msgid "Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies." -msgstr "" +msgstr "Velg hierarkiet du vil bruke. Pivottabellen må være basert på en ekstern kildedata som inneholder datahierarkier." #. FMiU9 #: 12090106.xhp @@ -52754,7 +52754,7 @@ "par_id681598453957935\n" "help.text" msgid "Calc does not provide multiple hierarchies for a single field and so this option is normally grayed. If you use a pivot table data source extension, that extension could define multiple hierarchies for some fields and then the option could become available. See the documentation supplied with that extension for more details." -msgstr "" +msgstr "Calc gir ikke flere hierarkier for et enkelt felt, og derfor er dette alternativet normalt grått. Hvis du bruker en pivottabelldatakildeutvidelse, kan den utvidelsen definere flere hierarkier for enkelte felt, og deretter kan alternativet bli tilgjengelig. Se dokumentasjonen som følger med utvidelsen for mer informasjon." #. B9FE5 #: 12090200.xhp @@ -52781,7 +52781,7 @@ "par_id3149456\n" "help.text" msgid "Updates the pivot table." -msgstr "" +msgstr "Oppdaterer pivottabellen." #. YCBVE #: 12090200.xhp @@ -52790,7 +52790,7 @@ "par_id3150400\n" "help.text" msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose Data - Pivot Table - Refresh." -msgstr "" +msgstr "Etter at du har importert et Excel-regneark som inneholder en pivottabell, klikker du i tabellen og velger Data - Pivottabell - Oppdater." #. JKAAs #: 12090300.xhp @@ -54050,7 +54050,7 @@ "tit\n" "help.text" msgid "Common Syntax and example" -msgstr "" +msgstr "Vanlig syntaks og eksempel" #. GSbiK #: common_func.xhp @@ -54059,7 +54059,7 @@ "hd_id3152015\n" "help.text" msgid "Syntax" -msgstr "" +msgstr "Syntaks" #. MiUAf #: common_func.xhp @@ -54068,7 +54068,7 @@ "hd_id281171\n" "help.text" msgid "Example" -msgstr "" +msgstr "Eksempel" #. 54Ga6 #: common_func.xhp @@ -54077,7 +54077,7 @@ "hd_id281996\n" "help.text" msgid "Examples" -msgstr "" +msgstr "Eksempler" #. XAFa7 #: common_func.xhp @@ -54086,7 +54086,7 @@ "hd_id301640873452726\n" "help.text" msgid "Technical information" -msgstr "" +msgstr "Teknisk informasjon" #. RAbtL #: common_func.xhp @@ -54095,7 +54095,7 @@ "hd_id371655560095924\n" "help.text" msgid "See also" -msgstr "" +msgstr "Se også" #. 7AVhU #: common_func.xhp @@ -54104,7 +54104,7 @@ "par_id251640873774457\n" "help.text" msgid "This function is not part of the Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format standard. The name space is" -msgstr "" +msgstr "Denne funksjonen er ikke en del av Open Document Format for Office-applikasjoner (OpenDocument) versjon 1.3. Del 4: Rekalkulert Formel (OpenFormula) Format-standard. Navnerommet er" #. rBWwb #: common_func.xhp @@ -54113,7 +54113,7 @@ "par_id301616845402409\n" "help.text" msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the value highlighting feature." -msgstr "" +msgstr "Denne funksjonen ignorerer all tekst eller tom celle innenfor et dataområde. Hvis du mistenker feil resultater fra denne funksjonen, se etter tekst i dataområdene. For å fremheve tekstinnhold i et dataområde, bruk funksjonen verdiutheving." #. GAPGX #: common_func_workdaysintl.xhp @@ -54122,7 +54122,7 @@ "tit\n" "help.text" msgid "common workdays intl" -msgstr "" +msgstr "vanlige arbeidsdager internasjonalt" #. BBNbm #: common_func_workdaysintl.xhp @@ -54131,7 +54131,7 @@ "par_id231020162249541102\n" "help.text" msgid "Weekend is an optional parameter – a number or a string used to specify the days of the week that are weekend days and are not considered working days. Weekend is a weekend number or string that specifies when weekends occur. Weekend number values indicate the following weekend days:" -msgstr "" +msgstr "Helg er en valgfri parameter – et tall eller en streng som brukes til å spesifisere ukedagene som er helgedager og ikke regnes som virkedager. Weekend er et helgenummer eller en streng som spesifiserer når helger inntreffer. Helgetallverdier indikerer følgende helgedager:" #. AakfY #: common_func_workdaysintl.xhp @@ -54140,7 +54140,7 @@ "par_id231020162249545526\n" "help.text" msgid "Number 1 to 7 for two-day weekends and 11 to 17 for one-day weekends." -msgstr "" +msgstr "Nummer 1 til 7 for to-dagers helger og 11 til 17 for en-dagers helger." #. rKxJb #: common_func_workdaysintl.xhp @@ -54149,7 +54149,7 @@ "par_id231020162249542082\n" "help.text" msgid "Number" -msgstr "" +msgstr "Antall" #. euMMc #: common_func_workdaysintl.xhp @@ -54158,7 +54158,7 @@ "par_id23102016224954936\n" "help.text" msgid "Weekend" -msgstr "" +msgstr "Helg" #. LWeNA #: common_func_workdaysintl.xhp @@ -54167,7 +54167,7 @@ "par_id231020162249548384\n" "help.text" msgid "1 or omitted" -msgstr "" +msgstr "1 eller utelatt" #. 3cRzD #: common_func_workdaysintl.xhp @@ -54176,7 +54176,7 @@ "par_id231020162249544419\n" "help.text" msgid "Saturday and Sunday" -msgstr "" +msgstr "Lørdag og Søndag" #. BjCLD #: common_func_workdaysintl.xhp @@ -54185,7 +54185,7 @@ "par_id231020162249543229\n" "help.text" msgid "Sunday and Monday" -msgstr "" +msgstr "Søndag og Mandag" #. r3QJD #: common_func_workdaysintl.xhp @@ -54194,7 +54194,7 @@ "par_id231020162249541638\n" "help.text" msgid "Monday and Tuesday" -msgstr "" +msgstr "Mandag og Tirsdag" #. U3EVB #: common_func_workdaysintl.xhp @@ -54203,7 +54203,7 @@ "par_id231020162249548854\n" "help.text" msgid "Tuesday and Wednesday" -msgstr "" +msgstr "Tirsdag og Onsdag" #. rAcyU #: common_func_workdaysintl.xhp @@ -54212,7 +54212,7 @@ "par_id23102016224954803\n" "help.text" msgid "Wednesday and Thursday" -msgstr "" +msgstr "Onsdag og Torsdag" #. Q2zu4 #: common_func_workdaysintl.xhp @@ -54221,7 +54221,7 @@ "par_id231020162249545913\n" "help.text" msgid "Thursday and Friday" -msgstr "" +msgstr "Torsdag og Fredag" #. X5Gad #: common_func_workdaysintl.xhp @@ -54230,7 +54230,7 @@ "par_id231020162249546426\n" "help.text" msgid "Friday and Saturday" -msgstr "" +msgstr "Fredag og Lørdag" #. j2EUP #: common_func_workdaysintl.xhp @@ -54239,7 +54239,7 @@ "par_id231020162249548630\n" "help.text" msgid "Sunday only" -msgstr "" +msgstr "Kun Søndag" #. FDz4C #: common_func_workdaysintl.xhp @@ -54248,7 +54248,7 @@ "par_id231020162249547536\n" "help.text" msgid "Monday only" -msgstr "" +msgstr "Kun Mandag" #. sB6N2 #: common_func_workdaysintl.xhp @@ -54257,7 +54257,7 @@ "par_id231020162249545002\n" "help.text" msgid "Tuesday only" -msgstr "" +msgstr "Kun Tirsdag" #. hfLfG #: common_func_workdaysintl.xhp @@ -54266,7 +54266,7 @@ "par_id231020162249554939\n" "help.text" msgid "Wednesday only" -msgstr "" +msgstr "Kun Onsdag" #. rgZWA #: common_func_workdaysintl.xhp @@ -54275,7 +54275,7 @@ "par_id231020162249558942\n" "help.text" msgid "Thursday only" -msgstr "" +msgstr "Kun Torsdag" #. BgBBD #: common_func_workdaysintl.xhp @@ -54284,7 +54284,7 @@ "par_id231020162249558763\n" "help.text" msgid "Friday only" -msgstr "" +msgstr "Kun Fredag" #. gL7GC #: common_func_workdaysintl.xhp @@ -54293,7 +54293,7 @@ "par_id231020162249552635\n" "help.text" msgid "Saturday only" -msgstr "" +msgstr "Kun Lørdag" #. nKGoe #: common_func_workdaysintl.xhp @@ -54302,7 +54302,7 @@ "par_id231020162249555313\n" "help.text" msgid "Weekend string provides another way to define the weekly non-working days. It must have seven (7) characters – zeros (0) for working day and ones (1) for non-working day. Each character represents a day of the week, starting with Monday. Only 1 and 0 are valid. “1111111” is an invalid string and should not be used. For example, the weekend string “0000011” defines Saturday and Sunday as non-working days." -msgstr "" +msgstr "Helgestreng gir en annen måte å definere ukentlige ikke-arbeidsdager på. Den må ha syv (7) tegn – nuller (0) for arbeidsdag og en (1) for ikke-arbeidsdag. Hvert tegn representerer en ukedag, som starter med mandag. Bare 1 og 0 er gyldige. \"1111111\" er en ugyldig streng og skal ikke brukes. For eksempel definerer helgestrengen \"0000011\" lørdag og søndag som ikke-arbeidsdager." #. GBVCD #: common_func_workdaysintl.xhp @@ -54311,7 +54311,7 @@ "par_id231020162249559739\n" "help.text" msgid "Holidays is an optional list of dates that must be counted as non-working days. The list can be given in a cell range." -msgstr "" +msgstr "Helligdager er en valgfri liste over datoer som må regnes som ikke-arbeidsdager. Listen kan gis i et celleområde." #. jp5Xo #: data_form.xhp @@ -54320,7 +54320,7 @@ "tit\n" "help.text" msgid "Data Entry Form for Spreadsheet" -msgstr "" +msgstr "Dataregistreringsskjema for regneark" #. kP5YY #: data_form.xhp @@ -54329,7 +54329,7 @@ "bm_id240920171018528200\n" "help.text" msgid "data entry forms;for spreadsheets data entry forms;insert data in spreadsheets insert data;data entry forms for spreadsheets spreadsheet;form for inserting data" -msgstr "" +msgstr "dataregistreringsskjemaer;for regneark dataregistreringsskjemaer;sett inn data i regneark sett inn data;dataregistreringsskjemaer for regneark regnearkform; setter inn data" #. wTC98 #: data_form.xhp @@ -54338,7 +54338,7 @@ "hd_id240920171003006302\n" "help.text" msgid "Form" -msgstr "" +msgstr "Formulær" #. wrzkB #: data_form.xhp @@ -54347,7 +54347,7 @@ "par_id240920171003293400\n" "help.text" msgid "Data Entry Form is a tool to make table data entry easy in spreadsheets. With the Data Entry Form, you can enter, edit and delete records (or rows) of data and avoid horizontal scrolling when the table has many columns or when some columns are very wide." -msgstr "" +msgstr "Dataregistreringsskjema er et verktøy for å gjøre det enkelt å skrive inn tabelldata i regneark. Med Dataregistreringsskjemaet kan du legge inn, redigere og slette poster (eller rader) med data og unngå horisontal rulling når tabellen har mange kolonner eller når noen kolonner er veldig brede." #. VoVM6 #: data_form.xhp @@ -54356,7 +54356,7 @@ "par_id240920171007389295\n" "help.text" msgid "Choose Data – Form..." -msgstr "" +msgstr "Velg Data – Formulær" #. yiAjM #: data_form.xhp @@ -54365,7 +54365,7 @@ "hd_id291512503277077\n" "help.text" msgid "Preparing the data entry form" -msgstr "" +msgstr "Utarbeidelse av dataregistreringsskjema" #. BDary #: data_form.xhp @@ -54374,7 +54374,7 @@ "par_id221512503284514\n" "help.text" msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents become the label of each data field in the form." -msgstr "" +msgstr "For å være effektiv bør Calc-datatabellen ha en overskriftsrad, der hver celleinnhold er etiketten til kolonnen. Innholdet i topptekstcellene blir etiketten til hvert datafelt i skjemaet." #. d9TGe #: data_form.xhp @@ -54383,7 +54383,7 @@ "hd_id531512503300666\n" "help.text" msgid "Activating the form" -msgstr "" +msgstr "Aktiverer skjemaet" #. DG3DF #: data_form.xhp @@ -54392,7 +54392,7 @@ "par_id551512503358101\n" "help.text" msgid "Place the cursor in the header row of the table." -msgstr "" +msgstr "Aktiverer skjemaet" #. F7HNg #: data_form.xhp @@ -54401,7 +54401,7 @@ "par_id11512503369875\n" "help.text" msgid "Choose Data - Form...." -msgstr "" +msgstr "Velg Data - Skjema...." #. qK3hk #: data_form.xhp @@ -54410,7 +54410,7 @@ "hd_id361512503457039\n" "help.text" msgid "Filling the form with data" -msgstr "" +msgstr "Fylle ut skjemaet med data" #. wE4Jo #: data_form.xhp @@ -54419,7 +54419,7 @@ "par_id361512503457039\n" "help.text" msgid "Enter the data in the text fields. Press Enter or click New to add it to the table." -msgstr "" +msgstr "Skriv inn dataene i tekstfeltene. Trykk Enter eller klikk Ny for å legge den til i tabellen." #. D5pB4 #: data_form.xhp @@ -54428,7 +54428,7 @@ "hd_id111512507319306\n" "help.text" msgid "Form dialog buttons" -msgstr "" +msgstr "Skjemadialogknapper" #. ZgLzp #: data_form.xhp @@ -54437,7 +54437,7 @@ "par_id981512503964001\n" "help.text" msgid "New: fill the record (table row cells) with the form fields contents and jump to the next record or add a new record in the bottom of the table." -msgstr "" +msgstr "Ny: fyll posten (tabellradceller) med skjemafeltinnholdet og hopp til neste post eller legg til en ny post nederst i tabellen." #. ZEerU #: data_form.xhp @@ -54446,7 +54446,7 @@ "par_id91512503864256\n" "help.text" msgid "Delete: deletes the current record." -msgstr "" +msgstr "Slett: sletter gjeldende post." #. zx2vB #: data_form.xhp @@ -54455,7 +54455,7 @@ "par_id11512503887586\n" "help.text" msgid "Restore: when a form field is edited, restore the record contents to its initial state." -msgstr "" +msgstr "Gjenopprett: Når et skjemafelt redigeres, gjenoppretter du postinnholdet til dets opprinnelige tilstand." #. hDmFK #: data_form.xhp @@ -54464,7 +54464,7 @@ "par_id301512503881314\n" "help.text" msgid "Previous record: move to the previous record (table row)." -msgstr "" +msgstr "Forrige post: flytt til forrige post (tabellrad)." #. aMoBm #: data_form.xhp @@ -54473,7 +54473,7 @@ "par_id51512503877397\n" "help.text" msgid "Next record: move to the next record." -msgstr "" +msgstr "Neste post: gå til neste post." #. PEGis #: data_form.xhp @@ -54482,7 +54482,7 @@ "par_id971512503871672\n" "help.text" msgid "Close: close the form." -msgstr "" +msgstr "Lukk: lukk skjemaet." #. LJADq #: data_form.xhp @@ -54491,7 +54491,7 @@ "par_id951512509971073\n" "help.text" msgid " The form dialog box and header row cells as field labels " -msgstr "" +msgstr " Skjemadialogboksen og overskriftsradceller som feltetiketter " #. G3cSB #: data_form.xhp @@ -54500,7 +54500,7 @@ "par_id351512558748321\n" "help.text" msgid "Use the Tab and Shift-Tab keys to jump forth and back between text boxes of the form dialog." -msgstr "" +msgstr "Bruk Tab og Shift-Tab-tastene for å hoppe frem og tilbake mellom tekstboksene i skjemadialogen." #. hgL3P #: data_form.xhp @@ -54509,7 +54509,7 @@ "par_id731512558741034\n" "help.text" msgid "You also can use the form scroll bar to move between text boxes." -msgstr "" +msgstr "Du kan også bruke skjemarullefeltet til å flytte mellom tekstbokser." #. tBjmH #: data_form.xhp @@ -54518,7 +54518,7 @@ "hd_id701512558977465\n" "help.text" msgid "Reopening the form dialog" -msgstr "" +msgstr "Åpner skjemadialogen på nytt" #. CKgpJ #: data_form.xhp @@ -54527,7 +54527,7 @@ "par_id181512558987528\n" "help.text" msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the first data record. Move to the last record before entering new data otherwise the current record will be edited." -msgstr "" +msgstr "For å åpne skjemadialogen igjen, plasser markøren på overskriftsraden og åpne skjemaet. Den viste posten i skjemadialogen er den første dataposten. Flytt til siste post før du legger inn nye data, ellers vil gjeldende post bli redigert." #. 4mygu #: data_form.xhp @@ -54536,7 +54536,7 @@ "par_id240920171007419799\n" "help.text" msgid "Document Forms" -msgstr "" +msgstr "Dokumentskjemaer" #. sATUB #: data_provider.xhp @@ -54545,7 +54545,7 @@ "tit\n" "help.text" msgid "Data Provider for Spreadsheet" -msgstr "" +msgstr "Datakilde for regneark" #. pDCUD #: data_provider.xhp @@ -54554,7 +54554,7 @@ "bm_id240920171018528200\n" "help.text" msgid "data provider;for spreadsheets" -msgstr "" +msgstr "datakilde;for regneark" #. LwDBX #: data_provider.xhp @@ -54563,7 +54563,7 @@ "hd_id240920171003006302\n" "help.text" msgid "Data Provider for Spreadsheets" -msgstr "" +msgstr "Datakilde for regneark" #. VGbJ5 #: data_provider.xhp @@ -54572,7 +54572,7 @@ "par_id240920171003293400\n" "help.text" msgid "Data Provider for Spreadsheets" -msgstr "" +msgstr "Datakilde for regneark" #. bGcMX #: data_provider.xhp @@ -54581,7 +54581,7 @@ "par_id240920171007389295\n" "help.text" msgid "Menu Data – Data Provider..." -msgstr "" +msgstr "Meny Data – Datakilde..." #. kmBF6 #: data_provider.xhp @@ -54590,7 +54590,7 @@ "par_id240920171007419799\n" "help.text" msgid "Data Provider" -msgstr "" +msgstr "Datakilde" #. BGquS #: databar_more_options.xhp @@ -54599,7 +54599,7 @@ "Databar-Moreoptions\n" "help.text" msgid "Databar More Options" -msgstr "" +msgstr "Datamenylinje Flere alternativer" #. 6Mf5d #: databar_more_options.xhp @@ -54608,7 +54608,7 @@ "bm_id651610566601713\n" "help.text" msgid "conditional formatting;data bar optionsdata bar formatting;data bar optionsdata bar options;conditional formatting" -msgstr "" +msgstr "betinget formatering;datalinjealternativerdatalinjeformatering;datalinjealternativerdatalinjealternativer;betinget formatering" #. pZFFx #: databar_more_options.xhp @@ -54617,7 +54617,7 @@ "hd_id631610470827523\n" "help.text" msgid "Databar More Options" -msgstr "" +msgstr "Datalinje Flere alternativer" #. PDdJA #: databar_more_options.xhp @@ -54626,7 +54626,7 @@ "hd_id531610472930609\n" "help.text" msgid "Entry Values" -msgstr "" +msgstr "Inngangsverdier" #. gUW4X #: databar_more_options.xhp @@ -54635,7 +54635,7 @@ "hd_id661610569199542\n" "help.text" msgid "Minimum:" -msgstr "" +msgstr "Minimum:" #. AxvHB #: databar_more_options.xhp @@ -54644,7 +54644,7 @@ "par_id861610473146895\n" "help.text" msgid "Set the minimum value for which the data bar does not start filling." -msgstr "" +msgstr "Angi minimumsverdien som datalinjen ikke begynner å fylles for." #. FjNLX #: databar_more_options.xhp @@ -54653,7 +54653,7 @@ "hd_id501610569361264\n" "help.text" msgid "Maximum:" -msgstr "" +msgstr "Maksimum:" #. mCsBS #: databar_more_options.xhp @@ -54662,7 +54662,7 @@ "par_id461610473163880\n" "help.text" msgid "Set the maximum value for which the data bar gets completely filled." -msgstr "" +msgstr "Angi den maksimale verdien som datalinjen blir fullstendig fylt for." #. ePnFB #: databar_more_options.xhp @@ -54671,7 +54671,7 @@ "par_id791610556114310\n" "help.text" msgid "The options for setting the minimum and maximum values are:" -msgstr "" +msgstr "Alternativene for å angi minimums- og maksimumsverdier er:" #. gBHrw #: databar_more_options.xhp @@ -54680,7 +54680,7 @@ "par_id621610556164264\n" "help.text" msgid "Automatic: Automatically sets the minimum and maximum value based on the values in the data set." -msgstr "" +msgstr "Automatisk: Angir automatisk minimums- og maksimumsverdien basert på verdiene i datasettet." #. ajaES #: databar_more_options.xhp @@ -54689,7 +54689,7 @@ "par_id591610556220990\n" "help.text" msgid "Minimum: Automatically sets the minimum value in the data set as minimum." -msgstr "" +msgstr "Minimum: Angir automatisk minimumsverdien i datasettet som minimum." #. QRiYs #: databar_more_options.xhp @@ -54698,7 +54698,7 @@ "par_id951610556245716\n" "help.text" msgid "Maximum: Automatically sets the maximum value in the data set for maximum." -msgstr "" +msgstr "Maksimum: Angir automatisk maksimumsverdien i datasettet for maksimum." #. Rv45U #: databar_more_options.xhp @@ -54707,7 +54707,7 @@ "par_id901610556259738\n" "help.text" msgid "Percentile: Set the minimum and maximum as percentile value." -msgstr "" +msgstr "Maksimum: Angir automatisk maksimumsverdien i datasettet for maksimum." #. dPLJt #: databar_more_options.xhp @@ -54716,7 +54716,7 @@ "par_id621610556295743\n" "help.text" msgid "Value: Set the minimum and maximum as a specific value." -msgstr "" +msgstr "Verdi: Angi minimum og maksimum som en spesifikk verdi." #. Xo6Dm #: databar_more_options.xhp @@ -54725,7 +54725,7 @@ "par_id331610556326466\n" "help.text" msgid "Formula: Set the minimum and maximum as a formula." -msgstr "" +msgstr "Formel: Angi minimum og maksimum som en formel." #. dtrcK #: databar_more_options.xhp @@ -54734,7 +54734,7 @@ "hd_id551610558198954\n" "help.text" msgid "Bar Colors" -msgstr "" +msgstr "Stolpefarger" #. brFRN #: databar_more_options.xhp @@ -54743,7 +54743,7 @@ "hd_id391610569504555\n" "help.text" msgid "Positive:" -msgstr "" +msgstr "Positiv:" #. AYuC9 #: databar_more_options.xhp @@ -54752,7 +54752,7 @@ "par_id611610558381528\n" "help.text" msgid "Set the color for positive values. It is set to blue be default." -msgstr "" +msgstr "Still inn fargen for positive verdier. Den er satt til blå som standard." #. EHFuG #: databar_more_options.xhp @@ -54761,7 +54761,7 @@ "hd_id161610569508370\n" "help.text" msgid "Negative:" -msgstr "" +msgstr "Negativ:" #. DqVgR #: databar_more_options.xhp @@ -54770,7 +54770,7 @@ "par_id451610558525398\n" "help.text" msgid "Set the color for negative values. It is set to red by default." -msgstr "" +msgstr "Still inn fargen for negative verdier. Den er satt til rød som standard." #. Eci5i #: databar_more_options.xhp @@ -54779,7 +54779,7 @@ "hd_id261610569510818\n" "help.text" msgid "Fill:" -msgstr "" +msgstr "Fyll:" #. GRWdV #: databar_more_options.xhp @@ -54788,7 +54788,7 @@ "par_id221610558585001\n" "help.text" msgid "Choose between color and gradient for the fill." -msgstr "" +msgstr "Velg mellom farge og gradient for fyllingen" #. oQVLz #: databar_more_options.xhp @@ -54797,7 +54797,7 @@ "hd_id711610558701623\n" "help.text" msgid "Axis" -msgstr "" +msgstr "Akse" #. F9wz2 #: databar_more_options.xhp @@ -54806,7 +54806,7 @@ "hd_id731610569777368\n" "help.text" msgid "Position of vertical axis:" -msgstr "" +msgstr "Posisjon av vertikal akse:" #. jrmur #: databar_more_options.xhp @@ -54815,7 +54815,7 @@ "par_id901610558734975\n" "help.text" msgid "Set the position of vertical axis in the cell." -msgstr "" +msgstr "Still inn posisjonen til den vertikale aksen i cellen." #. GCTov #: databar_more_options.xhp @@ -54824,7 +54824,7 @@ "par_id591610558837411\n" "help.text" msgid "Automatic: Set the axis automatically" -msgstr "" +msgstr "Automatisk: Still inn aksen automatisk" #. VMCSd #: databar_more_options.xhp @@ -54833,7 +54833,7 @@ "par_id991610558892435\n" "help.text" msgid "Middle: Set the vertical position to be in the middle of the cell." -msgstr "" +msgstr "Midt: Sett den vertikale posisjonen til å være midt i cellen." #. 6ketG #: databar_more_options.xhp @@ -54842,7 +54842,7 @@ "par_id971610558965550\n" "help.text" msgid "None: Set the data bar to have no visible vertical axis" -msgstr "" +msgstr "Ingen: Angi at datalinjen ikke skal ha noen synlig vertikal akse" #. Up8nD #: databar_more_options.xhp @@ -54851,7 +54851,7 @@ "hd_id591610569865757\n" "help.text" msgid "Color of vertical axis:" -msgstr "" +msgstr "Farge på vertikal akse:" #. 2cZEy #: databar_more_options.xhp @@ -54860,7 +54860,7 @@ "par_id601610560622213\n" "help.text" msgid "Choose the color of the vertical axis." -msgstr "" +msgstr "Velg fargen på den vertikale aksen." #. CTJaw #: databar_more_options.xhp @@ -54869,7 +54869,7 @@ "hd_id631610560675220\n" "help.text" msgid "Bar Lengths" -msgstr "" +msgstr "Stolpelengder" #. V2bCh #: databar_more_options.xhp @@ -54878,7 +54878,7 @@ "hd_id651610569932338\n" "help.text" msgid "Minimum bar length (%):" -msgstr "" +msgstr "Minimum stolpelengde (%):" #. 9HmjS #: databar_more_options.xhp @@ -54887,7 +54887,7 @@ "par_id381610560706116\n" "help.text" msgid "Set the minimum length of the data bar in percentage with respect to the cell length." -msgstr "" +msgstr "Angi minimumslengden på datastolpen i prosent i forhold til cellelengden." #. zvuC5 #: databar_more_options.xhp @@ -54896,7 +54896,7 @@ "hd_id151610569983195\n" "help.text" msgid "Maximum bar length (%):" -msgstr "" +msgstr "Maksimal stolpelengde (%):" #. ZwUDq #: databar_more_options.xhp @@ -54905,7 +54905,7 @@ "par_id511610560783506\n" "help.text" msgid "Set the maximum length of the data bar in percentage with respect to the cell length." -msgstr "" +msgstr "Angi maksimal lengde på datastolpen i prosent i forhold til cellelengden." #. 5eqMJ #: databar_more_options.xhp @@ -54914,7 +54914,7 @@ "hd_id821610560955981\n" "help.text" msgid "Display bar only" -msgstr "" +msgstr "Vis bare stolpe" #. qxGGB #: databar_more_options.xhp @@ -54923,7 +54923,7 @@ "par_id501610560981306\n" "help.text" msgid "Only databar is shown. Value becomes hidden." -msgstr "" +msgstr "Bare stolpen vises. Verdi blir skjult." #. UiW5C #: ex_data_stat_func.xhp @@ -54932,7 +54932,7 @@ "tit\n" "help.text" msgid "Examples Dataset for Statistical Functions" -msgstr "" +msgstr "Eksempler Datasett for statistiske funksjoner" #. 7qsFE #: ex_data_stat_func.xhp @@ -54941,7 +54941,7 @@ "hd_id2609201512474295\n" "help.text" msgid "Consider the following table" -msgstr "" +msgstr "Vurder følgende tabell" #. zqTYx #: ex_data_stat_func.xhp @@ -54950,7 +54950,7 @@ "par_id18260631312423\n" "help.text" msgid "Product Name" -msgstr "" +msgstr "Produktnavn" #. HZpK7 #: ex_data_stat_func.xhp @@ -54959,7 +54959,7 @@ "par_id2509201517433075\n" "help.text" msgid "Sales" -msgstr "" +msgstr "Salg" #. NEEL8 #: ex_data_stat_func.xhp @@ -54968,7 +54968,7 @@ "par_id2509201519383294\n" "help.text" msgid "Revenue" -msgstr "" +msgstr "Inntekt" #. ZyGBE #: ex_data_stat_func.xhp @@ -54977,7 +54977,7 @@ "par_id2855779586764\n" "help.text" msgid "pencil" -msgstr "" +msgstr "blyant" #. rxh8K #: ex_data_stat_func.xhp @@ -54986,7 +54986,7 @@ "par_id24967262611733\n" "help.text" msgid "pen" -msgstr "" +msgstr "penn" #. UpTSC #: ex_data_stat_func.xhp @@ -54995,7 +54995,7 @@ "par_id252542413030532\n" "help.text" msgid "notebook" -msgstr "" +msgstr "notatbok" #. eBXBg #: ex_data_stat_func.xhp @@ -55004,7 +55004,7 @@ "par_id2509201519374677\n" "help.text" msgid "book" -msgstr "" +msgstr "bok" #. 48CjE #: ex_data_stat_func.xhp @@ -55013,7 +55013,7 @@ "par_id19479417931163\n" "help.text" msgid "pencil-case" -msgstr "" +msgstr "penal" #. w8ZSP #: ex_data_stat_func.xhp @@ -55022,7 +55022,7 @@ "par_id85353130721737\n" "help.text" msgid "not" -msgstr "" +msgstr "ikke" #. EYktc #: ex_data_stat_func.xhp @@ -55031,7 +55031,7 @@ "par_id15693941827291\n" "help.text" msgid "not" -msgstr "" +msgstr "ikke" #. jpYmN #: ex_data_stat_func.xhp @@ -55040,7 +55040,7 @@ "par_id1191767622119\n" "help.text" msgid "In all examples below, ranges for calculation contain the row #6, which is ignored because it contains text." -msgstr "" +msgstr "I alle eksemplene nedenfor inneholder områder for beregning raden #6, som ignoreres fordi den inneholder tekst." #. YXQmf #: ex_data_stat_func.xhp @@ -55049,7 +55049,7 @@ "par_id961527953004850\n" "help.text" msgid "Func_Range; Range1; Criterion[; Range2; Criterion2][; … ; [Range127; Criterion127]]" -msgstr "" +msgstr "Funk_Område; Område1; Kriterium[; Område2; Kriterium2][; … ; [Område; Kriterium127]]" #. d8gmy #: ex_data_stat_func.xhp @@ -55058,7 +55058,7 @@ "par_id94162948227556\n" "help.text" msgid "The logical relation between criteria can be defined as logical AND (conjunction). In other words, if and only if all given criteria are met, a value from the corresponding cell of the given Func_Range is taken into calculation." -msgstr "" +msgstr "Den logiske relasjonen mellom kriterier kan defineres som logisk OG (konjunksjon). Med andre ord, hvis og bare hvis alle gitte kriterier er oppfylt, blir en verdi fra den tilsvarende cellen i gitt Funk_Område tatt med i beregningen." #. s3NRA #: ex_data_stat_func.xhp @@ -55067,7 +55067,7 @@ "par_id14734320631377\n" "help.text" msgid "Func_Range and Range1, Range2... must have the same size, otherwise the function returns err:502 - Invalid argument." -msgstr "" +msgstr "Funk_Område og Område1, Område2... må ha samme størrelse, ellers returnerer funksjonen err:502 - Ugyldig argument." #. XB7By #: ex_data_stat_func.xhp @@ -55076,7 +55076,7 @@ "par_id101585468691583\n" "help.text" msgid "Range1 – required argument. It is a range of cells, a name of a named range, or a label of a column or a row, to which the corresponding criterion is to be applied." -msgstr "" +msgstr "Område1 – nødvendig argument. Det er et celleområde, et navn på et navngitt område, eller en etikett på en kolonne eller en rad, som det tilsvarende kriteriet skal brukes på." #. 45WHz #: ex_data_stat_func.xhp @@ -55085,7 +55085,7 @@ "par_id621619279022341\n" "help.text" msgid "Criterion: A criterion is a single cell Reference, Number or Text. It is used in comparisons with cell contents." -msgstr "" +msgstr "Kriterium: Et kriterium er en enkeltcellereferanse, tall eller tekst. Det brukes i sammenligninger med celleinnhold." #. m9EAG #: ex_data_stat_func.xhp @@ -55094,7 +55094,7 @@ "par_id731619279029255\n" "help.text" msgid "A reference to an empty cell is interpreted as the numeric value 0." -msgstr "" +msgstr "En referanse til en tom celle tolkes som den numeriske verdien 0." #. iYNFV #: ex_data_stat_func.xhp @@ -55103,7 +55103,7 @@ "par_id31619279035359\n" "help.text" msgid "A matching expression can be:" -msgstr "" +msgstr "Et matchende uttrykk kan være:" #. fSoyL #: ex_data_stat_func.xhp @@ -55112,7 +55112,7 @@ "par_id171619279059462\n" "help.text" msgid "A Number or Logical value. A matching cell content equals the Number or Logical value." -msgstr "" +msgstr "Et tall eller en logisk verdi. Et samsvarende celleinnhold tilsvarer tall- eller logisk verdi." #. 7Hfq9 #: ex_data_stat_func.xhp @@ -55121,7 +55121,7 @@ "par_id511619279076504\n" "help.text" msgid "A value beginning with a comparator (<, <=, =, >, >=, <>)." -msgstr "" +msgstr "En verdi som begynner med en komparator (<, <=, =, >, >=, <>)." #. YEjSD #: ex_data_stat_func.xhp @@ -55130,7 +55130,7 @@ "par_id11619279168512\n" "help.text" msgid "For =, if the value is empty it matches empty cells." -msgstr "" +msgstr "For =, hvis verdien er tom, samsvarer den med tomme celler." #. 39AJR #: ex_data_stat_func.xhp @@ -55139,7 +55139,7 @@ "par_id161619279207350\n" "help.text" msgid "For <>, if the value is empty it matches non-empty cells." -msgstr "" +msgstr "For <>, hvis verdien er tom, samsvarer den med ikke-tomme celler." #. 9xDer #: ex_data_stat_func.xhp @@ -55148,7 +55148,7 @@ "par_id271619279215695\n" "help.text" msgid "For <>, if the value is not empty it matches any cell content except the value, including empty cells." -msgstr "" +msgstr "For <>, hvis verdien ikke er tom, samsvarer den med et hvilket som helst celleinnhold bortsett fra verdien, inkludert tomme celler." #. y2EGU #: ex_data_stat_func.xhp @@ -55157,7 +55157,7 @@ "par_id861619279223855\n" "help.text" msgid "Note: \"=0\" does not match empty cells." -msgstr "" +msgstr "Merk: \"=0\" samsvarer ikke med tomme celler." #. QHQaK #: ex_data_stat_func.xhp @@ -55166,7 +55166,7 @@ "par_id51619279363954\n" "help.text" msgid "For = and <>, if the value is not empty and can not be interpreted as a Number type or one of its subtypes and the property Search criteria = and <> must apply to whole cells is checked, comparison is against the entire cell contents, if unchecked, comparison is against any subpart of the field that matches the criteria. For = and <>, if the value is not empty and can not be interpreted as a Number type or one of its subtypes applies." -msgstr "" +msgstr "For = og <>, hvis verdien ikke er tom og ikke kan tolkes som en talltype eller en av dens undertyper og egenskapen Søkekriterier = og < > må gjelde for hele celler er merket, sammenligning er mot hele celleinnholdet, hvis det ikke er merket av, er sammenligning mot enhver underdel av feltet som samsvarer med kriteriene. For = og <>, hvis verdien ikke er tom og ikke kan tolkes som en talltype eller en av dens undertyper gjelder." #. LX8Cp #: ex_data_stat_func.xhp @@ -55175,7 +55175,7 @@ "par_id801619279323556\n" "help.text" msgid "Other Text value. If the property Search criteria = and <> must apply to whole cells is true, the comparison is against the entire cell contents, if false, comparison is against any subpart of the field that matches the criteria. The expression can contain text, numbers, regular expressions or wildcards (if enabled in calculation options)." -msgstr "" +msgstr "Annen tekstverdi. Hvis egenskapen Søkekriterier = og <> må gjelde for hele celler er sann, er sammenligningen mot hele celleinnholdet, hvis falsk, sammenligning er mot enhver underdel av feltet som samsvarer med kriteriene. Uttrykket kan inneholde tekst, tall, regulære uttrykk eller jokertegn (hvis aktivert i beregningsalternativer)." #. sACAB #: ex_data_stat_func.xhp @@ -55184,7 +55184,7 @@ "par_id190621657742\n" "help.text" msgid "Range2 – Optional. Range2 and all the following mean the same as Range1." -msgstr "" +msgstr "Range2 – Valgfritt. Range2 og alle de følgende betyr det samme som Range1." #. FyA7p #: ex_data_stat_func.xhp @@ -55193,7 +55193,7 @@ "par_id317001803813193\n" "help.text" msgid "Criterion2 – Optional. Criterion2 and all the following mean the same as Criterion." -msgstr "" +msgstr "Kriterium 2 – Valgfritt. Kriterium2 og alle de følgende betyr det samme som Kriterium." #. tzFDE #: ex_data_stat_func.xhp @@ -55202,7 +55202,7 @@ "par_id191527781733238\n" "help.text" msgid "The function can have up to 255 arguments, meaning that you can specify 127 criteria ranges and criteria for them." -msgstr "" +msgstr "Funksjonen kan ha opptil 255 argumenter, noe som betyr at du kan angi 127 kriterieområder og kriterier for dem." #. WG9hb #: ex_data_stat_func.xhp @@ -55211,7 +55211,7 @@ "par_id175721789527973\n" "help.text" msgid "If a cell contains TRUE, it is treated as 1, if a cell contains FALSE – as 0 (zero)." -msgstr "" +msgstr "Hvis en celle inneholder SANN, behandles den som 1, hvis en celle inneholder USANN – som 0 (null)." #. BYZni #: exponsmooth_embd.xhp @@ -55220,7 +55220,7 @@ "tit\n" "help.text" msgid "embedded text for exponential smoothing" -msgstr "" +msgstr "innebygd tekst for eksponentiell utjevning" #. iCbmB #: exponsmooth_embd.xhp @@ -55229,7 +55229,7 @@ "par_id0403201618694534\n" "help.text" msgid "Exponential Smoothing is a method to smooth real values in time series in order to forecast probable future values." -msgstr "" +msgstr "Eksponentiell utjevning er en metode for å jevne ut reelle verdier i tidsserier for å forutsi sannsynlige fremtidige verdier." #. dVAbW #: exponsmooth_embd.xhp @@ -55238,7 +55238,7 @@ "par_id0403201618694535\n" "help.text" msgid "Exponential Triple Smoothing (ETS) is a set of algorithms in which both trend and periodical (seasonal) influences are processed. Exponential Double Smoothing (EDS) is an algorithm like ETS, but without the periodical influences. EDS produces linear forecasts." -msgstr "" +msgstr "Eksponentiell trippel utjevning (ETS) er et sett med algoritmer der både trendmessige og periodiske (sesongmessige) påvirkninger behandles. Eksponentiell dobbel utjevning (EDS) er en algoritme som ETS, men uten de periodiske påvirkningene. EDS produserer lineære prognoser." #. dhbgU #: exponsmooth_embd.xhp @@ -55247,7 +55247,7 @@ "par_id0403201618694537\n" "help.text" msgid "See the Wikipedia on Exponential smoothing algorithms for more information." -msgstr "" +msgstr "Se Wikipedia om eksponentielle utjevningsalgoritmer for mer informasjon." #. xkwEK #: exponsmooth_embd.xhp @@ -55256,7 +55256,7 @@ "par_id0403201618594534\n" "help.text" msgid "target (mandatory): A date, time or numeric single value or range. The data point/range for which to calculate a forecast." -msgstr "" +msgstr "mål (obligatorisk): En dato, klokkeslett eller numerisk enkeltverdi eller område. Datapunktet/området som en prognose skal beregnes for." #. WvyAv #: exponsmooth_embd.xhp @@ -55265,7 +55265,7 @@ "par_id040320161859459\n" "help.text" msgid "values (mandatory): A numeric array or range. values are the historical values, for which you want to forecast the next points." -msgstr "" +msgstr "verdier (obligatorisk): En numerisk matrise eller rekkevidde. verdier er de historiske verdiene som du vil forutsi de neste punktene for." #. S6DPQ #: exponsmooth_embd.xhp @@ -55274,7 +55274,7 @@ "par_id0403201618594553\n" "help.text" msgid "timeline (mandatory): A numeric array or range. The timeline (x-value) range for the historical values." -msgstr "" +msgstr "tidslinje (obligatorisk): En numerisk matrise eller rekkevidde. Tidslinjen (x-verdi) for de historiske verdiene." #. Re7Cm #: exponsmooth_embd.xhp @@ -55283,7 +55283,7 @@ "par_id040320161859450\n" "help.text" msgid "The timeline does not have to be sorted, the functions will sort it for calculations.
The timeline values must have a consistent step between them.
If a constant step cannot be identified in the sorted timeline, the functions will return the #NUM! error.
If the ranges of both the timeline and the historical values are not the same size, the functions will return the #N/A error.
If the timeline contains fewer than 2 data periods, the functions will return the #VALUE! error." -msgstr "" +msgstr "Tidslinjen trenger ikke å sorteres, funksjonene vil sortere den for beregninger.
Tidslinjeverdiene må ha et konsistent trinn mellom seg.
Hvis et konstant trinn ikke kan identifiseres i den sorterte tidslinjen, fungerer funksjonene vil returnere #NUM! feil.
Hvis områdene for både tidslinjen og de historiske verdiene ikke er like store, vil funksjonene returnere #N/A-feilen.
Hvis tidslinjen inneholder færre enn 2 dataperioder, vil funksjonene returnerer #VALUE! feil." #. AbNWD #: exponsmooth_embd.xhp @@ -55292,7 +55292,7 @@ "par_id0403201618594513\n" "help.text" msgid "data_completion (optional): a logical value TRUE or FALSE, a numeric 1 or 0, default is 1 (TRUE). A value of 0 (FALSE) will add missing data points with zero as historical value. A value of 1 (TRUE) will add missing data points by interpolating between the neighboring data points." -msgstr "" +msgstr "data_fullføring (valgfritt): en logisk verdi SANN eller USANN, en numerisk 1 eller 0, standard er 1 (SANN). En verdi på 0 (USANN) vil legge til manglende datapunkter med null som historisk verdi. En verdi på 1 (SANN) vil legge til manglende datapunkter ved å interpolere mellom de tilstøtende datapunktene." #. ifpzB #: exponsmooth_embd.xhp @@ -55301,7 +55301,7 @@ "par_id0403201618594678\n" "help.text" msgid "Although the time line requires a constant step between data points, the function support up to 30% missing data points, and will add these data points." -msgstr "" +msgstr "Selv om tidslinjen krever et konstant trinn mellom datapunktene, støtter funksjonen opptil 30 % manglende datapunkter, og vil legge til disse datapunktene." #. VGbrP #: exponsmooth_embd.xhp @@ -55310,7 +55310,7 @@ "par_id0403201618594650\n" "help.text" msgid "aggregation (optional): A numeric value from 1 to 7, with default 1. The aggregation parameter indicates which method will be used to aggregate identical time values:" -msgstr "" +msgstr "aggregering (valgfritt): En numerisk verdi fra 1 til 7, med standard 1. Aggregeringsparameteren angir hvilken metode som skal brukes for å samle identiske tidsverdier:" #. MBCFC #: exponsmooth_embd.xhp @@ -55319,7 +55319,7 @@ "par_id0403201618594696\n" "help.text" msgid "Aggregation" -msgstr "" +msgstr "Aggregasjon" #. bTUni #: exponsmooth_embd.xhp @@ -55373,7 +55373,7 @@ "par_id0403201618594658\n" "help.text" msgid "MEDIAN" -msgstr "" +msgstr "MEDIAN" #. RMqh8 #: exponsmooth_embd.xhp @@ -55400,7 +55400,7 @@ "par_id0403201618595033\n" "help.text" msgid "Although the time line requires a constant step between data points, the functions will aggregate multiple points which have the same time stamp." -msgstr "" +msgstr "Selv om tidslinjen krever et konstant trinn mellom datapunkter, vil funksjonene samle flere punkter som har samme tidsstempel." #. YBhSu #: exponsmooth_embd.xhp @@ -55409,7 +55409,7 @@ "par_id0503201619582693\n" "help.text" msgid "stat_type (mandatory): A numerical value from 1 to 9. A value indicating which statistic will be returned for the given values and x-range." -msgstr "" +msgstr "stat_type (obligatorisk): En numerisk verdi fra 1 til 9. En verdi som indikerer hvilken statistikk som vil bli returnert for de gitte verdiene og x-området." #. dEXx6 #: exponsmooth_embd.xhp @@ -55418,7 +55418,7 @@ "par_id0503201619582620\n" "help.text" msgid "The following statistics can be returned:" -msgstr "" +msgstr "Følgende statistikk kan returneres:" #. veLmQ #: exponsmooth_embd.xhp @@ -55427,7 +55427,7 @@ "par_id0503201619582666\n" "help.text" msgid "stat_type" -msgstr "" +msgstr "stat_type" #. NpXJH #: exponsmooth_embd.xhp @@ -55436,7 +55436,7 @@ "par_id050320161958264\n" "help.text" msgid "Statistics" -msgstr "" +msgstr "Statistikk" #. QQqDD #: exponsmooth_embd.xhp @@ -55445,7 +55445,7 @@ "par_id0503201619582658\n" "help.text" msgid "Alpha smoothing parameter of ETS algorithm (base)" -msgstr "" +msgstr "Alfa-utjevningsparameter for ETS-algoritmen (base)" #. PNjZX #: exponsmooth_embd.xhp @@ -55454,7 +55454,7 @@ "par_id0503201619582673\n" "help.text" msgid "Gamma smoothing parameter of ETS algorithm (trend)" -msgstr "" +msgstr "Gamma-utjevningsparameter for ETS-algoritmen (trend)" #. uTDMt #: exponsmooth_embd.xhp @@ -55463,7 +55463,7 @@ "par_id0503201619582780\n" "help.text" msgid "Beta smoothing parameter of ETS algorithm (periodic deviation)" -msgstr "" +msgstr "Beta-utjevningsparameter for ETS-algoritmen (periodisk avvik)" #. 7U8Gk #: exponsmooth_embd.xhp @@ -55472,7 +55472,7 @@ "par_id0503201619582795\n" "help.text" msgid "Mean absolute scaled error (MASE) - a measure of the accuracy of forecasts." -msgstr "" +msgstr "Gjennomsnittlig absolutt skalert feil (MASE) - et mål på nøyaktigheten til prognoser." #. A3EiB #: exponsmooth_embd.xhp @@ -55481,7 +55481,7 @@ "par_id0503201619582749\n" "help.text" msgid "Symmetric mean absolute percentage error (SMAPE) - an accuracy measure based on percentage errors." -msgstr "" +msgstr "Symmetrisk gjennomsnittlig absolutt prosentvis feil (SMAPE) – et nøyaktighetsmål basert på prosentvise feil." #. TkWGG #: exponsmooth_embd.xhp @@ -55490,7 +55490,7 @@ "par_id0503201619582725\n" "help.text" msgid "Mean absolute error (MAE) – a measure of the accuracy of forecasts." -msgstr "" +msgstr "Gjennomsnittlig absolutt feil (MAE) – et mål på nøyaktigheten til prognoser." #. x76sy #: exponsmooth_embd.xhp @@ -55499,7 +55499,7 @@ "par_id0503201619582750\n" "help.text" msgid "Root mean squared error (RMSE) - a measure of the differences between predicted and observed values." -msgstr "" +msgstr "Rotgjennomsnittlig kvadratfeil (RMSE) - et mål på forskjellene mellom predikerte og observerte verdier." #. ENHdp #: exponsmooth_embd.xhp @@ -55508,7 +55508,7 @@ "par_id0503201619582771\n" "help.text" msgid "Step size detected time line (x-range). When a stepsize in months/quarters/years is detected, the stepsize is in months, otherwise the stepsize is in days in case of date(time) timeline and numeric in other cases." -msgstr "" +msgstr "Trinnstørrelse oppdaget tidslinje (x-område). Når en trinnstørrelse i måneder/kvartaler/år oppdages, er trinnstørrelsen i måneder, ellers er trinnstørrelsen i dager i tilfelle dato(tid) tidslinje og numerisk i andre tilfeller." #. EyQAR #: exponsmooth_embd.xhp @@ -55517,7 +55517,7 @@ "par_id0503201619582717\n" "help.text" msgid "Number of samples in period – this is the same as argument period_length, or the calculated number in case of argument period_length being 1." -msgstr "" +msgstr "Antall prøver i periode – dette er det samme som argumentet periodelengde, eller det beregnede tallet i tilfelle argumentet periodelengde er 1." #. Ahck8 #: exponsmooth_embd.xhp @@ -55526,7 +55526,7 @@ "par_id0503201619582665\n" "help.text" msgid "confidence_level (mandatory): A numeric value between 0 and 1 (exclusive), default is 0.95. A value indicating a confidence level for the calculated prediction interval." -msgstr "" +msgstr "konfidensnivå (obligatorisk): En numerisk verdi mellom 0 og 1 (eksklusivt), standard er 0,95. En verdi som indikerer et konfidensnivå for det beregnede prediksjonsintervallet." #. uCzY7 #: exponsmooth_embd.xhp @@ -55535,7 +55535,7 @@ "par_id0503201619582644\n" "help.text" msgid "With values <= 0 or >= 1, the functions will return the #NUM! Error." -msgstr "" +msgstr "Med verdier <= 0 eller >= 1, vil funksjonene returnere #NUM! Feil." #. FfKPv #: exponsmooth_embd.xhp @@ -55544,7 +55544,7 @@ "par_id0603201609412381\n" "help.text" msgid "period_length (optional): A numeric value >= 0, the default is 1. A positive integer indicating the number of samples in a period." -msgstr "" +msgstr "periodelengde (valgfritt): En numerisk verdi >= 0, standardverdien er 1. Et positivt heltall som indikerer antall prøver i en periode." #. SMBbD #: exponsmooth_embd.xhp @@ -55553,7 +55553,7 @@ "par_id0603201609412399\n" "help.text" msgid "A value of 1 indicates that Calc is to determine the number of samples in a period automatically.
A value of 0 indicates no periodic effects, a forecast is calculated with EDS algorithms.
For all other positive values, forecasts are calculated with ETS algorithms.
For values that not being a positive whole number, the functions will return the #NUM! Error." -msgstr "" +msgstr "En verdi på 1 indikerer at Calc skal bestemme antall prøver i en periode automatisk.
En verdi på 0 indikerer ingen periodiske effekter, en prognose beregnes med EDS-algoritmer.
For alle andre positive verdier beregnes prognoser med ETS-algoritmer.
For verdier som ikke er et positivt heltall, vil funksjonene returnere #NUM! Feil." #. eCBMo #: exponsmooth_embd.xhp @@ -55562,7 +55562,7 @@ "par_id0603201608440579\n" "help.text" msgid "forecast = basevalue + trend * ∆x + periodical_aberration." -msgstr "" +msgstr "prognose = basisverdi + trend * ∆x + periodisk_aberrasjon." #. gvP3t #: exponsmooth_embd.xhp @@ -55571,7 +55571,7 @@ "par_id0603201608440675\n" "help.text" msgid "forecast = ( basevalue + trend * ∆x ) * periodical_aberration." -msgstr "" +msgstr "prognose = ( grunnverdi + trend * ∆x ) * periodisk_aberrasjon." #. Dbe9v #: exponsmooth_embd.xhp @@ -55580,7 +55580,7 @@ "hd_id0603201610005723\n" "help.text" msgid "The table below contains a timeline and its associated values:" -msgstr "" +msgstr "Tabellen nedenfor inneholder en tidslinje og tilhørende verdier:" #. qQFvC #: exponsmooth_embd.xhp @@ -55589,7 +55589,7 @@ "par_id0903201610312235\n" "help.text" msgid "Timeline" -msgstr "" +msgstr "Tidslinje" #. tDYiP #: exponsmooth_embd.xhp @@ -55643,7 +55643,7 @@ "par_id363475\n" "help.text" msgid "Sets the layout and anchoring properties for text in the selected drawing or text object." -msgstr "" +msgstr "Angir layout- og forankringsegenskapene for tekst i det valgte tegne- eller tekstobjektet." #. VLNBS #: format_graphic.xhp @@ -55661,7 +55661,7 @@ "par_id2480544\n" "help.text" msgid "Switches Edit Points mode for an inserted freeform line on and off." -msgstr "" +msgstr "Slå på og av Rediger poeng-modus for en innsatt friformlinje." #. 363bk #: formula2value.xhp @@ -55670,7 +55670,7 @@ "tit\n" "help.text" msgid "Formula to values" -msgstr "" +msgstr "Formel til verdier" #. tthof #: formula2value.xhp @@ -55679,7 +55679,7 @@ "bm_id321645231251889\n" "help.text" msgid "convert;formula to valuesreplace formula with valuesrecalculate;formula to valuesformula to values;convertformula to values;recalculate" -msgstr "" +msgstr "konverter;formel til verdiererstatt formel med verdierrekalkuler;formel til verdierformel til verdier;konverter formel til verdier;rekalkuler" #. xmLmV #: formula2value.xhp @@ -55688,7 +55688,7 @@ "hd_id701645222861113\n" "help.text" msgid "Formula to value" -msgstr "" +msgstr "Formel til verdi" #. CATpt #: formula2value.xhp @@ -55697,7 +55697,7 @@ "par_id501645222861116\n" "help.text" msgid "Replaces the formula cell with value calculated by the formula. The formula is lost." -msgstr "" +msgstr "Erstatter formelcellen med verdi beregnet av formelen. Formelen er tapt." #. AKrcm #: formula2value.xhp @@ -55706,7 +55706,7 @@ "par_id51645230882532\n" "help.text" msgid "Use this command to convert formula cells into data cells. The converted cells contents becomes static and will not be recalculated." -msgstr "" +msgstr "Bruk denne kommandoen til å konvertere formelceller til dataceller. Det konverterte celleinnholdet blir statisk og vil ikke bli beregnet på nytt." #. ebLBc #: ful_func.xhp @@ -55733,7 +55733,7 @@ "hd_id980889808897165\n" "help.text" msgid "Returns" -msgstr "" +msgstr "Returnerer" #. 5MoDd #: ful_func.xhp @@ -55742,7 +55742,7 @@ "par_id631556228511025\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Ja" #. qKsBn #: ful_func.xhp @@ -55751,7 +55751,7 @@ "par_id631556228544875\n" "help.text" msgid "No" -msgstr "" +msgstr "Nei" #. RGGDw #: ful_func.xhp @@ -55760,7 +55760,7 @@ "par_id2595283314097\n" "help.text" msgid "A complex number is a string expression resulting in the form \"a+bi\" or \"a+bj\", where a and b are numbers." -msgstr "" +msgstr "Et komplekst tall er et strenguttrykk som resulterer i formen \"a+bi\" eller \"a+bj\", der a og b er tall." #. JLMgp #: ful_func.xhp @@ -55769,7 +55769,7 @@ "par_id26516178768369\n" "help.text" msgid "If the complex number is actually a real number (b=0), then it can be either a string expression or a number value." -msgstr "" +msgstr "Hvis det komplekse tallet faktisk er et reelt tall (b=0), kan det enten være et strenguttrykk eller en tallverdi." #. 9GGQu #: ful_func.xhp @@ -55778,7 +55778,7 @@ "par_id1566939488738\n" "help.text" msgid "The function always returns a string representing a complex number." -msgstr "" +msgstr "Funksjonen returnerer alltid en streng som representerer et komplekst tall." #. dLhqV #: ful_func.xhp @@ -55787,7 +55787,7 @@ "par_id9623767621137\n" "help.text" msgid "If the result is a complex number with one of its parts (a or b) equal to zero, that part is not displayed." -msgstr "" +msgstr "Hvis resultatet er et komplekst tall med en av delene (a eller b) lik null, vises ikke den delen." #. EBpZM #: ful_func.xhp @@ -55796,7 +55796,7 @@ "par_id962376732432\n" "help.text" msgid "The imaginary part is equal to zero, so it is not displayed in the result." -msgstr "" +msgstr "Den imaginære delen er lik null, så den vises ikke i resultatet." #. FdFji #: ful_func.xhp @@ -55805,7 +55805,7 @@ "par_id29750345314640\n" "help.text" msgid "The result is presented in the string format and has the character \"i\" or \"j\" as an imaginary unit." -msgstr "" +msgstr "Resultatet presenteres i strengformatet og har tegnet \"i\" eller \"j\" som en tenkt enhet." #. CT9jZ #: ful_func.xhp @@ -55814,7 +55814,7 @@ "par_id71584446760037\n" "help.text" msgid "String 1 [; String 2 [; … [; String 255]]]" -msgstr "" +msgstr "Streng 1 [; Streng 2 [; … [; Streng 255]]]" #. 2UTGE #: ful_func.xhp @@ -55823,7 +55823,7 @@ "par_id631556228516997\n" "help.text" msgid "String 1, String 2, … , String 255 are strings, references to cells or to cell ranges of strings." -msgstr "" +msgstr "Streng 1, Streng 2, … , Streng 255 er strenger, referanser til celler eller til celleområder med strenger." #. MFitb #: ful_func.xhp @@ -55832,7 +55832,7 @@ "par_id401584447957914\n" "help.text" msgid "Integer 1 [; Integer 2 [; … [; Integer 255]]]" -msgstr "" +msgstr "Heltall 1 [; Heltall 2 [; … [; Heltall 255]]]" #. yUDDY #: ful_func.xhp @@ -55841,7 +55841,7 @@ "par_id1001584395844941\n" "help.text" msgid "Integer 1, Integer 2, … , Integer 255 are integers, references to cells or to cell ranges of integers." -msgstr "" +msgstr "Heltall 1, Heltall 2, … , Heltall 255 er heltall, referanser til celler eller til celleområder med heltall." #. B6MF9 #: ful_func.xhp @@ -55850,7 +55850,7 @@ "par_id101584447971004\n" "help.text" msgid "Number 1 [; Number 2 [; … [; Number 254]]]" -msgstr "" +msgstr "Nummer 1 [; Nummer 2 [; … [; Nummer 254]]]" #. b96Za #: ful_func.xhp @@ -55859,7 +55859,7 @@ "par_id931584305947010\n" "help.text" msgid "Number 1, Number 2, … , Number 254 are numbers, references to cells or to cell ranges of numbers." -msgstr "" +msgstr "Nummer 1, Nummer 2, … , Nummer 254 er tall, referanser til celler eller til celleområder med tall." #. kEEQr #: ful_func.xhp @@ -55868,7 +55868,7 @@ "par_id101584447970004\n" "help.text" msgid "Number 1 [; Number 2 [; … [; Number 255]]]" -msgstr "" +msgstr "Nummer 1 [; Nummer 2 [; … [; Nummer 255]]]" #. QKcwi #: ful_func.xhp @@ -55877,7 +55877,7 @@ "par_id931584395947010\n" "help.text" msgid "Number 1, Number 2, … , Number 255 are numbers, references to cells or to cell ranges of numbers." -msgstr "" +msgstr "Nummer 1, Nummer 2, … , Nummer 255 er tall, referanser til celler eller til celleområder med tall." #. RLXz8 #: ful_func.xhp @@ -55886,7 +55886,7 @@ "par_id291584447988879\n" "help.text" msgid "Logical 1 [; Logical 2 [; … [; Logical 255]]]" -msgstr "" +msgstr "Logisk 1 [; Logisk 2 [; … [; Logisk 255]]]" #. JTdAs #: ful_func.xhp @@ -55895,7 +55895,7 @@ "par_id931584395957010\n" "help.text" msgid "Logical 1, Logical 2, … , Logical 255 are boolean values, references to cells or to cell ranges of logical values." -msgstr "" +msgstr "Logical 1, Logical 2, … , Logical 255 er boolske verdier, referanser til celler eller til celleområder med logiske verdier." #. unnEF #: ful_func.xhp @@ -55904,7 +55904,7 @@ "par_id91584448008632\n" "help.text" msgid "Complex 1 [; Complex 2 [; … [; Complex 255]]]" -msgstr "" +msgstr "Kompleks 1 [; Kompleks 2 [; … [; Kompleks 255]]]" #. NuCbV #: ful_func.xhp @@ -55913,7 +55913,7 @@ "par_id931584335947010\n" "help.text" msgid "Complex 1, Complex 2, … ,Complex 255 are complex numbers, references to cells or to cell ranges of complex numbers. Complex numbers are entered in the form \"x+yi\" or \"x+yj\"." -msgstr "" +msgstr "Kompleks 1, kompleks 2, … ,kompleks 255 er komplekse tall, referanser til celler eller til celleområder med komplekse tall. Komplekse tall legges inn på formen \"x+yi\" eller \"x+yj\"." #. jWF7Y #: ful_func.xhp @@ -55922,7 +55922,7 @@ "par_id61584448028298\n" "help.text" msgid "Reference 1 [; Reference 2 [; … [; Reference 255]]]" -msgstr "" +msgstr "Referanse 1 [; Referanse 2 [; … [; Referanse 255]]]" #. dxwtx #: ful_func.xhp @@ -55931,7 +55931,7 @@ "par_id431584335947010\n" "help.text" msgid "Reference 1, Reference 2, … ,Reference 255 are references to cells." -msgstr "" +msgstr "Referanse 1, Referanse 2, … ,Referanse 255 er referanser til celler." #. 4BGvn #: ful_func.xhp @@ -55940,7 +55940,7 @@ "par_id1001601332672155\n" "help.text" msgid "This function is always recalculated whenever a recalculation occurs." -msgstr "" +msgstr "Denne funksjonen beregnes alltid på nytt hver gang en ny beregning skjer." #. 8DbP2 #: func_aggregate.xhp @@ -55949,7 +55949,7 @@ "tit\n" "help.text" msgid "AGGREGATE function" -msgstr "" +msgstr "AGGREGER-funksjon" #. X65dG #: func_aggregate.xhp @@ -55976,7 +55976,7 @@ "par_id2209201514174373\n" "help.text" msgid "This function returns an aggregate result of the calculations in the range. You can use different aggregate functions listed below. The Aggregate function enables you to omit hidden rows, errors, SUBTOTAL and other AGGREGATE function results in the calculation." -msgstr "" +msgstr "Denne funksjonen returnerer et samlet resultat av beregningene i området. Du kan bruke forskjellige aggregerte funksjoner som er oppført nedenfor. AGGREGER-funksjonen lar deg utelate skjulte rader, feil, SUBTOTAL og andre AGGREGER-funksjonsresultater i beregningen." #. swMHB #: func_aggregate.xhp @@ -55985,7 +55985,7 @@ "par_id2209201514174453\n" "help.text" msgid "AGGREGATE function is applied to vertical ranges of data with activated AutoFilter. If AutoFilter is not activated, automatic recalculation of the function result does not work for newly hidden rows. It is not supposed to work with horizontal ranges, however it can be applied to them as well, but with limitations. In particular, the AGGREGATE function applied to a horizontal data range does not recognize hiding columns, however correctly omits errors and results of SUBTOTAL and other AGGREGATE functions embedded into the row." -msgstr "" +msgstr "AGGREGER-funksjonen brukes på vertikale dataområder med aktivert AutoFilter. Hvis AutoFilter ikke er aktivert, fungerer ikke automatisk omberegning av funksjonsresultatet for nylig skjulte rader. Det er ikke ment å fungere med horisontale områder, men det kan brukes på dem også, men med begrensninger. Spesielt gjenkjenner ikke AGGREGATE-funksjonen som brukes på et horisontalt dataområde skjulende kolonner, men utelater feil og resultater av SUBTOTAL og andre AGGREGATE-funksjoner som er innebygd i raden." #. 7VEyN #: func_aggregate.xhp @@ -55994,7 +55994,7 @@ "par_id200801176228491\n" "help.text" msgid "AGGREGATE(Function; Option; Number 1[; Number 2][; ... ;[Number 253]])" -msgstr "" +msgstr "AGGREGER(Funksjon; Alternativ; Nummer 1[; Nummer 2][; ... ;[Nummer 253]])" #. Xt2VS #: func_aggregate.xhp @@ -56003,7 +56003,7 @@ "par_id2309201516102726\n" "help.text" msgid "or" -msgstr "" +msgstr "eller" #. 2nzVY #: func_aggregate.xhp @@ -56012,7 +56012,7 @@ "par_id30181907128680\n" "help.text" msgid "AGGREGATE(Function; Option; Array[; k])" -msgstr "" +msgstr "AGGREGER(Funksjon; Alternativ; Matrise[; k])" #. WPGsi #: func_aggregate.xhp @@ -56021,7 +56021,7 @@ "par_id2209201514174378\n" "help.text" msgid "Function – obligatory argument. A function index or a reference to a cell with value from 1 to 19, in accordance with the following table." -msgstr "" +msgstr "Funksjon – obligatorisk argument. En funksjonsindeks eller en referanse til en celle med verdi fra 1 til 19, i samsvar med følgende tabell." #. EKz89 #: func_aggregate.xhp @@ -56039,7 +56039,7 @@ "par_id2309201511454945\n" "help.text" msgid "Function applied" -msgstr "" +msgstr "Funksjon brukt" #. yEcCJ #: func_aggregate.xhp @@ -56147,7 +56147,7 @@ "par_id2309201511360122\n" "help.text" msgid "MEDIAN" -msgstr "" +msgstr "MEDIAN" #. Vm9Es #: func_aggregate.xhp @@ -56156,7 +56156,7 @@ "par_id230920151136016\n" "help.text" msgid "MODE.SNGL" -msgstr "" +msgstr "MODE.SNGL" #. jvBDw #: func_aggregate.xhp @@ -56165,7 +56165,7 @@ "par_id2309201511360180\n" "help.text" msgid "LARGE" -msgstr "" +msgstr "STOR" #. MYUUL #: func_aggregate.xhp @@ -56174,7 +56174,7 @@ "par_id2309201511360150\n" "help.text" msgid "SMALL" -msgstr "" +msgstr "LITEN" #. FK7At #: func_aggregate.xhp @@ -56183,7 +56183,7 @@ "par_id2309201511360157\n" "help.text" msgid "PERCENTILE.INC" -msgstr "" +msgstr "PERCENTILE.INC" #. jRDcG #: func_aggregate.xhp @@ -56192,7 +56192,7 @@ "par_id2309201511360151\n" "help.text" msgid "QUARTILE.INC" -msgstr "" +msgstr "QUARTILE.INC" #. X8cbt #: func_aggregate.xhp @@ -56201,7 +56201,7 @@ "par_id230920151136017\n" "help.text" msgid "PERCENTILE.EXC" -msgstr "" +msgstr "PERCENTILE.EXC" #. x7Qhp #: func_aggregate.xhp @@ -56210,7 +56210,7 @@ "par_id2309201511360169\n" "help.text" msgid "QUARTILE.EXC" -msgstr "" +msgstr "QUARTILE.EXC" #. ZeuFJ #: func_aggregate.xhp @@ -56219,7 +56219,7 @@ "par_id2209201514174372\n" "help.text" msgid "Option – obligatory argument. An option index or reference to a cell with value from 0 to 7 determines what to ignore in the range for the function." -msgstr "" +msgstr "Alternativ – obligatorisk argument. En alternativindeks eller referanse til en celle med verdi fra 0 til 7 bestemmer hva som skal ignoreres i området for funksjonen." #. 3cZPH #: func_aggregate.xhp @@ -56228,7 +56228,7 @@ "par_id2309201512011557\n" "help.text" msgid "Option index" -msgstr "" +msgstr "Alternativindeks" #. Lbpgg #: func_aggregate.xhp @@ -56237,7 +56237,7 @@ "par_id2309201512011551\n" "help.text" msgid "Option applied" -msgstr "" +msgstr "Alternativ brukt" #. ph2Z6 #: func_aggregate.xhp @@ -56246,7 +56246,7 @@ "par_id2309201512011567\n" "help.text" msgid "Ignore only nested SUBTOTAL and AGGREGATE functions" -msgstr "" +msgstr "Ignorer bare nestede SUBTOTAL- og AGGREGER-funksjoner" #. AGUis #: func_aggregate.xhp @@ -56255,7 +56255,7 @@ "par_id315771547630277\n" "help.text" msgid "Ignore only hidden rows, nested SUBTOTAL and AGGREGATE functions" -msgstr "" +msgstr "Ignorer bare skjulte rader, nestede SUBTOTAL- og AGGREGER-funksjoner" #. EAKJn #: func_aggregate.xhp @@ -56264,7 +56264,7 @@ "par_id2309201512011514\n" "help.text" msgid "Ignore only errors, nested SUBTOTAL and AGGREGATE functions" -msgstr "" +msgstr "Ignorer bare feil, nestede SUBTOTAL- og AGGREGER-funksjoner" #. ofBiE #: func_aggregate.xhp @@ -56273,7 +56273,7 @@ "par_id2309201512011547\n" "help.text" msgid "Ignore hidden rows, errors, nested SUBTOTAL and AGGREGATE functions" -msgstr "" +msgstr "Ignorer skjulte rader, feil, nestede SUBTOTAL- og AGGREGER-funksjoner" #. oTDkv #: func_aggregate.xhp @@ -56282,7 +56282,7 @@ "par_id2309201512011510\n" "help.text" msgid "Ignore nothing" -msgstr "" +msgstr "Ignorer ingenting" #. 5SwRv #: func_aggregate.xhp @@ -56291,7 +56291,7 @@ "par_id2309201512011592\n" "help.text" msgid "Ignore only hidden rows" -msgstr "" +msgstr "Ignorer bare skjulte rader" #. eDQoE #: func_aggregate.xhp @@ -56300,7 +56300,7 @@ "par_id230920151201150\n" "help.text" msgid "Ignore only errors" -msgstr "" +msgstr "Ignorer bare feil" #. AEVKM #: func_aggregate.xhp @@ -56309,7 +56309,7 @@ "par_id2309201512011539\n" "help.text" msgid "Ignore only hidden rows and errors" -msgstr "" +msgstr "Ignorer bare skjulte rader og feil" #. ztEnu #: func_aggregate.xhp @@ -56318,7 +56318,7 @@ "par_id220402843321947\n" "help.text" msgid "Number1 – required argument. The first numeric argument (if the range is set by a list of values inside the function) or a reference to a cell that contains it." -msgstr "" +msgstr "Nummer1 – nødvendig argument. Det første numeriske argumentet (hvis området er satt av en liste med verdier inne i funksjonen) eller en referanse til en celle som inneholder den." #. wNPAv #: func_aggregate.xhp @@ -56327,7 +56327,7 @@ "par_id2309201514193338\n" "help.text" msgid "Number2, 3, ... – optional. A numeric argument or a reference to a cell (up to 253 arguments), for which you need the aggregate value." -msgstr "" +msgstr "Nummer2, 3, ... – valgfritt. Et numerisk argument eller en referanse til en celle (opptil 253 argumenter), som du trenger den samlede verdien for." #. VQD44 #: func_aggregate.xhp @@ -56336,7 +56336,7 @@ "par_id99381371214702\n" "help.text" msgid "Array – required argument. The array can be specified by the boundaries of the range, the name of the named range or the column label." -msgstr "" +msgstr "Array – nødvendig argument. Matrisen kan spesifiseres av grensene til området, navnet på det navngitte området eller kolonneetiketten." #. tQG5i #: func_aggregate.xhp @@ -56345,7 +56345,7 @@ "par_id2309201515555812\n" "help.text" msgid "For using column labels “Automatically find columns and rows labels” function needs to be enabled." -msgstr "" +msgstr "For å bruke kolonneetiketter må funksjonen \"Finn automatisk kolonner og rader\" være aktivert." #. FChoZ #: func_aggregate.xhp @@ -56354,7 +56354,7 @@ "par_id2209201514174370\n" "help.text" msgid "k – required argument for the following functions: LARGE, SMALL, PERCENTILE.INC, QUARTILE.INC, PERCENTILE.EXC, QUARTILE.EXC. It is a numeric argument, which must correspond to the second argument of these functions." -msgstr "" +msgstr "k – nødvendig argument for følgende funksjoner: LARGE, SMALL, PERSENTIL.INC, QUARTILE.INC, PERCENTILE.EXC, QUARTILE.EXC. Det er et numerisk argument, som må samsvare med det andre argumentet til disse funksjonene." #. 5M7aG #: func_aggregate.xhp @@ -56363,7 +56363,7 @@ "par_id2309201518454314\n" "help.text" msgid "ColumnOne" -msgstr "" +msgstr "Kolonne én" #. gPqUD #: func_aggregate.xhp @@ -56372,7 +56372,7 @@ "par_id2309201518454361\n" "help.text" msgid "ColumnTwo" -msgstr "" +msgstr "Kolonne to" #. TGf5y #: func_aggregate.xhp @@ -56381,7 +56381,7 @@ "par_id2309201518454323\n" "help.text" msgid "ColumnThree" -msgstr "" +msgstr "Kolonne tre" #. cGmqm #: func_aggregate.xhp @@ -56390,7 +56390,7 @@ "par_id27530261624700\n" "help.text" msgid "#DIV/0!" -msgstr "" +msgstr "#DIV/0!" #. R9Bfd #: func_aggregate.xhp @@ -56399,7 +56399,7 @@ "par_id2309201517384053\n" "help.text" msgid "3" -msgstr "" +msgstr "3" #. WMMFj #: func_aggregate.xhp @@ -56417,7 +56417,7 @@ "par_id230920152006414\n" "help.text" msgid "=AGGREGATE(4;2;A2:A9)
Returns maximum value for the range A2:A9 = 34, whereas =MAX(A2:A9) returns the error Err:511." -msgstr "" +msgstr "=AGGREGER(4;2;A2:A9)
Returnerer maksimalverdi for området A2:A9 = 34, mens =MAX (A2:A9) returnerer feilen Err:511." #. Tx8Vx #: func_aggregate.xhp @@ -56426,7 +56426,7 @@ "par_id2309201520064180\n" "help.text" msgid "=AGGREGATE(9;5;A5:C5)
Returns sum for the range A5:C5 = 29, even if some of the columns are hidden." -msgstr "" +msgstr "=AGGREGER(9;5;A5:C5)
Returnerer summen for området A5:C5 = 29, selv om noen av kolonnene er skjult." #. GPwbY #: func_aggregate.xhp @@ -56435,7 +56435,7 @@ "par_id2309201520064118\n" "help.text" msgid "=AGGREGATE(9;5;B2:B9)
Returns sum of the column B = 115. If any row is hidden, the function omit its value, for example if the 7th row is hidden, the function returns 95." -msgstr "" +msgstr "=AGGREGER(9;5;B2:B9)
Returnerer summen av kolonne B = 115. Hvis en rad er skjult, utelater funksjonen verdien, for eksempel hvis den 7. raden er skjult, returnerer funksjonen 95." #. eyn5c #: func_aggregate.xhp @@ -56444,7 +56444,7 @@ "par_id196152404026557\n" "help.text" msgid "If you need to apply the function with a 3D range, this example shows how to do it." -msgstr "" +msgstr "Hvis du trenger å bruke funksjonen med et 3D-område, viser dette eksemplet hvordan du gjør det." #. nKQgg #: func_aggregate.xhp @@ -56453,7 +56453,7 @@ "par_id2309201520180167\n" "help.text" msgid "=AGGREGATE(13;3;Sheet1.B2:B9:Sheet3.B2:B9)
The function returns mode of the values of second columns through sheets 1:3 (that have the same data) = 8." -msgstr "" +msgstr "=AGGREGER(13;3;Sheet1.B2:B9:Sheet3.B2:B9)
Funksjonen returnerer modus for verdiene til andre kolonner gjennom ark 1:3 (som har samme data) = 8." #. kDEuY #: func_aggregate.xhp @@ -56462,7 +56462,7 @@ "par_id2309201520395365\n" "help.text" msgid "You can use reference to a cell or a range for every argument in the formula. The following example shows how it works. Besides, it shows that you can use column labels to specify an array." -msgstr "" +msgstr "Du kan bruke referanse til en celle eller et område for hvert argument i formelen. Følgende eksempel viser hvordan det fungerer. Dessuten viser det at du kan bruke kolonneetiketter til å spesifisere en matrise." #. cFhbt #: func_aggregate.xhp @@ -56471,7 +56471,7 @@ "par_id2309201520395380\n" "help.text" msgid "=AGGREGATE(E3;E5;'ColumnOne')
If E3 = 13 and E5 = 5, the function returns mode of the first column = 10." -msgstr "" +msgstr "=AGGREGER(E3;E5;'Kolonne en')
Hvis E3 = 13 og E5 = 5, returnerer funksjonen modusen til den første kolonnen = 10." #. cjxCG #: func_aggregate.xhp @@ -56480,7 +56480,7 @@ "par_id241712879431120\n" "help.text" msgid "AVERAGE, COUNT, COUNTA, MAX, MIN, PRODUCT, STDEV.S, STDEV.P, SUM, VAR.S, VAR.P, MEDIAN, MODE.SNGL, LARGE, SMALL, PERCENTILE.INC , QUARTILE.INC, PERCENTILE.EXC, QUARTILE.EXC" -msgstr "" +msgstr "AVERAGE, COUNT, COUNTA, MAX, MIN, PRODUCT, STDEV.S, STDEV.P, SUM, VAR.S, VAR.P, MEDIAN, MODE.SNGL, LARGE, SMALL, PERCENTILE.INC , QUARTILE.INC, PERCENTILE.EXC, QUARTILE.EXC" #. DCMbQ #: func_aggregate.xhp @@ -56489,7 +56489,7 @@ "par_id125062615028497\n" "help.text" msgid "Automatically find column and row labels" -msgstr "" +msgstr "Finn automatisk kolonne- og radetiketter" #. czFkz #: func_arabic.xhp @@ -56498,7 +56498,7 @@ "tit\n" "help.text" msgid "ARABIC Function" -msgstr "" +msgstr "ARABISK funksjon" #. ze8wK #: func_arabic.xhp @@ -56507,7 +56507,7 @@ "bm_id831542233029549\n" "help.text" msgid "ARABIC function text functions;convert roman numbers" -msgstr "" +msgstr "ARABISK funksjon tekstfunksjoner;konverter romerske tall" #. ku3Gp #: func_arabic.xhp @@ -56516,7 +56516,7 @@ "hd_id881628776094597\n" "help.text" msgid "ARABIC" -msgstr "" +msgstr "ARABISK" #. xPXrU #: func_arabic.xhp @@ -56525,7 +56525,7 @@ "par_id541542230672101\n" "help.text" msgid "Returns the numeric value corresponding to a Roman number expressed as text." -msgstr "" +msgstr "Returnerer den numeriske verdien som tilsvarer et romersk tall uttrykt som tekst." #. 2UE9g #: func_arabic.xhp @@ -56534,7 +56534,7 @@ "par_id151634221012221\n" "help.text" msgid "The largest Roman number that can be converted is MMMCMXCIX (or one of its simplified versions), which is equivalent to 3999." -msgstr "" +msgstr "Det største romerske tallet som kan konverteres er MMMCMXCIX (eller en av dets forenklede versjoner), som tilsvarer 3999." #. AueXr #: func_arabic.xhp @@ -56543,7 +56543,7 @@ "par_id701542231253817\n" "help.text" msgid "ARABIC(Text)" -msgstr "" +msgstr "ARABISK(tekst)" #. sWMEb #: func_arabic.xhp @@ -56552,7 +56552,7 @@ "par_id621542232197446\n" "help.text" msgid "Text: text representing a Roman number." -msgstr "" +msgstr "Tekst: tekst som representerer et romersk tall." #. WcE8r #: func_arabic.xhp @@ -56561,7 +56561,7 @@ "par_id451628776707264\n" "help.text" msgid "=ARABIC(\"MXIV\") returns the numeric value 1014." -msgstr "" +msgstr "=ARABIC(\"MXIV\") returnerer den numeriske verdien 1014." #. hDmDF #: func_arabic.xhp @@ -56570,7 +56570,7 @@ "par_id101628778036375\n" "help.text" msgid "=ARABIC(\"MMII\") returns the numeric value 2002." -msgstr "" +msgstr "=ARABIC(\"MMII\") returnerer den numeriske verdien 2002." #. XAwC8 #: func_arabic.xhp @@ -56579,7 +56579,7 @@ "par_id101628778036134\n" "help.text" msgid "=ARABIC(\"\") returns 0." -msgstr "" +msgstr "=ARABIC(\"\") returnerer 0." #. yugTC #: func_asc.xhp @@ -56588,7 +56588,7 @@ "tit\n" "help.text" msgid "ASC Function" -msgstr "" +msgstr "ASC funksjon" #. H3kmF #: func_asc.xhp @@ -56597,7 +56597,7 @@ "bm_id831542233029549\n" "help.text" msgid "ASC function text functions;katakana characters" -msgstr "" +msgstr "ASC-funksjon tekstfunksjoner;katakana-tegn" #. 4QDi7 #: func_asc.xhp @@ -56606,7 +56606,7 @@ "hd_id881628776094597\n" "help.text" msgid "ASC" -msgstr "" +msgstr "ASC" #. gtGVG #: func_asc.xhp @@ -56615,7 +56615,7 @@ "par_id541542230672101\n" "help.text" msgid "Converts double-byte (full-width) characters to single-byte (half-width) ASCII and katakana characters." -msgstr "" +msgstr "Konverterer dobbelbyte (full bredde) tegn til enkeltbyte (halvbredde) ASCII- og katakana-tegn." #. XLLvR #: func_asc.xhp @@ -56624,7 +56624,7 @@ "par_id151634221012221\n" "help.text" msgid "See https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions for a conversion table." -msgstr "" +msgstr "Se https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions for en konverteringstabell." #. nWQan #: func_asc.xhp @@ -56633,7 +56633,7 @@ "par_id701542231253817\n" "help.text" msgid "ASC(Text)" -msgstr "" +msgstr "ASC(tekst)" #. npFEH #: func_asc.xhp @@ -56642,7 +56642,7 @@ "par_id621542232197446\n" "help.text" msgid "Text: the text string that contains characters to be converted." -msgstr "" +msgstr "Tekst: tekststrengen som inneholder tegn som skal konverteres." #. d9fM4 #: func_asc.xhp @@ -56651,7 +56651,7 @@ "par_id481637763523789\n" "help.text" msgid "Applying the ASC function to a string composed of single-byte characters will return the input string without any modifications." -msgstr "" +msgstr "Hvis du bruker ASC-funksjonen på en streng som består av enkeltbyte-tegn, returneres inndatastrengen uten noen endringer." #. QXBHB #: func_asc.xhp @@ -56660,7 +56660,7 @@ "par_id451628776707264\n" "help.text" msgid "=ASC(\"LibreOffice\") returns the string \"LibreOffice\". No modifications were made because all characters are single-byte characters." -msgstr "" +msgstr "=ASC(\"LibreOffice\") returnerer strengen \"LibreOffice\". Ingen endringer ble gjort fordi alle tegn er enkeltbyte-tegn." #. f8rff #: func_asc.xhp @@ -56669,7 +56669,7 @@ "par_id101628778036375\n" "help.text" msgid "=ASC(\"ライト\") returns the string \"ライト\", which is composed of single-byte characters." -msgstr "" +msgstr "=ASC(\"ライト\") returnerer strengen \"ライト\",som er sammensatt av enkeltbyte-tegn." #. y9q7t #: func_averageif.xhp @@ -56678,7 +56678,7 @@ "tit\n" "help.text" msgid "AVERAGEIF function" -msgstr "" +msgstr "AVERAGEIF funksjon" #. Xqih3 #: func_averageif.xhp @@ -56705,7 +56705,7 @@ "par_id7281266615152\n" "help.text" msgid "Returns the arithmetic mean of all cells in a range that satisfy a given condition. The AVERAGEIF function sums up all the results that match the logical test and divides this sum by the quantity of selected values." -msgstr "" +msgstr "Returnerer det aritmetiske gjennomsnittet av alle celler i et område som tilfredsstiller en gitt betingelse. AVERAGEIF-funksjonen summerer opp alle resultatene som samsvarer med den logiske testen og deler denne summen på antallet valgte verdier." #. jto8p #: func_averageif.xhp @@ -56714,7 +56714,7 @@ "par_id200801176228491\n" "help.text" msgid "AVERAGEIF(Range; Criterion [; Average_Range ])" -msgstr "" +msgstr "AVERAGEIF(Rekkevidde; Kriterium [; Gjennomsnittlig_Rekkevidde])" #. CCW4A #: func_averageif.xhp @@ -56723,7 +56723,7 @@ "par_id15226321619829\n" "help.text" msgid "Range – required argument. An array, a name of named range or a label of a column or a row containing numbers for averaging or numbers or text for the condition." -msgstr "" +msgstr "Rekkevidde – nødvendig argument. En matrise, et navn på et navngitt område eller en etikett for en kolonne eller en rad som inneholder tall for gjennomsnittsberegning eller tall eller tekst for betingelsen." #. sDeiD #: func_averageif.xhp @@ -56732,7 +56732,7 @@ "par_id174711913219765\n" "help.text" msgid "Average_Range – optional. It is a range of values for calculating the mean." -msgstr "" +msgstr "Average_Range – valgfritt. Det er et verdiområde for å beregne gjennomsnittet." #. kCbPD #: func_averageif.xhp @@ -56741,7 +56741,7 @@ "par_id45123108916423\n" "help.text" msgid "If the Average_Range is not specified, Range is used for both, the calculation of the mean and the search according to the condition. If Average_Range is specified, the Range is used only for the condition test, while Average_Range is used for the average calculation." -msgstr "" +msgstr "Hvis Gjennomsnittlig_Område ikke er spesifisert, brukes Område for både beregningen av gjennomsnittet og søket i henhold til betingelsen. Hvis Gjennomsnittlig_Område er spesifisert, brukes Område kun for tilstandstesten, mens Gjennomsnittlig_Område brukes for gjennomsnittsberegningen." #. 8v8Zv #: func_averageif.xhp @@ -56750,7 +56750,7 @@ "par_id278275053653\n" "help.text" msgid "If a cell in a range of values for calculating the mean is empty or contains text, function AVERAGEIF ignores this cell.
If the whole range is empty, contains only text or all values of the range do not satisfy the condition (or any combination of those), the function returns the #DIV/0! error." -msgstr "" +msgstr "Hvis en celle i et verdiområde for beregning av gjennomsnittet er tom eller inneholder tekst, ignorerer funksjon AVERAGEIF denne cellen.
Hvis hele området er tomt, inneholder det bare tekst eller alle verdiene i området ikke oppfyller betingelsene ( eller en kombinasjon av disse), returnerer funksjonen #DIV/0! feil." #. u7E4B #: func_averageif.xhp @@ -56759,7 +56759,7 @@ "hd_id229513120314273\n" "help.text" msgid "Simple usage" -msgstr "" +msgstr "Enkel bruk" #. CqBc8 #: func_averageif.xhp @@ -56777,7 +56777,7 @@ "par_id11322891219251\n" "help.text" msgid "Calculates the average for values of the range B2:B6 that are less than 35. Returns 19, because the second row does not participate in the calculation." -msgstr "" +msgstr "Beregner gjennomsnittet for verdier i området B2:B6 som er mindre enn 35. Returnerer 19, fordi den andre raden ikke deltar i beregningen." #. qcBmp #: func_averageif.xhp @@ -56795,7 +56795,7 @@ "par_id3813266131474\n" "help.text" msgid "Calculates the average for values of the same range that are less than the maximum value of this range. Returns 19, because the largest value (the second row) does not participate in the calculation." -msgstr "" +msgstr "Beregner gjennomsnittet for verdier i samme område som er mindre enn maksimumsverdien for dette området. Returnerer 19, fordi den største verdien (den andre raden) ikke deltar i beregningen." #. oFhok #: func_averageif.xhp @@ -56813,7 +56813,7 @@ "par_id243522732832394\n" "help.text" msgid "Calculates the average for values of the same range that are greater than the first smallest value of this range. Returns 25, because the first smallest value (the fourth row) does not participate in the calculation." -msgstr "" +msgstr "Beregner gjennomsnittet for verdier i samme område som er større enn den første minste verdien i dette området. Returnerer 25, fordi den første minste verdien (den fjerde raden) ikke deltar i beregningen." #. gxAAH #: func_averageif.xhp @@ -56822,7 +56822,7 @@ "hd_id2101254257133\n" "help.text" msgid "Using the Average_Range" -msgstr "" +msgstr "Bruk av Gjennomsnittlig_Område" #. 4oRE4 #: func_averageif.xhp @@ -56840,7 +56840,7 @@ "par_id148222637631350\n" "help.text" msgid "The function searches what values are less than 35 in the B2:B6 range, and calculates the average of corresponding values from the C2:C6 range. Returns 145, because the second row does not participate in the calculation." -msgstr "" +msgstr "Funksjonen søker etter hvilke verdier som er mindre enn 35 i B2:B6-området, og beregner gjennomsnittet av tilsvarende verdier fra C2:C6-området. Returnerer 145, fordi den andre raden ikke inngår i beregningen." #. crnMW #: func_averageif.xhp @@ -56858,7 +56858,7 @@ "par_id2412836525208\n" "help.text" msgid "The function searches what values from the range B2:B6 are greater than the least value in the B2:B6 range, and calculates the average of corresponding values from the C2:C6 range. Returns 113.3, because the fourth row (where there is the least value in the range B2:B6) does not participate in the calculation." -msgstr "" +msgstr "Funksjonen søker etter hvilke verdier fra området B2:B6 som er større enn den minste verdien i B2:B6-området, og beregner gjennomsnittet av tilsvarende verdier fra C2:C6-området. Returnerer 113,3, fordi den fjerde raden (der det er den minste verdien i området B2:B6) ikke inngår i beregningen." #. HAi7e #: func_averageif.xhp @@ -56876,7 +56876,7 @@ "par_id173931101529497\n" "help.text" msgid "The function searches what values from the range B2:B6 are less than the second large value in the B2:B6 range, and calculates the average of corresponding values from the C2:C6 range. Returns 180, because only the fourth row participates in the calculation." -msgstr "" +msgstr "Funksjonen søker etter hvilke verdier fra området B2:B6 som er mindre enn den andre store verdien i B2:B6-området, og beregner gjennomsnittet av tilsvarende verdier fra C2:C6-området. Returnerer 180, fordi bare den fjerde raden inngår i beregningen." #. Naigm #: func_averageif.xhp @@ -56885,7 +56885,7 @@ "hd_id30054471316969\n" "help.text" msgid "Using regular expressions" -msgstr "" +msgstr "Bruke regulære uttrykk" #. rJEzm #: func_averageif.xhp @@ -56903,7 +56903,7 @@ "par_id14714860719948\n" "help.text" msgid "The function searches what cells from the range A2:A6 contain only the word “pen”, and calculates the average of corresponding values from the B2:B6 range. Returns 35, because only the second row participates in the calculation. The search is performed in the A2:A6 range, but the values are returned from the B2:B6 range." -msgstr "" +msgstr "Funksjonen søker etter hvilke celler fra området A2:A6 som bare inneholder ordet \"penn\", og beregner gjennomsnittet av tilsvarende verdier fra B2:B6-området. Returnerer 35, fordi bare den andre raden inngår i beregningen. Søket utføres i A2:A6-området, men verdiene returneres fra B2:B6-området." #. g76se #: func_averageif.xhp @@ -56921,7 +56921,7 @@ "par_id26959239098104\n" "help.text" msgid "The function searches what cells from the range A2:A6 begin with “pen” ending with any quantity of other characters, and calculates the average of corresponding values from the B2:B6 range. Returns 27.5, because now also “pencil” satisfies the condition, and both, first and second rows participate in the calculation." -msgstr "" +msgstr "Funksjonen søker etter hvilke celler fra området A2:A6 som begynner med \"penn\" som slutter med en hvilken som helst mengde andre tegn, og beregner gjennomsnittet av tilsvarende verdier fra B2:B6-området. Returnerer 27,5, fordi nå også \"blyant\" tilfredsstiller betingelsen, og både første og andre rad inngår i beregningen." #. L3vXX #: func_averageif.xhp @@ -56939,7 +56939,7 @@ "par_id227041304619482\n" "help.text" msgid "The function searches what cells from the range A2:A6 contain “book” starting and ending with any quantity of other characters, and calculates the average of corresponding values from the B2:B6 range. Returns 18.5, because only third and fourth rows participate in the calculation." -msgstr "" +msgstr "Funksjonen søker etter hvilke celler fra området A2:A6 som inneholder \"bok\" som starter og slutter med et hvilket som helst antall andre tegn, og beregner gjennomsnittet av tilsvarende verdier fra B2:B6-området. Returnerer 18,5, fordi kun tredje og fjerde rad inngår i utregningen." #. SGMWy #: func_averageif.xhp @@ -56948,7 +56948,7 @@ "hd_id251309885188\n" "help.text" msgid "Reference to a cell as a criterion" -msgstr "" +msgstr "Referanse til en celle som et kriterium" #. CnVcF #: func_averageif.xhp @@ -56957,7 +56957,7 @@ "par_id177972099720424\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of AVERAGEIF function." -msgstr "" +msgstr "Hvis du trenger å endre et kriterium enkelt, kan det være lurt å spesifisere det i en egen celle og bruke en referanse til denne cellen i tilstanden AVERAGEIF-funksjonen." #. 3i7KZ #: func_averageif.xhp @@ -56975,7 +56975,7 @@ "par_id172572288310247\n" "help.text" msgid "The function searches what cells from the range A2:A6 contain a combination of characters specified in E2 starting and ending with any quantity of other characters, and calculates the average of corresponding values from the B2:B6 range. If E2 = book, the function returns 18.5." -msgstr "" +msgstr "Funksjonen søker etter hvilke celler fra området A2:A6 som inneholder en kombinasjon av tegn spesifisert i E2 som starter og slutter med en hvilken som helst mengde andre tegn, og beregner gjennomsnittet av tilsvarende verdier fra B2:B6-området. Hvis E2 = bok, returnerer funksjonen 18.5." #. 2W6Qv #: func_averageif.xhp @@ -56993,7 +56993,7 @@ "par_id302181300528607\n" "help.text" msgid "The function searches what cells from the range B2:B6 are less than the value specified in E2, and calculates the average of corresponding values from the C2:C6 range. If E2 = 35, the function returns 145." -msgstr "" +msgstr "Funksjonen søker etter hvilke celler fra området B2:B6 som er mindre enn verdien spesifisert i E2, og beregner gjennomsnittet av tilsvarende verdier fra C2:C6-området. Hvis E2 = 35, returnerer funksjonen 145." #. TUEKr #: func_averageifs.xhp @@ -57002,7 +57002,7 @@ "tit\n" "help.text" msgid "AVERAGEIFS function" -msgstr "" +msgstr "AVERAGEIFS funksjon" #. DDuFq #: func_averageifs.xhp @@ -57029,7 +57029,7 @@ "par_id538405384053840\n" "help.text" msgid "Returns the arithmetic mean of all cells in a range that satisfy given multiple criteria. The AVERAGEIFS function sums up all the results that match the logical tests and divides this sum by the quantity of selected values." -msgstr "" +msgstr "Returnerer det aritmetiske gjennomsnittet av alle celler i et område som tilfredsstiller gitte flere kriterier. AVERAGEIFS-funksjonen summerer opp alle resultatene som samsvarer med de logiske testene og deler denne summen på antallet valgte verdier." #. zNyZv #: func_averageifs.xhp @@ -57038,7 +57038,7 @@ "par_id21050267713178\n" "help.text" msgid "AVERAGEIFS()" -msgstr "" +msgstr "AVERAGEIFS()" #. 8gSoS #: func_averageifs.xhp @@ -57047,7 +57047,7 @@ "par_id165832700711773\n" "help.text" msgid "Func_range – required argument. It is a range of cells, a name of a named range or a label of a column or a row containing values for calculating the mean." -msgstr "" +msgstr "Func_range – nødvendig argument. Det er et celleområde, et navn på et navngitt område eller en etikett for en kolonne eller en rad som inneholder verdier for å beregne gjennomsnittet." #. y7NZn #: func_averageifs.xhp @@ -57056,7 +57056,7 @@ "hd_id20733192524041\n" "help.text" msgid "Simple usage" -msgstr "" +msgstr "Enkel bruk" #. bcbN9 #: func_averageifs.xhp @@ -57074,7 +57074,7 @@ "par_id30201168686268\n" "help.text" msgid "Calculates the average for values of the range B2:B6 that are greater than or equal to 20. Returns 25, because the fifth row does not meet the criterion." -msgstr "" +msgstr "Beregner gjennomsnittet for verdier i området B2:B6 som er større enn eller lik 20. Returnerer 25, fordi den femte raden ikke oppfyller kriteriet." #. zb4se #: func_averageifs.xhp @@ -57092,7 +57092,7 @@ "par_id2930764965983\n" "help.text" msgid "Calculates the average for values of the range C2:C6 that are greater than 70 and correspond to cells of B2:B6 with values greater than or equal to 20. Returns 137.5, because the second and fifth rows do not meet at least one criterion." -msgstr "" +msgstr "Beregner gjennomsnittet for verdier i området C2:C6 som er større enn 70 og tilsvarer celler i B2:B6 med verdier større enn eller lik 20. Returnerer 137,5, fordi andre og femte rad ikke oppfyller minst ett kriterium." #. 2pMbp #: func_averageifs.xhp @@ -57101,7 +57101,7 @@ "hd_id317532515726820\n" "help.text" msgid "Using regular expressions and nested functions" -msgstr "" +msgstr "Bruke regulære uttrykk og nestede funksjoner" #. qZDFB #: func_averageifs.xhp @@ -57110,7 +57110,7 @@ "par_id457966021670\n" "help.text" msgid "=AVERAGEIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=AVERAGEIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" #. oghLv #: func_averageifs.xhp @@ -57119,7 +57119,7 @@ "par_id66091035229950\n" "help.text" msgid "Calculates the average for values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 127.5, because the third and fifth rows do not meet at least one criterion." -msgstr "" +msgstr "Beregner gjennomsnittet for verdier i området C2:C6 som tilsvarer alle verdiene i området B2:B6 bortsett fra minimum og maksimum. Returnerer 127,5, fordi tredje og femte rad ikke oppfyller minst ett kriterium." #. C7fCW #: func_averageifs.xhp @@ -57128,7 +57128,7 @@ "par_id303162761931870\n" "help.text" msgid "=AVERAGEIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=AVERAGEIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<\"&MAX(B2:B6))" #. eo7jB #: func_averageifs.xhp @@ -57137,7 +57137,7 @@ "par_id40031348913642\n" "help.text" msgid "Calculates the average for values of the range C2:C6 that correspond to all cells of the A2:A6 range starting with \"pen\" and to all cells of the B2:B6 range except its maximum. Returns 65, because only second row meets all criteria." -msgstr "" +msgstr "Beregner gjennomsnittet for verdier i området C2:C6 som tilsvarer alle cellene i A2:A6-området som starter med \"penn\" og til alle cellene i B2:B6-området bortsett fra maksimum. Returnerer 65, fordi bare andre rad oppfyller alle kriteriene." #. qyrrP #: func_averageifs.xhp @@ -57146,7 +57146,7 @@ "hd_id31201205191857\n" "help.text" msgid "Reference to a cell as a criterion" -msgstr "" +msgstr "Referanse til en celle som et kriterium" #. DqjCH #: func_averageifs.xhp @@ -57155,7 +57155,7 @@ "par_id316794795433\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of AVERAGEIFS function. For example, the above function can be rewritten as follows:" -msgstr "" +msgstr "Hvis du trenger å endre et kriterium enkelt, kan det være lurt å spesifisere det i en egen celle og bruke en referanse til denne cellen i tilstanden til AVERAGEIFS-funksjonen. For eksempel kan funksjonen ovenfor skrives om som følger:" #. B8bav #: func_averageifs.xhp @@ -57164,7 +57164,7 @@ "par_id67531072426731\n" "help.text" msgid "=AVERAGEIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=AVERAGEIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))" #. E3TZv #: func_averageifs.xhp @@ -57173,7 +57173,7 @@ "par_id65612244926745\n" "help.text" msgid "If E2 = pen, the function returns 65, because the link to the cell is substituted with its content." -msgstr "" +msgstr "Hvis E2 = penn, returnerer funksjonen 65, fordi lenken til cellen er erstattet med innholdet." #. s6GFW #: func_ceiling.xhp @@ -57182,7 +57182,7 @@ "tit\n" "help.text" msgid "Ceiling functions" -msgstr "" +msgstr "Takfunksjoner" #. EWCte #: func_ceiling.xhp @@ -57191,7 +57191,7 @@ "hd_id971586216771519\n" "help.text" msgid "Ceiling functions" -msgstr "" +msgstr "Takfunksjoner" #. M92qb #: func_ceiling.xhp @@ -57200,7 +57200,7 @@ "bm_id3152518\n" "help.text" msgid "CEILING functionrounding;up to multiples of significance" -msgstr "" +msgstr "TAK-funksjonavrunding;opp til multipler av betydning" #. cGa5K #: func_ceiling.xhp @@ -57209,7 +57209,7 @@ "hd_id3152518\n" "help.text" msgid "CEILING" -msgstr "" +msgstr "CEILING" #. Co8xT #: func_ceiling.xhp @@ -57218,7 +57218,7 @@ "par_id3153422\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Runder et tall til nærmeste multiplum av en signifikansverdi." #. PfT3s #: func_ceiling.xhp @@ -57227,7 +57227,7 @@ "par_id601586207136514\n" "help.text" msgid "For a positive number and a positive significance value, the function rounds up (away from zero). For a negative number and a negative significance value, the direction of rounding is determined by the value of a mode parameter. The function returns an error if the number and significance values have opposite signs." -msgstr "" +msgstr "For et positivt tall og en positiv signifikansverdi runder funksjonen opp (bort fra null). For et negativt tall og en negativ signifikansverdi bestemmes avrundingsretningen av verdien til en modusparameter. Funksjonen returnerer en feil hvis tall- og signifikansverdiene har motsatte fortegn." #. 6AFh7 #: func_ceiling.xhp @@ -57236,7 +57236,7 @@ "par_id3163792\n" "help.text" msgid "If the spreadsheet is exported to Microsoft Excel, the CEILING function is exported as the equivalent CEILING.MATH function that has existed since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either CEILING.PRECISE that has existed since Excel 2010, or CEILING.XCL that is exported as the CEILING function compatible with all Excel versions." -msgstr "" +msgstr "Hvis regnearket eksporteres til Microsoft Excel, eksporteres CEILING-funksjonen som den tilsvarende CEILING.MATH-funksjonen som har eksistert siden Excel 2013. Hvis du planlegger å bruke regnearket med tidligere Excel-versjoner, bruk enten CEILING.PRECISE som har eksistert siden Excel 2010, eller CEILING.XCL som eksporteres som CEILING-funksjonen kompatibel med alle Excel-versjoner." #. 3DwLL #: func_ceiling.xhp @@ -57245,7 +57245,7 @@ "par_id3153454\n" "help.text" msgid "CEILING(Number [; Significance [; Mode]])" -msgstr "" +msgstr "CEILING(Tall [; Betydning [; Modus]])" #. XHjhc #: func_ceiling.xhp @@ -57254,7 +57254,7 @@ "par_id3153467\n" "help.text" msgid "Number is the number that is to be rounded, or a reference to a cell containing the number." -msgstr "" +msgstr "Tall er tallet som skal avrundes, eller en referanse til en celle som inneholder tallet." #. XEqxw #: func_ceiling.xhp @@ -57263,7 +57263,7 @@ "par_id3155000\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to +1 or -1 depending on the sign of Number." -msgstr "" +msgstr "Betydning (valgfritt) er verdien, eller en referanse til en celle som inneholder verdien, hvis multiple Tall skal avrundes til. Den er standard til +1 eller -1 avhengig av tegnet på Tall." #. AosjB #: func_ceiling.xhp @@ -57272,7 +57272,7 @@ "par_id3155020\n" "help.text" msgid "Mode (optional) is a number, or a reference to a cell containing a number. The function only uses Mode if both Number and Significance are negative. Then if Mode is given and not equal to zero, numbers are rounded down (away from zero); if Mode is equal to zero or not given, negative numbers are rounded up (towards zero)." -msgstr "" +msgstr "Modus (valgfritt) er et tall, eller en referanse til en celle som inneholder et tall. Funksjonen bruker bare Mode hvis både Tall og Betydning er negative. Så hvis Mode er gitt og ikke lik null, rundes tallene ned (bort fra null); hvis Modus er lik null eller ikke gitt, rundes negative tall opp (mot null)." #. Ka9pC #: func_ceiling.xhp @@ -57281,7 +57281,7 @@ "par_id281586208138400\n" "help.text" msgid "=CEILING(3.45) returns 4." -msgstr "" +msgstr "=CEILING(3,45) returnerer 4." #. UTtFZ #: func_ceiling.xhp @@ -57290,7 +57290,7 @@ "par_id921586208142416\n" "help.text" msgid "=CEILING(3.45; 3) returns 6." -msgstr "" +msgstr "=CEILING(3,45; 3) returnerer 6." #. XGfA3 #: func_ceiling.xhp @@ -57299,7 +57299,7 @@ "par_id921586208146984\n" "help.text" msgid "=CEILING(-1.234) returns -1." -msgstr "" +msgstr "=CEILING(-1,234) returnerer -1." #. ZWjxy #: func_ceiling.xhp @@ -57308,7 +57308,7 @@ "par_id491586208152183\n" "help.text" msgid "=CEILING(-45.67; -2; 0) returns -44." -msgstr "" +msgstr "=CEILING(-45,67; -2; 0) returnerer -44." #. Auwyx #: func_ceiling.xhp @@ -57317,7 +57317,7 @@ "par_id291586208158119\n" "help.text" msgid "=CEILING(-45.67; -2; 1) returns -46." -msgstr "" +msgstr "=CEILING(-45,67; -2; 1) returnerer -46." #. rZ78k #: func_ceiling.xhp @@ -57326,7 +57326,7 @@ "bm_id2952518\n" "help.text" msgid "CEILING.PRECISE functionrounding;up to multiples of significance" -msgstr "" +msgstr "CEILING.PRECISE-funksjonavrunding;opp til multipler av betydning" #. JGH6b #: func_ceiling.xhp @@ -57335,7 +57335,7 @@ "hd_id2952518\n" "help.text" msgid "CEILING.PRECISE" -msgstr "" +msgstr "CEILING.PRECISE" #. aTD6P #: func_ceiling.xhp @@ -57344,7 +57344,7 @@ "par_id2953422\n" "help.text" msgid "Rounds a number up to the nearest multiple of a significance value." -msgstr "" +msgstr "Runder et tall opp til nærmeste multiplum av en signifikansverdi." #. BjuBa #: func_ceiling.xhp @@ -57353,7 +57353,7 @@ "par_id151586642494759\n" "help.text" msgid "For a positive number the function rounds up (away from zero). For a negative number, the function rounds up (towards zero). The sign of the significance value is ignored." -msgstr "" +msgstr "For et positivt tall runder funksjonen opp (bort fra null). For et negativt tall runder funksjonen opp (mot null). Tegnet på signifikansverdien ignoreres." #. zDBKp #: func_ceiling.xhp @@ -57362,7 +57362,7 @@ "par_id631586642933797\n" "help.text" msgid "This function calculates identical results to the ISO.CEILING function." -msgstr "" +msgstr "Denne funksjonen beregner identiske resultater med ISO.CEILING-funksjonen." #. BASfr #: func_ceiling.xhp @@ -57371,7 +57371,7 @@ "par_id2953454\n" "help.text" msgid "CEILING.PRECISE(Number [; Significance])" -msgstr "" +msgstr "CEILING.PRECISE(Tall [; Signifikans])" #. FaYeD #: func_ceiling.xhp @@ -57380,7 +57380,7 @@ "par_id2955000\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to 1." -msgstr "" +msgstr "Betydning (valgfritt) er verdien, eller en referanse til en celle som inneholder verdien, hvis multiple Tall skal avrundes til. Den er som standard 1." #. 8WiRx #: func_ceiling.xhp @@ -57389,7 +57389,7 @@ "par_id201586213398634\n" "help.text" msgid "=CEILING.PRECISE(3.45) returns 4." -msgstr "" +msgstr "=CEILING.PRECISE(3,45) returnerer 4." #. KxeUC #: func_ceiling.xhp @@ -57398,7 +57398,7 @@ "par_id651586213406243\n" "help.text" msgid "=CEILING.PRECISE(-45.67; 2) returns -44." -msgstr "" +msgstr "=CEILING.PRECISE(-45,67; 2) returnerer -44." #. WV9bx #: func_ceiling.xhp @@ -57407,7 +57407,7 @@ "bm_id911516997198644\n" "help.text" msgid "CEILING.MATH function" -msgstr "" +msgstr "CEILING.MATH-funksjon" #. AuCnM #: func_ceiling.xhp @@ -57416,7 +57416,7 @@ "hd_id91516997330445\n" "help.text" msgid "CEILING.MATH" -msgstr "" +msgstr "CEILING.MATH" #. AzJvD #: func_ceiling.xhp @@ -57425,7 +57425,7 @@ "par_id81516997342088\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Runder et tall til nærmeste multiplum av en signifikansverdi." #. QLGe7 #: func_ceiling.xhp @@ -57434,7 +57434,7 @@ "par_id911586642319078\n" "help.text" msgid "For a positive number the function rounds up (away from zero). For a negative number, the direction of rounding is determined by the value of a mode parameter. The sign of the significance value is ignored." -msgstr "" +msgstr "For et positivt tall runder funksjonen opp (bort fra null). For et negativt tall bestemmes avrundingsretningen av verdien til en modusparameter. Tegnet på signifikansverdien ignoreres." #. aYczG #: func_ceiling.xhp @@ -57443,7 +57443,7 @@ "par_id291516998575663\n" "help.text" msgid "This function exists for interoperability with Microsoft Excel 2013 or newer." -msgstr "" +msgstr "Denne funksjonen eksisterer for interoperabilitet med Microsoft Excel 2013 eller nyere." #. pcXnS #: func_ceiling.xhp @@ -57452,7 +57452,7 @@ "par_id841516997669932\n" "help.text" msgid "CEILING.MATH(Number [; Significance [; Mode]])" -msgstr "" +msgstr "CEILING.MATH(Tall [; Signifikans [; Modus]])" #. EAezJ #: func_ceiling.xhp @@ -57461,7 +57461,7 @@ "par_id491516997725772\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to 1." -msgstr "" +msgstr "Betydning (valgfritt) er verdien, eller en referanse til en celle som inneholder verdien, hvis multiple Tall skal avrundes til. Den er som standard 1." #. EiWLa #: func_ceiling.xhp @@ -57470,7 +57470,7 @@ "par_id451516997742909\n" "help.text" msgid "Mode (optional) is a number, or a reference to a cell containing a number. If Mode is given and not equal to zero, a negative Number is rounded down (away from zero). If Mode is equal to zero or is not given, a negative Number is rounded up (towards zero)." -msgstr "" +msgstr "Modus (valgfritt) er et tall, eller en referanse til en celle som inneholder et tall. Hvis Modus er gitt og ikke er lik null, rundes et negativt tall ned (bort fra null). Hvis Modus er lik null eller ikke er gitt, rundes et negativt tall opp (mot null)." #. je22s #: func_ceiling.xhp @@ -57479,7 +57479,7 @@ "par_id331586208590009\n" "help.text" msgid "=CEILING.MATH(3.45) returns 4." -msgstr "" +msgstr "=CEILING.MATH(3,45) returnerer 4." #. g5xAQ #: func_ceiling.xhp @@ -57488,7 +57488,7 @@ "par_id481586208595809\n" "help.text" msgid "=CEILING.MATH(3.45; -3) returns 6." -msgstr "" +msgstr "=CEILING.MATH(3,45; -3) returnerer 6." #. Eby7i #: func_ceiling.xhp @@ -57497,7 +57497,7 @@ "par_id641586208600665\n" "help.text" msgid "=CEILING.MATH(-1.234) returns -1." -msgstr "" +msgstr "=CEILING.MATH(-1,234) returnerer -1." #. T4orc #: func_ceiling.xhp @@ -57506,7 +57506,7 @@ "par_id151586208604536\n" "help.text" msgid "=CEILING.MATH(-45.67; -2; 0) returns -44." -msgstr "" +msgstr "=CEILING.MATH(-45,67; -2; 0) returnerer -44." #. opt6B #: func_ceiling.xhp @@ -57515,7 +57515,7 @@ "par_id971586208611345\n" "help.text" msgid "=CEILING.MATH(-45.67; +2; 1) returns -46." -msgstr "" +msgstr "=CEILING.MATH(-45,67; +2; 1) returnerer -46." #. EzE9t #: func_ceiling.xhp @@ -57524,7 +57524,7 @@ "bm_id921516998608939\n" "help.text" msgid "CEILING.XCL function" -msgstr "" +msgstr "CEILING.XCL-funksjon" #. xEwWL #: func_ceiling.xhp @@ -57533,7 +57533,7 @@ "hd_id411516998838823\n" "help.text" msgid "CEILING.XCL" -msgstr "" +msgstr "CEILING.XCL" #. 2tuD3 #: func_ceiling.xhp @@ -57542,7 +57542,7 @@ "par_id811516998845826\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Runder et tall til nærmeste multiplum av en signifikansverdi." #. tAyJj #: func_ceiling.xhp @@ -57551,7 +57551,7 @@ "par_id361586213828675\n" "help.text" msgid "For a positive number and a positive significance value, the function rounds up (away from zero). For a negative number and a positive significance value, the function rounds up (towards zero). For a negative number and a negative significance value, the function rounds down (away from zero). The function returns an error if the number is positive and the significance value is negative." -msgstr "" +msgstr "For et positivt tall og en positiv signifikansverdi runder funksjonen opp (bort fra null). For et negativt tall og en positiv signifikansverdi runder funksjonen opp (mot null). For et negativt tall og en negativ signifikansverdi rundes funksjonen ned (bort fra null). Funksjonen returnerer en feil hvis tallet er positivt og signifikansverdien er negativ." #. 2CKjm #: func_ceiling.xhp @@ -57560,7 +57560,7 @@ "par_id881586213934118\n" "help.text" msgid "This function exists for interoperability with Microsoft Excel 2007 or older. If a Calc spreadsheet is exported to Microsoft Excel, references to Calc’s CEILING.XCL function are exported as references to Excel’s CEILING function, which is compatible with all Excel versions. If a Microsoft Excel spreadsheet is imported into Calc, references to Excel’s CEILING function are imported as references to Calc’s CEILING.XCL function." -msgstr "" +msgstr "Denne funksjonen eksisterer for interoperabilitet med Microsoft Excel 2007 eller eldre. Hvis et Calc-regneark eksporteres til Microsoft Excel, eksporteres referanser til Calcs CEILING.XCL-funksjon som referanser til Excels CEILING-funksjon, som er kompatibel med alle Excel-versjoner. Hvis et Microsoft Excel-regneark importeres til Calc, importeres referanser til Excels CEILING-funksjon som referanser til Calcs CEILING.XCL-funksjon." #. GspBr #: func_ceiling.xhp @@ -57569,7 +57569,7 @@ "par_id251516998856873\n" "help.text" msgid "CEILING.XCL(Number; Significance)" -msgstr "" +msgstr "CEILING.XCL(Tall; Signifikans)" #. eTSgx #: func_ceiling.xhp @@ -57578,7 +57578,7 @@ "par_id151516998882622\n" "help.text" msgid "Significance is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded." -msgstr "" +msgstr "Betydning er verdien, eller en referanse til en celle som inneholder verdien, hvis multiple Tall skal avrundes til." #. 6n7qn #: func_ceiling.xhp @@ -57587,7 +57587,7 @@ "par_id421586214128242\n" "help.text" msgid "=CEILING.XCL(3.45,2) returns 4." -msgstr "" +msgstr "=CEILING.XCL(3.45;2) returnerer 4." #. nU46D #: func_ceiling.xhp @@ -57596,7 +57596,7 @@ "par_id651586214132234\n" "help.text" msgid "=CEILING.XCL(-45.67; 2) returns -44." -msgstr "" +msgstr "=CEILING.XCL(-45,67; 2) returnerer -44." #. nbB96 #: func_ceiling.xhp @@ -57605,7 +57605,7 @@ "par_id811586214136666\n" "help.text" msgid "=CEILING.XCL(-45.67; -2) returns -46." -msgstr "" +msgstr "=CEILING.XCL(-45,67; -2) returnerer -46." #. GMzhD #: func_ceiling.xhp @@ -57614,7 +57614,7 @@ "bm_id8952518\n" "help.text" msgid "ISO.CEILING functionrounding;up to multiples of significance" -msgstr "" +msgstr "ISO.CEILING-funksjonavrunding;opp til multipler av signifikansen" #. 2gaUP #: func_ceiling.xhp @@ -57623,7 +57623,7 @@ "hd_id8952518\n" "help.text" msgid "ISO.CEILING" -msgstr "" +msgstr "ISO.CEILING" #. 5beBC #: func_ceiling.xhp @@ -57632,7 +57632,7 @@ "par_id8953422\n" "help.text" msgid "Rounds a number up to the nearest multiple of a significance value." -msgstr "" +msgstr "Runder et tall opp til nærmeste multiplum av en signifikansverdi." #. SFZNu #: func_ceiling.xhp @@ -57641,7 +57641,7 @@ "par_id101586214229587\n" "help.text" msgid "For a positive number the function rounds up (away from zero). For a negative number, the function rounds up (towards zero). The sign of the significance value is ignored." -msgstr "" +msgstr "For et positivt tall runder funksjonen opp (bort fra null). For et negativt tall runder funksjonen opp (mot null). Tegnet på signifikansverdien ignoreres." #. wVZdq #: func_ceiling.xhp @@ -57650,7 +57650,7 @@ "par_id821586214265060\n" "help.text" msgid "This function calculates identical results to the CEILING.PRECISE function." -msgstr "" +msgstr "Denne funksjonen beregner identiske resultater med funksjonen CEILING.PRECISE." #. GRocX #: func_ceiling.xhp @@ -57659,7 +57659,7 @@ "par_id8953454\n" "help.text" msgid "ISO.CEILING(Number [; Significance])" -msgstr "" +msgstr "ISO.CEILING(Tall [; Signifikans])" #. hwhCW #: func_ceiling.xhp @@ -57668,7 +57668,7 @@ "par_id8955000\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to 1." -msgstr "" +msgstr "Betydning (valgfritt) er verdien, eller en referanse til en celle som inneholder verdien, hvis multiple Tall skal avrundes til. Den er som standard 1." #. FSFdP #: func_ceiling.xhp @@ -57677,7 +57677,7 @@ "par_id801586214431463\n" "help.text" msgid "=ISO.CEILING(3.45) returns 4." -msgstr "" +msgstr "=ISO.CEILING(3,45) returnerer 4." #. QHpJp #: func_ceiling.xhp @@ -57686,7 +57686,7 @@ "par_id181586214438808\n" "help.text" msgid "=ISO.CEILING(-45.67; 2) returns -44." -msgstr "" +msgstr "=ISO.CEILING(-45,67; 2) returnerer -44." #. GuEcB #: func_color.xhp @@ -57695,7 +57695,7 @@ "tit\n" "help.text" msgid "COLOR function" -msgstr "" +msgstr "FARGE funksjon" #. N8CUu #: func_color.xhp @@ -57704,7 +57704,7 @@ "bm_id1102201617201921\n" "help.text" msgid "colors;numerical values colors;calculating in spreadsheets COLOR function" -msgstr "" +msgstr "farger;numeriske verdier farger;beregning i regneark FARGE-funksjon" #. qjPSR #: func_color.xhp @@ -57722,7 +57722,7 @@ "par_id1102201617001848\n" "help.text" msgid "Return a numeric value calculated by a combination of three colors (red, green and blue) and the alpha channel, in the RGBA color system. The result depends on the color system used by your computer." -msgstr "" +msgstr "Returner en numerisk verdi beregnet av en kombinasjon av tre farger (rød, grønn og blå) og alfakanalen, i RGBA-fargesystemet. Resultatet avhenger av fargesystemet som brukes av din datamaskin." #. 3ubzF #: func_color.xhp @@ -57731,7 +57731,7 @@ "par_id27421466710275\n" "help.text" msgid "COLOR(Red; Green; Blue [; Alpha])" -msgstr "" +msgstr "FARGE(Rød; Grønn; Blå [; Alfa])" #. ASLWJ #: func_color.xhp @@ -57740,7 +57740,7 @@ "par_id242131304318587\n" "help.text" msgid "Red, Green and Blue – required arguments. The value for the red, green and blue components of the color. The values must be between 0 and 255. Zero means no color component and 255 means full color component." -msgstr "" +msgstr "Rød, grønn og blå – påkrevde argumenter. Verdien for de røde, grønne og blå komponentene i fargen. Verdiene må være mellom 0 og 255. Null betyr ingen fargekomponent og 255 betyr fullfargekomponent." #. GoCn2 #: func_color.xhp @@ -57749,7 +57749,7 @@ "par_id242131304315587\n" "help.text" msgid "Alpha – optional argument. The value for the alpha channel or alpha composite. Alpha is a integer value between 0 and 255. The value of zero for alpha means the color is fully transparent, whereas a value of 255 in the alpha channel gives a fully opaque color." -msgstr "" +msgstr "Alfa – valgfritt argument. Verdien for alfakanalen eller alfakompositten. Alfa er en heltallsverdi mellom 0 og 255. Verdien av null for alfa betyr at fargen er helt gjennomsiktig, mens en verdi på 255 i alfakanalen gir en helt ugjennomsiktig farge." #. fb2sj #: func_color.xhp @@ -57758,7 +57758,7 @@ "par_id1102201617001888\n" "help.text" msgid "COLOR(255;255;255;1) returns 33554431" -msgstr "" +msgstr "FARGE(255;255;255;1) returnerer 33554431" #. gxbF2 #: func_color.xhp @@ -57767,7 +57767,7 @@ "par_id1102201618185378\n" "help.text" msgid "COLOR(0;0;255;0) returns 255" -msgstr "" +msgstr "FARGE(0;0;255;0) returnerer 255" #. f8bh7 #: func_color.xhp @@ -57776,7 +57776,7 @@ "par_id1102201618185326\n" "help.text" msgid "COLOR(0;0;255;255) returns 4278190335" -msgstr "" +msgstr "FARGE(0;0;255;255) returnerer 4278190335" #. JAYa2 #: func_color.xhp @@ -57785,7 +57785,7 @@ "par_id1102201618188326\n" "help.text" msgid "COLOR(0;0;400;0) returns Err:502 (Invalid argument) because the blue value is greater than 255." -msgstr "" +msgstr "FARGE(0;0;400;0) returnerer Err:502 (ugyldig argument) fordi den blå verdien er større enn 255." #. cfeEJ #: func_concat.xhp @@ -57794,7 +57794,7 @@ "tit\n" "help.text" msgid "CONCAT function" -msgstr "" +msgstr "CONCAT funksjon" #. WEfAD #: func_concat.xhp @@ -57803,7 +57803,7 @@ "bm_id741556228031712\n" "help.text" msgid "CONCAT function" -msgstr "" +msgstr "CONCAT-funksjon" #. DXcLh #: func_concat.xhp @@ -57812,7 +57812,7 @@ "hd_id471556226436779\n" "help.text" msgid "CONCAT" -msgstr "" +msgstr "CONCAT" #. jUBjE #: func_concat.xhp @@ -57821,7 +57821,7 @@ "par_id891556226436781\n" "help.text" msgid "Concatenates one or more strings" -msgstr "" +msgstr "Sett sammen én eller flere strenger" #. JPUiF #: func_concat.xhp @@ -57830,7 +57830,7 @@ "par_id701556226865876\n" "help.text" msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M." -msgstr "" +msgstr "CONCAT er en forbedring av CONCATENATE, siden CONCAT også aksepterer områder som argumenter, som B2:E5, K:K eller K:M." #. Gjz3x #: func_concat.xhp @@ -57839,7 +57839,7 @@ "par_id461556226873963\n" "help.text" msgid "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate." -msgstr "" +msgstr "Når områder brukes, krysses cellene rad for rad (fra topp til bunn) for å settes sammen." #. fJEF4 #: func_concat.xhp @@ -57848,7 +57848,7 @@ "par_id911556226813412\n" "help.text" msgid "CONCAT( )" -msgstr "" +msgstr "CONCAT( )" #. aTwgH #: func_concat.xhp @@ -57857,7 +57857,7 @@ "par_id531556227248228\n" "help.text" msgid "=CONCAT(\"Hello \", A1:C3) concatenates the string \"Hello\" with all strings in range A1:C3." -msgstr "" +msgstr "=CONCAT(\"Hei \", A1:C3) setter sammen strengen \"Hello\" med alle strenger i området A1:C3." #. D6Gew #: func_concat.xhp @@ -57866,7 +57866,7 @@ "par_id781556244709752\n" "help.text" msgid "CONCATENATE" -msgstr "" +msgstr "CONCATENATE" #. A2RFP #: func_convert.xhp @@ -57875,7 +57875,7 @@ "tit\n" "help.text" msgid "CONVERT function" -msgstr "" +msgstr "KONVERTER funksjon" #. wHx2Y #: func_convert.xhp @@ -57884,7 +57884,7 @@ "bm_id3148446\n" "help.text" msgid "CONVERT function" -msgstr "" +msgstr "CONVERT-funksjon" #. XE5M9 #: func_convert.xhp @@ -57893,7 +57893,7 @@ "hd_id9522389625800\n" "help.text" msgid " CONVERT function" -msgstr "" +msgstr " CONVERT funksjon" #. fmXAR #: func_convert.xhp @@ -57902,7 +57902,7 @@ "par_id3154902\n" "help.text" msgid "Converts a value from one unit of measurement to the corresponding value in another unit of measurement. Enter the units of measurement directly as text in quotation marks or as a reference. The units of measurement specified through the arguments must match the supported unit symbols, which are case-sensitive. For example, the symbol for the unit \"newton\" is the uppercase \"N\"." -msgstr "" +msgstr "Konverterer en verdi fra én måleenhet til den tilsvarende verdien i en annen måleenhet. Skriv inn måleenhetene direkte som tekst i anførselstegn eller som referanse. Måleenhetene spesifisert gjennom argumentene må samsvare med de støttede enhetssymbolene, som skiller mellom store og små bokstaver. For eksempel er symbolet for enheten \"newton\" den store bokstaven \"N\"." #. FLrPC #: func_convert.xhp @@ -57911,7 +57911,7 @@ "par_id761620414839890\n" "help.text" msgid "The measurement units recognized by CONVERT fall into 13 groups, which are listed below. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups." -msgstr "" +msgstr "Måleenhetene gjenkjent av CONVERT faller inn i 13 grupper, som er oppført nedenfor. CONVERT vil utføre konverteringer mellom to enheter i en gruppe, men avviser enhver forespørsel om å konvertere mellom enheter i forskjellige grupper." #. Fxn7E #: func_convert.xhp @@ -57920,7 +57920,7 @@ "par_id861620428840333\n" "help.text" msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown below." -msgstr "" +msgstr "Du kan også legge til binære og desimalprefikser til måleenheter som støtter dem. Listen over alle prefikser og deres tilhørende multiplikatorer vises nedenfor." #. GvB7m #: func_convert.xhp @@ -57929,7 +57929,7 @@ "par_id601621101375988\n" "help.text" msgid "This function may not be compatible with other spreadsheet software." -msgstr "" +msgstr "Denne funksjonen er kanskje ikke kompatibel med annen regnearkprogramvare." #. wfq9t #: func_convert.xhp @@ -57938,7 +57938,7 @@ "par_id23219159944266\n" "help.text" msgid "CONVERT(Number; FromUnit; ToUnit)" -msgstr "" +msgstr "KONVERTERING(Tall; FraEnhet; TilEnhet)" #. RiLFj #: func_convert.xhp @@ -57947,7 +57947,7 @@ "par_id3147522\n" "help.text" msgid "Number is the number to be converted." -msgstr "" +msgstr "Tall er tallet som skal konverteres." #. GErYL #: func_convert.xhp @@ -57956,7 +57956,7 @@ "par_id3154472\n" "help.text" msgid "FromUnit is the unit from which conversion is taking place." -msgstr "" +msgstr "FromUnit er enheten som konverteringen finner sted fra." #. d2Hrk #: func_convert.xhp @@ -57965,7 +57965,7 @@ "par_id3153790\n" "help.text" msgid "ToUnit is the unit to which conversion is taking place. Both units must be of the same type." -msgstr "" +msgstr "ToUnit er enheten som konverteringen finner sted til. Begge enhetene må være av samme type." #. 7D2db #: func_convert.xhp @@ -57974,7 +57974,7 @@ "par_id541620414925560\n" "help.text" msgid "If FromUnit and ToUnit are not valid units from the same group, then CONVERT reports an invalid argument error (Err:502)." -msgstr "" +msgstr "Hvis FromUnit og ToUnit ikke er gyldige enheter fra samme gruppe, rapporterer CONVERT en ugyldig argumentfeil (Err:502)." #. gq5EJ #: func_convert.xhp @@ -57983,7 +57983,7 @@ "par_id3156336\n" "help.text" msgid "=CONVERT(-10; \"C\"; \"F\")" -msgstr "" +msgstr "=CONVERT(-10; \"C\"; \"F\")" #. NacDF #: func_convert.xhp @@ -57992,7 +57992,7 @@ "par_id951620413562988\n" "help.text" msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value." -msgstr "" +msgstr "Her konverterer funksjonen -10 grader Celsius til grader Fahrenheit, og returnerer verdien 14. Det er ikke et enkelt multiplikativt forhold mellom temperaturenheter, da forskjellige referansepunkter brukes. Derfor, som i dette tilfellet, kan et negativt inndatatall konverteres til en positiv verdi." #. CQPne #: func_convert.xhp @@ -58001,7 +58001,7 @@ "par_id3154834\n" "help.text" msgid "=CONVERT(3.5; \"mi\"; \"yd\")" -msgstr "" +msgstr "=CONVERT(3.5; \"mi\"; \"yd\")" #. xaEX2 #: func_convert.xhp @@ -58010,7 +58010,7 @@ "par_id971620413678102\n" "help.text" msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group." -msgstr "" +msgstr "Her konverterer funksjonen 3,5 internasjonale mil til yards, og returnerer verdien 6160. Begge enhetene er i Lengde- og avstandsgruppen." #. 3GMEy #: func_convert.xhp @@ -58019,7 +58019,7 @@ "par_id741620413834726\n" "help.text" msgid "=CONVERT(256; \"Gibit\"; \"Mibyte\")" -msgstr "" +msgstr "=CONVERT(256; \"Gbit\"; \"Mbyte\")" #. pdEtf #: func_convert.xhp @@ -58028,7 +58028,7 @@ "par_id261620413900652\n" "help.text" msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes." -msgstr "" +msgstr "Her konverterer funksjonen 256 gigibit til mebibyte, og returnerer verdien 32768. Begge enhetene (bit og byte) er i informasjonsgruppen og støtter binære prefikser." #. cdqCp #: func_convert.xhp @@ -58037,7 +58037,7 @@ "par_id761620413966496\n" "help.text" msgid "=CONVERT(1; \"dyn\"; \"e\")" -msgstr "" +msgstr "=CONVERT(1; \"dyn\"; \"e\")" #. vDR5q #: func_convert.xhp @@ -58046,7 +58046,7 @@ "par_id531620414005955\n" "help.text" msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)." -msgstr "" +msgstr "Her returnerer funksjonen en ugyldig argumentfeil (Err:502) fordi de to enhetene (dyne og erg) er i forskjellige grupper (henholdsvis kraft og energi)." #. DGVq5 #: func_convert.xhp @@ -58055,7 +58055,7 @@ "hd_id261620415240175\n" "help.text" msgid "Units of measurement" -msgstr "" +msgstr "Måleenhet" #. A7feF #: func_convert.xhp @@ -58064,7 +58064,7 @@ "par_id481620428685029\n" "help.text" msgid "Below are the unit measurement groups supported by the CONVERT function. Be aware that conversions can only happen between units that belong to the same group." -msgstr "" +msgstr "Nedenfor er enhetsmålgruppene som støttes av CONVERT-funksjonen. Vær oppmerksom på at konverteringer kun kan skje mellom enheter som tilhører samme gruppe." #. hGonG #: func_convert.xhp @@ -58073,7 +58073,7 @@ "par_id461620429183259\n" "help.text" msgid "The column Prefix indicates whether or not a given unit of measurement supports prefixes." -msgstr "" +msgstr "Kolonnen Prefiks angir hvorvidt en gitt måleenhet støtter prefikser." #. ELyFm #: func_convert.xhp @@ -58082,7 +58082,7 @@ "hd_id301620415514760\n" "help.text" msgid "Area" -msgstr "" +msgstr "Område" #. JFG6V #: func_convert.xhp @@ -58091,7 +58091,7 @@ "par_id121620479750266\n" "help.text" msgid "Some measurement units have more than one accepted symbol. The accepted unit symbols are separated by semicolons in the Unit symbol column." -msgstr "" +msgstr "Noen måleenheter har mer enn ett akseptert symbol. De aksepterte enhetssymbolene er atskilt med semikolon i Enhetssymbol-kolonnen." #. ngLDk #: func_convert.xhp @@ -58100,7 +58100,7 @@ "par_id831620415562967\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. HMAmG #: func_convert.xhp @@ -58109,7 +58109,7 @@ "par_id251620415562967\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. tpUMy #: func_convert.xhp @@ -58118,7 +58118,7 @@ "par_id151620415562967\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. GfiJV #: func_convert.xhp @@ -58127,7 +58127,7 @@ "par_id61620415562967\n" "help.text" msgid "Square angstrom" -msgstr "" +msgstr "Kvadrat ångstrøm" #. GoABk #: func_convert.xhp @@ -58136,7 +58136,7 @@ "par_id71620415903987\n" "help.text" msgid "Are" -msgstr "" +msgstr "Er" #. kahhN #: func_convert.xhp @@ -58145,7 +58145,7 @@ "par_id631620415904448\n" "help.text" msgid "Square foot" -msgstr "" +msgstr "Kvadratfot" #. MFjkC #: func_convert.xhp @@ -58154,7 +58154,7 @@ "par_id651620415904891\n" "help.text" msgid "Hectare" -msgstr "" +msgstr "Hektar" #. EohjY #: func_convert.xhp @@ -58163,7 +58163,7 @@ "par_id561620415905331\n" "help.text" msgid "Square inch" -msgstr "" +msgstr "Kvadrattommer" #. XZ9X3 #: func_convert.xhp @@ -58172,7 +58172,7 @@ "par_id561620415905004\n" "help.text" msgid "Square light-year" -msgstr "" +msgstr "Kvadrat lysår" #. kwEMV #: func_convert.xhp @@ -58181,7 +58181,7 @@ "par_id781620416024343\n" "help.text" msgid "Square meter" -msgstr "" +msgstr "Kvadratmeter" #. T9BaY #: func_convert.xhp @@ -58190,7 +58190,7 @@ "par_id731620416024782\n" "help.text" msgid "Square international mile" -msgstr "" +msgstr "Square internasjonal mile" #. 4i4iC #: func_convert.xhp @@ -58199,7 +58199,7 @@ "par_id621620416250948\n" "help.text" msgid "Morgen" -msgstr "" +msgstr "Morgen" #. HF5iU #: func_convert.xhp @@ -58208,7 +58208,7 @@ "par_id661620416251507\n" "help.text" msgid "Square nautical mile" -msgstr "" +msgstr "Kvadrat nautisk mil" #. hCiCS #: func_convert.xhp @@ -58217,7 +58217,7 @@ "par_id791620416251948\n" "help.text" msgid "Square pica point" -msgstr "" +msgstr "Firkantet pica-punkt" #. ZfeRr #: func_convert.xhp @@ -58226,7 +58226,7 @@ "par_id771620416417874\n" "help.text" msgid "Square pica" -msgstr "" +msgstr "Firkantet pica" #. cHh2s #: func_convert.xhp @@ -58235,7 +58235,7 @@ "par_id621620416418311\n" "help.text" msgid "International acre" -msgstr "" +msgstr "Internasjonal acre" #. AsFDV #: func_convert.xhp @@ -58244,7 +58244,7 @@ "par_id71620416418768\n" "help.text" msgid "US survey acre" -msgstr "" +msgstr "Amerikansk oppmålings acre" #. vFpVJ #: func_convert.xhp @@ -58253,7 +58253,7 @@ "par_id71620416418025\n" "help.text" msgid "Square yard" -msgstr "" +msgstr "Kvadrat yard" #. Y8KWb #: func_convert.xhp @@ -58262,7 +58262,7 @@ "hd_id661620418842010\n" "help.text" msgid "Energy" -msgstr "" +msgstr "Energi" #. MVxwP #: func_convert.xhp @@ -58271,7 +58271,7 @@ "par_id133389281727763\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. 2YCm2 #: func_convert.xhp @@ -58280,7 +58280,7 @@ "par_id215779983443756\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. wERLT #: func_convert.xhp @@ -58289,7 +58289,7 @@ "par_id986783687128923\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. GLvVT #: func_convert.xhp @@ -58298,7 +58298,7 @@ "par_id797688281572156\n" "help.text" msgid "British thermal unit" -msgstr "" +msgstr "Britisk termisk enhet" #. nu34E #: func_convert.xhp @@ -58307,7 +58307,7 @@ "par_id844417659281393\n" "help.text" msgid "Thermochemical calorie" -msgstr "" +msgstr "Termokjemisk kalori" #. DBTz9 #: func_convert.xhp @@ -58316,7 +58316,7 @@ "par_id672765982649722\n" "help.text" msgid "International Steam Table calorie" -msgstr "" +msgstr "Internasjonal Damp Tabell-kalori" #. uw6BK #: func_convert.xhp @@ -58325,7 +58325,7 @@ "par_id798492531882282\n" "help.text" msgid "erg" -msgstr "" +msgstr "erg" #. i9qGV #: func_convert.xhp @@ -58334,7 +58334,7 @@ "par_id547247548598782\n" "help.text" msgid "Electron volt" -msgstr "" +msgstr "Elektron volt" #. sLtDD #: func_convert.xhp @@ -58343,7 +58343,7 @@ "par_id587393171297892\n" "help.text" msgid "Foot-pound" -msgstr "" +msgstr "fot-pund" #. 2GjCu #: func_convert.xhp @@ -58352,7 +58352,7 @@ "par_id695171299238861\n" "help.text" msgid "Horsepower-hour" -msgstr "" +msgstr "Hestekrefter-time" #. ZPZRc #: func_convert.xhp @@ -58361,7 +58361,7 @@ "par_id498448587944728\n" "help.text" msgid "Joule" -msgstr "" +msgstr "Joule" #. PUrZh #: func_convert.xhp @@ -58370,7 +58370,7 @@ "par_id324829753758823\n" "help.text" msgid "Watt-hour" -msgstr "" +msgstr "Watt-time" #. kPnGq #: func_convert.xhp @@ -58379,7 +58379,7 @@ "hd_id281620418969165\n" "help.text" msgid "Flux density" -msgstr "" +msgstr "Flux tetthet" #. 4o3NF #: func_convert.xhp @@ -58388,7 +58388,7 @@ "par_id474271648545953\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. DCC5e #: func_convert.xhp @@ -58397,7 +58397,7 @@ "par_id747764511138273\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. dvVVc #: func_convert.xhp @@ -58406,7 +58406,7 @@ "par_id689379352231556\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. nHMaJ #: func_convert.xhp @@ -58415,7 +58415,7 @@ "par_id114822916257326\n" "help.text" msgid "Gauss" -msgstr "" +msgstr "Gauss" #. 2he9q #: func_convert.xhp @@ -58424,7 +58424,7 @@ "par_id626213287964265\n" "help.text" msgid "Tesla" -msgstr "" +msgstr "Tesla" #. GFyeu #: func_convert.xhp @@ -58433,7 +58433,7 @@ "hd_id511620419033332\n" "help.text" msgid "Force" -msgstr "" +msgstr "Styrke" #. CcWkm #: func_convert.xhp @@ -58442,7 +58442,7 @@ "par_id786326578562174\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. MAju2 #: func_convert.xhp @@ -58451,7 +58451,7 @@ "par_id613697367784781\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. 3ZxxK #: func_convert.xhp @@ -58460,7 +58460,7 @@ "par_id338735929142246\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. uaZZL #: func_convert.xhp @@ -58469,7 +58469,7 @@ "par_id332679599387353\n" "help.text" msgid "Dyne" -msgstr "" +msgstr "Dyne" #. qkEeo #: func_convert.xhp @@ -58478,7 +58478,7 @@ "par_id297688664469184\n" "help.text" msgid "Newton" -msgstr "" +msgstr "Newton" #. EEy3q #: func_convert.xhp @@ -58487,7 +58487,7 @@ "par_id413835658896999\n" "help.text" msgid "Pound-force" -msgstr "" +msgstr "Pund-styrke" #. UmY6Y #: func_convert.xhp @@ -58496,7 +58496,7 @@ "par_id472715992174398\n" "help.text" msgid "Pond" -msgstr "" +msgstr "Dam" #. Z8snf #: func_convert.xhp @@ -58505,7 +58505,7 @@ "hd_id61620419155285\n" "help.text" msgid "Information" -msgstr "" +msgstr "Informasjon" #. A3brF #: func_convert.xhp @@ -58514,7 +58514,7 @@ "par_id426724696915849\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. ABpR9 #: func_convert.xhp @@ -58523,7 +58523,7 @@ "par_id612374956817974\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. kNxR2 #: func_convert.xhp @@ -58532,7 +58532,7 @@ "par_id538681812985912\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. uXtLh #: func_convert.xhp @@ -58541,7 +58541,7 @@ "par_id287396172896473\n" "help.text" msgid "Bit" -msgstr "" +msgstr "Bit" #. CQcQ9 #: func_convert.xhp @@ -58550,7 +58550,7 @@ "par_id288619461492324\n" "help.text" msgid "Byte" -msgstr "" +msgstr "Byte" #. B3c96 #: func_convert.xhp @@ -58559,7 +58559,7 @@ "hd_id21620419214852\n" "help.text" msgid "Length and distance" -msgstr "" +msgstr "Lengde og avstand" #. rfDue #: func_convert.xhp @@ -58568,7 +58568,7 @@ "par_id939442657661828\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. t8B7a #: func_convert.xhp @@ -58577,7 +58577,7 @@ "par_id385965635167839\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. qBet6 #: func_convert.xhp @@ -58586,7 +58586,7 @@ "par_id783715738435884\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. ED5CD #: func_convert.xhp @@ -58595,7 +58595,7 @@ "par_id871414798381246\n" "help.text" msgid "Angstrom" -msgstr "" +msgstr "Ångstrøm" #. pZ2tZ #: func_convert.xhp @@ -58604,7 +58604,7 @@ "par_id667871614381886\n" "help.text" msgid "Ell" -msgstr "" +msgstr "Ell" #. FxCjJ #: func_convert.xhp @@ -58613,7 +58613,7 @@ "par_id116286449743311\n" "help.text" msgid "Foot" -msgstr "" +msgstr "Fot" #. VswTE #: func_convert.xhp @@ -58622,7 +58622,7 @@ "par_id174995614358222\n" "help.text" msgid "Inch" -msgstr "" +msgstr "Tomme" #. YFTAf #: func_convert.xhp @@ -58631,7 +58631,7 @@ "par_id597477613742668\n" "help.text" msgid "Light-year" -msgstr "" +msgstr "Lysår" #. aqqG6 #: func_convert.xhp @@ -58640,7 +58640,7 @@ "par_id414782652978666\n" "help.text" msgid "Meter" -msgstr "" +msgstr "Meter" #. kREck #: func_convert.xhp @@ -58649,7 +58649,7 @@ "par_id246972715165395\n" "help.text" msgid "International mile" -msgstr "" +msgstr "Internasjonal mile" #. 6TCBR #: func_convert.xhp @@ -58658,7 +58658,7 @@ "par_id664674443288268\n" "help.text" msgid "Nautical mile" -msgstr "" +msgstr "Nautiisk mil" #. rUVPA #: func_convert.xhp @@ -58667,7 +58667,7 @@ "par_id139127915416429\n" "help.text" msgid "Parsec" -msgstr "" +msgstr "Parsec" #. E8DiA #: func_convert.xhp @@ -58676,7 +58676,7 @@ "par_id343241931577938\n" "help.text" msgid "Pica point" -msgstr "" +msgstr "Pica punkt" #. J45F6 #: func_convert.xhp @@ -58685,7 +58685,7 @@ "par_id314567699952918\n" "help.text" msgid "Pica" -msgstr "" +msgstr "Pica" #. jo6cR #: func_convert.xhp @@ -58694,7 +58694,7 @@ "par_id579641593251685\n" "help.text" msgid "US survey mile" -msgstr "" +msgstr "US oppmålings mile" #. bHo6X #: func_convert.xhp @@ -58703,7 +58703,7 @@ "par_id247251727323315\n" "help.text" msgid "Yard" -msgstr "" +msgstr "Yard" #. EVKqC #: func_convert.xhp @@ -58712,7 +58712,7 @@ "hd_id101620426269258\n" "help.text" msgid "Mass and weight" -msgstr "" +msgstr "Masse og vekt" #. sshNo #: func_convert.xhp @@ -58721,7 +58721,7 @@ "par_id662733781297324\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. 23Fz6 #: func_convert.xhp @@ -58730,7 +58730,7 @@ "par_id314237495552874\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. YXvAc #: func_convert.xhp @@ -58739,7 +58739,7 @@ "par_id543131496247122\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. yS2GB #: func_convert.xhp @@ -58748,7 +58748,7 @@ "par_id163896825569756\n" "help.text" msgid "Short hundredweight" -msgstr "" +msgstr "Kort hundrevekt" #. AymnT #: func_convert.xhp @@ -58757,7 +58757,7 @@ "par_id219736221925573\n" "help.text" msgid "Gram" -msgstr "" +msgstr "Gram" #. Pcwzj #: func_convert.xhp @@ -58766,7 +58766,7 @@ "par_id613363919875679\n" "help.text" msgid "Grain" -msgstr "" +msgstr "Grain" #. HfoFq #: func_convert.xhp @@ -58775,7 +58775,7 @@ "par_id961199633533431\n" "help.text" msgid "Pound" -msgstr "" +msgstr "Pund" #. TtiGk #: func_convert.xhp @@ -58784,7 +58784,7 @@ "par_id655456352143671\n" "help.text" msgid "Ounce" -msgstr "" +msgstr "Unse" #. pmsEB #: func_convert.xhp @@ -58793,7 +58793,7 @@ "par_id613492674545171\n" "help.text" msgid "Pennyweight" -msgstr "" +msgstr "Pennyvekt" #. BE88d #: func_convert.xhp @@ -58802,7 +58802,7 @@ "par_id566783887997575\n" "help.text" msgid "Slug" -msgstr "" +msgstr "Slug" #. VmfEH #: func_convert.xhp @@ -58811,7 +58811,7 @@ "par_id731498557457276\n" "help.text" msgid "Stone" -msgstr "" +msgstr "Stone" #. ZLyGB #: func_convert.xhp @@ -58820,7 +58820,7 @@ "par_id618416327957968\n" "help.text" msgid "Short ton" -msgstr "" +msgstr "Kort tonn" #. 4nGTC #: func_convert.xhp @@ -58829,7 +58829,7 @@ "par_id556166667325333\n" "help.text" msgid "Unified atomic mass unit" -msgstr "" +msgstr "En enhetlig atommasseenhet" #. nA8vE #: func_convert.xhp @@ -58838,7 +58838,7 @@ "par_id161338688697922\n" "help.text" msgid "Long hundredweight" -msgstr "" +msgstr "Lang hundrevekt" #. 23HRX #: func_convert.xhp @@ -58847,7 +58847,7 @@ "par_id616379569614142\n" "help.text" msgid "Long ton" -msgstr "" +msgstr "Langt tonn" #. BPqQG #: func_convert.xhp @@ -58856,7 +58856,7 @@ "hd_id1001620426284123\n" "help.text" msgid "Power" -msgstr "" +msgstr "Eksponent" #. HvGBm #: func_convert.xhp @@ -58865,7 +58865,7 @@ "par_id765457372987543\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. DGPtJ #: func_convert.xhp @@ -58874,7 +58874,7 @@ "par_id222988613874967\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. 6DsPs #: func_convert.xhp @@ -58883,7 +58883,7 @@ "par_id954629589584711\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. 7PLLh #: func_convert.xhp @@ -58892,7 +58892,7 @@ "par_id578436173796358\n" "help.text" msgid "Mechanical horsepower" -msgstr "" +msgstr "Mekanisk hestekraft" #. M6req #: func_convert.xhp @@ -58901,7 +58901,7 @@ "par_id418898833841613\n" "help.text" msgid "Pferdestärke or metric horsepower" -msgstr "" +msgstr "Hestekrefter eller metriske hestekrefter" #. qyteT #: func_convert.xhp @@ -58910,7 +58910,7 @@ "par_id239893771814786\n" "help.text" msgid "Watt" -msgstr "" +msgstr "Watt" #. PGKCa #: func_convert.xhp @@ -58919,7 +58919,7 @@ "hd_id541620426359069\n" "help.text" msgid "Pressure" -msgstr "" +msgstr "Trykk" #. tnByU #: func_convert.xhp @@ -58928,7 +58928,7 @@ "par_id843387541961981\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. Gsj88 #: func_convert.xhp @@ -58937,7 +58937,7 @@ "par_id385992865555923\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. geMDd #: func_convert.xhp @@ -58946,7 +58946,7 @@ "par_id513642579177244\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. tZH3f #: func_convert.xhp @@ -58955,7 +58955,7 @@ "par_id888153229712212\n" "help.text" msgid "Standard atmosphere" -msgstr "" +msgstr "Standard atmosfære" #. EBaTw #: func_convert.xhp @@ -58964,7 +58964,7 @@ "par_id849582553771429\n" "help.text" msgid "Millimeter of mercury" -msgstr "" +msgstr "Millimeter kvikksølv" #. AsDNh #: func_convert.xhp @@ -58973,7 +58973,7 @@ "par_id477235647442515\n" "help.text" msgid "Pascal" -msgstr "" +msgstr "Pascal" #. yyvEQ #: func_convert.xhp @@ -58982,7 +58982,7 @@ "par_id453587511744492\n" "help.text" msgid "Pound per square inch" -msgstr "" +msgstr "Pund per kvadrattomme" #. a9ogt #: func_convert.xhp @@ -58991,7 +58991,7 @@ "par_id385442861685423\n" "help.text" msgid "Torr" -msgstr "" +msgstr "Torr" #. CNDuZ #: func_convert.xhp @@ -59000,7 +59000,7 @@ "par_id911641306487164\n" "help.text" msgid "1 - The \"at\" unit is deprecated. Use \"atm\" instead." -msgstr "" +msgstr "1 - \"at\"-enheten er utdatert. Bruk \"atm\" i stedet." #. vWzBh #: func_convert.xhp @@ -59009,7 +59009,7 @@ "hd_id61620426438099\n" "help.text" msgid "Speed" -msgstr "" +msgstr "Hastighet" #. AXQxd #: func_convert.xhp @@ -59018,7 +59018,7 @@ "par_id589222947765948\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. HvMee #: func_convert.xhp @@ -59027,7 +59027,7 @@ "par_id886677898259849\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. PWNGi #: func_convert.xhp @@ -59036,7 +59036,7 @@ "par_id439227432319741\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. QLETi #: func_convert.xhp @@ -59045,7 +59045,7 @@ "par_id391572877557741\n" "help.text" msgid "Admiralty knot" -msgstr "" +msgstr "Admiralitetsknute" #. X3yym #: func_convert.xhp @@ -59054,7 +59054,7 @@ "par_id152721538362456\n" "help.text" msgid "International knot" -msgstr "" +msgstr "Internasjonal knute" #. KAWp4 #: func_convert.xhp @@ -59063,7 +59063,7 @@ "par_id117898736774311\n" "help.text" msgid "Meters per hour" -msgstr "" +msgstr "Meter i timen" #. pctXg #: func_convert.xhp @@ -59072,7 +59072,7 @@ "par_id145334267535329\n" "help.text" msgid "Meters per second" -msgstr "" +msgstr "Meter per sekund" #. 6yYRz #: func_convert.xhp @@ -59081,7 +59081,7 @@ "par_id233825548718154\n" "help.text" msgid "Miles per hour" -msgstr "" +msgstr "Miles i timen" #. FyEd2 #: func_convert.xhp @@ -59090,7 +59090,7 @@ "hd_id351620426496272\n" "help.text" msgid "Temperature" -msgstr "" +msgstr "Temperatur" #. C5MHQ #: func_convert.xhp @@ -59099,7 +59099,7 @@ "par_id916682468647914\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. kqAGM #: func_convert.xhp @@ -59108,7 +59108,7 @@ "par_id828222863857386\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. sGE7h #: func_convert.xhp @@ -59117,7 +59117,7 @@ "par_id131675777393493\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. do3zs #: func_convert.xhp @@ -59126,7 +59126,7 @@ "par_id611894272236225\n" "help.text" msgid "Degree Celsius" -msgstr "" +msgstr "Grader celsius" #. 3Ng23 #: func_convert.xhp @@ -59135,7 +59135,7 @@ "par_id446899599712639\n" "help.text" msgid "Degree Fahrenheit" -msgstr "" +msgstr "Grader Fahrenheit" #. JQDwV #: func_convert.xhp @@ -59144,7 +59144,7 @@ "par_id452842161272274\n" "help.text" msgid "Kelvin" -msgstr "" +msgstr "Kelvin" #. kDHfB #: func_convert.xhp @@ -59153,7 +59153,7 @@ "par_id946395673872875\n" "help.text" msgid "Degree Rankine" -msgstr "" +msgstr "Grader Rankine" #. mUNBn #: func_convert.xhp @@ -59162,7 +59162,7 @@ "par_id718454351326149\n" "help.text" msgid "Degree Réaumur" -msgstr "" +msgstr "Grader Réaumur" #. BfAJv #: func_convert.xhp @@ -59171,7 +59171,7 @@ "hd_id291620426558219\n" "help.text" msgid "Time" -msgstr "" +msgstr "Tid" #. kFeSN #: func_convert.xhp @@ -59180,7 +59180,7 @@ "par_id935221689591996\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. U8RGh #: func_convert.xhp @@ -59189,7 +59189,7 @@ "par_id664526138752768\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. 8X7qR #: func_convert.xhp @@ -59198,7 +59198,7 @@ "par_id889226439751962\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. iXcGB #: func_convert.xhp @@ -59207,7 +59207,7 @@ "par_id246817386878489\n" "help.text" msgid "Day" -msgstr "" +msgstr "Dag" #. KCEUt #: func_convert.xhp @@ -59216,7 +59216,7 @@ "par_id464925665919665\n" "help.text" msgid "Hour" -msgstr "" +msgstr "Time" #. Bf2jf #: func_convert.xhp @@ -59225,7 +59225,7 @@ "par_id134873473826283\n" "help.text" msgid "Minute" -msgstr "" +msgstr "Ninutt" #. RB2UJ #: func_convert.xhp @@ -59234,7 +59234,7 @@ "par_id424852859961766\n" "help.text" msgid "Second" -msgstr "" +msgstr "Sekund" #. CKQZz #: func_convert.xhp @@ -59243,7 +59243,7 @@ "par_id546198897664738\n" "help.text" msgid "Year" -msgstr "" +msgstr "År" #. CCupk #: func_convert.xhp @@ -59252,7 +59252,7 @@ "hd_id151620426617693\n" "help.text" msgid "Volume" -msgstr "" +msgstr "Volum" #. YGVzt #: func_convert.xhp @@ -59261,7 +59261,7 @@ "par_id245659124219512\n" "help.text" msgid "Unit symbol" -msgstr "" +msgstr "Enhetssymbol" #. jvV7i #: func_convert.xhp @@ -59270,7 +59270,7 @@ "par_id954441838321316\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. QnLHF #: func_convert.xhp @@ -59279,7 +59279,7 @@ "par_id487448753979859\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. oFBFc #: func_convert.xhp @@ -59288,7 +59288,7 @@ "par_id254311578719497\n" "help.text" msgid "Cubic angstrom" -msgstr "" +msgstr "Kubisk ångstrøm" #. Ccm2G #: func_convert.xhp @@ -59297,7 +59297,7 @@ "par_id545825775819166\n" "help.text" msgid "Oil barrel" -msgstr "" +msgstr "Oljefat" #. a3nDk #: func_convert.xhp @@ -59306,7 +59306,7 @@ "par_id976829653577442\n" "help.text" msgid "US bushel" -msgstr "" +msgstr "US skjeppe" #. Fb3dj #: func_convert.xhp @@ -59315,7 +59315,7 @@ "par_id184258429676826\n" "help.text" msgid "US cup" -msgstr "" +msgstr "US kopp" #. z98AU #: func_convert.xhp @@ -59324,7 +59324,7 @@ "par_id278184952564879\n" "help.text" msgid "Cubic foot" -msgstr "" +msgstr "Kubikkfot" #. Be5Nc #: func_convert.xhp @@ -59333,7 +59333,7 @@ "par_id466397614396366\n" "help.text" msgid "US gallon" -msgstr "" +msgstr "US gallon" #. 6dJSb #: func_convert.xhp @@ -59342,7 +59342,7 @@ "par_id938562498562468\n" "help.text" msgid "Australian glass (200 milliliters)" -msgstr "" +msgstr "Australsk glass (200 milliliter)" #. vFvu4 #: func_convert.xhp @@ -59351,7 +59351,7 @@ "par_id471177863127144\n" "help.text" msgid "Gross register tonnage" -msgstr "" +msgstr "Brutto registertonnasje" #. tM2GH #: func_convert.xhp @@ -59360,7 +59360,7 @@ "par_id347175644673122\n" "help.text" msgid "Humpen (500 milliliters)" -msgstr "" +msgstr "Humpen (500 milliliter)" #. 3jCKA #: func_convert.xhp @@ -59369,7 +59369,7 @@ "par_id995576717914988\n" "help.text" msgid "Cubic inch" -msgstr "" +msgstr "Kubikktomme" #. t8skx #: func_convert.xhp @@ -59378,7 +59378,7 @@ "par_id842329689485738\n" "help.text" msgid "Liter" -msgstr "" +msgstr "Liter" #. ZgERp #: func_convert.xhp @@ -59387,7 +59387,7 @@ "par_id236636296681258\n" "help.text" msgid "Cubic light-year" -msgstr "" +msgstr "Kubikk lysår" #. xbjLF #: func_convert.xhp @@ -59396,7 +59396,7 @@ "par_id538319527687728\n" "help.text" msgid "Cubic meter" -msgstr "" +msgstr "Kubikkmeter" #. GG8ep #: func_convert.xhp @@ -59405,7 +59405,7 @@ "par_id463843338576911\n" "help.text" msgid "Cubic international mile" -msgstr "" +msgstr "Kubikk internasjonal mile" #. apJka #: func_convert.xhp @@ -59414,7 +59414,7 @@ "par_id995778363641811\n" "help.text" msgid "Australian middy (285 milliliters)" -msgstr "" +msgstr "Australsk middy (285 milliliter)" #. 5vKXB #: func_convert.xhp @@ -59423,7 +59423,7 @@ "par_id894695318848125\n" "help.text" msgid "Measurement ton" -msgstr "" +msgstr "Måletonn" #. gAxRC #: func_convert.xhp @@ -59432,7 +59432,7 @@ "par_id392284181269245\n" "help.text" msgid "Cubic nautical mile" -msgstr "" +msgstr "Kubikk nautisk mil" #. GLMFQ #: func_convert.xhp @@ -59441,7 +59441,7 @@ "par_id371262895179554\n" "help.text" msgid "US fluid ounce" -msgstr "" +msgstr "US væskeunse" #. KdjB5 #: func_convert.xhp @@ -59450,7 +59450,7 @@ "par_id956867693183654\n" "help.text" msgid "Cubic pica" -msgstr "" +msgstr "Kubikk pica" #. wPWak #: func_convert.xhp @@ -59459,7 +59459,7 @@ "par_id698697624265559\n" "help.text" msgid "US pint" -msgstr "" +msgstr "US pint" #. oaVnc #: func_convert.xhp @@ -59468,7 +59468,7 @@ "par_id615917164511264\n" "help.text" msgid "US quart" -msgstr "" +msgstr "US quart" #. nFgfR #: func_convert.xhp @@ -59477,7 +59477,7 @@ "par_id653481929342877\n" "help.text" msgid "Australian schooner (425 milliliters)" -msgstr "" +msgstr "Australsk schooner (425 milliliter)" #. yumuN #: func_convert.xhp @@ -59486,7 +59486,7 @@ "par_id912821548196546\n" "help.text" msgid "Six pack (2 liters)" -msgstr "" +msgstr "Sekspakk (2 liter)" #. GNQxR #: func_convert.xhp @@ -59495,7 +59495,7 @@ "par_id248216629889251\n" "help.text" msgid "US tablespoon" -msgstr "" +msgstr "US spiseskje" #. Bs5pc #: func_convert.xhp @@ -59504,7 +59504,7 @@ "par_id745625921159327\n" "help.text" msgid "US teaspoon" -msgstr "" +msgstr "US teskje" #. oFoZf #: func_convert.xhp @@ -59513,7 +59513,7 @@ "par_id864223151994899\n" "help.text" msgid "Metric teaspoon" -msgstr "" +msgstr "Metrisk teskje" #. 6eLBT #: func_convert.xhp @@ -59522,7 +59522,7 @@ "par_id311759289592485\n" "help.text" msgid "Imperial gallon" -msgstr "" +msgstr "Imperial gallon" #. zJyLT #: func_convert.xhp @@ -59531,7 +59531,7 @@ "par_id673293916128784\n" "help.text" msgid "Imperial pint" -msgstr "" +msgstr "Imperial pint" #. f9zhg #: func_convert.xhp @@ -59540,7 +59540,7 @@ "par_id213353742979736\n" "help.text" msgid "Imperial quart" -msgstr "" +msgstr "Imperial quart" #. TGDmn #: func_convert.xhp @@ -59549,7 +59549,7 @@ "par_id817884513513347\n" "help.text" msgid "Cubic yard" -msgstr "" +msgstr "Kubikk yard" #. EsueL #: func_convert.xhp @@ -59558,7 +59558,7 @@ "par_id671641306535516\n" "help.text" msgid "2 - These units are not part of the Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format standard for the CONVERT function. They are preserved for backward compatibility." -msgstr "" +msgstr "2 - Disse enhetene er ikke en del av Open Document Format for Office-applikasjoner (OpenDocument) versjon 1.3. Del 4: Rekalkulert formel (OpenFormula) Format-standard for KONVERTER-funksjonen. De er bevart for bakoverkompatibilitet." #. ej2DE #: func_convert.xhp @@ -59567,7 +59567,7 @@ "hd_id21620415408286\n" "help.text" msgid "Prefixes" -msgstr "" +msgstr "Prefikser" #. TSaMK #: func_convert.xhp @@ -59576,7 +59576,7 @@ "hd_id731620426688645\n" "help.text" msgid "Decimal prefixes" -msgstr "" +msgstr "Desimalprefikser" #. cjDA7 #: func_convert.xhp @@ -59585,7 +59585,7 @@ "par_id772395422122114\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. yHdoH #: func_convert.xhp @@ -59594,7 +59594,7 @@ "par_id448471762246791\n" "help.text" msgid "Multiplier" -msgstr "" +msgstr "Multiplikator" #. zByEE #: func_convert.xhp @@ -59603,7 +59603,7 @@ "hd_id91620427193950\n" "help.text" msgid "Binary prefixes" -msgstr "" +msgstr "Binære prefikser" #. X7TD3 #: func_convert.xhp @@ -59612,7 +59612,7 @@ "par_id422991712375461\n" "help.text" msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. mAcRr #: func_convert.xhp @@ -59621,7 +59621,7 @@ "par_id553637738674151\n" "help.text" msgid "Multiplier" -msgstr "" +msgstr "Multiplikator" #. gc56z #: func_convert.xhp @@ -59630,7 +59630,7 @@ "par_id871621424421294\n" "help.text" msgid "CONVERT Wiki page" -msgstr "" +msgstr "CONVERT Wiki side" #. JEUej #: func_countifs.xhp @@ -59639,7 +59639,7 @@ "tit\n" "help.text" msgid "COUNTIFS function" -msgstr "" +msgstr "COUNTIFS funkjson" #. Kprey #: func_countifs.xhp @@ -59648,7 +59648,7 @@ "bm_id452245224522\n" "help.text" msgid "COUNTIFS function counting row;satisfying criteria counting column;satisfying criteria" -msgstr "" +msgstr "COUNTIFS-funksjon telle rad;oppfylle kriterier tellekolonne;oppfylle kriterier" #. wMH8u #: func_countifs.xhp @@ -59657,7 +59657,7 @@ "hd_id456845684568\n" "help.text" msgid "COUNTIFS" -msgstr "" +msgstr "COUNTIFS" #. pGTzr #: func_countifs.xhp @@ -59666,7 +59666,7 @@ "par_id462646264626\n" "help.text" msgid "Returns the count of cells that meet criteria in multiple ranges." -msgstr "" +msgstr "Returnerer antallet celler som oppfyller kriteriene i flere områder." #. jbwVT #: func_countifs.xhp @@ -59675,7 +59675,7 @@ "par_id27421466710275\n" "help.text" msgid "COUNTIFS(Range; Criterion[; Range2; Criterion2][; ... ; [Range127; Criterion127]])" -msgstr "" +msgstr "COUNTIFS(Område; Kriterier[; Område2; Kriterier2][; ... ; [Område 127; Kriterium 127]])" #. KTAXW #: func_countifs.xhp @@ -59684,7 +59684,7 @@ "par_id14734320631377\n" "help.text" msgid "Range, Range2, ... and Criterion, Criterion2, ... must have the same size, otherwise the function returns err:502 - Invalid argument." -msgstr "" +msgstr "Range, Range2, ... og Kriterie, Kriterie2, ... må ha samme størrelse, ellers returnerer funksjonen err:502 - Ugyldig argument." #. ZuFZj #: func_countifs.xhp @@ -59693,7 +59693,7 @@ "hd_id3861259759512\n" "help.text" msgid "Simple usage" -msgstr "" +msgstr "Enkel bruk" #. uDqwg #: func_countifs.xhp @@ -59711,7 +59711,7 @@ "par_id323511393121175\n" "help.text" msgid "Counts the amount of rows of the range B2:B6 with values greater than or equal to 20. Returns 3, because the fifth and the sixth rows do not meet the criterion." -msgstr "" +msgstr "Teller antall rader i området B2:B6 med verdier større enn eller lik 20. Returnerer 3, fordi den femte og den sjette raden ikke oppfyller kriteriet." #. 4aGmq #: func_countifs.xhp @@ -59729,7 +59729,7 @@ "par_id109622995127628\n" "help.text" msgid "Counts the amount of rows that contain simultaneously values greater than 70 in the C2:C6 range and values greater than or equal to 20 in the B2:B6 range. Returns 2, because the second, the fifth and the sixth rows do not meet at least one criterion." -msgstr "" +msgstr "Teller mengden av rader som samtidig inneholder verdier større enn 70 i C2:C6-området og verdier større enn eller lik 20 i B2:B6-området. Returnerer 2, fordi den andre, den femte og den sjette raden ikke oppfyller minst ett kriterium." #. AGcGC #: func_countifs.xhp @@ -59738,7 +59738,7 @@ "hd_id298462825526166\n" "help.text" msgid "Using regular expressions and nested functions" -msgstr "" +msgstr "Bruke regulære uttrykk og nestede funksjoner" #. dgbYx #: func_countifs.xhp @@ -59747,7 +59747,7 @@ "par_id831605805755075\n" "help.text" msgid "For these examples to work as described, make sure that Enable regular expressions in formulas is selected in %PRODUCTNAME - PreferencesTools - Options - $[officename] Calc - Calculate." -msgstr "" +msgstr "For at disse eksemplene skal fungere som beskrevet, sørg for at Aktiver regulære uttrykk i formler er valgt i %PRODUCTNAME - InnstillingerVerktøy - Alternativer - $[officename] Calc - Kalkuler." #. iHFsx #: func_countifs.xhp @@ -59765,7 +59765,7 @@ "par_id22137303324873\n" "help.text" msgid "Counts the amount of rows of the B2:B6 range that contain only alphabet symbols. Returns 1, because only sixth row meets the criterion." -msgstr "" +msgstr "Teller antall rader i B2:B6-området som bare inneholder alfabetsymboler. Returnerer 1, fordi bare sjette rad oppfyller kriteriet." #. pNABF #: func_countifs.xhp @@ -59774,7 +59774,7 @@ "par_id82271340221411\n" "help.text" msgid "=COUNTIFS(B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=COUNTIFS(B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" #. 72QET #: func_countifs.xhp @@ -59783,7 +59783,7 @@ "par_id1105320769334\n" "help.text" msgid "Counts the amount of rows of the B2:B6 range excluding rows with minimum and maximum values of this range. Returns 2, because the third, the fifth and the sixth rows do not meet at least one criterion." -msgstr "" +msgstr "Teller antall rader i B2:B6-området unntatt rader med minimums- og maksimumsverdier for dette området. Returnerer 2, fordi den tredje, den femte og den sjette raden ikke oppfyller minst ett kriterium." #. jdWB5 #: func_countifs.xhp @@ -59792,7 +59792,7 @@ "par_id267603146513224\n" "help.text" msgid "=COUNTIFS(A2:A6;\"pen.*\";B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=COUNTIFS(A2:A6;\"pen.*\";B2:B6;\"<\"&MAX(B2:B6))" #. L6af2 #: func_countifs.xhp @@ -59801,7 +59801,7 @@ "par_id111252614832220\n" "help.text" msgid "Counts the amount of rows that correspond to all cells of the A2:A6 range starting with \"pen\" and to all cells of the B2:B6 range with exception of its maximum. Returns 1, because only second row meets all criteria." -msgstr "" +msgstr "Teller antall rader som tilsvarer alle celler i A2:A6-området som starter med \"penn\" og til alle celler i B2:B6-området med unntak av maksimum. Returnerer 1, fordi bare andre rad oppfyller alle kriteriene." #. rG36d #: func_countifs.xhp @@ -59810,7 +59810,7 @@ "hd_id212582362610399\n" "help.text" msgid "Reference to a cell as a criterion" -msgstr "" +msgstr "Referanse til en celle som et kriterium" #. ABwGC #: func_countifs.xhp @@ -59819,7 +59819,7 @@ "par_id3245551524846\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the COUNTIFS function. For example, the above function can be rewritten as follows:" -msgstr "" +msgstr "Hvis du trenger å endre et kriterium enkelt, kan det være lurt å spesifisere det i en egen celle og bruke en referanse til denne cellen i tilstanden til COUNTIFS-funksjonen. For eksempel kan funksjonen ovenfor skrives om som følger:" #. 3TTwe #: func_countifs.xhp @@ -59828,7 +59828,7 @@ "par_id109501907712434\n" "help.text" msgid "=COUNTIFS(A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=COUNTIFS(A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))" #. CNQBL #: func_countifs.xhp @@ -59837,7 +59837,7 @@ "par_id738533068520\n" "help.text" msgid "If E2 = pen, the function returns 1, because the link to the cell is substituted with its content and it works as a function above." -msgstr "" +msgstr "Hvis E2 = penn, returnerer funksjonen 1, fordi lenken til cellen er erstattet med innholdet og den fungerer som en funksjon ovenfor." #. GW3GV #: func_date.xhp @@ -59873,7 +59873,7 @@ "par_id3153551\n" "help.text" msgid "This function calculates a date specified by year, month, day and displays it in the cell's formatting. The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format." -msgstr "" +msgstr "Denne funksjonen beregner en dato spesifisert etter år, måned, dag og viser den i cellens formatering. Standardformatet for en celle som inneholder DATO-funksjonen er datoformatet, men du kan formater cellene med et hvilket som helst annet tallformat." #. wCGHA #: func_date.xhp @@ -59882,7 +59882,7 @@ "par_id3150474\n" "help.text" msgid "DATE(Year; Month; Day)" -msgstr "" +msgstr "DATO(År; Måned; Dag)" #. zExSG #: func_date.xhp @@ -59891,7 +59891,7 @@ "par_id3152815\n" "help.text" msgid "Year is an integer between 1583 and 9957 or between 0 and 99." -msgstr "" +msgstr "År er et heltall mellom 1583 og 9957 eller mellom 0 og 99." #. WVjaD #: func_date.xhp @@ -59900,7 +59900,7 @@ "par_id3153222\n" "help.text" msgid "In %PRODUCTNAME - PreferencesTools - Options - $[officename] - General you can set from which year a two-digit number entry is recognized as 20xx." -msgstr "" +msgstr "I %PRODUCTNAME - InnstillingerVerktøy - Alternativer - $[officename] - Generelt du kan angi fra hvilket år en tosifret nummeroppføring gjenkjennes som 20xx." #. uuZQH #: func_date.xhp @@ -59909,7 +59909,7 @@ "par_id3155817\n" "help.text" msgid "Month is an integer indicating the month." -msgstr "" +msgstr "Måned er et heltall som indikerer måneden." #. gKdnj #: func_date.xhp @@ -59918,7 +59918,7 @@ "par_id3153183\n" "help.text" msgid "Day is an integer indicating the day of the month." -msgstr "" +msgstr "Dag er et heltall som angir dagen i måneden." #. qr3Qv #: func_date.xhp @@ -59927,7 +59927,7 @@ "par_id3156260\n" "help.text" msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter =DATE(00;12;31) the result will be 2000-12-31. If, on the other hand, you enter =DATE(00;13;31) the result will be 2001-01-31." -msgstr "" +msgstr "Hvis verdiene for måned og dag er utenfor grensene, overføres de til neste siffer. Hvis du skriver inn =DATE(00;12;31) vil resultatet bli 2000-12-31. Hvis du derimot skriver inn =DATE(00;13;31) vil resultatet bli 2001-01-31." #. 8E7EB #: func_date.xhp @@ -59936,7 +59936,7 @@ "par_id3152589\n" "help.text" msgid "=DATE(00;1;31) yields 1/31/00 if the cell format setting is MM/DD/YY." -msgstr "" +msgstr "=DATE(00;1;31) gir 1/31/00 hvis celleformatinnstillingen er MM/DD/ÅÅ." #. pCLUK #: func_datedif.xhp @@ -59945,7 +59945,7 @@ "tit\n" "help.text" msgid "DATEDIF" -msgstr "" +msgstr "DATEDIF" #. kaPiN #: func_datedif.xhp @@ -59972,7 +59972,7 @@ "par_id3153551\n" "help.text" msgid "This function returns the number of whole days, months or years between Start date and End date." -msgstr "" +msgstr "Denne funksjonen returnerer antall hele dager, måneder eller år mellom startdato og sluttdato." #. zRWUX #: func_datedif.xhp @@ -59981,7 +59981,7 @@ "par_id531642776283977\n" "help.text" msgid "DATEDIF(Start date; End date; Interval)" -msgstr "" +msgstr "DATEDIF(Startdato; Sluttdato; Intervall)" #. CMjse #: func_datedif.xhp @@ -59990,7 +59990,7 @@ "par_id3152815\n" "help.text" msgid "Start date is the date from when the calculation is carried out." -msgstr "" +msgstr "Startdato er datoen fra når beregningen er utført." #. HbrrC #: func_datedif.xhp @@ -59999,7 +59999,7 @@ "par_id3155817\n" "help.text" msgid "End date is the date until the calculation is carried out. End date must be later, than Start date." -msgstr "" +msgstr "Sluttdato er datoen frem til beregningen er utført. Sluttdatoen må være senere enn startdatoen." #. PZGXK #: func_datedif.xhp @@ -60008,7 +60008,7 @@ "par_id3153183\n" "help.text" msgid "Interval is a string that determines how the difference will be calculated. Possible values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\" regardless of the current language settings." -msgstr "" +msgstr "Intervall er en streng som bestemmer hvordan differansen skal beregnes. Mulige verdier er \"d\", \"m\", \"y\", \"ym\", \"md\" eller \"yd\" uavhengig av gjeldende språkinnstillinger." #. Lxgdp #: func_datedif.xhp @@ -60017,7 +60017,7 @@ "par_id5735953\n" "help.text" msgid "Value for \"Interval\"" -msgstr "" +msgstr "Verdi for \"intervall\"" #. UBcKr #: func_datedif.xhp @@ -60035,7 +60035,7 @@ "par_id908841\n" "help.text" msgid "Number of whole days between Start date and End date." -msgstr "" +msgstr "Antall hele dager mellom startdato og sluttdato." #. KTzdL #: func_datedif.xhp @@ -60044,7 +60044,7 @@ "par_id9841608\n" "help.text" msgid "Number of whole months between Start date and End date." -msgstr "" +msgstr "Antall hele måneder mellom startdato og sluttdato." #. jMGKG #: func_datedif.xhp @@ -60053,7 +60053,7 @@ "par_id2136295\n" "help.text" msgid "Number of whole years between Start date and End date." -msgstr "" +msgstr "Antall hele år mellom startdato og sluttdato." #. 8tDzh #: func_datedif.xhp @@ -60062,7 +60062,7 @@ "par_id4186223\n" "help.text" msgid "Number of whole months when subtracting years from the difference of Start date and End date." -msgstr "" +msgstr "Antall hele måneder når år trekkes fra differansen mellom startdato og sluttdato." #. jShMp #: func_datedif.xhp @@ -60071,7 +60071,7 @@ "par_id1491134\n" "help.text" msgid "Number of whole days when subtracting years and months from the difference of Start date and End date." -msgstr "" +msgstr "Antall hele dager når år og måneder trekkes fra forskjellen mellom startdato og sluttdato." #. 9uGY2 #: func_datedif.xhp @@ -60080,7 +60080,7 @@ "par_id1591134\n" "help.text" msgid "Number of whole days when subtracting years from the difference of Start date and End date." -msgstr "" +msgstr "Antall hele dager når år trekkes fra differansen mellom startdato og sluttdato." #. Pc57T #: func_datedif.xhp @@ -60089,7 +60089,7 @@ "par_id3152589\n" "help.text" msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13." -msgstr "" +msgstr "Bursdagsberegning. En mann ble født 1974-04-17. I dag er 2012-06-13." #. jbcJE #: func_datedif.xhp @@ -60098,7 +60098,7 @@ "par_id3252589\n" "help.text" msgid "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\") yields 38." -msgstr "" +msgstr "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\") gir 38." #. k75FH #: func_datedif.xhp @@ -60107,7 +60107,7 @@ "par_id451535132395328\n" "help.text" msgid "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\") yields 1." -msgstr "" +msgstr "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\") gir 1." #. 3dbKg #: func_datedif.xhp @@ -60116,7 +60116,7 @@ "par_id611535132402642\n" "help.text" msgid "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\") yields 27." -msgstr "" +msgstr "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\") gir 27." #. LA2Rw #: func_datedif.xhp @@ -60125,7 +60125,7 @@ "par_id511535132411940\n" "help.text" msgid "So he is 38 years, 1 month and 27 days old." -msgstr "" +msgstr "Så han er 38 år, 1 måned og 27 dager gammel." #. yuWBU #: func_datedif.xhp @@ -60134,7 +60134,7 @@ "par_id3352589\n" "help.text" msgid "=DATEDIF(DATE(1974,4,17);\"2012-06-13\";\"m\") yields 457, he has been living for 457 months." -msgstr "" +msgstr "=DATEDIF(DATE(1974,4,17);\"2012-06-13\";\"m\") gir 457, han har levd i 457 måneder." #. tFAxV #: func_datedif.xhp @@ -60143,7 +60143,7 @@ "par_id3452589\n" "help.text" msgid "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\") yields 13937, he has been living for 13937 days." -msgstr "" +msgstr "=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\") gir 13937, han har levd i 13937 dager." #. C8DrL #: func_datedif.xhp @@ -60152,7 +60152,7 @@ "par_id3752589\n" "help.text" msgid "=DATEDIF(\"1974-04-17\";DATE(2012;06;13);\"yd\") yields 57, his birthday was 57 days ago." -msgstr "" +msgstr "=DATEDIF(\"1974-04-17\";DATE(2012;06;13);\"yd\") gir 57, bursdagen hans var for 57 dager siden." #. 7eFQV #: func_datevalue.xhp @@ -60161,7 +60161,7 @@ "tit\n" "help.text" msgid "DATEVALUE" -msgstr "" +msgstr "DATEVALUE" #. s5yZC #: func_datevalue.xhp @@ -60197,7 +60197,7 @@ "par_id3149281\n" "help.text" msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates." -msgstr "" +msgstr "Det interne datonummeret returneres som et tall. Tallet bestemmes av datosystemet som brukes av $[officename] for å beregne datoer." #. cqHjd #: func_datevalue.xhp @@ -60206,7 +60206,7 @@ "par_id0119200903491982\n" "help.text" msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion." -msgstr "" +msgstr "Hvis tekststrengen også inkluderer en tidsverdi, returnerer DATOVERDI bare heltallsdelen av konverteringen." #. 2FeGy #: func_datevalue.xhp @@ -60224,7 +60224,7 @@ "par_id3154819\n" "help.text" msgid "Text is a valid date expression and must be entered with quotation marks." -msgstr "" +msgstr "Tekst er et gyldig datouttrykk og må angis med anførselstegn." #. dpZqE #: func_datevalue.xhp @@ -60233,7 +60233,7 @@ "par_id3155841\n" "help.text" msgid "=DATEVALUE(\"1954-07-20\") yields 19925." -msgstr "" +msgstr "=DATOVERDI(\"1954-07-20\") gir 19925." #. hrZuN #: func_day.xhp @@ -60287,7 +60287,7 @@ "par_id3149443\n" "help.text" msgid "Number is the internal date number." -msgstr "" +msgstr "Nummer er det interne datonummeret." #. rUQip #: func_day.xhp @@ -60296,7 +60296,7 @@ "par_id3151200\n" "help.text" msgid "=DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)" -msgstr "" +msgstr "=DAY(1) returnerer 31 (siden $[officename] begynner å telle ved null fra 30. desember 1899)" #. h7jdH #: func_day.xhp @@ -60305,7 +60305,7 @@ "par_id3154130\n" "help.text" msgid "=DAY(NOW()) returns the current day." -msgstr "" +msgstr "=DAY(NOW()) returnerer gjeldende dag." #. eDsDG #: func_day.xhp @@ -60314,7 +60314,7 @@ "par_id3159190\n" "help.text" msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)." -msgstr "" +msgstr "=DAY(C4) returnerer 5 hvis du skriver inn 1901-08-05 i celle C4 (datoverdien kan bli formatert annerledes etter at du trykker på Enter)." #. MsTm6 #: func_days.xhp @@ -60359,7 +60359,7 @@ "par_id3149578\n" "help.text" msgid "DAYS(Date2; Date1)" -msgstr "" +msgstr "DAYS(Dato2; Dato1)" #. wt5bA #: func_days.xhp @@ -60368,7 +60368,7 @@ "par_id3151376\n" "help.text" msgid "Date1 is the start date, Date2 is the end date. If Date2 is an earlier date than Date1 the result is a negative number." -msgstr "" +msgstr "Dato1 er startdatoen, Dato2 er sluttdatoen. Hvis Dato2 er en tidligere dato enn Dato1, er resultatet et negativt tall." #. hjctD #: func_days.xhp @@ -60377,7 +60377,7 @@ "par_id3159101\n" "help.text" msgid "=DAYS(NOW();\"2010-01-01\")) returns the number of days from January 1, 2010 until today." -msgstr "" +msgstr "=DAYS(NOW();\"2010-01-01\")) returnerer antall dager fra 1. januar 2010 til i dag." #. GwLS3 #: func_days.xhp @@ -60386,7 +60386,7 @@ "par_id3163720\n" "help.text" msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days." -msgstr "" +msgstr "=DAYS(\"1990-10-10\";\"1980-10-10\") returnerer 3652 dager." #. 8vNn9 #: func_days360.xhp @@ -60431,7 +60431,7 @@ "par_id3155313\n" "help.text" msgid "DAYS360(Date1; Date2[; Type])" -msgstr "" +msgstr "DAYS360(Dato1; Dato2[; Type])" #. 5qfGz #: func_days360.xhp @@ -60449,7 +60449,7 @@ "par_id3151064\n" "help.text" msgid "The optional argument Type determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used." -msgstr "" +msgstr "Det valgfrie argumentet Type bestemmer typen forskjellsberegning. Hvis Type = 0 eller hvis argumentet mangler, brukes den amerikanske metoden (NASD, National Association of Securities Dealers). Hvis Type <> 0, brukes den europeiske metoden." #. qN5ZS #: func_days360.xhp @@ -60458,7 +60458,7 @@ "par_id3156348\n" "help.text" msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today." -msgstr "" +msgstr "=DAYS360(\"2000-01-01\";NOW()) returnerer antall rentedager fra 1. januar 2000 til i dag." #. RpPVW #: func_eastersunday.xhp @@ -60494,7 +60494,7 @@ "par_id3154570\n" "help.text" msgid "Returns the date of Easter Sunday for the entered year." -msgstr "" +msgstr "Returnerer datoen for påskedag for det angitte året." #. 3RpKr #: func_eastersunday.xhp @@ -60512,7 +60512,7 @@ "par_id3938413\n" "help.text" msgid "Year is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date." -msgstr "" +msgstr "År er et heltall mellom 1583 og 9956 eller 0 og 99. Du kan også beregne andre helligdager ved å legge til denne datoen." #. mABBt #: func_eastersunday.xhp @@ -60557,7 +60557,7 @@ "par_id3154472\n" "help.text" msgid "=EASTERSUNDAY(2000) returns 2000-04-23." -msgstr "" +msgstr "=EASTERSUNDAY(2000) returnerer 2000-04-23." #. 8dGJE #: func_eastersunday.xhp @@ -60566,7 +60566,7 @@ "par_id3150940\n" "help.text" msgid "=EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD." -msgstr "" +msgstr "=ESTERSUNDAY(2000)+49 returnerer det interne serienummeret 36688. Resultatet er 2000-06-11. Formater serienummeret som en dato, for eksempel i formatet ÅÅÅÅ-MM-DD." #. ZjahK #: func_edate.xhp @@ -60602,7 +60602,7 @@ "par_id3150880\n" "help.text" msgid "The result is a date which is a number of months away from the start date. Only months are considered; days are not used for calculation." -msgstr "" +msgstr "Resultatet er en dato som er et antall måneder unna startdatoen. Bare måneder vurderes; dager brukes ikke til beregning." #. pLxiB #: func_edate.xhp @@ -60611,7 +60611,7 @@ "par_id3153212\n" "help.text" msgid "EDATE(StartDate; Months)" -msgstr "" +msgstr "EDATE(StartDato; Måned)" #. qtwFa #: func_edate.xhp @@ -60638,7 +60638,7 @@ "par_id3155845\n" "help.text" msgid "What date is one month prior to 2001-03-31?" -msgstr "" +msgstr "Hvilken dato er en måned før 2001-03-31?" #. BPn5C #: func_edate.xhp @@ -60647,7 +60647,7 @@ "par_id3155999\n" "help.text" msgid "=EDATE(\"2001-03-31\";-1) returns the serial number 36950. Formatted as a date, this is 2001-02-28." -msgstr "" +msgstr "=EDATE(\"2001-03-31\";-1) returnerer serienummeret 36950. Formatert som en dato er dette 2001-02-28." #. 4kAEM #: func_eomonth.xhp @@ -60656,7 +60656,7 @@ "tit\n" "help.text" msgid "EOMONTH" -msgstr "" +msgstr "EOMONTH" #. quyjG #: func_eomonth.xhp @@ -60683,7 +60683,7 @@ "par_id3152766\n" "help.text" msgid "Returns the date of the last day of a month which falls months away from the start date." -msgstr "" +msgstr "Returnerer datoen for den siste dagen i en måned som faller måneder fra startdatoen." #. CVrxb #: func_eomonth.xhp @@ -60692,7 +60692,7 @@ "par_id3150351\n" "help.text" msgid "EOMONTH(StartDate; Months)" -msgstr "" +msgstr "EOMONTH(StartDato; Måneder)" #. duM2o #: func_eomonth.xhp @@ -60719,7 +60719,7 @@ "par_id3154829\n" "help.text" msgid "What is the last day of the month that falls 6 months after September 14 2001?" -msgstr "" +msgstr "Hva er den siste dagen i måneden som faller 6 måneder etter 14. september 2001?" #. cq6AW #: func_eomonth.xhp @@ -60728,7 +60728,7 @@ "par_id3156143\n" "help.text" msgid "=EOMONTH(DATE(2001;9;14);6) returns the serial number 37346. Formatted as a date, this is 2002-03-31." -msgstr "" +msgstr "=EOMONTH(DATE(2001;9;14);6) returnerer serienummeret 37346. Formatert som en dato, dette er 2002-03-31." #. 7eUrP #: func_eomonth.xhp @@ -60737,7 +60737,7 @@ "par_id3156144\n" "help.text" msgid "=EOMONTH(\"2001-09-14\";6) works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings." -msgstr "" +msgstr "=EOMONTH(\"2001-09-14\";6) fungerer også. Hvis du spesifiserer datoen direkte, anbefaler vi å bruke standard ISO 8601-format fordi dette bør være uavhengig av de valgte lokale innstillingene." #. Lu8Ng #: func_eomonth.xhp @@ -60746,7 +60746,7 @@ "par_id681621540307527\n" "help.text" msgid "EOMONTH wiki page" -msgstr "" +msgstr "EOMONTH wiki side" #. BNTm6 #: func_error_type.xhp @@ -60755,7 +60755,7 @@ "tit\n" "help.text" msgid "ERROR.TYPE function" -msgstr "" +msgstr "ERROR.TYPE funksjon" #. Wvwf3 #: func_error_type.xhp @@ -60782,7 +60782,7 @@ "par_id350283502835028\n" "help.text" msgid "Returns a number representing a specific Error type, or the error value #N/A, if there is no error. " -msgstr "" +msgstr "Returnerer et tall som representerer en spesifikk feiltype, eller feilverdien #N/A, hvis det ikke er noen feil. " #. YFzz5 #: func_error_type.xhp @@ -60791,7 +60791,7 @@ "par_id1861223540440\n" "help.text" msgid "ERROR.TYPE(Error_value)" -msgstr "" +msgstr "ERROR.TYPE(Feil_verdi)" #. jxm2V #: func_error_type.xhp @@ -60800,7 +60800,7 @@ "par_id217737315\n" "help.text" msgid "Error_value – required argument. The error value or a reference to a cell, whose value needs to be processed." -msgstr "" +msgstr "Feil_verdi – nødvendig argument. Feilverdien eller en referanse til en celle, hvis verdi må behandles." #. 9FhFw #: func_error_type.xhp @@ -60809,7 +60809,7 @@ "par_id15254419018421\n" "help.text" msgid "Error value" -msgstr "" +msgstr "Feilverdi" #. Y9mAa #: func_error_type.xhp @@ -60818,7 +60818,7 @@ "par_id134093102310948\n" "help.text" msgid "Returns" -msgstr "" +msgstr "Returnerer" #. fUKES #: func_error_type.xhp @@ -60827,7 +60827,7 @@ "par_id121020152053105891\n" "help.text" msgid "Err:511" -msgstr "" +msgstr "Feil:511" #. B2EPc #: func_error_type.xhp @@ -60836,7 +60836,7 @@ "par_id121020152053148760\n" "help.text" msgid "#DIV/0!" -msgstr "" +msgstr "#DIV/0!" #. wqbPF #: func_error_type.xhp @@ -60854,7 +60854,7 @@ "par_id121020152053329868\n" "help.text" msgid "#REF!" -msgstr "" +msgstr "#REF!" #. hEjUy #: func_error_type.xhp @@ -60863,7 +60863,7 @@ "par_id121020152053353976\n" "help.text" msgid "#NAME?" -msgstr "" +msgstr "#NAME?" #. xv66i #: func_error_type.xhp @@ -60872,7 +60872,7 @@ "par_id121020152053408216\n" "help.text" msgid "#NUM!" -msgstr "" +msgstr "#NUM!" #. L2qE7 #: func_error_type.xhp @@ -60881,7 +60881,7 @@ "par_id121020152054007072\n" "help.text" msgid "#N/A" -msgstr "" +msgstr "#N/A" #. ZB8XE #: func_error_type.xhp @@ -60890,7 +60890,7 @@ "par_id121020152054075191\n" "help.text" msgid "Anything else" -msgstr "" +msgstr "Noe annet" #. FySH9 #: func_error_type.xhp @@ -60899,7 +60899,7 @@ "par_id121020152054075192\n" "help.text" msgid "#N/A" -msgstr "" +msgstr "#N/A" #. mCLBE #: func_error_type.xhp @@ -60908,7 +60908,7 @@ "hd_id182972884627444\n" "help.text" msgid "Simple usage" -msgstr "" +msgstr "Enkel bruk" #. oogBc #: func_error_type.xhp @@ -60917,7 +60917,7 @@ "par_id15812966716957\n" "help.text" msgid "=ERROR.TYPE(#N/A)" -msgstr "" +msgstr "=ERROR.TYPE(#N/A)" #. XYAAM #: func_error_type.xhp @@ -60926,7 +60926,7 @@ "par_id280533214928308\n" "help.text" msgid "Returns 7, because 7 is the index number of the error value #N/A." -msgstr "" +msgstr "Returnerer 7, fordi 7 er indeksnummeret til feilverdien #N/A." #. MxaAn #: func_error_type.xhp @@ -60935,7 +60935,7 @@ "par_id1047088636291\n" "help.text" msgid "=ERROR.TYPE(A3)" -msgstr "" +msgstr "=ERROR.TYPE(A3)" #. 8UJpP #: func_error_type.xhp @@ -60944,7 +60944,7 @@ "par_id24308515918391\n" "help.text" msgid "If A3 contains an expression equivalent to the division by zero, the function returns 2, because 2 is the index number of the error value #DIV/0!" -msgstr "" +msgstr "Hvis A3 inneholder et uttrykk tilsvarende divisjonen med null, returnerer funksjonen 2, fordi 2 er indeksnummeret til feilverdien #DIV/0!" #. NEmkr #: func_error_type.xhp @@ -60953,7 +60953,7 @@ "hd_id9842206115046\n" "help.text" msgid "More advanced way" -msgstr "" +msgstr "Mer avansert måte" #. PP59Q #: func_error_type.xhp @@ -60962,7 +60962,7 @@ "par_id90121141327448\n" "help.text" msgid "If in division A1 by A2, A2 can turn to zero, you can handle the situation as follows:" -msgstr "" +msgstr "Hvis i divisjon A1 med A2, A2 kan bli null, kan du håndtere situasjonen som følger:" #. uvFET #: func_error_type.xhp @@ -60971,7 +60971,7 @@ "par_id16083887218317\n" "help.text" msgid "=IF(ISERROR(A1/A2);IF(ERROR.TYPE(A1/A2)=2;\"the denominator can't be equal to zero\");A1/A2)" -msgstr "" +msgstr "=IF(ISERROR(A1/A2);IF(ERROR.TYPE(A1/A2)=2;\"nevneren kan ikke være lik null\");A1/A2)" #. SZAbc #: func_error_type.xhp @@ -60980,7 +60980,7 @@ "par_id12475201719494\n" "help.text" msgid "The ISERROR function returns TRUE or FALSE depending on whether there is an error or not. If the error takes place, the function IF addresses to the second argument, if there is no error, it returns the result of the division. The second argument checks the index number representing the specific Error type, and if it is equal to 2, it returns the specified text \"the denominator can't be zero\" or 0 otherwise. Thus, clear text would signify the division by zero, the result of the division would appear when the division is successful, or if there is, for example, an error of another type, zero would be returned." -msgstr "" +msgstr "FEIL-funksjonen returnerer SANN eller USANN avhengig av om det er en feil eller ikke. Hvis feilen finner sted, adresserer funksjonen HVIS det andre argumentet, hvis det ikke er noen feil, returnerer den resultatet av divisjonen. Det andre argumentet sjekker indeksnummeret som representerer den spesifikke feiltypen, og hvis det er lik 2, returnerer det den spesifiserte teksten \"nevneren kan ikke være null\" eller 0 ellers. Dermed vil klartekst bety divisjonen med null, resultatet av divisjonen vil vises når divisjonen er vellykket, eller hvis det for eksempel er en feil av en annen type, vil null bli returnert." #. 8XdGp #: func_error_type.xhp @@ -60989,7 +60989,7 @@ "par_id26251175451270\n" "help.text" msgid "If the ERROR.TYPE function is used as condition of the IF function and the ERROR.TYPE returns #N/A, the IF function returns #N/A as well. Use ISERROR to avoid it as shown in the example above." -msgstr "" +msgstr "Hvis FEIL.TYPE-funksjonen brukes som betingelse for HVIS-funksjonen og FEILTYPE returnerer #N/A, returnerer HVIS-funksjonen #N/A også. Bruk ISERROR for å unngå det som vist i eksempelet ovenfor." #. jKnF4 #: func_error_type.xhp @@ -60998,7 +60998,7 @@ "par_id352953529535295\n" "help.text" msgid "ISERROR, NA, IF" -msgstr "" +msgstr "ISERROR, NA, IF" #. tEskv #: func_error_type.xhp @@ -61007,7 +61007,7 @@ "par_id312932390024933\n" "help.text" msgid "Error codes" -msgstr "" +msgstr "Feilkoder" #. sUgSM #: func_findb.xhp @@ -61016,7 +61016,7 @@ "tit\n" "help.text" msgid "FINDB Function" -msgstr "" +msgstr "FINDB Funksjon" #. EkUr2 #: func_findb.xhp @@ -61025,7 +61025,7 @@ "bm_id141573508995071\n" "help.text" msgid "FINDB Function find text;FINDB Function" -msgstr "" +msgstr "FINDB-funksjon finn tekst;FINDB-funksjon" #. MAagw #: func_findb.xhp @@ -61034,7 +61034,7 @@ "hd_id771573508637966\n" "help.text" msgid "FINDB" -msgstr "" +msgstr "FINDB" #. iW2EE #: func_findb.xhp @@ -61043,7 +61043,7 @@ "par_id831573508637970\n" "help.text" msgid "Returns the starting position of a given text, using byte positions. FINDB is case sensitive." -msgstr "" +msgstr "Returnerer startposisjonen til en gitt tekst ved å bruke byteposisjoner. FINDB skiller mellom store og små bokstaver." #. 4ztby #: func_findb.xhp @@ -61052,7 +61052,7 @@ "par_id221573517641172\n" "help.text" msgid "FINDB(Find Text ; Text [; Position])" -msgstr "" +msgstr "FINDB(Finn tekst ; Tekst [; Posisjon])" #. puQAw #: func_findb.xhp @@ -61061,7 +61061,7 @@ "par_id241573517292388\n" "help.text" msgid "Find Text: The text or text expression to be found." -msgstr "" +msgstr "Finn tekst: Teksten eller tekstuttrykket som skal finne." #. YgyTW #: func_findb.xhp @@ -61070,7 +61070,7 @@ "par_id991573517299918\n" "help.text" msgid "Text: the text in which the search is to be made." -msgstr "" +msgstr "Tekst: teksten som søket skal gjøres i." #. pfYPq #: func_findb.xhp @@ -61079,7 +61079,7 @@ "par_id521573517305077\n" "help.text" msgid "Position: The position in the text where the search starts." -msgstr "" +msgstr "Posisjon: Posisjonen i teksten der søket starter." #. okEBS #: func_findb.xhp @@ -61088,7 +61088,7 @@ "par_id481573517830373\n" "help.text" msgid "=FINDB(\"a\"; \"LibreOffice Calc\") returns 15. The Find Text argument is a text string that comprises a full-width, double-byte \"a\" character, while the Text argument comprises 12 single-byte characters followed by four full-width, double-byte characters." -msgstr "" +msgstr "=FINDB(\"a\"; \"LibreOffice Calc\") returnerer 15. Argumentet Finn tekst er en tekststreng som består av en dobbelbyte \"a\" i full bredde tegn, mens Tekst-argumentet består av 12 enkeltbytetegn etterfulgt av fire dobbelbytetegn i full bredde." #. aACGP #: func_floor.xhp @@ -61097,7 +61097,7 @@ "tit\n" "help.text" msgid "FLOOR Functions" -msgstr "" +msgstr "GULV funksjoner" #. RuCRw #: func_floor.xhp @@ -61106,7 +61106,7 @@ "hd_id391586285373874\n" "help.text" msgid "FLOOR Functions" -msgstr "" +msgstr "GULV funksjoner" #. hkrkw #: func_floor.xhp @@ -61115,7 +61115,7 @@ "bm_id3157404\n" "help.text" msgid "FLOOR functionrounding;down to nearest multiple of significance" -msgstr "" +msgstr "FLOOR-funksjonavrunding;ned til nærmeste multiplum av betydning" #. soQ7o #: func_floor.xhp @@ -61124,7 +61124,7 @@ "hd_id3157404\n" "help.text" msgid "FLOOR" -msgstr "" +msgstr "GULV" #. VSV8H #: func_floor.xhp @@ -61133,7 +61133,7 @@ "par_id3157432\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Runder et tall til nærmeste multiplum av en signifikansverdi." #. 345Fr #: func_floor.xhp @@ -61142,7 +61142,7 @@ "par_id661586285977707\n" "help.text" msgid "For a positive number and a positive significance value, the function rounds down (towards zero). For a negative number and a negative significance value, the direction of rounding is determined by the value of a mode parameter. The function returns an error if the number and significance values have opposite signs." -msgstr "" +msgstr "For et positivt tall og en positiv signifikansverdi runder funksjonen ned (mot null). For et negativt tall og en negativ signifikansverdi bestemmes avrundingsretningen av verdien til en modusparameter. Funksjonen returnerer en feil hvis tall- og signifikansverdiene har motsatte fortegn." #. 5kHtR #: func_floor.xhp @@ -61151,7 +61151,7 @@ "par_id3163894\n" "help.text" msgid "If the spreadsheet is exported to Microsoft Excel, the FLOOR function is exported as the equivalent FLOOR.MATH function that has existed since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either FLOOR.PRECISE that has existed since Excel 2010, or FLOOR.XCL that is exported as the FLOOR function compatible with all Excel versions." -msgstr "" +msgstr "Hvis regnearket eksporteres til Microsoft Excel, eksporteres FLOOR-funksjonen som den tilsvarende FLOOR.MATH-funksjonen som har eksistert siden Excel 2013. Hvis du planlegger å bruke regnearket med tidligere Excel-versjoner, bruk enten FLOOR.PRECISE som har eksistert siden Excel 2010, eller FLOOR.XCL som eksporteres som FLOOR-funksjonen kompatibel med alle Excel-versjoner." #. 2haGU #: func_floor.xhp @@ -61160,7 +61160,7 @@ "par_id3157464\n" "help.text" msgid "FLOOR(Number[; Significance[; Mode]])" -msgstr "" +msgstr "GULV(Tall[; Betydning[; Modus]])" #. ERf3D #: func_floor.xhp @@ -61169,7 +61169,7 @@ "par_id3153467\n" "help.text" msgid "Number is the number that is to be rounded, or a reference to a cell containing the number." -msgstr "" +msgstr "Tall er tallet som skal avrundes, eller en referanse til en celle som inneholder tallet." #. 8w8tL #: func_floor.xhp @@ -61178,7 +61178,7 @@ "par_id3157497\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to +1 or -1 depending on the sign of Number." -msgstr "" +msgstr "Betydning (valgfritt) er verdien, eller en referanse til en celle som inneholder verdien, hvis multiple Tall skal avrundes til. Den er standard til +1 eller -1 avhengig av tegnet på Tall." #. qCpHR #: func_floor.xhp @@ -61187,7 +61187,7 @@ "par_id3157517\n" "help.text" msgid "Mode (optional) is a number, or a reference to a cell containing a number. The function only uses Mode if both Number and Significance are negative. Then if Mode is given and not equal to zero, numbers are rounded up (towards zero); if Mode is equal to zero or not given, negative numbers are rounded down (away from zero)." -msgstr "" +msgstr "Modus (valgfritt) er et tall, eller en referanse til en celle som inneholder et tall. Funksjonen bruker bare Mode hvis både Tall og Betydning er negative. Så hvis Mode er gitt og ikke lik null, rundes tall opp (mot null); hvis Mode er lik null eller ikke gitt, rundes negative tall ned (bort fra null)." #. EU85r #: func_floor.xhp @@ -61196,7 +61196,7 @@ "par_id761586287595376\n" "help.text" msgid "=FLOOR(3.45) returns 3." -msgstr "" +msgstr "=FLOOR(3,45) returnerer 3." #. vuJc5 #: func_floor.xhp @@ -61205,7 +61205,7 @@ "par_id311586287600048\n" "help.text" msgid "=FLOOR(3.45, 3) returns 3." -msgstr "" +msgstr "=FLOOR(3.45, 3) returnerer 3." #. uTWTb #: func_floor.xhp @@ -61214,7 +61214,7 @@ "par_id661586287604519\n" "help.text" msgid "=FLOOR(-1.234) returns -2." -msgstr "" +msgstr "=FLOOR(-1.234) returnerer -2." #. 8ZGDc #: func_floor.xhp @@ -61223,7 +61223,7 @@ "par_id741586287608968\n" "help.text" msgid "=FLOOR(-45.67, -2, 0) returns -46." -msgstr "" +msgstr "=FLOOR(-45.67, -2, 0) returnerer -46." #. gXsTm #: func_floor.xhp @@ -61232,7 +61232,7 @@ "par_id431586287616089\n" "help.text" msgid "=FLOOR(-45.67, -2, 1) returns -44." -msgstr "" +msgstr "=FLOOR(-45.67, -2, 1) returnerer -44." #. zzTLr #: func_floor.xhp @@ -61241,7 +61241,7 @@ "bm_id811586290952465\n" "help.text" msgid "FLOOR.MATH function" -msgstr "" +msgstr "FLOOR.MATH funksjon" #. B9VCD #: func_floor.xhp @@ -61250,7 +61250,7 @@ "hd_id1001586287279297\n" "help.text" msgid "FLOOR.MATH" -msgstr "" +msgstr "FLOOR.MATH" #. BBjwd #: func_floor.xhp @@ -61259,7 +61259,7 @@ "par_id721586287302689\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Avrunder et tall til nærmeste multiplum av en signifikansverdi." #. UJLZc #: func_floor.xhp @@ -61268,7 +61268,7 @@ "par_id311586287323417\n" "help.text" msgid "For a positive number the function rounds down (towards zero). For a negative number, the direction of rounding is determined by the value of a mode parameter. The sign of the significance value is ignored." -msgstr "" +msgstr "For et positivt tall rundes funksjonen ned (mot null). For et negativt tall bestemmes avrundingsretningen av verdien til en modusparameter. Tegnet på signifikansverdien ignoreres." #. 4weAd #: func_floor.xhp @@ -61277,7 +61277,7 @@ "par_id851586287535879\n" "help.text" msgid "This function exists for interoperability with Microsoft Excel 2013 or newer." -msgstr "" +msgstr "Denne funksjonen eksisterer for interoperabilitet med Microsoft Excel 2013 eller nyere." #. 4DFyG #: func_floor.xhp @@ -61286,7 +61286,7 @@ "par_id161586287421523\n" "help.text" msgid "FLOOR.MATH(Number[; Significance[; Mode]])" -msgstr "" +msgstr "FLOOR.MATH(Tall[; Signifikans[; Modus]])" #. Un6FB #: func_floor.xhp @@ -61295,7 +61295,7 @@ "par_id231586287448716\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to 1." -msgstr "" +msgstr "Signifikans (valgfritt) er verdien, eller en referanse til en celle som inneholder verdien, hvis multiple Tall skal avrundes til. Den er som standard 1." #. L9MKT #: func_floor.xhp @@ -61304,7 +61304,7 @@ "par_id261586287494401\n" "help.text" msgid "Mode (optional) is a number, or a reference to a cell containing a number. If Mode is given and not equal to zero, a negative Number is rounded up (towards zero). If Mode is equal to zero or is not given, a negative Number is rounded down (away from zero)." -msgstr "" +msgstr "Modus (valgfritt) er et tall, eller en referanse til en celle som inneholder et tall. Hvis Mode er gitt og ikke lik null, rundes et negativt tall opp (mot null). Hvis Modus er lik null eller ikke er gitt, rundes et negativt tall ned (bort fra null)." #. wCd8C #: func_floor.xhp @@ -61313,7 +61313,7 @@ "par_id101586287621816\n" "help.text" msgid "=FLOOR.MATH(3.45) returns 3." -msgstr "" +msgstr "=FLOOR.MATH(3.45) returnerer 3." #. p27MD #: func_floor.xhp @@ -61322,7 +61322,7 @@ "par_id771586287627784\n" "help.text" msgid "=FLOOR.MATH(3.45,-3) returns 3." -msgstr "" +msgstr "=FLOOR.MATH(3.45,-3) returnerer 3." #. Fehfx #: func_floor.xhp @@ -61331,7 +61331,7 @@ "par_id981586287632392\n" "help.text" msgid "=FLOOR.MATH(-1.234) returns -2." -msgstr "" +msgstr "=FLOOR.MATH(-1.234) returnerer -2." #. eQfea #: func_floor.xhp @@ -61340,7 +61340,7 @@ "par_id631586287637256\n" "help.text" msgid "=FLOOR.MATH(-45.67,-2, 0) returns -46." -msgstr "" +msgstr "=FLOOR.MATH(-45.67,-2, 0) returnerer -46." #. XXqpS #: func_floor.xhp @@ -61349,7 +61349,7 @@ "par_id371586287641888\n" "help.text" msgid "=FLOOR.MATH(-45.67,+2, 1) returns -44." -msgstr "" +msgstr "=FLOOR.MATH(-45.67,+2, 1) returnerer -44." #. 9MJem #: func_floor.xhp @@ -61358,7 +61358,7 @@ "bm_id2957404\n" "help.text" msgid "FLOOR.PRECISE functionrounding;down to nearest multiple of significance" -msgstr "" +msgstr "FLOOR.PRECISE-funksjonavrunding;ned til nærmeste multiplum av betydning" #. Q6WU3 #: func_floor.xhp @@ -61367,7 +61367,7 @@ "hd_id2957404\n" "help.text" msgid "FLOOR.PRECISE" -msgstr "" +msgstr "FLOOR.PRECISE" #. DgQBx #: func_floor.xhp @@ -61376,7 +61376,7 @@ "par_id2957432\n" "help.text" msgid "Rounds a number down to the nearest multiple of a significance value." -msgstr "" +msgstr "Runder et tall ned til nærmeste multiplum av en signifikansverdi." #. NHMnz #: func_floor.xhp @@ -61385,7 +61385,7 @@ "par_id261586641501175\n" "help.text" msgid "For a positive number the function rounds down (towards zero). For a negative number, the function rounds down (away form zero). The sign of the significance value is ignored." -msgstr "" +msgstr "For et positivt tall rundes funksjonen ned (mot null). For et negativt tall rundes funksjonen ned (bort fra null). Tegnet på signifikansverdien ignoreres." #. ni9y2 #: func_floor.xhp @@ -61394,7 +61394,7 @@ "par_id2957464\n" "help.text" msgid "FLOOR.PRECISE(Number[; Significance])" -msgstr "" +msgstr "FLOOR. PRECISE(Tall[; Signifikans])" #. pirHp #: func_floor.xhp @@ -61403,7 +61403,7 @@ "par_id2957497\n" "help.text" msgid "Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to 1." -msgstr "" +msgstr "Betydning (valgfritt) er verdien, eller en referanse til en celle som inneholder verdien, hvis multiple Tall skal avrundes til. Den er som standard 1." #. smFCw #: func_floor.xhp @@ -61412,7 +61412,7 @@ "par_id981586291388900\n" "help.text" msgid "=FLOOR.PRECISE(3.45) returns 3." -msgstr "" +msgstr "=FLOOR.PRECISE(3.45) returnerer 3." #. Q9vnd #: func_floor.xhp @@ -61421,7 +61421,7 @@ "par_id831586291395477\n" "help.text" msgid "=FLOOR.PRECISE(-45.67,2) returns -46." -msgstr "" +msgstr "=FLOOR.PRECISE(-45.67,2) returnerer -46." #. HnS5F #: func_floor.xhp @@ -61430,7 +61430,7 @@ "bm_id171586291849333\n" "help.text" msgid "FLOOR.XCL function" -msgstr "" +msgstr "FLOOR.XCL funksjon" #. gC7eY #: func_floor.xhp @@ -61439,7 +61439,7 @@ "hd_id791586291468176\n" "help.text" msgid "FLOOR.XCL" -msgstr "" +msgstr "FLOOR.XCL" #. WMsAT #: func_floor.xhp @@ -61448,7 +61448,7 @@ "par_id521586291476023\n" "help.text" msgid "Rounds a number to the nearest multiple of a significance value." -msgstr "" +msgstr "Avrunder et tall til nærmeste multiplum av en signifikansverdi." #. jrymG #: func_floor.xhp @@ -61457,7 +61457,7 @@ "par_id401586291488768\n" "help.text" msgid "For a positive number and a positive significance value, the function rounds down (towards zero). For a negative number and a positive significance value, the function rounds down (away from zero). For a negative number and a negative significance value, the function rounds up (towards zero). The function returns an error if the number is positive and the significance value is negative." -msgstr "" +msgstr "For et positivt tall og en positiv signifikansverdi runder funksjonen ned (mot null). For et negativt tall og en positiv signifikansverdi rundes funksjonen ned (bort fra null). For et negativt tall og en negativ signifikansverdi runder funksjonen opp (mot null). Funksjonen returnerer en feil hvis tallet er positivt og signifikansverdien er negativ." #. BFXRR #: func_floor.xhp @@ -61466,7 +61466,7 @@ "par_id231586291503319\n" "help.text" msgid "This function exists for interoperability with Microsoft Excel 2007 or older. If a Calc spreadsheet is exported to Microsoft Excel, references to Calc’s FLOOR.XCL function are exported as references to Excel’s FLOOR function, which is compatible with all Excel versions. If a Microsoft Excel spreadsheet is imported into Calc, references to Excel’s FLOOR function are imported as references to Calc’s FLOOR.XCL function." -msgstr "" +msgstr "Denne funksjonen eksisterer for interoperabilitet med Microsoft Excel 2007 eller eldre. Hvis et Calc-regneark eksporteres til Microsoft Excel, eksporteres referanser til Calcs FLOOR.XCL-funksjon som referanser til Excels FLOOR-funksjon, som er kompatibel med alle Excel-versjoner. Hvis et Microsoft Excel-regneark importeres til Calc, importeres referanser til Excels FLOOR-funksjon som referanser til Calcs FLOOR.XCL-funksjon." #. WA7uC #: func_floor.xhp @@ -61475,7 +61475,7 @@ "par_id491586291532177\n" "help.text" msgid "FLOOR.XCL(Number; Significance)" -msgstr "" +msgstr "FLOOR.XCL(Tall; Signifikans)" #. aRww7 #: func_floor.xhp @@ -61484,7 +61484,7 @@ "par_id761586291578755\n" "help.text" msgid "Significance is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded." -msgstr "" +msgstr "Betydning er verdien, eller en referanse til en celle som inneholder verdien, hvis multiple Tall skal avrundes til." #. HXuMo #: func_floor.xhp @@ -61493,7 +61493,7 @@ "par_id531586291622306\n" "help.text" msgid "=FLOOR.XCL(3.45,2) returns 2." -msgstr "" +msgstr "=FLOOR.XCL(3.45,2) returnerer 2." #. gFyGC #: func_floor.xhp @@ -61502,7 +61502,7 @@ "par_id361586291628003\n" "help.text" msgid "=FLOOR.XCL(-45.67,2) returns -46." -msgstr "" +msgstr "=FLOOR.XCL(-45.67,2) returnerer -46." #. EU7xy #: func_floor.xhp @@ -61511,7 +61511,7 @@ "par_id801586291641099\n" "help.text" msgid "=FLOOR.XCL(-45.67,-2) returns -44." -msgstr "" +msgstr "=FLOOR.XCL(-45.67,-2) returnerer -44." #. 2YcR7 #: func_forecastetsadd.xhp @@ -61520,7 +61520,7 @@ "tit\n" "help.text" msgid "FORECAST.ETS.ADD" -msgstr "" +msgstr "FORECAST.ETS.ADD" #. SDUKF #: func_forecastetsadd.xhp @@ -61538,7 +61538,7 @@ "hd_id0603201610022291\n" "help.text" msgid "FORECAST.ETS.ADD function" -msgstr "" +msgstr "FORECAST.ETS.ADD funksjon" #. gBZ7v #: func_forecastetsadd.xhp @@ -61547,7 +61547,7 @@ "par_id0603201610023949\n" "help.text" msgid "Calculates the additive forecast(s) (future values) based on the historical data using ETS or EDS algorithms. EDS is used when argument period_length is 0, otherwise ETS is used." -msgstr "" +msgstr "Beregner additivprognosen(e) (fremtidige verdier) basert på historiske data ved hjelp av ETS- eller EDS-algoritmer. EDS brukes når argumentet period_length er 0, ellers brukes ETS." #. Cy68d #: func_forecastetsadd.xhp @@ -61556,7 +61556,7 @@ "par_id0603201608440530\n" "help.text" msgid "FORECAST.ETS.ADD calculates with the model" -msgstr "" +msgstr "FORECAST.ETS.ADD beregner med modellen" #. sRaGq #: func_forecastetsadd.xhp @@ -61565,7 +61565,7 @@ "par_id0403201618594544\n" "help.text" msgid "FORECAST.ETS.ADD(targets, values, timeline, [period_length], [data_completion], [aggregation])" -msgstr "" +msgstr "FORECAST.ETS.ADD(mål, verdier, tidslinje, [periodelengde], [datafullføring], [aggregering])" #. cCDgz #: func_forecastetsadd.xhp @@ -61574,7 +61574,7 @@ "hd_id04032016185123\n" "help.text" msgid "=FORECAST.ETS.ADD(DATE(2014;1;1);Values;Timeline;1;TRUE();1)" -msgstr "" +msgstr "=PROGRAM.ETS.ADD(DATO(2014;1;1);Verdier;Tidslinje;1;SANN();1)" #. BZHYV #: func_forecastetsadd.xhp @@ -61583,7 +61583,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 157.166666666667, the additive forecast for January 2014 based on Values and Timeline named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation." -msgstr "" +msgstr "Returnerer 157,166666666667, additivprognosen for januar 2014 basert på verdier og tidslinje navngitte områder ovenfor, med ett utvalg per periode, ingen manglende data og AVERAGE som aggregering." #. q2vBP #: func_forecastetsadd.xhp @@ -61592,7 +61592,7 @@ "hd_id04032123185123\n" "help.text" msgid "=FORECAST.ETS.ADD(DATE(2014;1;1);Values;Timeline;4;TRUE();7)" -msgstr "" +msgstr "=PROGRAM.ETS.ADD(DATO(2014;1;1);Verdier;Tidslinje;4;SANN();7)" #. ERJXc #: func_forecastetsadd.xhp @@ -61601,7 +61601,7 @@ "hd_id040312316112394554\n" "help.text" msgid "Returns 113.251442038722, the additive forecast for January 2014 based on Values and Timeline named ranges above, with period length of 4, no missing data, and SUM as aggregation." -msgstr "" +msgstr "Returnerer 113.251442038722, additivprognosen for januar 2014 basert på verdier og tidslinje navngitte områder ovenfor, med periodelengde 4, ingen manglende data og SUM som aggregering." #. 2CDcv #: func_forecastetsadd.xhp @@ -61610,7 +61610,7 @@ "par_id0603201619261276\n" "help.text" msgid "See also: FORECAST.ETS.MULT, FORECAST.ETS.STAT.ADD, FORECAST.ETS.STAT.MULT, FORECAST.ETS.PI.ADD, FORECAST.ETS.PI.MULT, FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" -msgstr "" +msgstr "Se også: FORECAST.ETS.MULT, FORECAST.ETS.STAT.ADD, FORECAST.ETS.STAT.MULT, FORECAST.ETS.PI.ADD, FORECAST.ETS.PI.MULT, FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" #. 6PMtc #: func_forecastetsmult.xhp @@ -61619,7 +61619,7 @@ "tit\n" "help.text" msgid "FORECAST.ETS.MULT" -msgstr "" +msgstr "FORECAST.ETS.MULT" #. PcfYS #: func_forecastetsmult.xhp @@ -61637,7 +61637,7 @@ "hd_id0603201610022291\n" "help.text" msgid "FORECAST.ETS.MULT Function" -msgstr "" +msgstr "FORECAST.ETS.MULT Funksjon" #. tYAjY #: func_forecastetsmult.xhp @@ -61646,7 +61646,7 @@ "par_id0603201610023949\n" "help.text" msgid "Calculates the multiplicative forecast(s) (future values) based on the historical data using ETS or EDS algorithms. EDS is used when argument period_length is 0, otherwise ETS is used." -msgstr "" +msgstr "Beregner multiplikasjonsprognosen(e) (fremtidige verdier) basert på historiske data ved hjelp av ETS- eller EDS-algoritmer. EDS brukes når argumentet period_length er 0, ellers brukes ETS." #. enUbu #: func_forecastetsmult.xhp @@ -61655,7 +61655,7 @@ "par_id0603201608440530\n" "help.text" msgid "FORECAST.ETS.MULT calculates with the model" -msgstr "" +msgstr "FORECAST.ETS.MULT beregner med modellen" #. joiBF #: func_forecastetsmult.xhp @@ -61664,7 +61664,7 @@ "par_id0403201618594544\n" "help.text" msgid "FORECAST.ETS.MULT(targets, values, timeline, [period_length], [data_completion], [aggregation])" -msgstr "" +msgstr "FORECAST.ETS.MULT(mål, verdier, tidslinje, [periodelengde], [data_fullføring], [aggregering])" #. bu5pP #: func_forecastetsmult.xhp @@ -61673,7 +61673,7 @@ "hd_id04032016185123\n" "help.text" msgid "=FORECAST.ETS.MULT(DATE(2014;1;1);Values;Timeline;1;TRUE();1)" -msgstr "" +msgstr "=PROGNOSE.ETS.MULT(DATO(2014;1;1);Verdier;Tidslinje;1;SANN();1)" #. r823v #: func_forecastetsmult.xhp @@ -61682,7 +61682,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 131.71437427439, the multiplicative forecast for January 2014 based on Values and Timeline named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation." -msgstr "" +msgstr "Returnerer 131,71437427439, den multiplikative prognosen for januar 2014 basert på verdier og tidslinje navngitte områder ovenfor, med ett utvalg per periode, ingen manglende data og AVERAGE som aggregering." #. UWXU6 #: func_forecastetsmult.xhp @@ -61691,7 +61691,7 @@ "hd_id04032123185123\n" "help.text" msgid "=FORECAST.ETS.MULT(DATE(2014;1;1);Values;Timeline;4;TRUE();7)" -msgstr "" +msgstr "=PROGNOSE.ETS.MULT(DATO(2014;1;1);Verdier;Tidslinje;4;SANN();7)" #. PiBJn #: func_forecastetsmult.xhp @@ -61700,7 +61700,7 @@ "hd_id040312316112394554\n" "help.text" msgid "Returns 120.747806144882, the multiplicative forecast for January 2014 based on Values and Timeline named ranges above, with period length of 4, no missing data, and SUM as aggregation." -msgstr "" +msgstr "Returnerer 120,747806144882, den multiplikative prognosen for januar 2014 basert på verdier og tidslinje navngitte områder ovenfor, med periodelengde 4, ingen manglende data og SUM som aggregering." #. CMedw #: func_forecastetsmult.xhp @@ -61709,7 +61709,7 @@ "par_id0603201619261276\n" "help.text" msgid "See also: FORECAST.ETS.ADD, FORECAST.ETS.STAT.ADD, FORECAST.ETS.STAT.MULT, FORECAST.ETS.PI.ADD, FORECAST.ETS.PI.MULT, FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" -msgstr "" +msgstr "Se også: FORECAST.ETS.ADD, FORECAST.ETS.STAT.ADD, FORECAST.ETS.STAT.MULT, FORECAST.ETS.PI.ADD, FORECAST.ETS.PI.MULT, FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" #. jra8V #: func_forecastetspiadd.xhp @@ -61718,7 +61718,7 @@ "tit\n" "help.text" msgid "FORECAST.ETS.PI.ADD" -msgstr "" +msgstr "FORECAST.ETS.PI.ADD" #. iY4EE #: func_forecastetspiadd.xhp @@ -61736,7 +61736,7 @@ "hd_id0603201617134175\n" "help.text" msgid "FORECAST.ETS.PI.ADD function" -msgstr "" +msgstr "FORECAST.ETS.PI.ADD-funksjon" #. MNort #: func_forecastetspiadd.xhp @@ -61745,7 +61745,7 @@ "par_id0603201617141750\n" "help.text" msgid "Calculates the prediction interval(s) for additive forecast based on the historical data using ETS or EDS algorithms. EDS is used when argument period_length is 0, otherwise ETS is used." -msgstr "" +msgstr "Beregner prediksjonsintervallet(e) for additiv prognose basert på historiske data ved å bruke ETS- eller EDS-algoritmer. EDS brukes når argumentet periodelengde er 0, ellers ETS brukes." #. ZnBVX #: func_forecastetspiadd.xhp @@ -61754,7 +61754,7 @@ "par_id0603201610005998\n" "help.text" msgid "FORECAST.ETS.PI.ADD calculates with the model" -msgstr "" +msgstr "FORECAST.ETS.PI.ADD beregner med modellen" #. SBnyv #: func_forecastetspiadd.xhp @@ -61763,7 +61763,7 @@ "par_id0603201610010044\n" "help.text" msgid "FORECAST.ETS.PI.ADD(target, values, timeline, [confidence_level], [period_length], [data_completion], [aggregation])" -msgstr "" +msgstr "FORECAST.ETS.PI.ADD(mål, verdier, tidslinje, [konfidensnivå], [periodelengde], [data_fullføring], [aggregering])" #. LAKXv #: func_forecastetspiadd.xhp @@ -61772,7 +61772,7 @@ "par_id0403201618595126\n" "help.text" msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)." -msgstr "" +msgstr "For eksempel, med et 90 % konfidensnivå, vil et 90 % prediksjonsintervall bli beregnet (90 % av fremtidige poeng skal falle innenfor denne radiusen fra prognosen)." #. m37hk #: func_forecastetspiadd.xhp @@ -61781,7 +61781,7 @@ "par_id0403201618595143\n" "help.text" msgid "Note on prediction intervals: there is no exact mathematical way to calculate this for forecasts, there are various approximations. Prediction intervals tend to be increasingly 'over-optimistic' when increasing distance of the forecast-X from the observation data set." -msgstr "" +msgstr "Merknad om prediksjonsintervaller: det er ingen eksakt matematisk måte å beregne dette på for prognoser, det er forskjellige tilnærminger. Prediksjonsintervaller har en tendens til å bli stadig mer \"overoptimistiske\" når man øker avstanden til prognose-X fra observasjonsdatasettet." #. FowFS #: func_forecastetspiadd.xhp @@ -61790,7 +61790,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 "" +msgstr "For ETS bruker Calc en tilnærming basert på 1000 beregninger med tilfeldige variasjoner innenfor standardavviket til observasjonsdatasettet (de historiske verdiene)." #. KTjG5 #: func_forecastetspiadd.xhp @@ -61799,7 +61799,7 @@ "hd_id04032016185123\n" "help.text" msgid "=FORECAST.ETS.PI.ADD(DATE(2014;1;1);Values;Timeline;0.9;1;TRUE();1)" -msgstr "" +msgstr "=PROGRAM.ETS.PI.ADD(DATO(2014;1;1);Verdier;Tidslinje;0.9;1;SANN();1)" #. WAdwr #: func_forecastetspiadd.xhp @@ -61808,7 +61808,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 18.8061295551355, the prediction interval for additive forecast for January 2014 based on Values and Timeline named ranges above, 90% (=0.9) confidence level, with one sample per period, no missing data, and AVERAGE as aggregation." -msgstr "" +msgstr "Returnerer 18,8061295551355, prediksjonsintervallet for additivprognose for januar 2014 basert på verdier og tidslinje navngitte områder over, 90 % (=0,9) konfidensnivå, med ett utvalg per periode, ingen manglende data, og AVERAGE som aggregering." #. fZJa4 #: func_forecastetspiadd.xhp @@ -61817,7 +61817,7 @@ "hd_id04032123185123\n" "help.text" msgid "=FORECAST.ETS.PI.ADD(DATE(2014;1;1);Values;Timeline;0.8;4;TRUE();7)" -msgstr "" +msgstr "=PROGRAM.ETS.PI.ADD(DATO(2014;1;1);Verdier;Tidslinje;0.8;4;SANN();7)" #. U3bPF #: func_forecastetspiadd.xhp @@ -61826,7 +61826,7 @@ "hd_id040312316112394554\n" "help.text" msgid "Returns 23.4416821953741, the prediction interval for additive forecast for January 2014 based on Values and Timeline named ranges above, with confidence level of 0.8, period length of 4, no missing data, and SUM as aggregation." -msgstr "" +msgstr "Returnerer 23.4416821953741, prediksjonsintervallet for additivprognose for januar 2014 basert på verdier og tidslinje navngitte områder ovenfor, med konfidensnivå på 0,8, periodelengde på 4, ingen manglende data, og SUM som aggregering." #. J3FRt #: func_forecastetspiadd.xhp @@ -61835,7 +61835,7 @@ "par_id0603201619261276\n" "help.text" msgid "See also: FORECAST.ETS.ADD, FORECAST.ETS.MULT, FORECAST.ETS.STAT.ADD, FORECAST.ETS.STAT.MULT, FORECAST.ETS.PI.MULT FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" -msgstr "" +msgstr "Se også: FORECAST.ETS.ADD, FORECAST.ETS.MULT, FORECAST.ETS.STAT.ADD, FORECAST.ETS.STAT.MULT, FORECAST.ETS.PI.MULT FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" #. BAjwY #: func_forecastetspimult.xhp @@ -61844,7 +61844,7 @@ "tit\n" "help.text" msgid "FORECAST.ETS.PI.MULT" -msgstr "" +msgstr "FORECAST.ETS.PI.MULT" #. fs4JG #: func_forecastetspimult.xhp @@ -61862,7 +61862,7 @@ "hd_id0603201617134175\n" "help.text" msgid "FORECAST.ETS.PI.MULT function" -msgstr "" +msgstr "FORECAST.ETS.PI.MULT-funksjon" #. dBj8S #: func_forecastetspimult.xhp @@ -61871,7 +61871,7 @@ "par_id0603201617141750\n" "help.text" msgid "Calculates the prediction interval(s) for multiplicative forecast based on the historical data using ETS or EDS algorithms.. EDS is used when argument period_length is 0, otherwise ETS is used." -msgstr "" +msgstr "Beregner prediksjonsintervallet(e) for multiplikativ prognose basert på historiske data ved hjelp av ETS- eller EDS-algoritmer.. EDS brukes når argumentet period_length er 0, ellers brukes ETS." #. zH7yz #: func_forecastetspimult.xhp @@ -61880,7 +61880,7 @@ "par_id0603201610005998\n" "help.text" msgid "FORECAST.ETS.PI.MULT calculates with the model" -msgstr "" +msgstr "FORECAST.ETS.PI.MULT beregner med modellen" #. FHdCq #: func_forecastetspimult.xhp @@ -61889,7 +61889,7 @@ "par_id0603201610010044\n" "help.text" msgid "FORECAST.ETS.PI.MULT(target, values, timeline, [confidence_level], [period_length], [data_completion], [aggregation])" -msgstr "" +msgstr "FORECAST.ETS.PI.MULT(mål, verdier, tidslinje, [konfidensnivå], [periodelengde], [data_fullføring], [aggregering])" #. fM2ng #: func_forecastetspimult.xhp @@ -61898,7 +61898,7 @@ "par_id0403201618595126\n" "help.text" msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)." -msgstr "" +msgstr "For eksempel, med et 90 % konfidensnivå, vil et 90 % prediksjonsintervall bli beregnet (90 % av fremtidige poeng skal falle innenfor denne radiusen fra prognosen)." #. Ysnbj #: func_forecastetspimult.xhp @@ -61907,7 +61907,7 @@ "par_id0403201618595143\n" "help.text" msgid "Note on prediction intervals: there is no exact mathematical way to calculate this for forecasts, there are various approximations. Prediction intervals tend to be increasingly 'over-optimistic' when increasing distance of the forecast-X from the observation data set." -msgstr "" +msgstr "Merknad om prediksjonsintervaller: det er ingen eksakt matematisk måte å beregne dette på for prognoser, det er forskjellige tilnærminger. Prediksjonsintervaller har en tendens til å bli stadig mer \"overoptimistiske\" når man øker avstanden til prognose-X fra observasjonsdatasettet." #. MWixi #: func_forecastetspimult.xhp @@ -61916,7 +61916,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 "" +msgstr "For ETS bruker Calc en tilnærming basert på 1000 beregninger med tilfeldige variasjoner innenfor standardavviket til observasjonsdatasettet (de historiske verdiene)." #. wtJsd #: func_forecastetspimult.xhp @@ -61925,7 +61925,7 @@ "hd_id04032016185123\n" "help.text" msgid "=FORECAST.ETS.PI.MULT(DATE(2014;1;1);Values;Timeline;0.9;1;TRUE();1)" -msgstr "" +msgstr "=FORECAST.ETS.PI.MULT(DATE(2014;1;1);Verdier;Tidslinje;0.9;1;SANN();1)" #. FFE5M #: func_forecastetspimult.xhp @@ -61934,7 +61934,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 20.1040952101013, the prediction interval for multiplicative forecast for January 2014 based on Values and Timeline named ranges above, confidence level of 90% (=0.9) with one sample per period, no missing data, and AVERAGE as aggregation." -msgstr "" +msgstr "Returnerer 20.1040952101013, prediksjonsintervallet for multiplikativ prognose for januar 2014 basert på verdier og tidslinje navngitte områder ovenfor, konfidensnivå på 90 % (=0,9) med ett utvalg per periode, ingen manglende data, og AVERAGE som aggregering." #. 5GAFZ #: func_forecastetspimult.xhp @@ -61943,7 +61943,7 @@ "hd_id04032123185123\n" "help.text" msgid "=FORECAST.ETS.PI.MULT(DATE(2014;1;1);Values;Timeline;0.8;4;TRUE();7)" -msgstr "" +msgstr "=FORECAST.ETS.PI.MULT(DATE(2014;1;1);Verdier;Tidslinje;0.8;4;SANN();7)" #. R7GdT #: func_forecastetspimult.xhp @@ -61952,7 +61952,7 @@ "hd_id040312316112394554\n" "help.text" msgid "Returns 27.5285874381574, the prediction interval for multiplicative forecast for January 2014 based on Values and Timeline named ranges above, with confidence level of 0.8, period length of 4, no missing data, and SUM as aggregation." -msgstr "" +msgstr "Returnerer 27,5285874381574, prediksjonsintervallet for multiplikativ prognose for januar 2014 basert på verdier og tidslinje navngitte områder ovenfor, med konfidensnivå på 0,8, periodelengde på 4, ingen manglende data, og SUM som aggregering." #. LDRam #: func_forecastetspimult.xhp @@ -61961,7 +61961,7 @@ "par_id0603201619261276\n" "help.text" msgid "See also: FORECAST.ETS.ADD, FORECAST.ETS.MULT, FORECAST.ETS.STAT.ADD, FORECAST.ETS.STAT.MULT, FORECAST.ETS.PI.ADD, FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" -msgstr "" +msgstr "Se også: FORECAST.ETS.ADD, FORECAST.ETS.MULT, FORECAST.ETS.STAT.ADD, FORECAST.ETS.STAT.MULT, FORECAST.ETS.PI.ADD, FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" #. LfsHV #: func_forecastetsseason.xhp @@ -61970,7 +61970,7 @@ "tit\n" "help.text" msgid "FORECAST.ETS.SEASONALITY" -msgstr "" +msgstr "FORECAST.ETS.SEASONALITY" #. 6fQYM #: func_forecastetsseason.xhp @@ -61988,7 +61988,7 @@ "hd_id0603201617435371\n" "help.text" msgid "FORECAST.ETS.SEASONALITY Function" -msgstr "" +msgstr "FORECAST.ETS.SEASONALITY Funksjon" #. hmYGz #: func_forecastetsseason.xhp @@ -61997,7 +61997,7 @@ "par_id0603201617510446\n" "help.text" msgid "Returns the number of samples in period as calculated by Calc in case of FORECAST.ETS functions when argument period_length equals 1. " -msgstr "" +msgstr "Returnerer antall prøver i periode som beregnet av Calc i tilfelle FORECAST.ETS-funksjoner når argumentet periodelengde er lik 1. " #. n4Tra #: func_forecastetsseason.xhp @@ -62006,7 +62006,7 @@ "par_id0403201618595132\n" "help.text" msgid "The same result is returned with FORECAST.ETS.STAT functions when argument stat_type equals 9 (and period_length equals 1)." -msgstr "" +msgstr "Det samme resultatet returneres med FORECAST.ETS.STAT-funksjoner når argumentet stat_type er lik 9 (og periodelengde er lik 1)." #. kuaJ8 #: func_forecastetsseason.xhp @@ -62015,7 +62015,7 @@ "par_id0603201618013796\n" "help.text" msgid "FORECAST.ETS.SEASONALITY (values, timeline, [data_completion], [aggregation])" -msgstr "" +msgstr "FORECAST.ETS.SESONALITY (verdier, tidslinje, [data_fullføring], [aggregering])" #. QFDLA #: func_forecastetsseason.xhp @@ -62024,7 +62024,7 @@ "hd_id04032016185123\n" "help.text" msgid "=FORECAST.ETS.SEASONALITY(Values;Timeline;TRUE();1)" -msgstr "" +msgstr "=PROGNOSE.ETS.SESONALITY(Verdier;Tidslinje;SANN();1)" #. RKf4B #: func_forecastetsseason.xhp @@ -62033,7 +62033,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 6, the number of samples in period based on Values and Timeline named ranges above, no missing data, and AVERAGE as aggregation." -msgstr "" +msgstr "Returnerer 6, antall prøver i perioden basert på verdier og tidslinje navngitte områder ovenfor, ingen manglende data og AVERAGE som aggregering." #. EUN8o #: func_forecastetsseason.xhp @@ -62042,7 +62042,7 @@ "par_id0603201619261276\n" "help.text" msgid "See also: FORECAST.ETS.ADD, FORECAST.ETS.MULT, FORECAST.ETS.STAT.ADD, FORECAST.ETS.STAT.MULT, FORECAST.ETS.PI.ADD, FORECAST.ETS.PI.MULT, FORECAST, FORECAST.LINEAR" -msgstr "" +msgstr "Se også: FORECAST.ETS.ADD, FORECAST.ETS.MULT, FORECAST.ETS.STAT.ADD, FORECAST.ETS.STAT.MULT, FORECAST.ETS.PI.ADD, FORECAST.ETS.PI.MULT, FORECAST, FORECAST.LINEAR" #. eNmGC #: func_forecastetsstatadd.xhp @@ -62051,7 +62051,7 @@ "tit\n" "help.text" msgid "FORECAST.ETS.STAT.ADD" -msgstr "" +msgstr "FORECAST.ETS.STAT.ADD" #. Pa5BF #: func_forecastetsstatadd.xhp @@ -62069,7 +62069,7 @@ "hd_id0603201615483251\n" "help.text" msgid "FORECAST.ETS.STAT.ADD Function" -msgstr "" +msgstr "FORECAST.ETS.STAT.ADD-funksjon" #. 7y8yW #: func_forecastetsstatadd.xhp @@ -62078,7 +62078,7 @@ "par_id0603201615485387\n" "help.text" msgid "Returns statistical value(s) that are results of the ETS/EDS algorithms." -msgstr "" +msgstr "Returnerer statistiske verdi(er) som er resultater av ETS/EDS-algoritmene." #. kXBEC #: func_forecastetsstatadd.xhp @@ -62087,7 +62087,7 @@ "par_id0603201608440530\n" "help.text" msgid "FORECAST.ETS.STAT.ADD calculates with the model" -msgstr "" +msgstr "FORECAST.ETS.STAT.ADD beregner med modellen" #. fXsdE #: func_forecastetsstatadd.xhp @@ -62096,7 +62096,7 @@ "par_id0603201610005728\n" "help.text" msgid "FORECAST.ETS.STAT.ADD (values, timeline, stat_type, [period_length], [data_completion], [aggregation])" -msgstr "" +msgstr "FORECAST.ETS.STAT.ADD (verdier, tidslinje, stat_type, [periodelengde], [data_fullføring], [aggregering])" #. vwTur #: func_forecastetsstatadd.xhp @@ -62105,7 +62105,7 @@ "hd_id04032016185123\n" "help.text" msgid "=FORECAST.ETS.STAT.ADD(Values;Timeline;3;1;TRUE();1)" -msgstr "" +msgstr "=FORECAST.ETS.STAT.ADD(Verdier;Tidslinje;3;1;SANN();1)" #. NG7Kp #: func_forecastetsstatadd.xhp @@ -62114,7 +62114,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 0.9990234375, the additive statistics based on Values and Timeline named ranges above, with beta smoothing, one sample per period, no missing data, and AVERAGE as aggregation." -msgstr "" +msgstr "Returnerer 0,9990234375, additiv statistikk basert på Verdier og Tidslinje navngitte områder ovenfor, med betautjevning, ett utvalg per periode, ingen manglende data og AVERAGE som aggregering." #. cCrti #: func_forecastetsstatadd.xhp @@ -62123,7 +62123,7 @@ "hd_id04032123185123\n" "help.text" msgid "=FORECAST.ETS.STAT.ADD(Values;Timeline;2;1;TRUE();7)" -msgstr "" +msgstr "=FORECAST.ETS.STAT.ADD(Verdier;Tidslinje;2;1;SANN();7)" #. 23xnG #: func_forecastetsstatadd.xhp @@ -62132,7 +62132,7 @@ "hd_id040312316112394554\n" "help.text" msgid "Returns 0.0615234375, the additive statistics based on Values and Timeline named ranges above, with gamma smoothing, no missing data, and SUM as aggregation." -msgstr "" +msgstr "Returnerer 0,0615234375, additiv statistikk basert på verdier og tidslinje navngitte områder ovenfor, med gammautjevning, ingen manglende data og SUM som aggregering." #. dnDvk #: func_forecastetsstatadd.xhp @@ -62141,7 +62141,7 @@ "par_id0603201619261276\n" "help.text" msgid "See also: FORECAST.ETS.ADD , FORECAST.ETS.MULT , FORECAST.ETS.STAT.MULT , FORECAST.ETS.PI.ADD , FORECAST.ETS.PI.MULT, FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" -msgstr "" +msgstr "Se også: FORECAST.ETS.ADD , FORECAST.ETS.MULT , FORECAST.ETS.STAT.MULT , FORECAST.ETS.PI.ADD , FORECAST.ETS.PI.MULT, FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" #. J4X87 #: func_forecastetsstatmult.xhp @@ -62150,7 +62150,7 @@ "tit\n" "help.text" msgid "FORECAST.ETS.STAT.MULT" -msgstr "" +msgstr "FORECAST.ETS.STAT.MULT" #. KB6T7 #: func_forecastetsstatmult.xhp @@ -62168,7 +62168,7 @@ "hd_id0603201615483251\n" "help.text" msgid "FORECAST.ETS.STAT.MULT Function" -msgstr "" +msgstr "FORECAST.ETS.STAT.MULT-funksjon" #. Ahv2p #: func_forecastetsstatmult.xhp @@ -62177,7 +62177,7 @@ "par_id0603201615485387\n" "help.text" msgid "Returns statistical value(s) that are results of the ETS/EDS algorithms." -msgstr "" +msgstr "Returnerer statistiske verdi(er) som er resultater av ETS/EDS-algoritmene." #. FJthz #: func_forecastetsstatmult.xhp @@ -62186,7 +62186,7 @@ "par_id0603201608440530\n" "help.text" msgid "FORECAST.ETS.STAT.MULT calculates with the model" -msgstr "" +msgstr "FORECAST.ETS.STAT.MULT beregner med modellen" #. 9CuKw #: func_forecastetsstatmult.xhp @@ -62195,7 +62195,7 @@ "par_id0603201610005728\n" "help.text" msgid "FORECAST.ETS.STAT.MULT (values, timeline, stat_type, [period_length], [data_completion], [aggregation])" -msgstr "" +msgstr "FORECAST.ETS.STAT.MULT (verdier, tidslinje, stat_type, [periodelengde], [data_fullføring], [aggregering])" #. nGVCt #: func_forecastetsstatmult.xhp @@ -62204,7 +62204,7 @@ "hd_id04032016185123\n" "help.text" msgid "=FORECAST.ETS.STAT.MULT(Values;Timeline;5;1;TRUE();1)" -msgstr "" +msgstr "=FORECAST.ETS.STAT.MULT(Verdier;Tidslinje;5;1;SANN();1)" #. aCTmK #: func_forecastetsstatmult.xhp @@ -62213,7 +62213,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 0.084073452803966, the multiplicative statistics based on Values and Timeline named ranges above, with symmetric mean absolute percentage error (SMAPE), one sample per period, no missing data, and AVERAGE as aggregation." -msgstr "" +msgstr "Returnerer 0,084073452803966, multiplikativ statistikk basert på verdier og tidslinje navngitte områder ovenfor, med symmetrisk gjennomsnittlig absolutt prosentfeil (SMAPE), ett utvalg per periode, ingen manglende data og AVERAGE som aggregering." #. h9FRT #: func_forecastetsstatmult.xhp @@ -62222,7 +62222,7 @@ "hd_id04032123185123\n" "help.text" msgid "=FORECAST.ETS.STAT.MULT(Values;Timeline;7;1;TRUE();7)" -msgstr "" +msgstr "=FORECAST.ETS.STAT.MULT(Verdier;Tidslinje;7;1;SANN();7)" #. fEf7M #: func_forecastetsstatmult.xhp @@ -62231,7 +62231,7 @@ "hd_id040312316112394554\n" "help.text" msgid "Returns 15.8372533480997, the multiplicative statistics based on Values and Timeline named ranges above, with root mean squared error, no missing data, and SUM as aggregation." -msgstr "" +msgstr "Returnerer 15,8372533480997, den multiplikative statistikken basert på Verdier og Tidslinje navngitte områder ovenfor, med rotmiddelkvadratfeil, ingen manglende data og SUM som aggregering." #. LBeXF #: func_forecastetsstatmult.xhp @@ -62240,7 +62240,7 @@ "par_id0603201619261276\n" "help.text" msgid "See also: FORECAST.ETS.ADD, FORECAST.ETS.MULT, FORECAST.ETS.STAT.ADD, FORECAST.ETS.PI.ADD, FORECAST.ETS.PI.MULT, FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" -msgstr "" +msgstr "Se også: FORECAST.ETS.ADD, FORECAST.ETS.MULT, FORECAST.ETS.STAT.ADD, FORECAST.ETS.PI.ADD, FORECAST.ETS.PI.MULT, FORECAST.ETS.SEASONALITY, FORECAST, FORECAST.LINEAR" #. K3oBV #: func_fourier.xhp @@ -62249,7 +62249,7 @@ "tit\n" "help.text" msgid "FOURIER function" -msgstr "" +msgstr "FOURIER funksjon" #. FmjN8 #: func_fourier.xhp @@ -62258,7 +62258,7 @@ "bm_id581556228060864\n" "help.text" msgid "FOURIER function" -msgstr "" +msgstr "FOURIER funksjon" #. mMfDg #: func_fourier.xhp @@ -62267,7 +62267,7 @@ "hd_id551556227727946\n" "help.text" msgid "FOURIER" -msgstr "" +msgstr "FOURIER" #. qwF2T #: func_fourier.xhp @@ -62276,7 +62276,7 @@ "par_id121556227727948\n" "help.text" msgid "Computes the Discrete Fourier Transform [DFT] of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms. The function is an array formula." -msgstr "" +msgstr "Beregner den diskrete Fourier-transformasjonen [DFT] til en inndatamatrise med komplekse tall ved hjelp av et par Fast Fourier Transform (FFT)-algoritmer. Funksjonen er en matriseformel." #. xGHaG #: func_fourier.xhp @@ -62285,7 +62285,7 @@ "par_id541556228253979\n" "help.text" msgid "FOURIER(Array; GroupedByColumns [; Inverse [; Polar [; MinimumMagnitude]]])" -msgstr "" +msgstr "FOURIER(Array; GroupedByColumns [; Invers [; Polar [; MinimumMagnitude]]])" #. ELSK7 #: func_fourier.xhp @@ -62294,7 +62294,7 @@ "par_id741556228390897\n" "help.text" msgid "Array is a 2 x N or N x 2 range representing an array of complex number to be transformed, where N is the length of the array. The array represents the real and imaginary parts of the data." -msgstr "" +msgstr "Array er et 2 x N eller N x 2 område som representerer en matrise med komplekse tall som skal transformeres, der N er lengden på matrisen. Matrisen representerer de virkelige og imaginære delene av dataene." #. xTPa5 #: func_fourier.xhp @@ -62303,7 +62303,7 @@ "par_id621556228397269\n" "help.text" msgid "GroupedByColumns is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE the array is grouped by columns where the first column contains the real part of the complex number and the second columns contains the imaginary part of the complex number. When FALSE, the first row contains the real part of the complex number and the second row contains the imaginary part of the complex number. If there is only 1 column (row), the input sequence is treated as purely real." -msgstr "" +msgstr "GroupedByColumns er et logisk (SANN eller USANN, 1 eller 0) argument. Når SANN er matrisen gruppert etter kolonner der den første kolonnen inneholder den reelle delen av det komplekse tallet og den andre kolonnen inneholder den imaginære delen av det komplekse tallet. Når USANN, inneholder den første raden den reelle delen av det komplekse tallet og den andre raden inneholder den imaginære delen av det komplekse tallet. Hvis det bare er 1 kolonne (rad), blir inndatasekvensen behandlet som rent reell." #. tbzAA #: func_fourier.xhp @@ -62312,7 +62312,7 @@ "par_id631556228516997\n" "help.text" msgid "Inverse is an optional logical (TRUE or FALSE, 1 or 0) argument. When TRUE, calculates the inverse Discrete Fourier Transform. The default value is FALSE." -msgstr "" +msgstr "Invers er et valgfritt logisk (SANN eller USANN, 1 eller 0) argument. Når SANN, beregner den inverse diskrete Fourier-transformasjonen. Standardverdien er USANN." #. N6enC #: func_fourier.xhp @@ -62321,7 +62321,7 @@ "par_id811561732287508\n" "help.text" msgid "Polar: is an optional logical (TRUE or FALSE, 1 or 0) argument. Indicates whether the final output is in polar coordinates (magnitude, phase). This argument is optional and the default value is FALSE." -msgstr "" +msgstr "Polar: er et valgfritt logisk (SANN eller USANN, 1 eller 0) argument. Angir om den endelige utgangen er i polare koordinater (størrelse, fase). Dette argumentet er valgfritt og standardverdien er USANN." #. qBBZd #: func_fourier.xhp @@ -62330,7 +62330,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 "MinimumMagnitude: brukes bare hvis Polar=SANN. Alle frekvenskomponenter med størrelse mindre enn MinimumMagnitude vil bli undertrykt med en null størrelsesfase-inngang. Dette er veldig nyttig når man ser på størrelsesfasespekteret til et signal fordi det alltid er en veldig liten mengde avrundingsfeil når man gjør FFT-algoritmer og resulterer i feil fase som ikke er null for ikke-eksisterende frekvenser. Ved å gi en passende verdi til denne parameteren, kan disse ikke-eksisterende frekvenskomponentene undertrykkes. Som standard er verdien for MinimumMagnitude 0.0, og ingen undertrykkelse gjøres som standard." #. P2z9v #: func_hour.xhp @@ -62339,7 +62339,7 @@ "tit\n" "help.text" msgid "HOUR" -msgstr "" +msgstr "TIME" #. tjZp2 #: func_hour.xhp @@ -62393,7 +62393,7 @@ "par_id3159215\n" "help.text" msgid "=HOUR(NOW()) returns the current hour" -msgstr "" +msgstr "=HOUR(NOW()) returnerer gjeldende time" #. ezUKF #: func_hour.xhp @@ -62402,7 +62402,7 @@ "par_id3145152\n" "help.text" msgid "=HOUR(C4) returns 17 if the contents of C4 = 17:20:00." -msgstr "" +msgstr "=HOUR(C4) returnerer 17 hvis innholdet i C4 = 17:20:00." #. DiCWs #: func_ifs.xhp @@ -62411,7 +62411,7 @@ "tit\n" "help.text" msgid "IFS function" -msgstr "" +msgstr "IFS funksjon" #. XMPcD #: func_ifs.xhp @@ -62420,7 +62420,7 @@ "bm_id901556242230198\n" "help.text" msgid "IFS function" -msgstr "" +msgstr "IFS-funksjon" #. kRbQi #: func_ifs.xhp @@ -62429,7 +62429,7 @@ "hd_id271556234923654\n" "help.text" msgid "IFS" -msgstr "" +msgstr "IFS" #. iANFF #: func_ifs.xhp @@ -62438,7 +62438,7 @@ "par_id171556234923655\n" "help.text" msgid "IFS is a multiple IF-function." -msgstr "" +msgstr "IFS er en multippel IF-funksjon." #. WxB3F #: func_ifs.xhp @@ -62447,7 +62447,7 @@ "par_id271556235333493\n" "help.text" msgid "IFS(expression1; result1[; expression2; result2][; ... ; [expression127; result127]])" -msgstr "" +msgstr "IFS(uttrykk1; resultat1[; uttrykk2; resultat2][; ... ; [uttrykk127; resultat127]])" #. 3KbKX #: func_ifs.xhp @@ -62456,7 +62456,7 @@ "par_id31556235655212\n" "help.text" msgid "expression1, expression2, ... are any boolean values or expressions that can be TRUE or FALSE" -msgstr "" +msgstr "uttrykk1, uttrykk2, ... er alle boolske verdier eller uttrykk som kan være SANN eller USANN" #. 8qEKq #: func_ifs.xhp @@ -62465,7 +62465,7 @@ "par_id441556235649549\n" "help.text" msgid "result1, result2, ... are the values that are returned if the logical test is TRUE" -msgstr "" +msgstr "resultat1, resultat2, ... er verdiene som returneres hvis den logiske testen er SANN" #. qgtwA #: func_ifs.xhp @@ -62474,7 +62474,7 @@ "par_id641556235704257\n" "help.text" msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as" -msgstr "" +msgstr "IFS( uttrykk1, resultat1, uttrykk2, resultat2, uttrykk3, resultat3 ) utføres som" #. NriAd #: func_ifs.xhp @@ -62483,7 +62483,7 @@ "par_id551556235712759\n" "help.text" msgid "IF expression1 is TRUE" -msgstr "" +msgstr "HVIS uttrykk1 er SANN" #. tRdjB #: func_ifs.xhp @@ -62492,7 +62492,7 @@ "par_id1001556235718948\n" "help.text" msgid "THEN result1" -msgstr "" +msgstr "THEN resultat1" #. 2DYMn #: func_ifs.xhp @@ -62501,7 +62501,7 @@ "par_id571556235725969\n" "help.text" msgid "ELSE IF expression2 is TRUE" -msgstr "" +msgstr "ELSE IF uttrykk2 er SANN" #. QZSge #: func_ifs.xhp @@ -62510,7 +62510,7 @@ "par_id581556235731982\n" "help.text" msgid "THEN result2" -msgstr "" +msgstr "THEN resultat2" #. H5BJe #: func_ifs.xhp @@ -62519,7 +62519,7 @@ "par_id961556235738258\n" "help.text" msgid "ELSE IF expression3 is TRUE" -msgstr "" +msgstr "ELSE IF uttrykk3 er SANN" #. LpUGo #: func_ifs.xhp @@ -62528,7 +62528,7 @@ "par_id951556235743954\n" "help.text" msgid "THEN result3" -msgstr "" +msgstr "THEN resultat3" #. QCFfF #: func_ifs.xhp @@ -62537,7 +62537,7 @@ "par_id671556235758504\n" "help.text" msgid "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result." -msgstr "" +msgstr "For å få et standardresultat dersom intet uttrykk er TRUE, legg til et siste uttrykk som alltid er SANN, som SANN eller 1=1 etterfulgt av standardresultatet." #. mkt7F #: func_ifs.xhp @@ -62546,7 +62546,7 @@ "par_id541556235771022\n" "help.text" msgid "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned." -msgstr "" +msgstr "Hvis det mangler et resultat for et uttrykk, eller hvis ingen uttrykk er SANN, returneres en #N/A-feil." #. 8sMKs #: func_ifs.xhp @@ -62555,7 +62555,7 @@ "par_id181556235788473\n" "help.text" msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned." -msgstr "" +msgstr "Hvis uttrykket verken er SANN eller USANN, returneres en #VERDI-feil." #. SzF9N #: func_ifs.xhp @@ -62564,7 +62564,7 @@ "par_id781556244709752\n" "help.text" msgid "IF" -msgstr "" +msgstr "IF" #. vaiXE #: func_imcos.xhp @@ -62573,7 +62573,7 @@ "tit\n" "help.text" msgid "IMCOS function" -msgstr "" +msgstr "IMCOS-funksjon" #. DNkfT #: func_imcos.xhp @@ -62600,7 +62600,7 @@ "par_id1066273182723\n" "help.text" msgid "Returns the cosine of a complex number. The cosine of a complex number can be expressed by:" -msgstr "" +msgstr "Returnerer cosinus av et komplekst tall. Cosinus til et komplekst tall kan uttrykkes ved:" #. Tn68g #: func_imcos.xhp @@ -62618,7 +62618,7 @@ "par_id2890729435632\n" "help.text" msgid "Complex_number is a complex number whose cosine is to be calculated." -msgstr "" +msgstr "Complex_number er et komplekst tall hvis cosinus skal beregnes." #. ab4Te #: func_imcos.xhp @@ -62627,7 +62627,7 @@ "par_id4581301219753\n" "help.text" msgid "=IMCOS(\"4-3i\")
returns -6.58066304055116-7.58155274274654i." -msgstr "" +msgstr "=IMCOS(\"4-3i\")
returnerer -6.58066304055116-7.58155274274654i." #. 5EWnx #: func_imcos.xhp @@ -62636,7 +62636,7 @@ "par_id25412646522614\n" "help.text" msgid "=IMCOS(2)
returns -0.416146836547142 as a string. " -msgstr "" +msgstr "=IMCOS(2)
returnerer -0.416146836547142 as a string. " #. C3EAr #: func_imcosh.xhp @@ -62645,7 +62645,7 @@ "tit\n" "help.text" msgid "IMCOSH function" -msgstr "" +msgstr "IMCOSH funksjon" #. pmWJk #: func_imcosh.xhp @@ -62672,7 +62672,7 @@ "par_id125881258812588\n" "help.text" msgid "Returns the hyperbolic cosine of a complex number. The hyperbolic cosine of a complex number can be expressed by:" -msgstr "" +msgstr "Giver den hyperbolske cosinus til et komplekst tall. Den hyperbolske cosinus til et komplekst tall kan uttrykkes ved:" #. cawEM #: func_imcosh.xhp @@ -62681,7 +62681,7 @@ "par_id24939266285933\n" "help.text" msgid "IMCOSH equation" -msgstr "" +msgstr "IMCOSH ekvasjon" #. neXB8 #: func_imcosh.xhp @@ -62699,7 +62699,7 @@ "par_id766137661376613\n" "help.text" msgid "Complex_number is a complex number whose hyperbolic cosine is to be calculated." -msgstr "" +msgstr "Complex_number er et komplekst tall hvis hyperbolske cosinus skal beregnes." #. VmhxS #: func_imcosh.xhp @@ -62708,7 +62708,7 @@ "par_id55891471962\n" "help.text" msgid "=IMCOSH(\"4-3i\")
returns -27.0349456030742-3.85115333481178i." -msgstr "" +msgstr "=IMCOSH(\"4-3i\")
returnerer -27.0349456030742-3.85115333481178i." #. GCKE9 #: func_imcosh.xhp @@ -62717,7 +62717,7 @@ "par_id152561887112896\n" "help.text" msgid "=IMCOSH(2)
returns 3.76219569108363 as a string. " -msgstr "" +msgstr "=IMCOSH(2)
returns 3.76219569108363 som en streng. " #. 4bYUH #: func_imcot.xhp @@ -62726,7 +62726,7 @@ "tit\n" "help.text" msgid "IMCOT function" -msgstr "" +msgstr "IMCOT funksjon" #. ZimkG #: func_imcot.xhp @@ -62753,7 +62753,7 @@ "par_id764617646176461\n" "help.text" msgid "Returns the cotangent of a complex number. The cotangent of a complex number can be expressed by:" -msgstr "" +msgstr "Returnerer cotangensen til et komplekst tall. Cotangensen til et komplekst tall kan uttrykkes ved:" #. fCe4Y #: func_imcot.xhp @@ -62762,7 +62762,7 @@ "par_id311713256011430\n" "help.text" msgid "IMCOT equation" -msgstr "" +msgstr "IMCOT ekvasjon" #. z7EtV #: func_imcot.xhp @@ -62780,7 +62780,7 @@ "par_id766137661376613\n" "help.text" msgid "Complex_number is a complex number whose cotangent is to be calculated." -msgstr "" +msgstr "Complex_number er et komplekst tall hvis cotangens skal beregnes." #. B2yM9 #: func_imcot.xhp @@ -62789,7 +62789,7 @@ "par_id21183436423819\n" "help.text" msgid "=IMCOT(\"4-3i\")
returns 0.00490118239430447+0.999266927805902i." -msgstr "" +msgstr "=IMCOT(\"4-3i\")
returnerer 0.00490118239430447+0.999266927805902i." #. mMYen #: func_imcot.xhp @@ -62798,7 +62798,7 @@ "par_id18472284929530\n" "help.text" msgid "=IMCOT(2)
returns -0.457657554360286 as a string. " -msgstr "" +msgstr "=IMCOT(2)
returnerer -0.457657554360286 som en streng. " #. tzbDs #: func_imcsc.xhp @@ -62807,7 +62807,7 @@ "tit\n" "help.text" msgid "IMCSC function" -msgstr "" +msgstr "IMCSC funksjon" #. voV3U #: func_imcsc.xhp @@ -62834,7 +62834,7 @@ "par_id932329323293232\n" "help.text" msgid "Returns the cosecant of a complex number. The cosecant of a complex number can be expressed by:" -msgstr "" +msgstr "Returnerer cosecanten til et komplekst tall. Kosekanten til et komplekst tall kan uttrykkes ved:" #. FV9Gz #: func_imcsc.xhp @@ -62843,7 +62843,7 @@ "par_id13510198901485\n" "help.text" msgid "IMCSC equation" -msgstr "" +msgstr "IMCSC ekvasjon" #. jBzZA #: func_imcsc.xhp @@ -62861,7 +62861,7 @@ "par_id1899971619670\n" "help.text" msgid "Complex_number is a complex number whose cosecant needs to be calculated." -msgstr "" +msgstr "Complex_number er et komplekst tall hvis cosecant må beregnes." #. H4aYf #: func_imcsc.xhp @@ -62870,7 +62870,7 @@ "par_id25692477525537\n" "help.text" msgid "=IMCSC(\"4-3i\")
returns -0.0754898329158637-0.0648774713706355i." -msgstr "" +msgstr "=IMCSC(\"4-3i\")
returnerer -0.0754898329158637-0.0648774713706355i." #. BouPt #: func_imcsc.xhp @@ -62879,7 +62879,7 @@ "par_id32572967420710\n" "help.text" msgid "=IMCSC(2)
returns 1.09975017029462 as a string. " -msgstr "" +msgstr "=IMCSC(2)
returnerer 1.09975017029462 som en streng. " #. uQfzu #: func_imcsch.xhp @@ -62888,7 +62888,7 @@ "tit\n" "help.text" msgid "IMCSCH function" -msgstr "" +msgstr "IMCSCH-funksjon" #. Fa5LN #: func_imcsch.xhp @@ -62915,7 +62915,7 @@ "par_id979369793697936\n" "help.text" msgid "Returns the hyperbolic cosecant of a complex number. The hyperbolic cosecant of a complex number can be expressed by:" -msgstr "" +msgstr "Giver den hyperbolske cosecanten til et komplekst tall. Den hyperbolske cosecanten til et komplekst tall kan uttrykkes ved:" #. FFqZK #: func_imcsch.xhp @@ -62924,7 +62924,7 @@ "par_id195151657917534\n" "help.text" msgid "IMCSCH equation" -msgstr "" +msgstr "IMCSCH ekvasjon" #. ndjhY #: func_imcsch.xhp @@ -62942,7 +62942,7 @@ "par_id1899971619670\n" "help.text" msgid "Complex_number is a complex number whose hyperbolic cosecant needs to be calculated." -msgstr "" +msgstr "Complex_number er et komplekst tall hvis hyperbolske cosecant må beregnes." #. nLLd3 #: func_imcsch.xhp @@ -62951,7 +62951,7 @@ "par_id16814232201137\n" "help.text" msgid "=IMCSCH(\"4-3i\")
returns -0.036275889628626+0.0051744731840194i." -msgstr "" +msgstr "=IMCSCH(\"4-3i\")
returnerer -0,036275889628626+0,0051744731840194i." #. sgm9V #: func_imcsch.xhp @@ -62960,7 +62960,7 @@ "par_id2395211576789\n" "help.text" msgid "=IMCSCH(2)
returns 0.275720564771783 as a string. " -msgstr "" +msgstr "=IMCSCH(2)
returnerer 0,275720564771783 som en streng. " #. eiF7c #: func_imsec.xhp @@ -62969,7 +62969,7 @@ "tit\n" "help.text" msgid "IMSEC function" -msgstr "" +msgstr "IMSEC funksjon" #. f8owi #: func_imsec.xhp @@ -62996,7 +62996,7 @@ "par_id23292284928998\n" "help.text" msgid "Returns the secant of a complex number. The secant of a complex number can be expressed by:" -msgstr "" +msgstr "Returnerer sekanten til et komplekst tall. Sekansen til et komplekst tall kan uttrykkes ved:" #. y62eA #: func_imsec.xhp @@ -63005,7 +63005,7 @@ "par_id17543461310594\n" "help.text" msgid "IMSEC equation" -msgstr "" +msgstr "IMSEC ekvasjon" #. CEucF #: func_imsec.xhp @@ -63023,7 +63023,7 @@ "par_id3186739645701\n" "help.text" msgid "Complex_number is a complex number whose secant needs to be calculated." -msgstr "" +msgstr "Complex_number er et komplekst tall hvis sekant må beregnes." #. DxDNG #: func_imsec.xhp @@ -63032,7 +63032,7 @@ "par_id16814232201137\n" "help.text" msgid "=IMSEC(\"4-3i\")
returns -0.0652940278579471+0.0752249603027732i." -msgstr "" +msgstr "=IMSEC(\"4-3i\")
returnerer -0,0652940278579471+0,0752249603027732i." #. tCStV #: func_imsec.xhp @@ -63041,7 +63041,7 @@ "par_id2395211576789\n" "help.text" msgid "=IMSEC(2)
returns -2.40299796172238 as a string. " -msgstr "" +msgstr "=IMSEC(2)
returnerer -2.40299796172238 som en streng. " #. 44osd #: func_imsech.xhp @@ -63050,7 +63050,7 @@ "tit\n" "help.text" msgid "IMSECH function" -msgstr "" +msgstr "IMSEC funksjon" #. JATyW #: func_imsech.xhp @@ -63077,7 +63077,7 @@ "par_id116441182314950\n" "help.text" msgid "Returns the hyperbolic secant of a complex number. The hyperbolic secant of a complex number can be expressed by:" -msgstr "" +msgstr "Returnerer den hyperbolske sekanten til et komplekst tall. Den hyperbolske sekanten til et komplekst tall kan uttrykkes ved:" #. CVDgc #: func_imsech.xhp @@ -63086,7 +63086,7 @@ "par_id74572850718840\n" "help.text" msgid "IMSECH equation" -msgstr "" +msgstr "IMSECH ekvasjon" #. Rqker #: func_imsech.xhp @@ -63104,7 +63104,7 @@ "par_id31259109804356\n" "help.text" msgid "Complex_number is a complex number whose hyperbolic secant needs to be calculated." -msgstr "" +msgstr "Complex_number er et komplekst tall hvis hyperbolske sekant må beregnes." #. idFUe #: func_imsech.xhp @@ -63113,7 +63113,7 @@ "par_id1906826088444\n" "help.text" msgid "=IMSECH(\"4-3i\")
returns -0.0362534969158689+0.00516434460775318i." -msgstr "" +msgstr "=IMSECH(\"4-3i\")
returnerer -0,0362534969158689+0,00516434460775318i." #. ogXFD #: func_imsech.xhp @@ -63122,7 +63122,7 @@ "par_id247492030016627\n" "help.text" msgid "=IMSECH(2)
returns 0.26580222883408 as a string. " -msgstr "" +msgstr "=IMSECH(2)
returnerer 0,26580222883408 som en streng. " #. TFFZg #: func_imsin.xhp @@ -63131,7 +63131,7 @@ "tit\n" "help.text" msgid "IMSIN function" -msgstr "" +msgstr "IMSIN funksjon" #. AneK8 #: func_imsin.xhp @@ -63158,7 +63158,7 @@ "par_id1955633330277\n" "help.text" msgid "Returns the sine of a complex number. The sine of a complex number can be expressed by:" -msgstr "" +msgstr "Giver sinusen til et komplekst tall. Sinusen til et komplekst tall kan uttrykkes ved:" #. 5FyPJ #: func_imsin.xhp @@ -63167,7 +63167,7 @@ "par_id3189460120934\n" "help.text" msgid "IMSIN equation" -msgstr "" +msgstr "IMSIN ekvasjon" #. tcmGA #: func_imsin.xhp @@ -63185,7 +63185,7 @@ "par_id31206835928272\n" "help.text" msgid "Complex_number is a complex number whose sine needs to be calculated." -msgstr "" +msgstr "Complex_number er et komplekst tall hvis sinus må beregnes." #. y4NFP #: func_imsin.xhp @@ -63194,7 +63194,7 @@ "par_id5063188419467\n" "help.text" msgid "=IMSIN(\"4-3i\")
returns -7.61923172032141+6.548120040911i." -msgstr "" +msgstr "=IMSIN(\"4-3i\")
returnerer -7.61923172032141+6.548120040911i." #. DKh3t #: func_imsin.xhp @@ -63203,7 +63203,7 @@ "par_id1527387141125\n" "help.text" msgid "=IMSIN(2)
returns 0.909297426825682 as a string. " -msgstr "" +msgstr "=IMSIN(2)
returnerer 0,909297426825682 som en streng. " #. Ht2Tp #: func_imsinh.xhp @@ -63212,7 +63212,7 @@ "tit\n" "help.text" msgid "IMSINH function" -msgstr "" +msgstr "IMSINH funksjon" #. SpvXc #: func_imsinh.xhp @@ -63239,7 +63239,7 @@ "par_id1955633330277\n" "help.text" msgid "Returns the hyperbolic sine of a complex number. The hyperbolic sine of a complex number can be expressed by:" -msgstr "" +msgstr "Giver den hyperbolske sinusen til et komplekst tall. Den hyperbolske sinusen til et komplekst tall kan uttrykkes ved:" #. ZDbJS #: func_imsinh.xhp @@ -63248,7 +63248,7 @@ "par_id3189460120934\n" "help.text" msgid "IMSINH equation" -msgstr "" +msgstr "IMSINH ekvasjon" #. CM4Gy #: func_imsinh.xhp @@ -63266,7 +63266,7 @@ "par_id31206835928272\n" "help.text" msgid "Complex_number is a complex number whose hyperbolic sine needs to be calculated." -msgstr "" +msgstr "Complex_number er et komplekst tall hvis hyperbolske sinus må beregnes." #. ZGYZ3 #: func_imsinh.xhp @@ -63275,7 +63275,7 @@ "par_id5063188419467\n" "help.text" msgid "=IMSINH(\"4-3i\")
returns -27.0168132580039-3.85373803791938i." -msgstr "" +msgstr "=IMSINH(\"4-3i\")
returnerer -27.0168132580039-3.85373803791938i." #. WAgPF #: func_imsinh.xhp @@ -63284,7 +63284,7 @@ "par_id1527387141125\n" "help.text" msgid "=IMSINH(2)
returns 3.62686040784702 as a string. " -msgstr "" +msgstr "=IMSINH(2)
returnerer 3.62686040784702 som en streng. " #. C2DmY #: func_imtan.xhp @@ -63293,7 +63293,7 @@ "tit\n" "help.text" msgid "IMTAN function" -msgstr "" +msgstr "IMTAN funksjon" #. fMSEq #: func_imtan.xhp @@ -63320,7 +63320,7 @@ "par_id5700137827273\n" "help.text" msgid "Returns the tangent of a complex number. The tangent of a complex number can be expressed by:" -msgstr "" +msgstr "Returnerer tangensen til et komplekst tall. Tangensen til et komplekst tall kan uttrykkes ved:" #. ujidB #: func_imtan.xhp @@ -63329,7 +63329,7 @@ "par_id25021317131239\n" "help.text" msgid "IMTAN equation" -msgstr "" +msgstr "IMTAN ekvasjon" #. 7QtEG #: func_imtan.xhp @@ -63347,7 +63347,7 @@ "par_id10242899132094\n" "help.text" msgid "Complex_number is a complex number whose tangent is to be calculated." -msgstr "" +msgstr "Kompleks_tall er et komplekst tall hvis tangent skal beregnes." #. bEY6r #: func_imtan.xhp @@ -63356,7 +63356,7 @@ "par_id5063188419467\n" "help.text" msgid "=IMTAN(\"4-3i\")
returns 0.00490825806749606-1.00070953606723i." -msgstr "" +msgstr "=IMTAN(\"4-3i\")
returnerer 0,00490825806749606-1,00070953606723i." #. q7Zeh #: func_imtan.xhp @@ -63365,7 +63365,7 @@ "par_id1527387141125\n" "help.text" msgid "=IMTAN(2)
returns -2.18503986326152 as a string. " -msgstr "" +msgstr "=IMTAN(2)
returnerer -2.18503986326152 som en streng. " #. 8YaMz #: func_isoweeknum.xhp @@ -63374,7 +63374,7 @@ "tit\n" "help.text" msgid "ISOWEEKNUM" -msgstr "" +msgstr "ISOWEEKNUM" #. ByTrc #: func_isoweeknum.xhp @@ -63410,7 +63410,7 @@ "par_idN105E4\n" "help.text" msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th." -msgstr "" +msgstr "Den internasjonale standarden ISO 8601 har bestemt at mandag skal være den første dagen i uken. En uke som ligger delvis i ett år og delvis i et annet, tildeles et nummer i det året de fleste dagene ligger. Det betyr at uke nummer 1 i et hvilket som helst år er uken som inneholder 4. januar." #. 2mDM2 #: func_isoweeknum.xhp @@ -63419,7 +63419,7 @@ "par_id3147236\n" "help.text" msgid "ISOWEEKNUM(Number)" -msgstr "" +msgstr "ISOWEEKNUM(Tall)" #. SneoF #: func_isoweeknum.xhp @@ -63437,7 +63437,7 @@ "par_id3149792\n" "help.text" msgid "=ISOWEEKNUM(DATE(1995;1;1)) returns 52. Week 1 starts on Monday, 1995-01-02." -msgstr "" +msgstr "=ISOWEEKNUM(DATE(1995;1;1)) returnerer 52. Uke 1 starter på mandag 1995-01-02." #. AMrEN #: func_isoweeknum.xhp @@ -63446,7 +63446,7 @@ "par_id3149794\n" "help.text" msgid "=ISOWEEKNUM(DATE(1999;1;1)) returns 53. Week 1 starts on Monday, 1999-01-04." -msgstr "" +msgstr "=ISOWEEKNUM(DATE(1999;1;1)) returnerer 53. Uke 1 starter på mandag 1999-01-04." #. CB8Vn #: func_jis.xhp @@ -63455,7 +63455,7 @@ "tit\n" "help.text" msgid "JIS Function" -msgstr "" +msgstr "JIS funksjon" #. 5Qavf #: func_jis.xhp @@ -63464,7 +63464,7 @@ "bm_id831542233029549\n" "help.text" msgid "JIS function" -msgstr "" +msgstr "JIS-funksjon" #. v8tni #: func_jis.xhp @@ -63473,7 +63473,7 @@ "hd_id881628776094597\n" "help.text" msgid "JIS" -msgstr "" +msgstr "JIS" #. 3XKQ3 #: func_jis.xhp @@ -63482,7 +63482,7 @@ "par_id541542230672101\n" "help.text" msgid "Converts single-byte (half-width) ASCII or katakana characters to double-byte (full-width) characters." -msgstr "" +msgstr "Konverterer enkeltbyte (halvbredde) ASCII- eller katakana-tegn til dobbelbytetegn (full bredde)." #. iDoUA #: func_jis.xhp @@ -63491,7 +63491,7 @@ "par_id151634221012221\n" "help.text" msgid "See https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions for a conversion table." -msgstr "" +msgstr "Se https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions for en konverteringstabell." #. AjjnX #: func_jis.xhp @@ -63500,7 +63500,7 @@ "par_id701542231253817\n" "help.text" msgid "JIS(Text)" -msgstr "" +msgstr "JIS(Tekst)" #. f9YAh #: func_jis.xhp @@ -63509,7 +63509,7 @@ "par_id621542232197446\n" "help.text" msgid "Text: the text string that contains characters to be converted." -msgstr "" +msgstr "Tekst: tekststrengen som inneholder tegn som skal konverteres." #. b289j #: func_jis.xhp @@ -63518,7 +63518,7 @@ "par_id481637763523789\n" "help.text" msgid "Applying the JIS function to a string composed of double-byte characters will return the input string without any modifications." -msgstr "" +msgstr "Ved å bruke JIS-funksjonen på en streng som består av dobbelbyte-tegn, returneres inndatastrengen uten noen endringer." #. BBEVj #: func_jis.xhp @@ -63527,7 +63527,7 @@ "par_id451628776707264\n" "help.text" msgid "=JIS(\"LibreOffice\") returns the string \"LibreOffice\". Note that the returned string uses double-byte characters." -msgstr "" +msgstr "=JIS(\"LibreOffice\") returnerer strengen \"LibreOffice\". Merk at den returnerte strengen bruker dobbelbyte-tegn." #. fEFNT #: func_jis.xhp @@ -63536,7 +63536,7 @@ "par_id101628778036375\n" "help.text" msgid "=JIS(\"ライト\") returns the string \"ライト\", which is composed of double-byte characters." -msgstr "" +msgstr "=JIS(\"ライト\") returnerer strengen \"ライト\", som er sammensatt av dobbeltbyte-tegn." #. Cauxq #: func_maxifs.xhp @@ -63545,7 +63545,7 @@ "tit\n" "help.text" msgid "MAXIFS function" -msgstr "" +msgstr "MAXIFS funksjon" #. 8HdEW #: func_maxifs.xhp @@ -63554,7 +63554,7 @@ "bm_id658066580665806\n" "help.text" msgid "MAXIFS function maximum;satisfying conditions" -msgstr "" +msgstr "MAXIFS-funksjon maksimum;tilfredsstillende betingelser" #. kKHTn #: func_maxifs.xhp @@ -63563,7 +63563,7 @@ "hd_id658866588665886\n" "help.text" msgid "MAXIFS function" -msgstr "" +msgstr "MAXIFS funksjon" #. DXshy #: func_maxifs.xhp @@ -63572,7 +63572,7 @@ "par_id659756597565975\n" "help.text" msgid "Returns the maximum of the values of cells in a range that meets multiple criteria in multiple ranges." -msgstr "" +msgstr "Returnerer maksimum av verdiene til celler i et område som oppfyller flere kriterier i flere områder." #. PKmRh #: func_maxifs.xhp @@ -63581,7 +63581,7 @@ "par_id11655988824213\n" "help.text" msgid "MAXIFS()" -msgstr "" +msgstr "MAXIFS()" #. UrwgE #: func_maxifs.xhp @@ -63590,7 +63590,7 @@ "par_id59901690530236\n" "help.text" msgid "Func_Range – required argument. A range of cells, a name of a named range or a label of a column or a row containing values for calculating the maximum." -msgstr "" +msgstr "Func_Range – nødvendig argument. Et celleområde, et navn på et navngitt område eller en etikett for en kolonne eller en rad som inneholder verdier for beregning av maksimum." #. BUavo #: func_maxifs.xhp @@ -63599,7 +63599,7 @@ "hd_id193452436229521\n" "help.text" msgid "Simple usage" -msgstr "" +msgstr "Enkel bruk" #. 8CyiM #: func_maxifs.xhp @@ -63608,7 +63608,7 @@ "par_id94321051525036\n" "help.text" msgid "=MAXIFS(B2:B6;B2:B6;\"<35\")" -msgstr "" +msgstr "=MAXIFS(B2:B6;B2:B6;\"<35\")" #. j2PKY #: func_maxifs.xhp @@ -63617,7 +63617,7 @@ "par_id28647227259438\n" "help.text" msgid "Calculates the maximum of values of the range B2:B6 that are greater than or equal to 20. Returns 35. The fifth row does not meet the criterion." -msgstr "" +msgstr "Beregner maksimum av verdier i området B2:B6 som er større enn eller lik 20. Returnerer 35. Den femte raden oppfyller ikke kriteriet." #. c6yAQ #: func_maxifs.xhp @@ -63626,7 +63626,7 @@ "par_id36952767622741\n" "help.text" msgid "=MAXIFS(C2:C6;B2:B6;\">=20\";C2:C6;\"<90\")" -msgstr "" +msgstr "=MAXIFS(C2:C6;B2:B6;\">=20\";C2:C6;\"<90\")" #. nGj4o #: func_maxifs.xhp @@ -63635,7 +63635,7 @@ "par_id189772445525114\n" "help.text" msgid "Calculates the maximum of values of the range C2:C6 that are lower than 90 and correspond to cells of the B2:B6 range with values greater than or equal to 20. Returns 85, because the fourth and fifth rows do not meet at least one criterion." -msgstr "" +msgstr "Beregner maksimum av verdier i området C2:C6 som er lavere enn 90 og tilsvarer celler i B2:B6-området med verdier større enn eller lik 20. Returnerer 85, fordi den fjerde og femte raden ikke møter minst én kriterium." #. 9Ayop #: func_maxifs.xhp @@ -63644,7 +63644,7 @@ "hd_id30455222431067\n" "help.text" msgid "Using regular expressions and nested functions" -msgstr "" +msgstr "Bruke regulære uttrykk og nestede funksjoner" #. LNubZ #: func_maxifs.xhp @@ -63653,7 +63653,7 @@ "par_id307691022525348\n" "help.text" msgid "=MAXIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MAXIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" #. CR2To #: func_maxifs.xhp @@ -63662,7 +63662,7 @@ "par_id27619246864839\n" "help.text" msgid "Calculates the maximum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 190, because only the fourth row meet the criteria." -msgstr "" +msgstr "Beregner maksimum av verdier i området C2:C6 som tilsvarer alle verdiene i området B2:B6 bortsett fra minimum og maksimum. Returnerer 190, fordi bare den fjerde raden oppfyller kriteriene." #. xriFt #: func_maxifs.xhp @@ -63671,7 +63671,7 @@ "par_id220502883332563\n" "help.text" msgid "=MAXIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<=\"&MAX(B2:B6))" -msgstr "" +msgstr "=MAXIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<=\"&MAX(B2:B6))" #. FQicN #: func_maxifs.xhp @@ -63680,7 +63680,7 @@ "par_id15342189586295\n" "help.text" msgid "Calculates the maximum of values of the range C2:C6 that correspond to all cells of the A2:A6 range starting with \"pen\" and to all cells of the B2:B6 range except its maximum. Returns 85, because only the third row meets all criteria." -msgstr "" +msgstr "Beregner maksimum av verdier i området C2:C6 som tilsvarer alle cellene i A2:A6-området som starter med \"penn\" og til alle cellene i B2:B6-området bortsett fra maksimum. Returnerer 85, fordi bare den tredje raden oppfyller alle kriteriene." #. DwLDF #: func_maxifs.xhp @@ -63689,7 +63689,7 @@ "hd_id8168283329426\n" "help.text" msgid "Reference to a cell as a criterion" -msgstr "" +msgstr "Referanse til en celle som et kriterium" #. 9BMGq #: func_maxifs.xhp @@ -63698,7 +63698,7 @@ "par_id50762995519951\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the MAXIFS function. For example, the above function can be rewritten as follows:" -msgstr "" +msgstr "Hvis du trenger å endre et kriterium enkelt, kan det være lurt å spesifisere det i en egen celle og bruke en referanse til denne cellen i tilstanden til MAXIFS-funksjonen. For eksempel kan funksjonen ovenfor skrives om som følger:" #. gcYDr #: func_maxifs.xhp @@ -63707,7 +63707,7 @@ "par_id135761606425300\n" "help.text" msgid "=MAXIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MAXIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))" #. wHPFq #: func_maxifs.xhp @@ -63716,7 +63716,7 @@ "par_id30574750215839\n" "help.text" msgid "If E2 = \"pen\", the function returns 65, because the reference to the cell is substituted with its content." -msgstr "" +msgstr "If E2 = \"pen\", funksjonen returnerer 65, fordi referansen til cellen er erstattet med innholdet." #. zGQnQ #: func_minifs.xhp @@ -63725,7 +63725,7 @@ "tit\n" "help.text" msgid "MINIFS function" -msgstr "" +msgstr "MINIFS-funksjon" #. V8Fu7 #: func_minifs.xhp @@ -63734,7 +63734,7 @@ "bm_id658066580665806\n" "help.text" msgid "MINIFS function minimum;satisfying conditions" -msgstr "" +msgstr "MINIFS-funksjon minimum;tilfredsstillende vilkår" #. vnegG #: func_minifs.xhp @@ -63743,7 +63743,7 @@ "hd_id658866588665886\n" "help.text" msgid "MINIFS function" -msgstr "" +msgstr "MINIFS funksjon" #. PmaDA #: func_minifs.xhp @@ -63752,7 +63752,7 @@ "par_id659756597565975\n" "help.text" msgid "Returns the minimum of the values of cells in a range that meets multiple criteria in multiple ranges." -msgstr "" +msgstr "Returnerer minimumsverdiene til cellene i et område som oppfyller flere kriterier i flere områder." #. yekSJ #: func_minifs.xhp @@ -63761,7 +63761,7 @@ "par_id11655988824213\n" "help.text" msgid "MINIFS()" -msgstr "" +msgstr "MINIFS()" #. Gf5P2 #: func_minifs.xhp @@ -63770,7 +63770,7 @@ "par_id59901690530236\n" "help.text" msgid "Func_Range – required argument. A range of cells, a name of a named range or a label of a column or a row containing values for calculating the minimum." -msgstr "" +msgstr "Func_Range – nødvendig argument. Et celleområde, et navn på et navngitt område eller en etikett for en kolonne eller en rad som inneholder verdier for å beregne minimum." #. KkDwL #: func_minifs.xhp @@ -63779,7 +63779,7 @@ "hd_id193452436229521\n" "help.text" msgid "Simple usage" -msgstr "" +msgstr "Enkel bruk" #. TGRCF #: func_minifs.xhp @@ -63788,7 +63788,7 @@ "par_id94321051525036\n" "help.text" msgid "=MINIFS(B2:B6;B2:B6;\"<35\")" -msgstr "" +msgstr "=MINIFS(B2:B6;B2:B6;\"<35\")" #. eRNbh #: func_minifs.xhp @@ -63797,7 +63797,7 @@ "par_id28647227259438\n" "help.text" msgid "Calculates the minimum of values of the range B2:B6 that are lower than or equal to 20. Returns 17." -msgstr "" +msgstr "Beregner minimum av verdier i området B2:B6 som er lavere enn eller lik 20. Returnerer 17." #. zufoC #: func_minifs.xhp @@ -63806,7 +63806,7 @@ "par_id36952767622741\n" "help.text" msgid "=MINIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">90\")" -msgstr "" +msgstr "=MINIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">90\")" #. iCk4M #: func_minifs.xhp @@ -63815,7 +63815,7 @@ "par_id189772445525114\n" "help.text" msgid "Calculates the minimum of values of the range C2:C6 that are lower than 90 and correspond to cells of the B2:B6 range with values greater than or equal to 20. Returns 190." -msgstr "" +msgstr "Beregner minimum av verdier i området C2:C6 som er lavere enn 90 og tilsvarer celler i B2:B6-området med verdier større enn eller lik 20. Returnerer 190." #. iqFXq #: func_minifs.xhp @@ -63824,7 +63824,7 @@ "hd_id30455222431067\n" "help.text" msgid "Using regular expressions and nested functions" -msgstr "" +msgstr "Bruke regulære uttrykk og nestede funksjoner" #. CBaMz #: func_minifs.xhp @@ -63833,7 +63833,7 @@ "par_id307691022525348\n" "help.text" msgid "=MINIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MINIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" #. Dp4Sx #: func_minifs.xhp @@ -63842,7 +63842,7 @@ "par_id27619246864839\n" "help.text" msgid "Calculates the minimum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 65." -msgstr "" +msgstr "Beregner minimumsverdiene i området C2:C6 som tilsvarer alle verdiene i området B2:B6 bortsett fra minimum og maksimum. Returnerer 65." #. 7S443 #: func_minifs.xhp @@ -63851,7 +63851,7 @@ "par_id220502883332563\n" "help.text" msgid "=MINIFS(C2:C6;A2:A6;\".*book\";B2:B6;\">\"&MIN(B2:B6))" -msgstr "" +msgstr "=MINIFS(C2:C6;A2:A6;\".*book\";B2:B6;\">\"&MIN(B2:B6))" #. gNhzJ #: func_minifs.xhp @@ -63860,7 +63860,7 @@ "par_id15342189586295\n" "help.text" msgid "Calculates the minimum of values of the range C2:C6 that correspond to all cells of the A2:A6 range ending with \"book\" and to all cells of the B2:B6 range except its minimum. Returns 190." -msgstr "" +msgstr "Beregner minimum av verdier i området C2:C6 som tilsvarer alle cellene i A2:A6-området som slutter med \"bok\" og til alle cellene i B2:B6-området bortsett fra minimum. Returnerer 190." #. uz4wr #: func_minifs.xhp @@ -63869,7 +63869,7 @@ "hd_id8168283329426\n" "help.text" msgid "Reference to a cell as a criterion" -msgstr "" +msgstr "Referanse til en celle som et kriterium" #. 27hDw #: func_minifs.xhp @@ -63878,7 +63878,7 @@ "par_id50762995519951\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the MINIFS function. For example, the above function can be rewritten as follows:" -msgstr "" +msgstr "Hvis du trenger å endre et kriterium enkelt, kan det være lurt å spesifisere det i en egen celle og bruke en referanse til denne cellen i tilstanden til MINIFS-funksjonen. For eksempel kan funksjonen ovenfor skrives om som følger:" #. EcoDf #: func_minifs.xhp @@ -63887,7 +63887,7 @@ "par_id135761606425300\n" "help.text" msgid "=MINIFS(C2:C6;A2:A6;\".*\"&E2;B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=MINIFS(C2:C6;A2:A6;\".*\"&E2;B2:B6;\"<\"&MAX(B2:B6))" #. cxmqK #: func_minifs.xhp @@ -63896,7 +63896,7 @@ "par_id30574750215839\n" "help.text" msgid "If E2 = \"book\", the function returns 180, because the reference to the cell is substituted with its content." -msgstr "" +msgstr "Hvis E2 = \"bok\", returnerer funksjonen 180, fordi referansen til cellen er erstattet med innholdet." #. SAxB8 #: func_minute.xhp @@ -63905,7 +63905,7 @@ "tit\n" "help.text" msgid "MINUTE" -msgstr "" +msgstr "MINUTE" #. 7cQwC #: func_minute.xhp @@ -63932,7 +63932,7 @@ "par_id3148988\n" "help.text" msgid "Calculates the minute for an internal time value. The minute is returned as a number between 0 and 59." -msgstr "" +msgstr "Beregner minuttet for en intern tidsverdi. Minuttet returneres som et tall mellom 0 og 59." #. LeQE8 #: func_minute.xhp @@ -63977,7 +63977,7 @@ "par_id3144755\n" "help.text" msgid "=MINUTE(NOW()) returns the current minute value." -msgstr "" +msgstr "=MINUTE(NOW()) returnerer gjeldende minuttverdi." #. FmPSf #: func_month.xhp @@ -64031,7 +64031,7 @@ "par_id3149485\n" "help.text" msgid "Number is the internal date number." -msgstr "" +msgstr "Nummer er det interne datonummeret." #. LuUhY #: func_month.xhp @@ -64040,7 +64040,7 @@ "par_id3149244\n" "help.text" msgid "=MONTH(NOW()) returns the current month." -msgstr "" +msgstr "=MONTH(NOW()) returnerer gjeldende måned." #. BD2Ww #: func_month.xhp @@ -64049,7 +64049,7 @@ "par_id3154790\n" "help.text" msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)." -msgstr "" +msgstr "=MONTH(C4) returnerer 7 hvis du skriver inn 2000-07-07 til celle C4 (denne datoverdien kan bli formatert annerledes etter at du trykker på Enter)." #. kbyFK #: func_networkdays.intl.xhp @@ -64058,7 +64058,7 @@ "tit\n" "help.text" msgid "NETWORKDAYS.INTL" -msgstr "" +msgstr "NETWORKDAYS.INTL" #. H92rh #: func_networkdays.intl.xhp @@ -64067,7 +64067,7 @@ "bm_id231020162321219565\n" "help.text" msgid "NETWORKDAYS.INTL function" -msgstr "" +msgstr "NETWORKDAYS.INTL-funksjon" #. 54nta #: func_networkdays.intl.xhp @@ -64076,7 +64076,7 @@ "hd_id231020162211573602\n" "help.text" msgid "NETWORKDAYS.INTL" -msgstr "" +msgstr "NETWORKDAYS.INTL" #. kDcRW #: func_networkdays.intl.xhp @@ -64085,7 +64085,7 @@ "par_id231020162213393086\n" "help.text" msgid "Returns the number of workdays between a start date and an end date. There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days." -msgstr "" +msgstr "Returnerer antall arbeidsdager mellom en startdato og en sluttdato. Det finnes alternativer for å definere helgedager og helligdager. Den valgfrie helgeparameteren (eller en streng) kan brukes til å definere helgedagene (eller de ikke-arbeidsdager i hver uke). Alternativt kan brukeren også definere en ferieliste. Helgedagene og brukerdefinerte helligdager regnes ikke som virkedager." #. 53kNC #: func_networkdays.intl.xhp @@ -64094,7 +64094,7 @@ "par_id231020162249539143\n" "help.text" msgid "NETWORKDAYS.INTL(StartDate; EndDate [; [ Weekend ] [; Holidays ] ])" -msgstr "" +msgstr "NETWORKDAYS.INTL(StartDato; Sluttdato [; [ Helg ] [; Helligdager ] ])" #. D8jig #: func_networkdays.intl.xhp @@ -64103,7 +64103,7 @@ "par_id231020162249533010\n" "help.text" msgid "StartDate is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation." -msgstr "" +msgstr "Startdato er datoen fra når beregningen er utført. Hvis startdatoen er en arbeidsdag, er dagen tatt med i beregningen." #. DU9WK #: func_networkdays.intl.xhp @@ -64112,7 +64112,7 @@ "par_id231020162249536398\n" "help.text" msgid "EndDate is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation." -msgstr "" +msgstr "EndDate er datoen frem til når beregningen er utført. Hvis sluttdatoen er en arbeidsdag, er dagen inkludert i beregningen." #. Yhepz #: func_networkdays.intl.xhp @@ -64121,7 +64121,7 @@ "par_id231020162249554032\n" "help.text" msgid "How many workdays fall between December 15, 2016 and January 14, 2017? Let the start date be located in C3 and the end date in D3. Cells F3 to J3 contain five (5) holidays for Christmas and New Year in date format: December 24, 2016; December 25, 2016; December 26, 2016; December 31, 2016; and January 1, 2017." -msgstr "" +msgstr "Hvor mange arbeidsdager faller mellom 15. desember 2016 og 14. januar 2017? La startdatoen ligge i C3 og sluttdatoen i D3. Cellene F3 til J3 inneholder fem (5) helligdager for jul og nyttår i datoformat: 24. desember 2016; 25. desember 2016; 26. desember 2016; 31. desember 2016; og 1. januar 2017." #. YtSPd #: func_networkdays.intl.xhp @@ -64130,7 +64130,7 @@ "par_id231020162249551234\n" "help.text" msgid "=NETWORKDAYS.INTL(C3;D3;;F3:J3) returns 21 workdays with default for weekend days." -msgstr "" +msgstr "=NETTVERKDAGER.INTL(C3;D3;;F3:J3) returnerer 21 virkedager med standard for helgedager." #. Q4DCf #: func_networkdays.intl.xhp @@ -64139,7 +64139,7 @@ "par_id231020162249553109\n" "help.text" msgid "=NETWORKDAYS.INTL(C3;D3;11;F3:J3) returns 24 workdays with Sunday only weekends." -msgstr "" +msgstr "=NETTVERKDAGER.INTL(C3;D3;11;F3:J3) returnerer 24 virkedager med kun søndag i helger." #. 3AN56 #: func_networkdays.intl.xhp @@ -64148,7 +64148,7 @@ "par_id231020162249557786\n" "help.text" msgid "Alternatively, use the weekend string “0000001” to define Sunday as the non-working day of every week." -msgstr "" +msgstr "Alternativt kan du bruke helgestrengen \"0000001\" for å definere søndag som fridagen i hver uke." #. 2E4Jz #: func_networkdays.intl.xhp @@ -64157,7 +64157,7 @@ "par_id231020162249553409\n" "help.text" msgid "=NETWORKDAYS.INTL(C3;D3;“0000001”;F3:J3) returns 24 workdays with Sunday only weekend." -msgstr "" +msgstr "=NETTVERKDAGER.INTL(C3;D3;“0000001”;F3:J3) returnerer 24 virkedager med kun søndag som helg." #. spLva #: func_networkdays.intl.xhp @@ -64166,7 +64166,7 @@ "par_id231020162249556946\n" "help.text" msgid "The function can be used without the two optional parameters – weekday and holidays – by leaving them out:" -msgstr "" +msgstr "Funksjonen kan brukes uten de to valgfrie parameterne – ukedag og helligdager – ved å utelate dem:" #. 7pyBD #: func_networkdays.intl.xhp @@ -64175,7 +64175,7 @@ "par_id23102016224955931\n" "help.text" msgid "=NETWORKDAYS.INTL(C3;D3) gives 22 working days." -msgstr "" +msgstr "=NETWORKDAYS.INTL(C3;D3) gir 22 virkedager." #. winzV #: func_networkdays.xhp @@ -64184,7 +64184,7 @@ "tit\n" "help.text" msgid "NETWORKDAYS" -msgstr "" +msgstr "NETWORKDAYS" #. v4yGQ #: func_networkdays.xhp @@ -64193,7 +64193,7 @@ "bm_id3151254\n" "help.text" msgid "NETWORKDAYS function NETWORKDAYS_EXCEL2003 function" -msgstr "" +msgstr "NETWORKDAYS-funksjon NETWORKDAYS_EXCEL2003-funksjon" #. HzF8v #: func_networkdays.xhp @@ -64202,7 +64202,7 @@ "hd_id3151254\n" "help.text" msgid "NETWORKDAYS" -msgstr "" +msgstr "NETWORKDAYS" #. 8M3zv #: func_networkdays.xhp @@ -64211,7 +64211,7 @@ "par_id3153788\n" "help.text" msgid "Returns the number of workdays between a start date and an end date. Holidays can be deducted." -msgstr "" +msgstr "Returnerer antall arbeidsdager mellom en startdato og en sluttdato. Ferier kan trekkes fra." #. AME9S #: func_networkdays.xhp @@ -64220,7 +64220,7 @@ "par_id3145775\n" "help.text" msgid "NETWORKDAYS(StartDate; EndDate [; [ Holidays ] [; Workdays ] ])" -msgstr "" +msgstr "NETTVERKDAGER(Startdato; Sluttdato [; [ Helligdager ] [; Arbeidsdager ] ])" #. BEtbU #: func_networkdays.xhp @@ -64229,7 +64229,7 @@ "par_id3153885\n" "help.text" msgid "StartDate is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation." -msgstr "" +msgstr "Startdato er datoen fra når beregningen er utført. Hvis startdatoen er en arbeidsdag, er dagen tatt med i beregningen." #. N9CAv #: func_networkdays.xhp @@ -64238,7 +64238,7 @@ "par_id3151110\n" "help.text" msgid "EndDate is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation." -msgstr "" +msgstr "EndDate er datoen frem til når beregningen er utført. Hvis sluttdatoen er en arbeidsdag, er dagen inkludert i beregningen." #. Zxfr2 #: func_networkdays.xhp @@ -64247,7 +64247,7 @@ "par_id3154115\n" "help.text" msgid "Holidays is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually." -msgstr "" +msgstr "Helligdager er en valgfri liste over helligdager. Dette er arbeidsfrie dager. Angi et celleområde der helligdagene er oppført individuelt." #. UTwRH #: func_networkdays.xhp @@ -64256,7 +64256,7 @@ "par_id160920161749585013\n" "help.text" msgid "Workdays is an optional list of number values defining standard work week. This list starts by Sunday, workdays are indicated by zero and non-working days by non-zero value." -msgstr "" +msgstr "Workdays er en valgfri liste over tallverdier som definerer standard arbeidsuke. Denne listen starter på søndag, arbeidsdager er angitt med null og fridager med verdi som ikke er null." #. yTEUA #: func_networkdays.xhp @@ -64265,7 +64265,7 @@ "par_id3154661\n" "help.text" msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"." -msgstr "" +msgstr "Hvor mange arbeidsdager faller mellom 2001-12-15 og 2002-01-15? Startdatoen er plassert i C3 og sluttdatoen i D3. Cellene F3 til J3 inneholder følgende jule- og nyttårsferier: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01- 01\"." #. FWMFn #: func_networkdays.xhp @@ -64274,7 +64274,7 @@ "par_id3147328\n" "help.text" msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays." -msgstr "" +msgstr "=NETWORKDAYS(C3;D3;F3:J3) returnerer 17 arbeidsdager." #. DxQVm #: func_networkdays.xhp @@ -64283,7 +64283,7 @@ "par_id160920161751233621\n" "help.text" msgid "How many workdays fall between September 12nd and 25th in 2016 if only Mondays, Tuesdays and Wednesdays are considered as workdays?" -msgstr "" +msgstr "Hvor mange virkedager faller mellom 12. og 25. september i 2016 hvis bare mandager, tirsdager og onsdager regnes som arbeidsdager?" #. fELgW #: func_networkdays.xhp @@ -64292,7 +64292,7 @@ "par_id160920161751235483\n" "help.text" msgid "=NETWORKDAYS(DATE(2016;9;12); DATE(2016;9;25); ; {1;0;0;0;1;1;1}) returns 6 workdays." -msgstr "" +msgstr "=NETWORKDAYS(DATE(2016;9;12); DATE(2016;9;25); ; {1;0;0;0;1;1;1}) returnerer 6 arbeidsdager." #. HCN8H #: func_now.xhp @@ -64301,7 +64301,7 @@ "tit\n" "help.text" msgid "NOW" -msgstr "" +msgstr "NOW" #. bUAGA #: func_now.xhp @@ -64337,7 +64337,7 @@ "par_id3154897\n" "help.text" msgid "NOW()" -msgstr "" +msgstr "NOW()" #. j8sKU #: func_now.xhp @@ -64346,7 +64346,7 @@ "par_id4598529\n" "help.text" msgid "NOW is a function without arguments." -msgstr "" +msgstr "NOW er en funksjon uten argumenter." #. DXy7U #: func_now.xhp @@ -64355,7 +64355,7 @@ "par_id3150774\n" "help.text" msgid "=NOW()-A1 returns the difference between the date in A1 and now. Format the result as a number." -msgstr "" +msgstr "=NOW()-A1 returnerer forskjellen mellom datoen i A1 og nå. Formater resultatet som et tall." #. G3PMG #: func_numbervalue.xhp @@ -64364,7 +64364,7 @@ "tit\n" "help.text" msgid "NUMBERVALUE" -msgstr "" +msgstr "NUMBERVALUE" #. ExLmD #: func_numbervalue.xhp @@ -64382,7 +64382,7 @@ "hd_id3145621\n" "help.text" msgid "NUMBERVALUE" -msgstr "" +msgstr "NUMBERVALUE" #. Ywca6 #: func_numbervalue.xhp @@ -64391,7 +64391,7 @@ "par_id3145087\n" "help.text" msgid "Converts the string representation of a number into a locale-independent numeric value." -msgstr "" +msgstr "Konverterer strengrepresentasjonen av et tall til en lokalitetsuavhengig numerisk verdi." #. xfP9G #: func_numbervalue.xhp @@ -64400,7 +64400,7 @@ "par_id3149281\n" "help.text" msgid "The input text may be in a locale-dependent or other bespoke format." -msgstr "" +msgstr "Inndatateksten kan være i et lokalitetsavhengig eller et annet skreddersydd format." #. vVK9p #: func_numbervalue.xhp @@ -64409,7 +64409,7 @@ "par_id381625600941159\n" "help.text" msgid "The output number is formatted as a valid floating point value and shown using the current cell's number format." -msgstr "" +msgstr "Utdatanummeret er formatert som en gyldig flyttallsverdi og vist med gjeldende celles tallformat." #. pCZWD #: func_numbervalue.xhp @@ -64418,7 +64418,7 @@ "par_id351625601754290\n" "help.text" msgid "Refer to the Numbers / Format help page to learn how to change the format of numbers in a cell." -msgstr "" +msgstr "Se hjelpesiden Tall / Format for å lære hvordan du endrer formatet til tall i en celle." #. vEdwF #: func_numbervalue.xhp @@ -64427,7 +64427,7 @@ "par_id721625602228575\n" "help.text" msgid "NUMBERVALUE(Text[; Decimal Separator[; Group Separator]])" -msgstr "" +msgstr "NUMMERVERDI(tekst[; desimalskilletegn[; gruppeskilletegn]])" #. Y3A9n #: func_numbervalue.xhp @@ -64436,7 +64436,7 @@ "par_id3154819\n" "help.text" msgid "Text is a string that contains the number to be converted." -msgstr "" +msgstr "Tekst er en streng som inneholder tallet som skal konverteres." #. gwZ7A #: func_numbervalue.xhp @@ -64445,7 +64445,7 @@ "par_id3154820\n" "help.text" msgid "Decimal Separator is a single character that specifies the decimal separator in Text. It can be omitted if Text does not include any decimal or group separators." -msgstr "" +msgstr "Desimalskilletegn er et enkelt tegn som spesifiserer desimalskilletegn i Tekst. Den kan utelates hvis Tekst ikke inkluderer noen desimal- eller gruppeseparatorer." #. KJ6WA #: func_numbervalue.xhp @@ -64454,7 +64454,7 @@ "par_id3154821\n" "help.text" msgid "Group Separator is a string that specifies the character(s) used as the group separator in Text. It can be omitted if Text does not include any group separators. The Decimal Separator character should not be used in Group Separator." -msgstr "" +msgstr "Gruppeseparator er en streng som spesifiserer tegnet(e) som brukes som gruppeseparator i Tekst. Den kan utelates hvis Tekst ikke inkluderer noen gruppeseparatorer. Desimalskilletegn skal ikke brukes i Gruppeskilletegn." #. yptHN #: func_numbervalue.xhp @@ -64463,7 +64463,7 @@ "par_id3155841\n" "help.text" msgid "=NUMBERVALUE(\"1.234.567,89\"; \",\"; \".\") returns 1234567.89 (considering en-US locale). The function removes the two group separators and changes the decimal separator from a comma to a full stop." -msgstr "" +msgstr "=NUMMERVERDI(\"1.234.567,89\"; \",\"; \".\") returnerer 1234567.89 (med tanke på en-US-lokalitet). Funksjonen fjerner de to gruppeskilletegnene og endrer desimalskilletegn fra komma til punktum." #. UNiLM #: func_numbervalue.xhp @@ -64472,7 +64472,7 @@ "par_id721625603302860\n" "help.text" msgid "=NUMBERVALUE(\"123·4\"; \"·\") returns 123.4 (considering en-US locale). The function changes the decimal separator from a \"·\" to a full stop. No group separator is used in the supplied number and so the Group Separator argument is omitted." -msgstr "" +msgstr "=NUMMERVERDI(\"123·4\"; \"·\") returnerer 123.4 (med tanke på en-US-lokalitet). Funksjonen endrer desimalskilletegnet fra et \"·\" til et punktum. Ingen gruppeseparator brukes i det oppgitte nummeret, og derfor er argumentet Group Separator utelatt." #. iGGwj #: func_numbervalue.xhp @@ -64481,7 +64481,7 @@ "par_id491625603415715\n" "help.text" msgid "=NUMBERVALUE(\"123e12\") returns 1.23E+14 (considering en-US locale). No decimal or group separators are used in the supplied number and so the Decimal Separator and Group Separator arguments are omitted." -msgstr "" +msgstr "=NUMMERVERDI(\"123e12\") returnerer 1.23E+14 (vurderer en-US-lokalitet). Ingen desimal- eller gruppeseparatorer brukes i det oppgitte tallet, og derfor er Desimalskilletegn og Gruppeskilletegn-argumentene utelatt." #. vTYDd #: func_numbervalue.xhp @@ -64490,7 +64490,7 @@ "par_id801625603497421\n" "help.text" msgid "=NUMBERVALUE(\"1#!234#!567\"; \".\"; \"#!\") returns 1234567 (considering en-US locale). Note that in this case the group separator is specified as a two-character string." -msgstr "" +msgstr "=NUMMERVERDI(\"1#!234#!567\"; \".\"; \"#!\") returnerer 1234567 (med tanke på en-US-lokalitet). Merk at i dette tilfellet er gruppeseparatoren spesifisert som en to-tegns streng." #. xxgaf #: func_numbervalue.xhp @@ -64499,7 +64499,7 @@ "par_id451626100385699\n" "help.text" msgid "Refer to the NUMBERVALUE wiki page for more details about this function." -msgstr "" +msgstr "Se wikisiden NUMBERVALUE for mer informasjon om denne funksjonen." #. EJhfD #: func_opt_barrier.xhp @@ -64508,7 +64508,7 @@ "tit\n" "help.text" msgid "Function OPT_BARRIER" -msgstr "" +msgstr "Funksjon OPT_BARRIER" #. 4HRGX #: func_opt_barrier.xhp @@ -64517,7 +64517,7 @@ "bm_id511575065323638\n" "help.text" msgid "OPT_BARRIER function" -msgstr "" +msgstr "OPT_BARRIER-funksjon" #. zrZgo #: func_opt_barrier.xhp @@ -64526,7 +64526,7 @@ "hd_id241575063871994\n" "help.text" msgid "OPT_BARRIER" -msgstr "" +msgstr "OPT_BARRIER" #. uFKBs #: func_opt_barrier.xhp @@ -64535,7 +64535,7 @@ "par_id121575063871995\n" "help.text" msgid "Returns the pricing for a barrier option, calculated using the Black-Scholes option pricing model." -msgstr "" +msgstr "Returnerer prisen for et barrierealternativ, beregnet ved hjelp av Black-Scholes opsjonsprismodell." #. 3ky3t #: func_opt_barrier.xhp @@ -64544,7 +64544,7 @@ "par_id371575067051846\n" "help.text" msgid "OPT_BARRIER(Spot; Volatility; Rate; Foreign Rate; Maturity; Strike; LowerBarrier; UpperBarrier; Rebate; PutCall; InOut; BarrierMonitoring [; Greek])" -msgstr "" +msgstr "OPT_BARRIER(Spot; Volatilitet; Kurs; Utenlandsk rente; Forfall; innløsningspris; Nedre Barriere; Øvre Barriere; Rabatt; OutCall; Inngang; Barriereovervåking [; gresk])" #. XEMff #: func_opt_barrier.xhp @@ -64553,7 +64553,7 @@ "par_id681575073426941\n" "help.text" msgid "Strike is the strike price of the option and should be non-negative." -msgstr "" +msgstr "Strike er innløsningsprisen på opsjonen og bør være ikke-negativ." #. 8tgWG #: func_opt_barrier.xhp @@ -64562,7 +64562,7 @@ "par_id671575073495724\n" "help.text" msgid "Rebate is the amount of money to be paid at maturity if the barrier is hit." -msgstr "" +msgstr "Rabatt er beløpet som skal betales ved forfall hvis barrieren blir nådd." #. uAzky #: func_opt_barrier.xhp @@ -64571,7 +64571,7 @@ "par_id691575073511191\n" "help.text" msgid "Put or Call is a string that defines whether the option is a put (“p”) or a call (“c”)." -msgstr "" +msgstr "Put or Call er en streng som definerer om alternativet er en put (“p”) eller en call (“c”)." #. PdCJb #: func_opt_barrier.xhp @@ -64580,7 +64580,7 @@ "par_id651575073773761\n" "help.text" msgid "=OPT_BARRIER(30;0.2;0.06;0;1;40;25;0;0;\"c\";\"o\";\"c\") returns the value 0.4243." -msgstr "" +msgstr "=OPT_BARRIER(30;0.2;0.06;0;1;40;25;0;0;\"c\";\"o\";\"c\") returnerer verdien 0,4243." #. ABVQH #: func_opt_barrier.xhp @@ -64589,7 +64589,7 @@ "par_id401575073777593\n" "help.text" msgid "=OPT_BARRIER(50;0.4;0.05;0;0.5;65;0;80;0;\"p\";\"o\";\"c\";\"e\") returns the value 10.1585." -msgstr "" +msgstr "=OPT_BARRIER(50;0.4;0.05;0;0.5;65;0;80;0;\"p\";\"o\";\"c\";\"e\") returnerer verdien 10.1585." #. HWhRY #: func_opt_prob_hit.xhp @@ -64598,7 +64598,7 @@ "tit\n" "help.text" msgid "Function OPT_PROB_HIT" -msgstr "" +msgstr "Funksjon OPT_PROB_HIT" #. 5Naq2 #: func_opt_prob_hit.xhp @@ -64607,7 +64607,7 @@ "bm_id961575074485125\n" "help.text" msgid "OPT_PROB_HIT function" -msgstr "" +msgstr "OPT_PROB_HIT-funksjon" #. GaMLc #: func_opt_prob_hit.xhp @@ -64616,7 +64616,7 @@ "hd_id71575063908363\n" "help.text" msgid "OPT_PROB_HIT" -msgstr "" +msgstr "OPT_PROB_HIT" #. fWecm #: func_opt_prob_hit.xhp @@ -64625,7 +64625,7 @@ "par_id591575063908364\n" "help.text" msgid "Returns the probability that an asset hits a predetermined barrier price, assuming that the stock price can be modeled as a process S that follows the stochastic differential equation, as follows." -msgstr "" +msgstr "Returnerer sannsynligheten for at en eiendel treffer en forhåndsbestemt barrierepris, forutsatt at aksjekursen kan modelleres som en prosess S som følger den stokastiske differensialligningen, som følger." #. ZJBj2 #: func_opt_prob_hit.xhp @@ -64634,7 +64634,7 @@ "par_id21575078735992\n" "help.text" msgid "OPT_PROB_HIT equation" -msgstr "" +msgstr "OPT_PROB_HIT ekvasjonen" #. FnaCP #: func_opt_prob_hit.xhp @@ -64643,7 +64643,7 @@ "par_id821575074114118\n" "help.text" msgid "µ is the asset’s percentage drift, vol is the percentage volatility of the stock, and dW is a random sample drawn from a normal distribution with a zero mean. W is a Wiener process or Brownian motion." -msgstr "" +msgstr "µ er eiendelens prosentvise drift, vol er den prosentvise volatiliteten til aksjen, og dW er et tilfeldig utvalg trukket fra en normalfordeling med en null gjennomsnitt. W er en wienerprosess eller brownsk bevegelse." #. 9NRxu #: func_opt_prob_hit.xhp @@ -64652,7 +64652,7 @@ "par_id211575074192954\n" "help.text" msgid "OPT_PROB_HIT(Spot; Volatility; Drift; Maturity; LowerBarrier; UpperBarrier)" -msgstr "" +msgstr "OPT_PROB_HIT(Spot; Volatilitet; Drift; Forfall; Nedre Barriere; Øvre Barriere)" #. XaA8K #: func_opt_prob_hit.xhp @@ -64661,7 +64661,7 @@ "par_id901575074339820\n" "help.text" msgid "Drift is the annual stock price percentage drift rate (µ in the above formula). The value is expressed as a decimal (for example, enter 15% as 0.15)." -msgstr "" +msgstr "Drift er den årlige prosentvise avdriftsraten for aksjekursen (µ i formelen ovenfor). Verdien er uttrykt som en desimal (skriv for eksempel inn 15 % som 0,15)." #. 6yrWk #: func_opt_prob_hit.xhp @@ -64670,7 +64670,7 @@ "par_id681575073426941\n" "help.text" msgid "Strike is the strike price of the option and should be non-negative." -msgstr "" +msgstr "Strike er innløsningsprisen på opsjonen og skal være ikke-negativ." #. mHW3F #: func_opt_prob_hit.xhp @@ -64679,7 +64679,7 @@ "par_id971575074431070\n" "help.text" msgid "=OPT_PROB_HIT(30;0.2;0.3;1;0;40) returns the value 0.6119." -msgstr "" +msgstr "=OPT_PROB_HIT(30;0.2;0.3;1;0;40) returnerer verdien 0.6119." #. 3EshE #: func_opt_prob_hit.xhp @@ -64688,7 +64688,7 @@ "par_id171575074434932\n" "help.text" msgid "=OPT_PROB_HIT(70;0.3;0.1;0.5;60;0) returns the value 0.4239." -msgstr "" +msgstr "=OPT_PROB_HIT(70;0.3;0.1;0.5;60;0) returnerer verdien 0.4239." #. RFprF #: func_opt_prob_inmoney.xhp @@ -64697,7 +64697,7 @@ "tit\n" "help.text" msgid "Function OPT_PROB_INMONEY" -msgstr "" +msgstr "Funksjon OPT_PROB_INMONEY" #. QQBrZ #: func_opt_prob_inmoney.xhp @@ -64706,7 +64706,7 @@ "bm_id961575065633373\n" "help.text" msgid "OPT_PROB_INMONEY function" -msgstr "" +msgstr "OPT_PROB_INMONEY-funksjon" #. FZJEJ #: func_opt_prob_inmoney.xhp @@ -64715,7 +64715,7 @@ "hd_id941575063929082\n" "help.text" msgid "OPT_PROB_INMONEY" -msgstr "" +msgstr "OPT_PROB_INMONEY" #. QDryb #: func_opt_prob_inmoney.xhp @@ -64724,7 +64724,7 @@ "par_id941575063929083\n" "help.text" msgid "Returns the probability that an asset will end up between two barrier levels at maturity, assuming that the stock price can be modeled as a process S that follows the stochastic differential equation, as follows." -msgstr "" +msgstr "Returnerer sannsynligheten for at en eiendel havner mellom to barrierenivåer ved forfall, forutsatt at aksjekursen kan modelleres som en prosess S som følger den stokastiske differensialen ligning, som følger." #. 2GJsA #: func_opt_prob_inmoney.xhp @@ -64733,7 +64733,7 @@ "par_id21575078735992\n" "help.text" msgid "OPT_PROB_INMONEY equation" -msgstr "" +msgstr "OPT_PROB_INMONEY ekvasjonen" #. 7ja6D #: func_opt_prob_inmoney.xhp @@ -64742,7 +64742,7 @@ "par_id941575074893788\n" "help.text" msgid "µ is the asset’s percentage drift, vol is the percentage volatility of the stock, and dW is a random sample drawn from a normal distribution with a zero mean. W is a Wiener process or Brownian motion." -msgstr "" +msgstr "µ er eiendelens prosentvise drift, vol er den prosentvise volatiliteten til aksjen, og dW er et tilfeldig utvalg trukket fra en normalfordeling med en null gjennomsnitt. W er en wienerprosess eller brownsk bevegelse." #. pMCin #: func_opt_prob_inmoney.xhp @@ -64751,7 +64751,7 @@ "par_id241575075282150\n" "help.text" msgid "If the optional Strike and PutCall arguments are included, then" -msgstr "" +msgstr "Hvis de valgfrie Strike- og PutCall-argumentene er inkludert," #. vxxYT #: func_opt_prob_inmoney.xhp @@ -64760,7 +64760,7 @@ "par_id931575075314553\n" "help.text" msgid "For a call option, the function returns the probability that the asset will end up between Strike and UpperBarrier." -msgstr "" +msgstr "For en kjøpsopsjon returnerer funksjonen sannsynligheten for at eiendelen havner mellom Strike og UpperBarrier." #. UrAPw #: func_opt_prob_inmoney.xhp @@ -64769,7 +64769,7 @@ "par_id531575075321659\n" "help.text" msgid "For a put option, the function returns the probability that the asset will end up between LowerBarrier and Strike." -msgstr "" +msgstr "For en salgsopsjon returnerer funksjonen sannsynligheten for at eiendelen havner mellom LowerBarrier og Strike." #. 9VazP #: func_opt_prob_inmoney.xhp @@ -64778,7 +64778,7 @@ "par_id191575075304900\n" "help.text" msgid "The function ignores the possibility of knock-out before maturity." -msgstr "" +msgstr "Funksjonen ignorerer muligheten for knock-out før forfall." #. DHFtE #: func_opt_prob_inmoney.xhp @@ -64787,7 +64787,7 @@ "par_id761575075027094\n" "help.text" msgid "OPT_PROB_INMONEY(Spot; Volatility; Drift; Maturity; LowerBarrier; UpperBarrier [; Strike [; PutCall]])" -msgstr "" +msgstr "OPT_PROB_INMONEY(Spot; Volatilitet; Drift; Forfall; Nedre Barriere; Øvre Barriere [; Strike [; PutCall]])" #. mE6CG #: func_opt_prob_inmoney.xhp @@ -64796,7 +64796,7 @@ "par_id601575074993334\n" "help.text" msgid "=OPT_PROB_INMONEY(30;0.2;0.1;1;0;50) returns the value 0.9844." -msgstr "" +msgstr "=OPT_PROB_INMONEY(30;0.2;0.1;1;0;50) returnerer verdien 0,9844." #. K7AED #: func_opt_prob_inmoney.xhp @@ -64805,7 +64805,7 @@ "par_id261575074997216\n" "help.text" msgid "=OPT_PROB_INMONEY(70;0.3;0.15;1;60;0;80;\"p\") returns the value 0.3440." -msgstr "" +msgstr "=OPT_PROB_INMONEY(70;0.3;0.15;1;60;0;80;\"p\") returnerer verdien 0.3440." #. muQEH #: func_opt_touch.xhp @@ -64814,7 +64814,7 @@ "tit\n" "help.text" msgid "OPT_TOUCH" -msgstr "" +msgstr "OPT_TOUCH" #. r3Awi #: func_opt_touch.xhp @@ -64823,7 +64823,7 @@ "bm_id951575065400504\n" "help.text" msgid "OPT_TOUCH function" -msgstr "" +msgstr "OPT_TOUCH-funksjon" #. VoAwu #: func_opt_touch.xhp @@ -64832,7 +64832,7 @@ "hd_id41575062825964\n" "help.text" msgid "OPT_TOUCH" -msgstr "" +msgstr "OPT_TOUCH" #. HwW6c #: func_opt_touch.xhp @@ -64841,7 +64841,7 @@ "par_id531575062825965\n" "help.text" msgid "Returns the pricing of a touch / no-touch option, calculated using the Black-Scholes option pricing model." -msgstr "" +msgstr "Returnerer prisen for et berørings-/ikke-berøringsalternativ, beregnet ved hjelp av Black-Scholes opsjonsprismodell." #. fCDgD #: func_opt_touch.xhp @@ -64850,7 +64850,7 @@ "par_id371575066515276\n" "help.text" msgid "For relevant background information, visit the Options (finance) and Black-Scholes model Wikipedia pages." -msgstr "" +msgstr "For relevant bakgrunnsinformasjon, besøk Opsjoner (finans) og Black-Scholes-modell Wikipedia-sider." #. 29Wsy #: func_opt_touch.xhp @@ -64859,7 +64859,7 @@ "par_id571575080642652\n" "help.text" msgid "Further information about touch / no-touch options may be found on many financial websites." -msgstr "" +msgstr "Ytterligere informasjon om touch / no-touchalternativer kan finnes på mange finansielle nettsteder." #. V3nnz #: func_opt_touch.xhp @@ -64868,7 +64868,7 @@ "par_id151575063296819\n" "help.text" msgid "OPT_TOUCH(Spot; Volatility; Rate; ForeignRate; Maturity; LowerBarrier; UpperBarrier; ForeignDomestic; InOut; BarrierMonitoring [; Greek])" -msgstr "" +msgstr "OPT_TOUCH(Spot; Volatilitet; Rate; Utenlandsk Rate; Forfall; Nedre Barriere; Øvre Barriere; Utenlandsk; InOut; Barriereovervåking [; gresk])" #. 6rD5u #: func_opt_touch.xhp @@ -64877,7 +64877,7 @@ "par_id321575066304659\n" "help.text" msgid "Spot is the price / value of the underlying asset and should be greater than 0.0." -msgstr "" +msgstr "Spot er prisen/verdien av det underliggende aktivaet og bør være større enn 0,0." #. CoALG #: func_opt_touch.xhp @@ -64886,7 +64886,7 @@ "par_id31575066315078\n" "help.text" msgid "Volatility is the annual percentage volatility of the underlying asset expressed as a decimal (for example, enter 30% as 0.3). The value should be greater than 0.0." -msgstr "" +msgstr "Volatilitet er den årlige prosentvise volatiliteten til den underliggende eiendelen uttrykt som en desimal (skriv for eksempel 30 % som 0,3). Verdien skal være større enn 0,0." #. iCEkw #: func_opt_touch.xhp @@ -64895,7 +64895,7 @@ "par_id681575066324254\n" "help.text" msgid "Rate is the continuously compounded interest rate. This is a percentage expressed as a decimal (for example, enter 40% as 0.4)." -msgstr "" +msgstr "Rate er den kontinuerlige rentesatsen. Dette er en prosentandel uttrykt som en desimal (skriv for eksempel inn 40 % som 0,4)." #. eoG8E #: func_opt_touch.xhp @@ -64904,7 +64904,7 @@ "par_id71575066333773\n" "help.text" msgid "ForeignRate is the continuously compounded foreign interest rate. This is a percentage expressed as a decimal (for example, enter 50% as 0.5)." -msgstr "" +msgstr "ForeignRate er den kontinuerlig sammensatte utenlandske renten. Dette er en prosentandel uttrykt som en desimal (skriv for eksempel inn 50 % som 0,5)." #. hzfJp #: func_opt_touch.xhp @@ -64913,7 +64913,7 @@ "par_id21575066338734\n" "help.text" msgid "Maturity is the time to maturity of the option, in years, and should be non-negative." -msgstr "" +msgstr "Forfall er tiden til forfall for opsjonen, i år, og skal være ikke-negativ." #. Gksbz #: func_opt_touch.xhp @@ -64922,7 +64922,7 @@ "par_id671575066343182\n" "help.text" msgid "LowerBarrier is the predetermined lower barrier price; set to zero for no lower barrier." -msgstr "" +msgstr "LowerBarrier er den forhåndsbestemte lavere barriereprisen; satt til null for ingen lavere barriere." #. KDTDW #: func_opt_touch.xhp @@ -64931,7 +64931,7 @@ "par_id301575066347357\n" "help.text" msgid "UpperBarrier is the predetermined upper barrier price; set to zero for no upper barrier." -msgstr "" +msgstr "UpperBarrier er den forhåndsbestemte øvre barriereprisen; satt til null for ingen øvre barriere." #. oVmg7 #: func_opt_touch.xhp @@ -64940,7 +64940,7 @@ "par_id561575066355924\n" "help.text" msgid "ForeignDomestic is a string that defines whether the option pays domestic (“d”) or foreign (“f”) currency." -msgstr "" +msgstr "ForeignDomestic er en streng som definerer om alternativet betaler innenlandsk (“d”) eller utenlandsk (“f”) valuta." #. zTRA2 #: func_opt_touch.xhp @@ -64949,7 +64949,7 @@ "par_id251575066360596\n" "help.text" msgid "InOut is a string that defines whether the option is knock-in (“i”) or knock-out (“o”)." -msgstr "" +msgstr "InOut er en streng som definerer om alternativet er knock-in (“i”) eller knock-out (“o”)." #. AsXAj #: func_opt_touch.xhp @@ -64958,7 +64958,7 @@ "par_id861575066366861\n" "help.text" msgid "BarrierMonitoring is a string that defines whether the barrier is monitored continuously (“c”) or only at the end / maturity (“e”)." -msgstr "" +msgstr "BarrierMonitoring er en streng som definerer om barrieren overvåkes kontinuerlig (“c”) eller bare ved slutten/forfall (“e”)." #. xyF8R #: func_opt_touch.xhp @@ -64967,7 +64967,7 @@ "par_id721575066374340\n" "help.text" msgid "Greek (optional) is a string argument. If omitted or set to “value”, “v”, “price”, or “p”, then the function simply returns the option price. If another valid string is entered, the function returns price sensitivities (Greeks) to one of the input parameters. The valid options in this case are as follows." -msgstr "" +msgstr "Gresk (valgfritt) er et strengargument. Hvis den er utelatt eller satt til \"verdi\", \"v\", \"pris\" eller \"p\", returnerer funksjonen ganske enkelt opsjonsprisen. Hvis en annen gyldig streng legges inn, returnerer funksjonen prisfølsomheter (grekere) til en av inngangsparameterne. De gyldige alternativene i dette tilfellet er som følger." #. NhW28 #: func_opt_touch.xhp @@ -64976,7 +64976,7 @@ "par_id951575063536153\n" "help.text" msgid "“delta” or “d”." -msgstr "" +msgstr "“delta” eller “d”." #. DVKPe #: func_opt_touch.xhp @@ -64985,7 +64985,7 @@ "par_id361575063554232\n" "help.text" msgid "“gamma” or “g”." -msgstr "" +msgstr "“gamma” eller “g”." #. mY7eD #: func_opt_touch.xhp @@ -64994,7 +64994,7 @@ "par_id961575063563017\n" "help.text" msgid "“theta” or “t”." -msgstr "" +msgstr "“theta” eller “t”." #. 7BNpN #: func_opt_touch.xhp @@ -65003,7 +65003,7 @@ "par_id971575063570632\n" "help.text" msgid "“vega” or “e”." -msgstr "" +msgstr "“vega” eller “e”." #. F4AQk #: func_opt_touch.xhp @@ -65012,7 +65012,7 @@ "par_id631575063580705\n" "help.text" msgid "“volga” or “o”." -msgstr "" +msgstr "“volga” eller “o”." #. DcBfK #: func_opt_touch.xhp @@ -65021,7 +65021,7 @@ "par_id981575063594505\n" "help.text" msgid "“vanna” or “a”." -msgstr "" +msgstr "“vanna” eller “a”." #. vjCq4 #: func_opt_touch.xhp @@ -65030,7 +65030,7 @@ "par_id191575063598656\n" "help.text" msgid "“rho” or “r”." -msgstr "" +msgstr "“rho” eller “r”." #. NGCqj #: func_opt_touch.xhp @@ -65039,7 +65039,7 @@ "par_id751575063602288\n" "help.text" msgid "“rhof” or “f”." -msgstr "" +msgstr "“rhof” eller “f”." #. U7QqM #: func_opt_touch.xhp @@ -65048,7 +65048,7 @@ "par_id181575063666675\n" "help.text" msgid "=OPT_TOUCH(50;0.25;0.05;0;1;0;55;\"d\";\"i\";\"c\") returns the value 0.6876." -msgstr "" +msgstr "=OPT_TOUCH(50;0.25;0.05;0;1;0;55;\"d\";\"i\";\"c\") returnerer verdien 0,6876." #. 8JFD4 #: func_opt_touch.xhp @@ -65057,7 +65057,7 @@ "par_id811575063677250\n" "help.text" msgid "=OPT_TOUCH(80;0.2;0.05;0;0.5;60;0;\"f\";\"o\";\"c\";\"r\") returns the value 15.5516." -msgstr "" +msgstr "=OPT_TOUCH(80;0.2;0.05;0;0.5;60;0;\"f\";\"o\";\"c\";\"r\") returnerer verdien 15.5516." #. ychjG #: func_opt_touch.xhp @@ -65066,7 +65066,7 @@ "par_id121575125779535\n" "help.text" msgid "Financial Functions Part One" -msgstr "" +msgstr "Finansielle funksjoner del én" #. aX7LC #: func_opt_touch.xhp @@ -65075,7 +65075,7 @@ "par_id251575125873714\n" "help.text" msgid "Financial Functions Part Two" -msgstr "" +msgstr "Økonomiske funksjoner del to" #. Q7SFh #: func_opt_touch.xhp @@ -65084,7 +65084,7 @@ "par_id191575125878595\n" "help.text" msgid "Financial Functions Part Three" -msgstr "" +msgstr "Finansielle funksjoner del tre" #. zr5G3 #: func_rawsubtract.xhp @@ -65093,7 +65093,7 @@ "tit\n" "help.text" msgid "RAWSUBTRACT function" -msgstr "" +msgstr "RAWSUBTRACT-funksjon" #. JTmpK #: func_rawsubtract.xhp @@ -65102,7 +65102,7 @@ "bm_2016112109230\n" "help.text" msgid "rawsubtract;subtraction RAWSUBTRACT function" -msgstr "" +msgstr "rawsubtract;subtraksjon RAWSUBTRACT-funksjon" #. e3VEx #: func_rawsubtract.xhp @@ -65111,7 +65111,7 @@ "hd_2016112109231\n" "help.text" msgid "RAWSUBTRACT" -msgstr "" +msgstr "RAWSUBTRACT" #. CoCx7 #: func_rawsubtract.xhp @@ -65120,7 +65120,7 @@ "par_2016112109232\n" "help.text" msgid "Subtracts a set of numbers and gives the result without eliminating small roundoff errors." -msgstr "" +msgstr "Trtrekker et sett med tall og gir resultatet uten å eliminere små avrundingsfeil." #. DZTdg #: func_rawsubtract.xhp @@ -65129,7 +65129,7 @@ "par_2016112109233\n" "help.text" msgid "RAWSUBTRACT(Minuend; Subtrahend 1[; Subtrahend 2][; … ;[ Subtrahend 254]])" -msgstr "" +msgstr "RAWSUBTRACT(Minuend; Subtrahend 1[; Subtrahend 2][; … ;[ Subtrahend 254]])" #. 7mBFv #: func_rawsubtract.xhp @@ -65138,7 +65138,7 @@ "par_2016112109234\n" "help.text" msgid "Minuend is a number or a reference to a cell containing a number." -msgstr "" +msgstr "Minuend er et tall eller en referanse til en celle som inneholder et tall." #. nFADC #: func_rawsubtract.xhp @@ -65147,7 +65147,7 @@ "par_id241585352178687\n" "help.text" msgid "Subtrahend 1[; Subtrahend 2][; ... ;[ Subtrahend 254]] are numbers or references to cells containing numbers." -msgstr "" +msgstr "Subtrahend 1[; Subtrahend 2][; ... ;[ Subtrahend 254]] er tall eller referanser til celler som inneholder tall." #. 7ciz5 #: func_rawsubtract.xhp @@ -65156,7 +65156,7 @@ "par_2016112109235\n" "help.text" msgid "The function should be called with at least two parameters." -msgstr "" +msgstr "Funksjonen skal anropes med minst to parametere." #. CA68H #: func_rawsubtract.xhp @@ -65165,7 +65165,7 @@ "par_id271624030692893\n" "help.text" msgid "RAWSUBTRACT() processes arguments from left to right. For example, RAWSUBTRACT(1;2;3;4) calculates 1-2-3-4 or ((1-2)-3)-4 in \"natural\" order." -msgstr "" +msgstr "RAWSUBTRACT() behandler argumenter fra venstre til høyre. For eksempel beregner RAWSUBTRACT(1;2;3;4) 1-2-3-4 eller ((1-2)-3)-4 i \"naturlig\" rekkefølge." #. hANRQ #: func_rawsubtract.xhp @@ -65174,7 +65174,7 @@ "par_2016112109236\n" "help.text" msgid "=RAWSUBTRACT(0.987654321098765, 0.9876543210987) returns 6.53921361504217E-14" -msgstr "" +msgstr "=RAWSUBTRACT(0,987654321098765, 0,9876543210987) returnerer 6,53921361504217E-14" #. bgohX #: func_rawsubtract.xhp @@ -65183,7 +65183,7 @@ "par_2016112109237\n" "help.text" msgid "=RAWSUBTRACT(0.987654321098765) returns Err:511 (Missing variable) because RAWSUBTRACT requires a minimum of two numbers." -msgstr "" +msgstr "=RAWSUBTRACT(0,987654321098765) returnerer Err:511 (mangler variabel) fordi RAWSUBTRACT krever minimum to tall." #. d9DP3 #: func_regex.xhp @@ -65192,7 +65192,7 @@ "tit\n" "help.text" msgid "REGEX Function" -msgstr "" +msgstr "REGEX-funksjon" #. yZJB8 #: func_regex.xhp @@ -65201,7 +65201,7 @@ "bm_id831542233029549\n" "help.text" msgid "REGEX function regular expressions;extracting in spreadsheets regular expressions;REGEX function" -msgstr "" +msgstr "REGEX-funksjon regulære uttrykk;ekstrahere i regneark regulære uttrykk;REGEX-funksjon" #. nqtH7 #: func_regex.xhp @@ -65210,7 +65210,7 @@ "hd_id961542230672100\n" "help.text" msgid "REGEX" -msgstr "" +msgstr "REGEX" #. uTy7w #: func_regex.xhp @@ -65219,7 +65219,7 @@ "par_id541542230672101\n" "help.text" msgid "Matches and extracts or optionally replaces text using regular expressions." -msgstr "" +msgstr "Sammenser og trekker ut eller erstatter tekst ved hjelp av regulære uttrykk." #. k7Cxh #: func_regex.xhp @@ -65228,7 +65228,7 @@ "par_id701542231253817\n" "help.text" msgid "REGEX( Text ; Expression [ ; [ Replacement ] [ ; Flags|Occurrence ] ] )" -msgstr "" +msgstr "REGEX( Tekst ; Uttrykk [ ; [ Erstatning ] [ ; Flagg|Forekomst ] ] )" #. VbMmQ #: func_regex.xhp @@ -65237,7 +65237,7 @@ "par_id621542232197446\n" "help.text" msgid "Text: A text or reference to a cell where the regular expression is to be applied." -msgstr "" +msgstr "Tekst: En tekst eller referanse til en celle der det regulære uttrykket skal brukes." #. ip9wk #: func_regex.xhp @@ -65246,7 +65246,7 @@ "par_id211542232209275\n" "help.text" msgid "Expression: A text representing the regular expression, using ICU regular expressions. If there is no match and Replacement is not given, #N/A is returned." -msgstr "" +msgstr "Uttrykk: En tekst som representerer det regulære uttrykket, ved hjelp av ICU regulære uttrykk. Hvis det ikke er noe samsvar og Erstatning ikke er gitt, returneres #N/A." #. ZBTYi #: func_regex.xhp @@ -65255,7 +65255,7 @@ "par_id581542232755604\n" "help.text" msgid "Replacement: Optional. The replacement text and references to capture groups. If there is no match, Text is returned unmodified." -msgstr "" +msgstr "Erstatning: Valgfritt. Erstatningsteksten og referanser til fangstgrupper. Hvis det ikke er samsvar, returneres Tekst uendret." #. V55JH #: func_regex.xhp @@ -65264,7 +65264,7 @@ "par_id421542232246840\n" "help.text" msgid "Flags: Optional. \"g\" replaces all matches of Expression in Text, not extracted. If there is no match, Text is returned unmodified." -msgstr "" +msgstr "Flagg: Valgfritt. \"g\" erstatter alle samsvar med Uttrykk i tekst, ikke trukket ut. Hvis det ikke er samsvar, returneres Tekst uendret." #. GPGFT #: func_regex.xhp @@ -65273,7 +65273,7 @@ "par_id421542232246841\n" "help.text" msgid "Occurrence: Optional. Number to indicate which match of Expression in Text is to be extracted or replaced. If there is no match and Replacement is not given, #N/A is returned. If there is no match and Replacement is given, Text is returned unmodified. If Occurrence is 0, Text is returned unmodified." -msgstr "" +msgstr "Forekomst: Valgfritt. Nummer som indikerer hvilket samsvar av Uttrykk i tekst som skal trekkes ut eller erstattes. Hvis det ikke er noe samsvar og Erstatning ikke er gitt, returneres #N/A. Hvis det ikke er noe samsvar og Erstatning er gitt, returneres Tekst uendret. Hvis Forekomst er 0, returneres Tekst uendret." #. AFjHj #: func_regex.xhp @@ -65282,7 +65282,7 @@ "par_id371542291684176\n" "help.text" msgid "=REGEX(\"123456ABCDEF\";\"[:digit:]\";\"Z\") returns \"Z23456ABCDEF\", where the first match of a digit is replaced by \"Z\"." -msgstr "" +msgstr "=REGEX(\"123456ABCDEF\";\"[:siffer:]\";\"Z\") returnerer \"Z23456ABCDEF\", der det første treffet i et siffer erstattes med \"Z\"." #. aDqow #: func_regex.xhp @@ -65291,7 +65291,7 @@ "par_id891542291697194\n" "help.text" msgid "=REGEX(\"123456ABCDEF\";\"[:digit:]\";\"Z\";\"g\") returns \"ZZZZZZABCDEF\", where all digits were replaced by \"Z\"." -msgstr "" +msgstr "=REGEX(\"123456ABCDEF\";\"[:siffer:]\";\"Z\";\"g\") returnerer \"ZZZZZZABCDEF\", der alle sifre ble erstattet med \"Z\"." #. gP9wd #: func_regex.xhp @@ -65300,7 +65300,7 @@ "par_id21542291705695\n" "help.text" msgid "=REGEX(\"123456ABCDEF\";\"[126]\";\"\";\"g\") returns \"345ABCDEF\", where any occurrence of \"1\", \"2\" or \"6\" is replaced by the empty string, thus deleted." -msgstr "" +msgstr "=REGEX(\"123456ABCDEF\";\"[126]\";\"\";\"g\") returnerer \"345ABCDEF\", der enhver forekomst av \"1\", \"2\" eller \" 6\" erstattes av den tomme strengen, og dermed slettet." #. ZjpCF #: func_regex.xhp @@ -65309,7 +65309,7 @@ "par_id371542291684177\n" "help.text" msgid "=REGEX(\"axbxcxd\";\".x\";;2) returns \"bx\", the second match of \".x\"." -msgstr "" +msgstr "=REGEX(\"axbxcxd\";\".x\";;2) returnerer \"bx\", det andre treffet for \".x\"." #. UBU7G #: func_regex.xhp @@ -65318,7 +65318,7 @@ "par_id371542291684178\n" "help.text" msgid "=REGEX(\"axbxcxd\";\"(.)x\";\"$1y\";2) returns \"axbycxd\", the second match of \"(.)x\" (i.e. \"bx\") replaced with the captured group of one character (i.e. \"b\") followed by \"y\"." -msgstr "" +msgstr "=REGEX(\"axbxcxd\";\"(.)x\";\"$1y\";2) returnerer \"axbycxd\", det andre treffet til \"(.)x\" (dvs. \"bx\") erstattet med den fangede gruppen av ett tegn (dvs. \"b\") etterfulgt av \"y\"." #. iLhWA #: func_regex.xhp @@ -65327,7 +65327,7 @@ "par_id711542233602553\n" "help.text" msgid "List of regular expressions" -msgstr "" +msgstr "Liste over regulære uttrykk" #. 3b5yP #: func_regex.xhp @@ -65336,7 +65336,7 @@ "par_id431542233650614\n" "help.text" msgid "ICU regular expressions" -msgstr "" +msgstr "ICU regulære uttrykk" #. B64FM #: func_replaceb.xhp @@ -65345,7 +65345,7 @@ "tit\n" "help.text" msgid "REPLACEB Function" -msgstr "" +msgstr "ERSTATTB Funksjon" #. GfVed #: func_replaceb.xhp @@ -65354,7 +65354,7 @@ "bm_id141573508995071\n" "help.text" msgid "REPLACEB Function replace text;REPLACEB Function" -msgstr "" +msgstr "REPLACEB-funksjon erstatt tekst;REPLACEB-funksjon" #. FH3yx #: func_replaceb.xhp @@ -65363,7 +65363,7 @@ "hd_id771573508637966\n" "help.text" msgid "REPLACEB" -msgstr "" +msgstr "REPLACEB" #. djAL7 #: func_replaceb.xhp @@ -65372,7 +65372,7 @@ "par_id831573508637970\n" "help.text" msgid "Returns text where an old text is replaced with a new text, using byte positions." -msgstr "" +msgstr "Returnerer tekst der en gammel tekst er erstattet med en ny tekst, ved hjelp av byteposisjoner." #. Fd4SC #: func_replaceb.xhp @@ -65381,7 +65381,7 @@ "par_id701542231253817\n" "help.text" msgid "REPLACEB( Text ; Position ; Length ; NewText )" -msgstr "" +msgstr "REPLACEB( Tekst ; Posisjon ; Lengde ; Ny tekst )" #. uBLSC #: func_replaceb.xhp @@ -65390,7 +65390,7 @@ "par_id331573510857418\n" "help.text" msgid "Text: A text expression or reference to a cell containing a text expression in which the bytes are to be replaced." -msgstr "" +msgstr "Tekst: Et tekstuttrykk eller referanse til en celle som inneholder et tekstuttrykk der bytene skal erstattes." #. 9a6mz #: func_replaceb.xhp @@ -65399,7 +65399,7 @@ "par_id431573510862075\n" "help.text" msgid "Position: the byte position from which text is to be replaced." -msgstr "" +msgstr "Posisjon: byteposisjonen som teksten skal erstattes fra." #. AsHs8 #: func_replaceb.xhp @@ -65408,7 +65408,7 @@ "par_id481573510866260\n" "help.text" msgid "Length: the number of bytes to be replaced." -msgstr "" +msgstr "Lengde: antall byte som skal erstattes." #. UuACG #: func_replaceb.xhp @@ -65417,7 +65417,7 @@ "par_id911573510871412\n" "help.text" msgid "NewText: the text to be inserted." -msgstr "" +msgstr "Nytekst: teksten som skal settes inn." #. QH3SH #: func_replaceb.xhp @@ -65426,7 +65426,7 @@ "par_id431573515742206\n" "help.text" msgid "=REPLACEB(\"ᄩᄔᄕᄜᄝᄞᄠᄢᄣᄫᄬᄭᄮᄯᄲᄶ\";4;1;\"ab\") returns \"ᄩ abᄕᄜᄝᄞᄠᄢᄣᄫᄬᄭᄮᄯᄲᄶ\" ." -msgstr "" +msgstr "=REPLACEB(\"ᄩᄔᄕᄜᄝᄞᄠᄢᄣᄫᄬᄭᄮᄯᄲᄶ\";4;1;\"ab\") returnerer \"ᄩ abᄕᄜᄝᄞᄠᄢᄣᄫᄬᄭᄮᄯᄲᄶ\" ." #. 4yxc9 #: func_replaceb.xhp @@ -65435,7 +65435,7 @@ "par_id721626381053212\n" "help.text" msgid "Refer to the REPLACEB wiki page for more details about this function." -msgstr "" +msgstr "Se wikisiden REPLACEB for mer informasjon om denne funksjonen." #. FuCCt #: func_roman.xhp @@ -65444,7 +65444,7 @@ "tit\n" "help.text" msgid "ROMAN Function" -msgstr "" +msgstr "ROMAN Funksjon" #. JqcvP #: func_roman.xhp @@ -65453,7 +65453,7 @@ "bm_id831542233029549\n" "help.text" msgid "ROMAN function text functions;convert to roman numbers" -msgstr "" +msgstr "ROMAN Funksjon tekstfunksjoner;konverter til romerske tall" #. aXrXe #: func_roman.xhp @@ -65462,7 +65462,7 @@ "hd_id881628776094597\n" "help.text" msgid "ROMAN" -msgstr "" +msgstr "ROMAN" #. pdMgk #: func_roman.xhp @@ -65471,7 +65471,7 @@ "par_id541542230672101\n" "help.text" msgid "Converts a number into a Roman numeral. The value range must be between 0 and 3999. A simplification mode can be specified in the range from 0 to 4." -msgstr "" +msgstr "Konverterer et tall til et romertall. Verdiområdet må være mellom 0 og 3999. En forenklingsmodus kan angis i området fra 0 til 4." #. tRsoC #: func_roman.xhp @@ -65480,7 +65480,7 @@ "par_id701542231253817\n" "help.text" msgid "ROMAN(Number [; Mode])" -msgstr "" +msgstr "ROMAN(Tall [; Modus])" #. rz4bH #: func_roman.xhp @@ -65489,7 +65489,7 @@ "par_id621542232197446\n" "help.text" msgid "Number: the number that is to be converted into a Roman numeral." -msgstr "" +msgstr "Tall: tallet som skal konverteres til et romertall." #. bfvWL #: func_roman.xhp @@ -65498,7 +65498,7 @@ "par_id621542232197337\n" "help.text" msgid "Mode: optional value ranging between 0 to 4 that indicates the degree of simplification to be used in the conversion. The higher the value, the greater is the simplification of the Roman number." -msgstr "" +msgstr "Modus: valgfri verdi fra 0 til 4 som indikerer graden av forenkling som skal brukes i konverteringen. Jo høyere verdi, jo større er forenklingen av det romerske tallet." #. BBUCq #: func_roman.xhp @@ -65507,7 +65507,7 @@ "par_id451628776707264\n" "help.text" msgid "=ROMAN(999) returns \"CMXCIX\" (uses simplification mode equal to zero, which is the default)." -msgstr "" +msgstr "=ROMAN(999) returnerer \"CMXCIX\" (bruker forenklingsmodus lik null, som er standard)." #. mBktA #: func_roman.xhp @@ -65516,7 +65516,7 @@ "par_id101628778036375\n" "help.text" msgid "=ROMAN(999;0) returns \"CMXCIX\"." -msgstr "" +msgstr "=ROMAN(999;0) returnerer \"CMXCIX\"." #. fGqPj #: func_roman.xhp @@ -65525,7 +65525,7 @@ "par_id101628778036134\n" "help.text" msgid "=ROMAN(999;1) returns \"LMVLIV\"." -msgstr "" +msgstr "=ROMAN(999;1) returnerer \"LMVLIV\"." #. qBbFo #: func_roman.xhp @@ -65534,7 +65534,7 @@ "par_id101628778036278\n" "help.text" msgid "=ROMAN(999;2) returns \"XMIX\"." -msgstr "" +msgstr "=ROMAN(999;2) returnerer \"XMIX\"." #. AY5jP #: func_roman.xhp @@ -65543,7 +65543,7 @@ "par_id101628778036364\n" "help.text" msgid "=ROMAN(999;3) returns \"VMIV\"." -msgstr "" +msgstr "=ROMAN(999;3) returnerer \"VMIV\"." #. B2aqT #: func_roman.xhp @@ -65552,7 +65552,7 @@ "par_id101628778036008\n" "help.text" msgid "=ROMAN(999;4) returns \"IM\"." -msgstr "" +msgstr "=ROMAN(999;4) returnerer \"IM\"." #. CBuwx #: func_roman.xhp @@ -65561,7 +65561,7 @@ "par_id101628778036019\n" "help.text" msgid "=ROMAN(0) returns \"\" (empty text)." -msgstr "" +msgstr "=ROMAN(0) returnerer \"\" (tom tekst)." #. aU68a #: func_rounddown.xhp @@ -65570,7 +65570,7 @@ "tit\n" "help.text" msgid "ROUNDDOWN function" -msgstr "" +msgstr "ROUNDDOWN funksjon" #. riRPe #: func_rounddown.xhp @@ -65579,7 +65579,7 @@ "bm_id3156384\n" "help.text" msgid "ROUNDDOWN function numbers;rounding down" -msgstr "" +msgstr "ROUNDDOWN funksjon tall; avrunding nedover" #. bsAG8 #: func_rounddown.xhp @@ -65588,7 +65588,7 @@ "hd_id601641846107898\n" "help.text" msgid "ROUNDDOWN function" -msgstr "" +msgstr "ROUNDDOWN funksjon" #. dFaB6 #: func_rounddown.xhp @@ -65597,7 +65597,7 @@ "par_id841641927277474\n" "help.text" msgid "Rounds down a number while keeping a specified number of decimal digits." -msgstr "" +msgstr "Runder ned et tall mens du beholder et spesifisert antall desimaler." #. wLYBe #: func_rounddown.xhp @@ -65606,7 +65606,7 @@ "par_id701642530512560\n" "help.text" msgid "This function is equivalent to the TRUNC function." -msgstr "" +msgstr "Denne funksjonen tilsvarer TRUNC-funksjonen." #. soLKp #: func_rounddown.xhp @@ -65615,7 +65615,7 @@ "par_id341641927560587\n" "help.text" msgid "ROUNDDOWN(Number [; Count])" -msgstr "" +msgstr "ROUNDDOWN(Tall [; Antall])" #. zMhAG #: func_rounddown.xhp @@ -65624,7 +65624,7 @@ "par_id11641927688319\n" "help.text" msgid "Number: The number to be rounded down." -msgstr "" +msgstr "Tall: Tallet som skal avrundes nedover." #. CkVAE #: func_rounddown.xhp @@ -65633,7 +65633,7 @@ "par_id861641927715672\n" "help.text" msgid "Count: Optional parameter that defines the number of decimal places to be kept. The default value is 0 (zero)." -msgstr "" +msgstr "Antal: Valgfri parameter som definerer antall desimaler som skal beholdes. Standardverdien er 0 (null)." #. rJEFs #: func_rounddown.xhp @@ -65642,7 +65642,7 @@ "par_id911641928545976\n" "help.text" msgid "Use negative values for Count to round the integer part of the original Number. For example, -1 will round down the first integer number before the decimal separator, -2 will round down the two integer numbers before the decimal separator, and so forth." -msgstr "" +msgstr "Bruk negative verdier for Antal for å runde av heltallsdelen av det opprinnelige tallet. For eksempel vil -1 runde ned det første heltallet før desimalskilletegnet, -2 vil runde ned de to heltallstallet før desimalskilletegnet, og så videre." #. GFCDG #: func_rounddown.xhp @@ -65651,7 +65651,7 @@ "par_id181641929609906\n" "help.text" msgid "In %PRODUCTNAME, the Count parameter is optional, whereas in Microsoft Excel this parameter is mandatory. When an ODS file contains a call to ROUNDDOWN without the Count parameter and the file is exported to XLS or XLSX formats, the missing argument will automatically be added with value zero to maintain compatibility." -msgstr "" +msgstr "I %PRODUCTNAME er parameteren Count valgfri, mens denne parameteren er obligatorisk i Microsoft Excel. Når en ODS-fil inneholder et kall til ROUNDDOWN uten parameteren Count og filen eksporteres til XLS- eller XLSX-formater, vil det manglende argumentet automatisk bli lagt til med verdien null for å opprettholde kompatibiliteten." #. BCmT8 #: func_rounddown.xhp @@ -65660,7 +65660,7 @@ "par_id901641928192870\n" "help.text" msgid "=ROUNDDOWN(21.89) returns 21. Note that this example uses the default value for Count which is 0." -msgstr "" +msgstr "=ROUNDDOWN(21,89) returnerer 21. Merk at dette eksemplet bruker standardverdien for Count som er 0." #. aGJYK #: func_rounddown.xhp @@ -65669,7 +65669,7 @@ "par_id901641928192110\n" "help.text" msgid "=ROUNDDOWN(103.37,1) returns 103.3." -msgstr "" +msgstr "=ROUNDDOWN(103.37,1) returnerer 103.3." #. bzN7A #: func_rounddown.xhp @@ -65678,7 +65678,7 @@ "par_id171641928456743\n" "help.text" msgid "=ROUNDDOWN(0.664,2) returns 0.66." -msgstr "" +msgstr "=ROUNDDOWN(0.664,2) returnerer 0.66." #. e4fx9 #: func_rounddown.xhp @@ -65687,7 +65687,7 @@ "par_id641641928712287\n" "help.text" msgid "=ROUNDDOWN(214.2,-1) returns 210. Note the negative value for Count, which causes the first integer value before the decimal separator to be rounded towards zero." -msgstr "" +msgstr "=ROUNDDOWN(214.2,-1) returnerer 210. Legg merke til den negative verdien for Count, som gjør at den første heltallsverdien før desimalskilletegnet blir avrundet mot null." #. E7heY #: func_roundsig.xhp @@ -65696,7 +65696,7 @@ "tit\n" "help.text" msgid "ROUNDSIG Function" -msgstr "" +msgstr "ROUNDSIG Funksjon" #. XV5Md #: func_roundsig.xhp @@ -65705,7 +65705,7 @@ "bm_id151519154954070\n" "help.text" msgid "ROUNDSIG Function" -msgstr "" +msgstr "ROUNDSIG Funksjon" #. 9awrC #: func_roundsig.xhp @@ -65714,7 +65714,7 @@ "hd_id351519154702177\n" "help.text" msgid "ROUNDSIG" -msgstr "" +msgstr "ROUNDSIG" #. jJKBA #: func_roundsig.xhp @@ -65723,7 +65723,7 @@ "par_id921519154702177\n" "help.text" msgid "Returns a number rounded to a specified number of significant decimal digits of its normalized floating point notation." -msgstr "" +msgstr "Returnerer et tall avrundet til et spesifisert antall signifikante desimalsiffer i dens normaliserte flyttallsnotasjon." #. 3EaJu #: func_roundsig.xhp @@ -65732,7 +65732,7 @@ "par_id291519155534115\n" "help.text" msgid "ROUNDSIG( Value; Digits )" -msgstr "" +msgstr "ROUNDSIG( Verdi; Desimaler)" #. BBtjx #: func_roundsig.xhp @@ -65741,7 +65741,7 @@ "par_id51519155217204\n" "help.text" msgid "Value: the number to be rounded." -msgstr "" +msgstr "Verdi: tallet som skal avrundes." #. cKLrn #: func_roundsig.xhp @@ -65750,7 +65750,7 @@ "par_id321519155209912\n" "help.text" msgid "Digits: the number of decimal places to round." -msgstr "" +msgstr "Siffer: antall desimaler som skal avrundes." #. ZuCEG #: func_roundsig.xhp @@ -65759,7 +65759,7 @@ "par_id371519155264297\n" "help.text" msgid "Digits must be an integer greater than 0." -msgstr "" +msgstr "Siffer må være et heltall større enn 0." #. FRBcJ #: func_roundsig.xhp @@ -65768,7 +65768,7 @@ "par_id691519155470333\n" "help.text" msgid "=ROUNDSIG(123.456789; 5) returns 123.46." -msgstr "" +msgstr "=ROUNDSIG(123.456789; 5) returnerer 123.46." #. 23DRM #: func_roundsig.xhp @@ -65777,7 +65777,7 @@ "par_id821519155475673\n" "help.text" msgid "=ROUNDSIG(0.000123456789; 5) returns 0.00012346" -msgstr "" +msgstr "=ROUNDSIG(0.000123456789; 5) returnerer 0.00012346" #. Gmu9z #: func_roundsig.xhp @@ -65786,7 +65786,7 @@ "par_id381519155481234\n" "help.text" msgid "=ROUNDSIG(123456789012345; 2) returns 1.2E14" -msgstr "" +msgstr "=ROUNDSIG(123456789012345; 2) returnerer 1.2E14" #. CDGCR #: func_roundsig.xhp @@ -65795,7 +65795,7 @@ "par_id231519155486155\n" "help.text" msgid "=ROUNDSIG(123456789; 4) returns 123500000 or 123.5E6" -msgstr "" +msgstr "=ROUNDSIG(123456789; 4) returnerer 123500000 or 123.5E6" #. XVftx #: func_roundsig.xhp @@ -65804,7 +65804,7 @@ "par_id51519156941987\n" "help.text" msgid "See also ROUND, MROUND, ROUNDUP, ROUNDDOWN." -msgstr "" +msgstr "Se også ROUND, MROUND, ROUNDUP, ROUNDDOWN." #. hkbrZ #: func_searchb.xhp @@ -65813,7 +65813,7 @@ "tit\n" "help.text" msgid "SEARCHB Function" -msgstr "" +msgstr "SEARCHB Funksjon" #. ennrh #: func_searchb.xhp @@ -65822,7 +65822,7 @@ "bm_id141573508995071\n" "help.text" msgid "SEARCHB Function search text;SEARCHB Function" -msgstr "" +msgstr "SEARCHB Funksjon søk tekst;SEARCHB Funksjon" #. JbAGD #: func_searchb.xhp @@ -65831,7 +65831,7 @@ "hd_id771573508637966\n" "help.text" msgid "SEARCHB" -msgstr "" +msgstr "SEARCHB" #. TySAy #: func_searchb.xhp @@ -65840,7 +65840,7 @@ "par_id831573508637970\n" "help.text" msgid "Returns the starting position of a given text, using byte positions (not case sensitive)." -msgstr "" +msgstr "Returnerer startposisjonen til en gitt tekst ved å bruke byteposisjoner (ikke skille mellom store og små bokstaver)." #. zQHHs #: func_searchb.xhp @@ -65849,7 +65849,7 @@ "par_id531573516878780\n" "help.text" msgid "SEARCHB(Find Text; Text [; Position])" -msgstr "" +msgstr "SØKB(Finn tekst; tekst [; posisjon])" #. 6Pmbf #: func_searchb.xhp @@ -65858,7 +65858,7 @@ "par_id241573517292388\n" "help.text" msgid "Find Text: The text or text expression to be found." -msgstr "" +msgstr "Finn tekst: Teksten eller tekstuttrykket som skal finne." #. ovdFE #: func_searchb.xhp @@ -65867,7 +65867,7 @@ "par_id991573517299918\n" "help.text" msgid "Text: the text in which the search is to be made." -msgstr "" +msgstr "Tekst: teksten som søket skal gjøres i." #. oDk8C #: func_searchb.xhp @@ -65876,7 +65876,7 @@ "par_id521573517305077\n" "help.text" msgid "Position: The position in the text where the search starts." -msgstr "" +msgstr "Posisjon: Posisjonen i teksten der søket starter." #. 2E7js #: func_searchb.xhp @@ -65885,7 +65885,7 @@ "par_id561573517310749\n" "help.text" msgid "=SEARCHB(\"ᄫᄬ\";\"ᄩᄔᄕᄜᄝᄞᄠgᄢᄣᄫᄬᄭᄮᄯᄲᄶ\";17) returns 20." -msgstr "" +msgstr "=SEARCHB(\"ᄫᄬ\";\"ᄩᄔᄕᄜᄝᄞᄠgᄢᄣᄫᄬᄭᄮᄯᄲᄶ\";17) returnerer 20." #. Mv5R9 #: func_second.xhp @@ -65894,7 +65894,7 @@ "tit\n" "help.text" msgid "SECOND" -msgstr "" +msgstr "SECOND" #. peiVF #: func_second.xhp @@ -65948,7 +65948,7 @@ "par_id3153350\n" "help.text" msgid "=SECOND(NOW()) returns the current second" -msgstr "" +msgstr "=SECOND(NOW()) returnerer gjeldende sekund" #. CWx25 #: func_second.xhp @@ -65957,7 +65957,7 @@ "par_id3150831\n" "help.text" msgid "=SECOND(C4) returns 17 if contents of C4 = 12:20:17." -msgstr "" +msgstr "=SECOND(C4) returnerer 17 hvis innholdet i C4 = 12:20:17." #. JBtM4 #: func_skewp.xhp @@ -65966,7 +65966,7 @@ "tit\n" "help.text" msgid "SKEWP function" -msgstr "" +msgstr "SKEWP funksjon" #. fFaLh #: func_skewp.xhp @@ -65993,7 +65993,7 @@ "par_id1102201617001848\n" "help.text" msgid "Calculates the skewness of a distribution using the population of a random variable." -msgstr "" +msgstr "Beregner skjevheten til en fordeling ved å bruke populasjonen av en tilfeldig variabel." #. FCmqL #: func_skewp.xhp @@ -66002,7 +66002,7 @@ "par_id27421466710275\n" "help.text" msgid "SKEWP()" -msgstr "" +msgstr "SKEWP()" #. Af6Mq #: func_skewp.xhp @@ -66011,7 +66011,7 @@ "par_id242131304315587\n" "help.text" msgid "The parameters should specify at least three values." -msgstr "" +msgstr "Parametrene bør angi minst tre verdier." #. Q2i35 #: func_skewp.xhp @@ -66020,7 +66020,7 @@ "par_id1102201617001888\n" "help.text" msgid "SKEWP(2;3;1;6;8;5) returns 0.2329985562" -msgstr "" +msgstr "SKEWP(2;3;1;6;8;5) returnerer 0.2329985562" #. TAGzC #: func_skewp.xhp @@ -66029,7 +66029,7 @@ "par_id1102201618185378\n" "help.text" msgid "SKEWP(A1:A6) returns 0.2329985562, when the range A1:A6 contains {2;3;1;6;8;5}" -msgstr "" +msgstr "SKEWP(A1:A6) returnerer 0,2329985562, når området A1:A6 inneholder {2;3;1;6;8;5}" #. 5iYyJ #: func_skewp.xhp @@ -66038,7 +66038,7 @@ "par_id14337286612130\n" "help.text" msgid "SKEW" -msgstr "" +msgstr "SKEW" #. mEZBk #: func_sum.xhp @@ -66047,7 +66047,7 @@ "tit\n" "help.text" msgid "SUM Function" -msgstr "" +msgstr "SUM funksjon" #. fLyVA #: func_sum.xhp @@ -66056,7 +66056,7 @@ "id431636401649762\n" "help.text" msgid "SUM function adding;numbers in cell ranges" -msgstr "" +msgstr "SUM-funksjon legger til;tall i celleområder" #. jDti4 #: func_sum.xhp @@ -66065,7 +66065,7 @@ "hd_id121636398275790\n" "help.text" msgid "SUM" -msgstr "" +msgstr "SUM" #. c32xJ #: func_sum.xhp @@ -66074,7 +66074,7 @@ "par_id491636401806866\n" "help.text" msgid "Adds a set of numbers." -msgstr "" +msgstr "Legger til et sett med tall." #. vfwu7 #: func_sum.xhp @@ -66083,7 +66083,7 @@ "par_id3163656\n" "help.text" msgid "SUM()" -msgstr "" +msgstr "SUM()" #. h8z3Q #: func_sum.xhp @@ -66092,7 +66092,7 @@ "par_id3163704\n" "help.text" msgid "=SUM(2;3;4) returns 9." -msgstr "" +msgstr "=SUM(2;3;4) returnerer 9." #. 6ohPR #: func_sum.xhp @@ -66101,7 +66101,7 @@ "par_id3151740\n" "help.text" msgid "=SUM(A1;A3;B5) calculates the sum of the three cells." -msgstr "" +msgstr "=SUM(A1;A3;B5) beregner summen av de tre cellene." #. FbQ6a #: func_sum.xhp @@ -66110,7 +66110,7 @@ "par_id931636109030406\n" "help.text" msgid "=SUM(A1:E10) calculates the sum of all cells in the A1 to E10 cell range." -msgstr "" +msgstr "=SUM(A1:E10) beregner summen av alle cellene i celleområdet A1 til E10." #. 3FkJs #: func_sum.xhp @@ -66119,7 +66119,7 @@ "par_id3151756\n" "help.text" msgid "A formula such as =SUM((A1:A40>=C1)*(A1:A40 may be entered as an array formula by pressing the Shift+Command+Ctrl+Enter keys instead of simply pressing the Enter key to finish entering the formula. The formula will then be shown in the Formula bar enclosed in braces and operates by multiplying corresponding elements of the arrays together and returning their sum." -msgstr "" +msgstr "En formel som =SUM((A1:A40>=C1)*(A1:A40 kan angis som en matriseformel ved å trykke Shift+Command+Ctrl< /switchinline>+Enter-tastene i stedet for å trykke på Enter-tasten for å fullføre inntastingen av formelen. Formelen vil da vises i formellinjen omsluttet av klammeparenteser og fungerer ved å multiplisere tilsvarende elementer i matrisene sammen og returnere summen deres." #. EYpTW #: func_sum.xhp @@ -66128,7 +66128,7 @@ "par_id661636108218550\n" "help.text" msgid "Refer to the SUM wiki page for more details about this function." -msgstr "" +msgstr "Se wikisiden SUM for mer informasjon om denne funksjonen." #. DfceH #: func_sumifs.xhp @@ -66137,7 +66137,7 @@ "tit\n" "help.text" msgid "SUMIFS function" -msgstr "" +msgstr "SUMIFS funksjon" #. jDeBL #: func_sumifs.xhp @@ -66155,7 +66155,7 @@ "hd_id658866588665886\n" "help.text" msgid "SUMIFS" -msgstr "" +msgstr "SUMIFS" #. ZEdvF #: func_sumifs.xhp @@ -66164,7 +66164,7 @@ "par_id659756597565975\n" "help.text" msgid "Returns the sum of the values of cells in a range that meets multiple criteria in multiple ranges." -msgstr "" +msgstr "Returnerer summen av verdiene til cellene i et område som oppfyller flere kriterier i flere områder." #. xhKwv #: func_sumifs.xhp @@ -66173,7 +66173,7 @@ "par_id11655988824213\n" "help.text" msgid "SUMIFS()" -msgstr "" +msgstr "SUMIFS()" #. mP5Et #: func_sumifs.xhp @@ -66182,7 +66182,7 @@ "par_id59901690530236\n" "help.text" msgid "Func_Range – required argument. It is a range of cells, a name of a named range or a label of a column or a row containing values for calculating the sum." -msgstr "" +msgstr "Func_Range – nødvendig argument. Det er et celleområde, et navn på et navngitt område eller en etikett for en kolonne eller en rad som inneholder verdier for å beregne summen." #. zahGz #: func_sumifs.xhp @@ -66191,7 +66191,7 @@ "hd_id193452436229521\n" "help.text" msgid "Simple usage" -msgstr "" +msgstr "Enkel bruk" #. tqgKL #: func_sumifs.xhp @@ -66209,7 +66209,7 @@ "par_id28647227259438\n" "help.text" msgid "Calculates the sum of values of the range B2:B6 that are greater than or equal to 20. Returns 75, because the fifth row does not meet the criterion." -msgstr "" +msgstr "Beregner summen av verdier i området B2:B6 som er større enn eller lik 20. Returnerer 75, fordi den femte raden ikke oppfyller kriteriet." #. TzCFB #: func_sumifs.xhp @@ -66227,7 +66227,7 @@ "par_id189772445525114\n" "help.text" msgid "Calculates the sum of values of the range C2:C6 that are greater than 70 and correspond to cells of the B2:B6 range with values greater than or equal to 20. Returns 275, because the second and the fifth rows do not meet at least one criterion." -msgstr "" +msgstr "Beregner summen av verdier i området C2:C6 som er større enn 70 og tilsvarer celler i B2:B6-området med verdier større enn eller lik 20. Returnerer 275, fordi den andre og den femte raden ikke møter minst ett kriterium." #. YHh9T #: func_sumifs.xhp @@ -66236,7 +66236,7 @@ "hd_id30455222431067\n" "help.text" msgid "Using regular expressions and nested functions" -msgstr "" +msgstr "Bruke regulære uttrykk og nestede funksjoner" #. Ust3n #: func_sumifs.xhp @@ -66245,7 +66245,7 @@ "par_id307691022525348\n" "help.text" msgid "=SUMIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=SUMIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))" #. wCeGS #: func_sumifs.xhp @@ -66254,7 +66254,7 @@ "par_id27619246864839\n" "help.text" msgid "Calculates the sum of values of the range C2:C6 that correspond to all values of the range B2:B6 except its minimum and maximum. Returns 255, because the third and the fifth rows do not meet at least one criterion." -msgstr "" +msgstr "Beregner summen av verdiene i området C2:C6 som tilsvarer alle verdiene i området B2:B6 bortsett fra minimum og maksimum. Returnerer 255, fordi den tredje og den femte raden ikke oppfyller minst ett kriterium." #. tETJF #: func_sumifs.xhp @@ -66263,7 +66263,7 @@ "par_id220502883332563\n" "help.text" msgid "=SUMIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=SUMIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<\"&MAX(B2:B6))" #. u7CDd #: func_sumifs.xhp @@ -66272,7 +66272,7 @@ "par_id15342189586295\n" "help.text" msgid "Calculates the sum of values of the range C2:C6 that correspond to all cells of the A2:A6 range starting with \"pen\" and to all cells of the B2:B6 range except its maximum. Returns 65, because only second row meets all criteria." -msgstr "" +msgstr "Beregner summen av verdiene i området C2:C6 som tilsvarer alle cellene i A2:A6-området som starter med \"penn\" og til alle cellene i B2:B6-området bortsett fra maksimum. Returnerer 65, fordi bare andre rad oppfyller alle kriteriene." #. dKeLC #: func_sumifs.xhp @@ -66281,7 +66281,7 @@ "hd_id8168283329426\n" "help.text" msgid "Reference to a cell as a criterion" -msgstr "" +msgstr "Referanse til en celle som et kriterium" #. NzNhA #: func_sumifs.xhp @@ -66290,7 +66290,7 @@ "par_id50762995519951\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the SUMIFS function. For example, the above function can be rewritten as follows:" -msgstr "" +msgstr "Hvis du trenger å endre et kriterium enkelt, kan det være lurt å spesifisere det i en egen celle og bruke en referanse til denne cellen i tilstanden til SUMIFS-funksjonen. For eksempel kan funksjonen ovenfor skrives om som følger:" #. U2wwM #: func_sumifs.xhp @@ -66299,7 +66299,7 @@ "par_id135761606425300\n" "help.text" msgid "=SUMIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))" -msgstr "" +msgstr "=SUMIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))" #. wGhZA #: func_sumifs.xhp @@ -66308,7 +66308,7 @@ "par_id30574750215839\n" "help.text" msgid "If E2 = pen, the function returns 65, because the link to the cell is substituted with its content." -msgstr "" +msgstr "IF E2 = penn, returnerer funksjonen 65, fordi lenken til cellen er erstattet med innholdet." #. UUeQC #: func_switch.xhp @@ -66317,7 +66317,7 @@ "tit\n" "help.text" msgid "SWITCH function" -msgstr "" +msgstr "SWITCH-funksjon" #. 5ALMt #: func_switch.xhp @@ -66326,7 +66326,7 @@ "bm_id571556244875552\n" "help.text" msgid "SWITCH function" -msgstr "" +msgstr "SWITCH funksjon" #. F6kQd #: func_switch.xhp @@ -66335,7 +66335,7 @@ "hd_id21556242313791\n" "help.text" msgid "SWITCH" -msgstr "" +msgstr "SWITCH" #. vaCEi #: func_switch.xhp @@ -66344,7 +66344,7 @@ "par_id361556242313793\n" "help.text" msgid "SWITCH compares expression with value1 to valuen and returns the result belonging to the first value that equals expression. If there is no match and default_result is given, that will be returned." -msgstr "" +msgstr "SWITCH sammenligner uttrykk med verdi1 til verdi og returnerer resultatet som tilhører den første verdien som er lik uttrykk. Hvis det ikke er noe samsvar og default_result er gitt, vil det bli returnert." #. tFvZx #: func_switch.xhp @@ -66353,7 +66353,7 @@ "par_id521556242803283\n" "help.text" msgid "SWITCH(expression; value1; result1[; value2; result2][; ... ; [value127; result127][; default_result]])" -msgstr "" +msgstr "SWITCH(uttrykk; verdi1; resultat1[; verdi2; resultat2][; ... ; [verdi127; resultat127][; standard_resultat]])" #. p8fL8 #: func_switch.xhp @@ -66362,7 +66362,7 @@ "par_id111585520651521\n" "help.text" msgid "If you choose not to specify a default result, 127 value / result pairs may be entered as parameters. If you choose to include a default result at the end of the list of parameters, then only 126 value / result pairs may be entered." -msgstr "" +msgstr "Hvis du velger å ikke spesifisere et standardresultat, kan 127 verdi/resultatpar legges inn som parametere. Hvis du velger å inkludere et standardresultat på slutten av listen over parametere, kan bare 126 verdi-/resultatpar legges inn." #. nnW4D #: func_switch.xhp @@ -66371,7 +66371,7 @@ "par_id341556242996378\n" "help.text" msgid "expression is a text, numeric, logical or date input or reference to a cell." -msgstr "" +msgstr "uttrykk er en tekst, numerisk, logisk eller datoinntasting eller referanse til en celle." #. Z7xiA #: func_switch.xhp @@ -66380,7 +66380,7 @@ "par_id321556243790332\n" "help.text" msgid "value1, value2, ... is any value or reference to a cell. Each value must have a result given." -msgstr "" +msgstr "verdi1, verdi2, ... er en hvilken som helst verdi eller referanse til en celle. Hver verdi må ha et gitt resultat." #. ADDqw #: func_switch.xhp @@ -66389,7 +66389,7 @@ "par_id171556243796068\n" "help.text" msgid "result1, result2, ... is any value or reference to a cell." -msgstr "" +msgstr "resultat1, resultat2, ... er en hvilken som helst verdi eller referanse til en celle." #. 9SKCB #: func_switch.xhp @@ -66398,7 +66398,7 @@ "par_id331556245422283\n" "help.text" msgid "default_result: any value or reference to a cell that is returned when there is no match." -msgstr "" +msgstr "default_result: enhver verdi eller referanse til en celle som returneres når det ikke er samsvar." #. mLsyo #: func_switch.xhp @@ -66407,7 +66407,7 @@ "par_id871556243022881\n" "help.text" msgid "If no value equals expression and no default result is given, a #N/A error is returned." -msgstr "" +msgstr "Hvis ingen verdi er lik uttrykk og det ikke er gitt noe standardresultat, returneres en #N/A-feil." #. YQYUn #: func_switch.xhp @@ -66416,7 +66416,7 @@ "par_id851556243961783\n" "help.text" msgid "=SWITCH(MONTH(A3),1,\"January\",2,\"February\",3,\"March\",\"No match\") returns \"January\" when A3 contains a date in January, \"February\" when A3 contains a date in February , etc..." -msgstr "" +msgstr "=SWITCH(MONTH(A3),1,\"Januar\",2,\"Februar\",3,\"Mars\",\"Ingen treff\") returnerer \"Januar\" når A3 inneholder en dato i januar, \"Februar\" når A3 inneholder en dato i februar osv..." #. XELDQ #: func_switch.xhp @@ -66425,7 +66425,7 @@ "par_id781556244709752\n" "help.text" msgid "IF" -msgstr "" +msgstr "IF" #. BCAZr #: func_textjoin.xhp @@ -66434,7 +66434,7 @@ "tit\n" "help.text" msgid "TEXTJOIN function" -msgstr "" +msgstr "TEXTJOIN-funksjon" #. EFTkc #: func_textjoin.xhp @@ -66443,7 +66443,7 @@ "bm_id581556228060864\n" "help.text" msgid "TEXTJOIN function" -msgstr "" +msgstr "TEXTJOIN funksjon" #. FoNni #: func_textjoin.xhp @@ -66452,7 +66452,7 @@ "hd_id551556227727946\n" "help.text" msgid "TEXTJOIN" -msgstr "" +msgstr "TEXTJOIN" #. oLfX2 #: func_textjoin.xhp @@ -66461,7 +66461,7 @@ "par_id121556227727948\n" "help.text" msgid "Concatenates one or more strings, and uses delimiters between them." -msgstr "" +msgstr "Sett sammen én eller flere strenger og bruker skilletegn mellom dem." #. q72j4 #: func_textjoin.xhp @@ -66470,7 +66470,7 @@ "par_id541556228253979\n" "help.text" msgid "TEXTJOIN( delimiter, skip_empty, String 1[; String 2][; … ;[String 253]] )" -msgstr "" +msgstr "TEXTJOIN( skilletegn, hoppe_over_tom, streng 1[; streng 2][; … ;[streng 253]] )" #. WaME6 #: func_textjoin.xhp @@ -66479,7 +66479,7 @@ "par_id741556228390897\n" "help.text" msgid "delimiter is a text string and can be a range." -msgstr "" +msgstr "skilletegn er en tekststreng og kan være et område." #. 6vMaP #: func_textjoin.xhp @@ -66488,7 +66488,7 @@ "par_id621556228397269\n" "help.text" msgid "skip_empty is a logical argument. When set to FALSE or 0, empty strings will be taken into account and this may lead to adjacent delimiters in the returned string. When set to any other value (e.g. TRUE or 1), empty strings will be ignored." -msgstr "" +msgstr "skip_empty er et logisk argument. Når satt til USANN eller 0, vil tomme strenger bli tatt i betraktning og dette kan føre til tilstøtende skilletegn i den returnerte strengen. Når den er satt til en annen verdi (f.eks. SANN eller 1), vil tomme strenger bli ignorert." #. JoYks #: func_textjoin.xhp @@ -66497,7 +66497,7 @@ "par_id631556228516997\n" "help.text" msgid "String 1[; String 2][; … ;[String 253]] are strings, references to cells or to cell ranges of strings." -msgstr "" +msgstr "String 1[; String 2][; … ;[String 253]] er strenger, referanser til celler eller til celleområder med strenger." #. PDbCp #: func_textjoin.xhp @@ -66506,7 +66506,7 @@ "par_id1001556228523394\n" "help.text" msgid "Ranges are traversed row by row (from top to bottom)." -msgstr "" +msgstr "Områder krysses rad for rad (fra topp til bunn)." #. PEkb2 #: func_textjoin.xhp @@ -66515,7 +66515,7 @@ "par_id81556228530082\n" "help.text" msgid "If delimiter is a range, the range need not be of the same size as the number of strings to be joined." -msgstr "" +msgstr "Hvis skilletegn er et område, trenger ikke området være av samme størrelse som antall strenger som skal slås sammen." #. VcQjG #: func_textjoin.xhp @@ -66524,7 +66524,7 @@ "par_id831556228543099\n" "help.text" msgid "If there are more delimiters than strings to be joined, not all delimiters will be used." -msgstr "" +msgstr "Hvis det er flere skilletegn enn strenger som skal slås sammen, vil ikke alle skilletegn brukes." #. ByVAF #: func_textjoin.xhp @@ -66533,7 +66533,7 @@ "par_id321556228557611\n" "help.text" msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start." -msgstr "" +msgstr "Hvis det er færre skilletegn enn strenger som skal slås sammen, vil skilletegnene bli brukt igjen fra starten." #. QaJCw #: func_textjoin.xhp @@ -66542,7 +66542,7 @@ "par_id441556229012536\n" "help.text" msgid "=TEXTJOIN(\" \"; 1; \"Here\"; \"comes\"; \"the\"; \"sun\") returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored." -msgstr "" +msgstr "=TEXTJOIN(\" \"; 1; \"Her\"; \"kommer\"; \"den\"; \"solen\") returnerer \"Her kommer solen\" med mellomrom som skilletegn og tomme strenger ignoreres." #. 39FPP #: func_textjoin.xhp @@ -66551,7 +66551,7 @@ "par_id441556239012536\n" "help.text" msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, =TEXTJOIN(\"-\";1;A1:B2) returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored." -msgstr "" +msgstr "hvis A1:B2 inneholder henholdsvis \"Her\", \"kommer\", \"solen\", returnerer =TEXTJOIN(\"-\";1;A1:B2) \"Her-comes-the- sun\" med bindestrek som skilletegn og tomme strenger ignoreres." #. CdeS7 #: func_textjoin.xhp @@ -66560,7 +66560,7 @@ "par_id781556244709752\n" "help.text" msgid "CONCATENATE" -msgstr "" +msgstr "CONCATENATE" #. pLSAn #: func_time.xhp @@ -66569,7 +66569,7 @@ "tit\n" "help.text" msgid "TIME" -msgstr "" +msgstr "TIME" #. Y7P2x #: func_time.xhp @@ -66605,7 +66605,7 @@ "par_id3154584\n" "help.text" msgid "TIME(Hour; Minute; Second)" -msgstr "" +msgstr "TIME(Time; Minutt; Sekund)" #. 3DWFB #: func_time.xhp @@ -66659,7 +66659,7 @@ "tit\n" "help.text" msgid "TIMEVALUE" -msgstr "" +msgstr "TIMEVALUE" #. jt9C2 #: func_timevalue.xhp @@ -66695,7 +66695,7 @@ "par_id3150794\n" "help.text" msgid "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries." -msgstr "" +msgstr "Det interne tallet angitt som en desimal er resultatet av datosystemet som brukes under $[officename] for å beregne datooppføringer." #. nGfAL #: func_timevalue.xhp @@ -66704,7 +66704,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 "" +msgstr "Hvis tekststrengen også inkluderer et år, måned eller dag, returnerer TIMEVALUE bare brøkdelen av konverteringen." #. FQKX4 #: func_timevalue.xhp @@ -66722,7 +66722,7 @@ "par_id3152556\n" "help.text" msgid "Text is a valid time expression and must be entered in quotation marks." -msgstr "" +msgstr "Tekst er et gyldig tidsuttrykk og må angis i anførselstegn." #. icbCa #: func_timevalue.xhp @@ -66731,7 +66731,7 @@ "par_id3146829\n" "help.text" msgid "=TIMEVALUE(\"4PM\") returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00." -msgstr "" +msgstr "=TIMEVALUE(\"4PM\") returnerer 0,67. Ved formatering i tidsformat TT:MM:SS får du da 16:00:00." #. DhADF #: func_timevalue.xhp @@ -66740,7 +66740,7 @@ "par_id3153632\n" "help.text" msgid "=TIMEVALUE(\"24:00\") returns 0. If you use the HH:MM:SS time format, the value is 00:00:00." -msgstr "" +msgstr "= TIMEVALUE(\"24:00\") returnerer 0. Hvis du bruker tidsformatet TT:MM:SS, er verdien 00:00:00." #. 8LaX7 #: func_today.xhp @@ -66749,7 +66749,7 @@ "tit\n" "help.text" msgid "TODAY" -msgstr "" +msgstr "TODAY" #. XdC2Q #: func_today.xhp @@ -66785,7 +66785,7 @@ "par_id3153154\n" "help.text" msgid "TODAY()" -msgstr "" +msgstr "TODAY()" #. kPQtF #: func_today.xhp @@ -66794,7 +66794,7 @@ "par_id3154741\n" "help.text" msgid "TODAY is a function without arguments." -msgstr "" +msgstr "TODAY er en funksjon uten argumenter." #. 7ivyD #: func_today.xhp @@ -66803,7 +66803,7 @@ "par_id3156106\n" "help.text" msgid "TODAY() returns the current computer system date." -msgstr "" +msgstr "TODAY() returnerer gjeldende datasystemdato." #. Y2uYG #: func_trunc.xhp @@ -66812,7 +66812,7 @@ "tit\n" "help.text" msgid "TRUNC function" -msgstr "" +msgstr "TRUNC funksjon" #. UkBEB #: func_trunc.xhp @@ -66821,7 +66821,7 @@ "bm_id3156384\n" "help.text" msgid "TRUNC function decimal places;cutting off numbers;truncate" -msgstr "" +msgstr "TRUNC funksjon desimaltall;avskjære tall;avkorte" #. GEtHZ #: func_trunc.xhp @@ -66830,7 +66830,7 @@ "hd_id601641846107898\n" "help.text" msgid "TRUNC function" -msgstr "" +msgstr "TRUNC funksjon" #. dkTrh #: func_trunc.xhp @@ -66839,7 +66839,7 @@ "par_id841641927277474\n" "help.text" msgid "Truncates a number while keeping a specified number of decimal digits." -msgstr "" +msgstr "Avkorter et tall mens du beholder et spesifisert antall desimaler." #. EmGpf #: func_trunc.xhp @@ -66848,7 +66848,7 @@ "par_id701642530512560\n" "help.text" msgid "This function is equivalent to the ROUNDDOWN function." -msgstr "" +msgstr "Denne funksjonen tilsvarer ROUNDDOWN-funksjonen." #. oZAWU #: func_trunc.xhp @@ -66857,7 +66857,7 @@ "par_id321641927458888\n" "help.text" msgid "The rounding method used by this function is known as rounding towards zero. The resulting number will always be smaller than or equal to the original number." -msgstr "" +msgstr "Avrundingsmetoden som brukes av denne funksjonen er kjent som avrunding mot null. Det resulterende tallet vil alltid være mindre enn eller lik det opprinnelige tallet." #. SqCQv #: func_trunc.xhp @@ -66866,7 +66866,7 @@ "par_id341641927560587\n" "help.text" msgid "TRUNC(Number [; Count])" -msgstr "" +msgstr "TRUNC(Tall [; Antall])" #. RryDW #: func_trunc.xhp @@ -66875,7 +66875,7 @@ "par_id11641927688319\n" "help.text" msgid "Number: The number to be truncated." -msgstr "" +msgstr "Nummer: Tallet som skal avkortes." #. Hg6mt #: func_trunc.xhp @@ -66884,7 +66884,7 @@ "par_id861641927715672\n" "help.text" msgid "Count: Optional parameter that defines the number of decimal places to be kept. The default value is 0 (zero)." -msgstr "" +msgstr "Antal: Valgfri parameter som definerer antall desimaler som skal beholdes. Standardverdien er 0 (null)." #. HKrSh #: func_trunc.xhp @@ -66893,7 +66893,7 @@ "par_id911641928545976\n" "help.text" msgid "Use negative values for Count to round the integer part of the original Number. For example, -1 will round down the first integer number before the decimal separator, -2 will round down the two integer numbers before the decimal separator, and so forth." -msgstr "" +msgstr "Bruk negative verdier for Antal for å runde av heltallsdelen av det opprinnelige tallet. For eksempel vil -1 runde ned det første heltallet før desimalskilletegnet, -2 vil runde ned de to heltallstallet før desimalskilletegnet, og så videre." #. EJFZd #: func_trunc.xhp @@ -66902,7 +66902,7 @@ "par_id901641928192870\n" "help.text" msgid "=TRUNC(21.89) returns 21. Note that this example uses the default value for Count which is 0." -msgstr "" +msgstr "=TRUNC(21,89) returnerer 21. Merk at dette eksemplet bruker standardverdien for Count som er 0." #. ccEGa #: func_trunc.xhp @@ -66911,7 +66911,7 @@ "par_id901641928192110\n" "help.text" msgid "=TRUNC(103.37,1) returns 103.3." -msgstr "" +msgstr "=TRUNC(103.37,1) returnerer 103.3." #. jJvgo #: func_trunc.xhp @@ -66920,7 +66920,7 @@ "par_id171641928456743\n" "help.text" msgid "=TRUNC(0.664,2) returns 0.66." -msgstr "" +msgstr "=TRUNC(0.664,2) returnerer 0.66." #. Qf3R9 #: func_trunc.xhp @@ -66929,7 +66929,7 @@ "par_id641641928712287\n" "help.text" msgid "=TRUNC(214.2,-1) returns 210. Note the negative value for Count, which causes the first integer value before the decimal separator to be rounded towards zero." -msgstr "" +msgstr "=TRUNC(214.2,-1) returnerer 210. Legg merke til den negative verdien for Count, som gjør at den første heltallsverdien før desimalskilletegnet blir avrundet mot null." #. w86Dm #: func_value.xhp @@ -66938,7 +66938,7 @@ "tit\n" "help.text" msgid "VALUE Function" -msgstr "" +msgstr "VALUE Funksjon" #. D5EDU #: func_value.xhp @@ -66947,7 +66947,7 @@ "bm_id831542233029549\n" "help.text" msgid "VALUE function text functions;convert text to numeric value" -msgstr "" +msgstr "VALUE funksjon tekstfunksjoner;konverter tekst til numerisk verdi" #. F39J8 #: func_value.xhp @@ -66956,7 +66956,7 @@ "hd_id881628776094597\n" "help.text" msgid "VALUE" -msgstr "" +msgstr "VALUE" #. BZ7SU #: func_value.xhp @@ -66965,7 +66965,7 @@ "par_id541542230672101\n" "help.text" msgid "Converts the string representation of a number to numeric form. If the supplied string is a valid date, time, or date-time, the corresponding date-time serial number is returned." -msgstr "" +msgstr "Konverterer strengrepresentasjonen av et tall til numerisk form. Hvis den medfølgende strengen er en gyldig dato, klokkeslett eller dato-klokkeslett, returneres det tilsvarende serienummeret for dato og klokkeslett." #. KAY8o #: func_value.xhp @@ -66974,7 +66974,7 @@ "par_id701542231253817\n" "help.text" msgid "VALUE(Text)" -msgstr "" +msgstr "VALUE(Tekst)" #. QVErw #: func_value.xhp @@ -66983,7 +66983,7 @@ "par_id621542232197446\n" "help.text" msgid "Text: A string (in quotation marks), a number, or a reference to a cell containing one of those types, that contains the value to be converted." -msgstr "" +msgstr "Tekst: En streng (i anførselstegn), et tall eller en referanse til en celle som inneholder en av disse typene, som inneholder verdien som skal konverteres." #. hMLPV #: func_value.xhp @@ -66992,7 +66992,7 @@ "par_id731628787003937\n" "help.text" msgid "If the Text argument is a string representing a date, time, currency or a numeric value with decimal and thousands separators, the string must comply with current locale settings." -msgstr "" +msgstr "Hvis Tekst-argumentet er en streng som representerer en dato, klokkeslett, valuta eller en numerisk verdi med desimal- og tusenskilletegn, må strengen være i samsvar med gjeldende lokale innstillinger." #. 3BCEU #: func_value.xhp @@ -67001,7 +67001,7 @@ "par_id451628776707264\n" "help.text" msgid "=VALUE(\"1234\") returns the numeric value 1234." -msgstr "" +msgstr "= VALUE(\"1234\") returnerer den numeriske verdien 1234." #. zEuFg #: func_value.xhp @@ -67010,7 +67010,7 @@ "par_id101628778036375\n" "help.text" msgid "=VALUE(\"+1,234.567\") returns 1234.567 (considering en-US locale). Note that the \"+\" sign could have been omitted." -msgstr "" +msgstr "=VALUE(\"+1,234.567\") returnerer 1234.567 (vurderer en-US-lokalitet). Merk at \"+\"-tegnet kan ha vært utelatt." #. Hhrax #: func_value.xhp @@ -67019,7 +67019,7 @@ "par_id991628779914913\n" "help.text" msgid "=VALUE(\"$100\") returns 100 (considering en-US locale). Note that the currency prefix must match the current locale settings." -msgstr "" +msgstr "= VALUE(\"$100\") returnerer 100 (vurderer en-US-lokalitet). Vær oppmerksom på at valutaprefikset må samsvare med gjeldende lokalinnstillinger." #. syxTJ #: func_value.xhp @@ -67028,7 +67028,7 @@ "par_id101628780114427\n" "help.text" msgid "=VALUE(\"50%\") returns 0.5. Note that the character \"%\" causes the numeric part to be divided by 100." -msgstr "" +msgstr "=VERDI(\"50 %\") returnerer 0,5. Merk at tegnet \"%\" gjør at den numeriske delen blir delt på 100." #. xDJeH #: func_value.xhp @@ -67037,7 +67037,7 @@ "par_id731628780240876\n" "help.text" msgid "=VALUE(\"07/30/2021\") returns 44407 (considering en-US locale) which is the date-time sequence number corresponding to the specified date." -msgstr "" +msgstr "=VERDI(\"07/30/2021\") returnerer 44407 (med tanke på en-US-lokalitet) som er dato- og klokkeslettsekvensnummeret som tilsvarer den angitte datoen." #. Kkcm7 #: func_value.xhp @@ -67046,7 +67046,7 @@ "par_id501628780340635\n" "help.text" msgid "=VALUE(\"09:20:25\") returns 0.389178240740741 which is the date-time sequence number corresponding to the specified time value." -msgstr "" +msgstr "=VERDI(\"09:20:25\") returnerer 0,389178240740741 som er sekvensnummeret for dato og klokkeslett som tilsvarer den angitte tidsverdien." #. HArBW #: func_value.xhp @@ -67055,7 +67055,7 @@ "par_id801628779804928\n" "help.text" msgid "Refer to the VALUE wiki page for more details about this function." -msgstr "" +msgstr "Se wikisiden VALUE for mer informasjon om denne funksjonen." #. dQeP6 #: func_webservice.xhp @@ -67064,7 +67064,7 @@ "tit\n" "help.text" msgid "URI Functions" -msgstr "" +msgstr "URI-funksjoner" #. 8sQry #: func_webservice.xhp @@ -67082,7 +67082,7 @@ "hd_id3149012\n" "help.text" msgid "WEBSERVICE" -msgstr "" +msgstr "WEBSERVICE" #. NXAzC #: func_webservice.xhp @@ -67091,7 +67091,7 @@ "par_id3149893\n" "help.text" msgid "Get some web content from a URI." -msgstr "" +msgstr "Få nettinnhold fra en URI." #. FjkNG #: func_webservice.xhp @@ -67100,7 +67100,7 @@ "par_id3154844\n" "help.text" msgid "WEBSERVICE(URI)" -msgstr "" +msgstr "WEBSERVICE(URI)" #. mkhox #: func_webservice.xhp @@ -67109,7 +67109,7 @@ "par_id3147469\n" "help.text" msgid "URI: URI text of the web service." -msgstr "" +msgstr "URI: URI-tekst for nettjenesten." #. onWpd #: func_webservice.xhp @@ -67118,7 +67118,7 @@ "par_id3146142\n" "help.text" msgid "=WEBSERVICE(\"wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\")" -msgstr "" +msgstr "=WEBSERVICE(\"wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\")" #. yaDfK #: func_webservice.xhp @@ -67127,7 +67127,7 @@ "par_id3146143\n" "help.text" msgid "Returns the web page content of \"https://wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\"." -msgstr "" +msgstr "Returnerer nettsideinnholdet til \"https://wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\"." #. Sh332 #: func_webservice.xhp @@ -67145,7 +67145,7 @@ "hd_id2949012\n" "help.text" msgid "FILTERXML" -msgstr "" +msgstr "FILTERXML" #. 2zvQv #: func_webservice.xhp @@ -67154,7 +67154,7 @@ "par_id2949893\n" "help.text" msgid "Apply a XPath expression to a XML document." -msgstr "" +msgstr "Bruk et XPath-uttrykk på et XML-dokument." #. p9GGE #: func_webservice.xhp @@ -67163,7 +67163,7 @@ "par_id2954844\n" "help.text" msgid "FILTERXML(XML Document; XPath expression)" -msgstr "" +msgstr "FILTERXML(XML-dokument; XPath-uttrykk)" #. GJnfh #: func_webservice.xhp @@ -67172,7 +67172,7 @@ "par_id2947469\n" "help.text" msgid "XML Document (required): String containing a valid XML stream." -msgstr "" +msgstr "XML-dokument (påkrevd): Streng som inneholder en gyldig XML-strøm." #. ywKvC #: func_webservice.xhp @@ -67181,7 +67181,7 @@ "par_id2847469\n" "help.text" msgid "XPath expression (required): String containing a valid XPath expression." -msgstr "" +msgstr "XPath-uttrykk (påkrevd): Streng som inneholder et gyldig XPath-uttrykk." #. x8Fej #: func_webservice.xhp @@ -67190,7 +67190,7 @@ "par_id2946142\n" "help.text" msgid "=FILTERXML(WEBSERVICE(\"wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\");\"//lastBuildDate\")" -msgstr "" +msgstr "=FILTERXML(WEBSERVICE(\"wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\");\"//lastBuildDate\")" #. BCHBF #: func_webservice.xhp @@ -67199,7 +67199,7 @@ "par_id2946143\n" "help.text" msgid "Returns information on the last build date of the wiki." -msgstr "" +msgstr "Returnerer informasjon om siste byggedato for wikien." #. f4fBh #: func_webservice.xhp @@ -67208,7 +67208,7 @@ "bm_id811517136840444\n" "help.text" msgid "ENCODEURL function" -msgstr "" +msgstr "ENCODEURL-funksjon" #. DBC4X #: func_webservice.xhp @@ -67217,7 +67217,7 @@ "hd_id671517132649769\n" "help.text" msgid "ENCODEURL" -msgstr "" +msgstr "ENCODEURL" #. K5FwD #: func_webservice.xhp @@ -67226,7 +67226,7 @@ "par_id51517132649769\n" "help.text" msgid "Returns a URL-encoded string." -msgstr "" +msgstr "Returnerer en URL-kodet streng." #. UFq7T #: func_webservice.xhp @@ -67235,7 +67235,7 @@ "par_id721517134647880\n" "help.text" msgid "Use this function to transform text with symbols of national alphabets (for example accented characters, non-ASCII alphabets or Asian words) to a string of URL-standard symbols." -msgstr "" +msgstr "Bruk denne funksjonen til å transformere tekst med symboler av nasjonale alfabeter (for eksempel aksenttegn, ikke-ASCII-alfabeter eller asiatiske ord) til en streng med URL-standardsymboler." #. 9fgSx #: func_webservice.xhp @@ -67244,7 +67244,7 @@ "par_id351517132879400\n" "help.text" msgid "ENCODEURL(Text)" -msgstr "" +msgstr "ENCODEURL(Tekst)" #. GjshQ #: func_webservice.xhp @@ -67253,7 +67253,7 @@ "par_id921517132924079\n" "help.text" msgid "Text: String to encode to a sequence of URL-standard symbols." -msgstr "" +msgstr "Tekst: Streng for å kode til en sekvens av URL-standardsymboler." #. XBjTR #: func_webservice.xhp @@ -67262,7 +67262,7 @@ "par_id651517132994921\n" "help.text" msgid "If cell A1 contains the Cyrillic text \"автомобиль\", =ENCODEURL(A1) returns %D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C (the word \"автомобиль\" means car in Russian)." -msgstr "" +msgstr "Hvis celle A1 inneholder den kyrilliske teksten \"автомобиль\", returnerer =ENCODEURL(A1) %D0%B0%D0%B2%D1%82%D0%BE%D0%BC% D0%BE%D0%B1%D0%B8%D0%BB%D1%8C (ordet \"автомобиль\" betyr bil på russisk)." #. MRAnM #: func_webservice.xhp @@ -67271,7 +67271,7 @@ "par_id991517133057478\n" "help.text" msgid "If cell B1 contains the text \"車\", =ENCODEURL(B1) returns %E8%BB%8A (\"車\" means car in Japanese)." -msgstr "" +msgstr "Hvis celle B1 inneholder teksten \"車\", returnerer =ENCODEURL(B1) %E8%BB%8A (\"車\" betyr bil på japansk)." #. VBELn #: func_weekday.xhp @@ -67280,7 +67280,7 @@ "tit\n" "help.text" msgid "WEEKDAY" -msgstr "" +msgstr "WEEKDAY" #. ZNhAN #: func_weekday.xhp @@ -67298,7 +67298,7 @@ "hd_id3154925\n" "help.text" msgid "WEEKDAY " -msgstr "" +msgstr "WEEKDAY " #. mcyKX #: func_weekday.xhp @@ -67307,7 +67307,7 @@ "par_id3154228\n" "help.text" msgid "Returns the day of the week for the given date value. The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. For other types, see the table below." -msgstr "" +msgstr "Returnerer ukedagen for den gitte datoverdien. Dagen returneres som et heltall mellom 1 (søndag) og 7 (lørdag) hvis ingen type eller type=1 er spesifisert . For andre typer, se tabellen nedenfor." #. SaqiJ #: func_weekday.xhp @@ -67316,7 +67316,7 @@ "par_id3149033\n" "help.text" msgid "WEEKDAY(Number [; Type])" -msgstr "" +msgstr "WEEKDAY(Nummer [; Type])" #. mcF52 #: func_weekday.xhp @@ -67334,7 +67334,7 @@ "par_id3154394\n" "help.text" msgid "Type is optional and determines the type of calculation." -msgstr "" +msgstr "Type er valgfritt og bestemmer typen av beregning." #. E7Ad6 #: func_weekday.xhp @@ -67343,7 +67343,7 @@ "par_id050220170615596613\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. CUDRi #: func_weekday.xhp @@ -67352,7 +67352,7 @@ "par_id05022017061559141\n" "help.text" msgid "Weekday number returned" -msgstr "" +msgstr "Ukedagnummer returnert" #. JZdWn #: func_weekday.xhp @@ -67361,7 +67361,7 @@ "par_id050220170615599995\n" "help.text" msgid "1 or omitted" -msgstr "" +msgstr "1 eller utelatt" #. HaFSu #: func_weekday.xhp @@ -67370,7 +67370,7 @@ "par_id050220170615597231\n" "help.text" msgid "1 (Sunday) through 7 (Saturday). For compatibility with Microsoft Excel." -msgstr "" +msgstr "1 (Søndag) til og med 7 (Lørdag). For kompatibilitet med Microsoft Excel." #. wHMXY #: func_weekday.xhp @@ -67379,7 +67379,7 @@ "par_id050220170615596260\n" "help.text" msgid "1 (Monday) through 7 (Sunday)." -msgstr "" +msgstr "1 (Mandag) til 7 (Søndag)." #. Fhihd #: func_weekday.xhp @@ -67388,7 +67388,7 @@ "par_id050220170615597630\n" "help.text" msgid "0 (Monday) through 6 (Sunday)" -msgstr "" +msgstr "0 (Mandag) til 6 (Søndag)" #. ZKiEn #: func_weekday.xhp @@ -67397,7 +67397,7 @@ "par_id050220170615592023\n" "help.text" msgid "1 (Monday) through 7 (Sunday)." -msgstr "" +msgstr "1 (Mandag) til 7 (Søndag)." #. BGmPr #: func_weekday.xhp @@ -67406,7 +67406,7 @@ "par_id050220170615591349\n" "help.text" msgid "1 (Tuesday) through 7 (Monday)." -msgstr "" +msgstr "1 (Tirsdag) til 7 (Mandag)." #. QAN6k #: func_weekday.xhp @@ -67415,7 +67415,7 @@ "par_id050220170615593664\n" "help.text" msgid "1 (Wednesday) through 7 (Tuesday)." -msgstr "" +msgstr "1 (Onsdag) til 7 (Tirsdag)." #. jrbXZ #: func_weekday.xhp @@ -67424,7 +67424,7 @@ "par_id050220170615599110\n" "help.text" msgid "1 (Thursday) through 7 (Wednesday)." -msgstr "" +msgstr "1 (Torsdag) til 7 (Onsdag)." #. 6RzFd #: func_weekday.xhp @@ -67433,7 +67433,7 @@ "par_id05022017061600535\n" "help.text" msgid "1 (Friday) through 7 (Thursday)." -msgstr "" +msgstr "1 (Fredag) til 7 (Torsdag)." #. gMLHQ #: func_weekday.xhp @@ -67442,7 +67442,7 @@ "par_id050220170616003219\n" "help.text" msgid "1 (Saturday) through 7 (Friday)." -msgstr "" +msgstr "1 (Lørdag) til 7 (Fredag)." #. ypPnV #: func_weekday.xhp @@ -67451,7 +67451,7 @@ "par_id050220170616002095\n" "help.text" msgid "1 (Sunday) through 7 (Saturday)." -msgstr "" +msgstr "1 (Søndag) til 7 (Lørdag)." #. ETGT2 #: func_weekday.xhp @@ -67460,7 +67460,7 @@ "par_id3156188\n" "help.text" msgid "These values apply only to the standard date format that you select under %PRODUCTNAME - PreferencesTools - Options- %PRODUCTNAME Calc - Calculate." -msgstr "" +msgstr "Disse verdiene gjelder bare for standard datoformat som du velger under %PRODUCTNAME - InnstillingerVerktøy - Alternativer- %PRODUCTNAME Calc - Kalkuler." #. A9eLB #: func_weekday.xhp @@ -67469,7 +67469,7 @@ "par_id3150317\n" "help.text" msgid "=WEEKDAY(\"2000-06-14\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)." -msgstr "" +msgstr "=WEEKDAY(\"2000-06-14\") returnerer 4 (Type-parameteren mangler, derfor brukes standardtellingen. Standardtellingen starter med søndag som dag nummer 1. 14. juni 2000 var en onsdag og derfor dag nummer 4)." #. yaCAz #: func_weekday.xhp @@ -67478,7 +67478,7 @@ "par_id3153174\n" "help.text" msgid "=WEEKDAY(\"1996-07-24\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)." -msgstr "" +msgstr "=WEEKDAY(\"1996-07-24\";2) returnerer 3 (Type-parameteren er 2, derfor er mandag dag nummer 1. 24. juli 1996 var en onsdag og derfor dag nummer 3)." #. h9QAe #: func_weekday.xhp @@ -67487,7 +67487,7 @@ "par_id3153525\n" "help.text" msgid "=WEEKDAY(\"1996-07-24\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)." -msgstr "" +msgstr "=WEEKDAY(\"1996-07-24\";1) returnerer 4 (Type-parameteren er 1, derfor er søndag dag nummer 1. 24. juli 1996 var en onsdag og derfor dag nummer 4)." #. QFoH9 #: func_weekday.xhp @@ -67496,7 +67496,7 @@ "par_id050220170616006699\n" "help.text" msgid "=WEEKDAY(\"2017-05-02\";14) returns 6 (the Type parameter is 14, therefore Thursday is day number 1. May 2, 2017 was a Tuesday and therefore day number 6)" -msgstr "" +msgstr "=WEEKDAY(\"2017-05-02\";14) returnerer 6 (Type-parameteren er 14, derfor er torsdag dag nummer 1. 2. mai 2017 var en tirsdag og derfor dag nummer 6)" #. wVWSR #: func_weekday.xhp @@ -67505,7 +67505,7 @@ "par_id3150575\n" "help.text" msgid "=WEEKDAY(NOW()) returns the number of the current day." -msgstr "" +msgstr "=WEEKDAY(NOW()) returnerer nummeret til gjeldende dag." #. NfoSb #: func_weekday.xhp @@ -67514,7 +67514,7 @@ "par_id3150588\n" "help.text" msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows:
IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")" -msgstr "" +msgstr "For å få en funksjon som indikerer om en dag i A1 er en virkedag, bruk HVIS- og UKEDAG-funksjonene som følger:
IF(WEEKDAY(A1;2)<6;\"Forretningsdag \";\"Helg\")" #. 3iMGJ #: func_weeknum.xhp @@ -67523,7 +67523,7 @@ "tit\n" "help.text" msgid "WEEKNUM" -msgstr "" +msgstr "WEEKNUM" #. BaYVW #: func_weeknum.xhp @@ -67550,7 +67550,7 @@ "par_id3149770\n" "help.text" msgid "WEEKNUM calculates the week number of the year for the internal date value as defined in ODF OpenFormula and compatible with other spreadsheet applications." -msgstr "" +msgstr "WEEKNUM beregner ukenummeret for året for den interne datoverdien som definert i ODF OpenFormula og er kompatibel med andre regnearkapplikasjoner." #. QWFJB #: func_weeknum.xhp @@ -67559,7 +67559,7 @@ "par_id3147220\n" "help.text" msgid "Supported are two week numbering systems:" -msgstr "" +msgstr "Støtter to ukers nummereringssystemer:" #. NzGtR #: func_weeknum.xhp @@ -67568,7 +67568,7 @@ "par_id851535122363435\n" "help.text" msgid "System" -msgstr "" +msgstr "System" #. V79BD #: func_weeknum.xhp @@ -67577,7 +67577,7 @@ "par_id691535122363437\n" "help.text" msgid "System 1" -msgstr "" +msgstr "System 1" #. MKNUg #: func_weeknum.xhp @@ -67586,7 +67586,7 @@ "par_id3147221\n" "help.text" msgid "The week containing January 1 is the first week of the year, and is numbered week 1." -msgstr "" +msgstr "Uken som inneholder 1. januar er den første uken i året, og er nummerert uke 1." #. PmdpG #: func_weeknum.xhp @@ -67595,7 +67595,7 @@ "par_id741535122455285\n" "help.text" msgid "System 2" -msgstr "" +msgstr "System 2" #. yDkz6 #: func_weeknum.xhp @@ -67604,7 +67604,7 @@ "par_id3147222\n" "help.text" msgid "The week containing the first Thursday of the year is the first week of the year, and is numbered week 1. That means that week number 1 of any year is the week that contains January 4th. ISO 8601 defines this system and that the week starts on Monday." -msgstr "" +msgstr "Uken som inneholder den første torsdagen i året er den første uken i året, og er nummerert uke 1. Det betyr at uke nummer 1 i et hvilket som helst år er uken som inneholder 4. januar. ISO 8601 definerer dette systemet og at uken starter på mandag." #. ECkdz #: func_weeknum.xhp @@ -67613,7 +67613,7 @@ "par_id3147236\n" "help.text" msgid "WEEKNUM(Number [; Mode])" -msgstr "" +msgstr "WEEKNUM(Nummer [; Modus])" #. wCJF5 #: func_weeknum.xhp @@ -67631,7 +67631,7 @@ "par_id3154269\n" "help.text" msgid "Mode sets the start of the week and the week numbering system. This parameter is optional, if omitted the default value is 1." -msgstr "" +msgstr "Modus angir starten på uken og ukenummereringssystemet. Denne parameteren er valgfri, hvis den utelates er standardverdien 1." #. KuXQp #: func_weeknum.xhp @@ -67640,7 +67640,7 @@ "par_id961535122993923\n" "help.text" msgid "System" -msgstr "" +msgstr "System" #. uEJNW #: func_weeknum.xhp @@ -67649,7 +67649,7 @@ "par_id151535122633826\n" "help.text" msgid "Mode" -msgstr "" +msgstr "Modus" #. 25gDy #: func_weeknum.xhp @@ -67658,7 +67658,7 @@ "par_id231535122633827\n" "help.text" msgid "Day of the week" -msgstr "" +msgstr "Ukedag" #. Z3tg5 #: func_weeknum.xhp @@ -67667,7 +67667,7 @@ "par_id531535124180000\n" "help.text" msgid "System 1" -msgstr "" +msgstr "System 1" #. vLECS #: func_weeknum.xhp @@ -67676,7 +67676,7 @@ "par_id351535122633828\n" "help.text" msgid "Sunday" -msgstr "" +msgstr "Søndag" #. BVTzb #: func_weeknum.xhp @@ -67685,7 +67685,7 @@ "par_id591535122756686\n" "help.text" msgid "Monday" -msgstr "" +msgstr "Mandag" #. 6CECw #: func_weeknum.xhp @@ -67694,7 +67694,7 @@ "par_id881535122835126\n" "help.text" msgid "Monday" -msgstr "" +msgstr "Mandag" #. VDBxg #: func_weeknum.xhp @@ -67703,7 +67703,7 @@ "par_id241535122903569\n" "help.text" msgid "Tuesday" -msgstr "" +msgstr "Tirsdag" #. YXkUY #: func_weeknum.xhp @@ -67712,7 +67712,7 @@ "par_id31535124277973\n" "help.text" msgid "Wednesday" -msgstr "" +msgstr "Onsdag" #. cHLNk #: func_weeknum.xhp @@ -67721,7 +67721,7 @@ "par_id21535124310462\n" "help.text" msgid "Thursday" -msgstr "" +msgstr "Torsdag" #. AASNE #: func_weeknum.xhp @@ -67730,7 +67730,7 @@ "par_id921535124365435\n" "help.text" msgid "Friday" -msgstr "" +msgstr "Fredag" #. DbdFV #: func_weeknum.xhp @@ -67739,7 +67739,7 @@ "par_id211535124416253\n" "help.text" msgid "Saturday" -msgstr "" +msgstr "Lørdag" #. mMFwp #: func_weeknum.xhp @@ -67748,7 +67748,7 @@ "par_id461535124473824\n" "help.text" msgid "Sunday" -msgstr "" +msgstr "Søndag" #. DHhy6 #: func_weeknum.xhp @@ -67757,7 +67757,7 @@ "par_id471535124489997\n" "help.text" msgid "System 2" -msgstr "" +msgstr "System 2" #. AETJQ #: func_weeknum.xhp @@ -67766,7 +67766,7 @@ "par_id391535124564520\n" "help.text" msgid "Monday (ISO 8601)" -msgstr "" +msgstr "Mandag (ISO 8601)" #. GZVfa #: func_weeknum.xhp @@ -67775,7 +67775,7 @@ "par_id661535124640643\n" "help.text" msgid "(ISO 8601, for interoperability with Gnumeric)" -msgstr "" +msgstr "(ISO 8601, for interoperabilitet med Gnumeric)" #. ypiiG #: func_weeknum.xhp @@ -67784,7 +67784,7 @@ "par_id3150704\n" "help.text" msgid "=WEEKNUM(DATE(1995;1;1);1) returns 1" -msgstr "" +msgstr "=WEEKNUM(DATE(1995;1;1);1) returnerer 1" #. ADL9J #: func_weeknum.xhp @@ -67793,7 +67793,7 @@ "par_id3149792\n" "help.text" msgid "=WEEKNUM(DATE(1995;1;1);2) returns 1. Using System 1, the week containing January 1 is the first week of the year." -msgstr "" +msgstr "=WEEKNUM(DATE(1995;1;1);2) returnerer 1. Ved å bruke System 1 er uken som inneholder 1. januar den første uken i året." #. yBDGQ #: func_weeknum.xhp @@ -67802,7 +67802,7 @@ "par_id3149793\n" "help.text" msgid "=WEEKNUM(DATE(1995;1;1);21) returns 52. Week 1 starts on Monday, 1995-01-02." -msgstr "" +msgstr "=WEEKNUM(DATE(1995;1;1);21) returnerer 52. Uke 1 starter mandag 1995-01-02." #. BMbyY #: func_weeknum.xhp @@ -67811,7 +67811,7 @@ "par_id3149794\n" "help.text" msgid "=WEEKNUM(DATE(1999;1;1);21) returns 53. Week 1 starts on Monday, 1999-01-04." -msgstr "" +msgstr "=WEEKNUM(DATE(1999;1;1);21) returnerer 53. Uke 1 starter på mandag 1999-01-04." #. ZoCGw #: func_weeknum_ooo.xhp @@ -67820,7 +67820,7 @@ "tit\n" "help.text" msgid "WEEKNUM_OOO" -msgstr "" +msgstr "WEEKNUM_OOO" #. KFFXx #: func_weeknum_ooo.xhp @@ -67856,7 +67856,7 @@ "par_idN105E4\n" "help.text" msgid "This function exists for interoperability with %PRODUCTNAME releases older than 5.1.0 and OpenOffice.org. It calculates week numbers for a week numbering system in that week number 1 is the week that contains the January 4th. This function does not provide interoperability with other spreadsheet applications. For new documents use the WEEKNUM or ISOWEEKNUM function instead." -msgstr "" +msgstr "Denne funksjonen eksisterer for interoperabilitet med %PRODUCTNAME-utgivelser eldre enn 5.1.0 og OpenOffice.org. Den beregner ukenummer for et ukenummereringssystem ved at uke nummer 1 er uken som inneholder 4. januar. Denne funksjonen gir ikke interoperabilitet med andre regnearkapplikasjoner. For nye dokumenter, bruk WEEKNUM eller ISOWEEKNUM-funksjonen i stedet ." #. rTYE7 #: func_weeknum_ooo.xhp @@ -67865,7 +67865,7 @@ "par_id3147236\n" "help.text" msgid "WEEKNUM_OOO(Number; Mode)" -msgstr "" +msgstr "WEEKNUM_OOO(Nummer; Modus)" #. AABCv #: func_weeknum_ooo.xhp @@ -67901,7 +67901,7 @@ "par_id3154280\n" "help.text" msgid "2 = Monday (ISO 8601)" -msgstr "" +msgstr "2 = Mandag (ISO 8601)" #. Fw3wN #: func_weeknum_ooo.xhp @@ -67910,7 +67910,7 @@ "par_id3154281\n" "help.text" msgid "any other value = Monday (ISO 8601)" -msgstr "" +msgstr "enhver annen verdi = Mandag (ISO 8601)" #. 9DDAr #: func_weeknum_ooo.xhp @@ -67919,7 +67919,7 @@ "par_id3150704\n" "help.text" msgid "=WEEKNUM_OOO(DATE(1995;1;1);1) returns 1" -msgstr "" +msgstr "=WEEKNUM_OOO(DATE(1995;1;1);1) returnerer 1" #. ZNtES #: func_weeknum_ooo.xhp @@ -67928,7 +67928,7 @@ "par_id3149792\n" "help.text" msgid "=WEEKNUM_OOO(DATE(1995;1;1);2) returns 52. Week 1 starts on Monday, 1995-01-02." -msgstr "" +msgstr "=WEEKNUM_OOO(DATE(1995;1;1);2) returnerer 52. Uke 1 starter på mandag, 1995-01-02." #. 9CdUK #: func_weeknumadd.xhp @@ -67937,7 +67937,7 @@ "tit\n" "help.text" msgid "WEEKNUM_EXCEL2003" -msgstr "" +msgstr "WEEKNUM_EXCEL2003" #. gXkPE #: func_weeknumadd.xhp @@ -67964,7 +67964,7 @@ "par_id3152945\n" "help.text" msgid "The result indicates the number of the calendar week for a date." -msgstr "" +msgstr "Resultatet indikerer nummeret på kalenderuken for en dato." #. qxipg #: func_weeknumadd.xhp @@ -67973,7 +67973,7 @@ "par_idN105DD\n" "help.text" msgid "The WEEKNUM_EXCEL2003 function is designed to calculate week numbers exactly as Microsoft Excel 2003 did. Use the WEEKNUM function for ODF OpenFormula and Excel 2010 compatibility, or ISOWEEKNUM function when you just need ISO 8601 week numbers. In releases prior to $[officename] 5.1 WEEKNUM_EXCEL2003 was named WEEKNUM_ADD." -msgstr "" +msgstr "WEEKNUM_EXCEL2003-funksjonen er utformet for å beregne uketall nøyaktig slik Microsoft Excel 2003 gjorde. Bruk funksjonen WEEKNUM for ODF OpenFormula og Excel 2010-kompatibilitet, eller ISOWEEKNUM funksjon når du bare trenger ISO 8601 ukenummer. I utgivelser før $[officename] 5.1 ble WEEKNUM_EXCEL2003 kalt WEEKNUM_ADD." #. JEG4n #: func_weeknumadd.xhp @@ -67982,7 +67982,7 @@ "par_id3153685\n" "help.text" msgid "WEEKNUM_EXCEL2003(Date; ReturnType)" -msgstr "" +msgstr "WEEKNUM_EXCEL2003(Dato; ReturType)" #. z7Axj #: func_weeknumadd.xhp @@ -68009,7 +68009,7 @@ "par_id3149973\n" "help.text" msgid "In which week number does 2001-12-24 fall?" -msgstr "" +msgstr "I hvilket ukenummer faller 2001-12-24?" #. CUc3E #: func_weeknumadd.xhp @@ -68018,7 +68018,7 @@ "par_id3149914\n" "help.text" msgid "=WEEKNUM_EXCEL2003(DATE(2001;12;24);1) returns 52." -msgstr "" +msgstr "=WEEKNUM_EXCEL2003(DATE(2001;12;24);1) returnerer 52." #. ibEk3 #: func_workday.intl.xhp @@ -68027,7 +68027,7 @@ "tit\n" "help.text" msgid "WORKDAY.INTL" -msgstr "" +msgstr "WORKDAY.INTL" #. GToZR #: func_workday.intl.xhp @@ -68036,7 +68036,7 @@ "bm_id231020162341219565\n" "help.text" msgid "WORKDAY.INTL function" -msgstr "" +msgstr "WORKDAY.INTL-funksjon" #. nVE73 #: func_workday.intl.xhp @@ -68045,7 +68045,7 @@ "hd_id231020162348002143\n" "help.text" msgid "WORKDAY.INTL" -msgstr "" +msgstr "WORKDAY.INTL" #. m53Cb #: func_workday.intl.xhp @@ -68054,7 +68054,7 @@ "par_id23102016234837285\n" "help.text" msgid "Returns the date calculated from a start date with a specific number of work days, before or after the start date. The calculation can include week-ends and holidays as non-working days." -msgstr "" +msgstr "Returnerer datoen beregnet fra en startdato med et spesifikt antall arbeidsdager, før eller etter startdatoen. Beregningen kan inkludere helger og helligdager som ikke-arbeidsdager." #. 9r2Ns #: func_workday.intl.xhp @@ -68063,7 +68063,7 @@ "par_id241020160008306838\n" "help.text" msgid "WORKDAY.INTL(StartDate; Days [; Weekend [; Holidays]])" -msgstr "" +msgstr "ARBEIDSDAG.INTL(Startdato; dager [; helg [; helligdager]])" #. gJg5G #: func_workday.intl.xhp @@ -68072,7 +68072,7 @@ "par_id241020160008308885\n" "help.text" msgid "StartDate: is the date from when the calculation is carried out." -msgstr "" +msgstr "Startdato: er datoen fra når beregningen er utført." #. CVBCb #: func_workday.intl.xhp @@ -68081,7 +68081,7 @@ "par_id241020160008305329\n" "help.text" msgid "Days is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date." -msgstr "" +msgstr "Dager er antall arbeidsdager. Positiv verdi for et resultat etter startdatoen, negativ verdi for et resultat før startdatoen." #. 89PEa #: func_workday.intl.xhp @@ -68090,7 +68090,7 @@ "par_id241020160012177196\n" "help.text" msgid "What date comes 20 workdays after December 13, 2016? Enter the start date in C3 and the number of workdays in D3." -msgstr "" +msgstr "Hvilken dato kommer 20 virkedager etter 13. desember 2016? Skriv inn startdato i C3 og antall arbeidsdager i D3." #. HnXyC #: func_workday.intl.xhp @@ -68099,7 +68099,7 @@ "par_id241020160012178429\n" "help.text" msgid "The weekend parameter (number) may be left blank or defined as 1 for default weekend (non-working days) – Saturday and Sunday." -msgstr "" +msgstr "Helgeparameteren (tall) kan stå tom eller definert som 1 for standard helg (ikke-arbeidsdager) – Lørdag og Søndag." #. PRAcf #: func_workday.intl.xhp @@ -68108,7 +68108,7 @@ "par_id241020160012172125\n" "help.text" msgid "Cells F3 to J3 contain five (5) holidays for Christmas and New Year in date format: December 24, 2016; December 25, 2016; December 26, 2016; December 31, 2016; and January 1, 2017." -msgstr "" +msgstr "Cellene F3 til J3 inneholder fem (5) helligdager for jul og nyttår i datoformat: 24. desember 2016; 25. desember 2016; 26. desember 2016; 31. desember 2016; og 1. januar 2017." #. NrXSh #: func_workday.intl.xhp @@ -68117,7 +68117,7 @@ "par_id241020160012177923\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;;F3:J3) returns January 11, 2017 in the result cell, say D6 (use date format for the cell)." -msgstr "" +msgstr "=WORKDAY.INTL(C3;D3;;F3:J3) returnerer 11. januar 2017 i resultatcellen, si D6 (bruk datoformat for cellen)." #. LGcmi #: func_workday.intl.xhp @@ -68126,7 +68126,7 @@ "par_id24102016001217206\n" "help.text" msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7." -msgstr "" +msgstr "For å definere Fredag og Lørdag som helgedager, bruk helgeparameter 7." #. MCkSA #: func_workday.intl.xhp @@ -68135,7 +68135,7 @@ "par_id241020160012178562\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;7;F3:J3) returns January 15, 2017 with weekend parameter 7." -msgstr "" +msgstr "=WORKDAY.INTL(C3;D3;7;F3:J3) returnerer 15. januar 2017 med helgeparameter 7." #. gdAdN #: func_workday.intl.xhp @@ -68144,7 +68144,7 @@ "par_id241020160012176149\n" "help.text" msgid "To define Sunday only the weekend day, use the weekend parameter 11." -msgstr "" +msgstr "For å definere søndag kun helgedagen, bruk helgeparameter 11." #. QuBHp #: func_workday.intl.xhp @@ -68153,7 +68153,7 @@ "par_id241020160012181455\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;11;F3:J3) returns January 9, 2017." -msgstr "" +msgstr "=WORKDAY.INTL(C3;D3;11;F3:J3) returnerer Januar 9, 2017." #. ySGjs #: func_workday.intl.xhp @@ -68162,7 +68162,7 @@ "par_id24102016001218469\n" "help.text" msgid "Alternatively, use the weekend string \"0000001\" for Sunday only weekend." -msgstr "" +msgstr "Alternativt kan du bruke helgestrengen \"0000001\" for bare søndag helg." #. rCTTJ #: func_workday.intl.xhp @@ -68171,7 +68171,7 @@ "par_id241020160012183680\n" "help.text" msgid "=WORKDAY.INTL(C3;D3;\"0000001\";F3:J3) returns January 9, 2017." -msgstr "" +msgstr "=WORKDAY.INTL(C3;D3;\"0000001\";F3:J3) returnerer 9. januar 2017." #. 3Xzsr #: func_workday.intl.xhp @@ -68180,7 +68180,7 @@ "par_id241020160012181870\n" "help.text" msgid "The function can be used without the two optional parameters – Weekday and Holidays – by leaving them out:" -msgstr "" +msgstr "Funksjonen kan brukes uten de to valgfrie parameterne – ukedag og helligdager – ved å utelate dem:" #. NvAre #: func_workday.intl.xhp @@ -68189,7 +68189,7 @@ "par_id241020160012182048\n" "help.text" msgid "=WORKDAY.INTL(C3;D3) gives the result: January 10, 2017." -msgstr "" +msgstr "=WORKDAY.INTL(C3;D3) gir resultatet: 10. januar 2017." #. 5dvmu #: func_workday.xhp @@ -68198,7 +68198,7 @@ "tit\n" "help.text" msgid "WORKDAY" -msgstr "" +msgstr "WORKDAY" #. GnRRw #: func_workday.xhp @@ -68225,7 +68225,7 @@ "par_id3149893\n" "help.text" msgid " The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of workdays away from the start date." -msgstr "" +msgstr " Resultatet er et datonummer som kan formateres som en dato. Du ser da datoen for en dag som er et visst antall arbeidsdager unna startdatoen." #. NDtoU #: func_workday.xhp @@ -68234,7 +68234,7 @@ "par_id3154844\n" "help.text" msgid "WORKDAY(StartDate; Days [; Holidays])" -msgstr "" +msgstr "WORKDAY(Startdato; Dager [; Helligdager])" #. 35EG5 #: func_workday.xhp @@ -68270,7 +68270,7 @@ "par_id3152782\n" "help.text" msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"." -msgstr "" +msgstr "Hvilken dato kom 17 virkedager etter 1. desember 2001? Skriv inn startdatoen \"2001-12-01\" i C3 og antall arbeidsdager i D3. Cellene F3 til J3 inneholder følgende jule- og nyttårsferier: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01- 01\"." #. FowYw #: func_workday.xhp @@ -68279,7 +68279,7 @@ "par_id3146142\n" "help.text" msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD." -msgstr "" +msgstr "=WORKDAY(C3;D3;F3:J3) returnerer 2001-12-28. Formater seriedatonummeret som en dato, for eksempel i formatet YYYY-MM-DD." #. tHNNK #: func_workday.xhp @@ -68288,7 +68288,7 @@ "par_id23102016225717242\n" "help.text" msgid "Date functions" -msgstr "" +msgstr "Datofunksjoner" #. dABAX #: func_year.xhp @@ -68324,7 +68324,7 @@ "par_id3147496\n" "help.text" msgid "Returns the year as a number according to the internal calculation rules." -msgstr "" +msgstr "Returnerer året som et tall i henhold til interne regneregler." #. 3SfLe #: func_year.xhp @@ -68378,7 +68378,7 @@ "par_id141577548861101\n" "help.text" msgid "=YEAR(DATEVALUE('2010-09-28')) returns 2010." -msgstr "" +msgstr "=YEAR(DATEVALUE('2010-09-28')) returnerer 2010." #. kAjPe #: func_yearfrac.xhp @@ -68387,7 +68387,7 @@ "tit\n" "help.text" msgid "YEARFRAC" -msgstr "" +msgstr "YEARFRAC" #. mm7eU #: func_yearfrac.xhp @@ -68414,7 +68414,7 @@ "par_id3150899\n" "help.text" msgid "The result is the number of the years (including fractional part) between StartDate and EndDate." -msgstr "" +msgstr "Resultatet er antall år (inkludert brøkdel) mellom StartDate og EndDate." #. DBBsL #: func_yearfrac.xhp @@ -68423,7 +68423,7 @@ "par_id3155823\n" "help.text" msgid "YEARFRAC(StartDate; EndDate [; Basis])" -msgstr "" +msgstr "YEARFRAC(Startdato; Sluttdato [; Grunnlag])" #. JAA8u #: func_yearfrac.xhp @@ -68468,7 +68468,7 @@ "par_id3154502\n" "help.text" msgid "0 or missing" -msgstr "" +msgstr "0 eller mangler" #. CkPny #: func_yearfrac.xhp @@ -68513,7 +68513,7 @@ "par_id3150931\n" "help.text" msgid "European method, 12 months of 30 days each" -msgstr "" +msgstr "Europeisk metode, 12 måneder à 30 dager hver" #. E8bDB #: func_yearfrac.xhp @@ -68522,7 +68522,7 @@ "par_id3149007\n" "help.text" msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?" -msgstr "" +msgstr "Hvilken brøkdel av året 2008 ligger mellom 2008-01-01 og 2008-07-01?" #. cAAsz #: func_yearfrac.xhp @@ -68531,7 +68531,7 @@ "par_id3154632\n" "help.text" msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50." -msgstr "" +msgstr "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returnerer 0.50." #. keAF3 #: live_data_stream.xhp @@ -68540,7 +68540,7 @@ "tit\n" "help.text" msgid "Live Data Stream" -msgstr "" +msgstr "Live datastrøm" #. GvEyi #: live_data_stream.xhp @@ -68549,7 +68549,7 @@ "bm_id240920171018528200\n" "help.text" msgid "Data Stream;Live data stream Data Stream;Streams" -msgstr "" +msgstr "Datastrøm;Live datastrøm Datastrøm;Strømmer" #. bn3r4 #: live_data_stream.xhp @@ -68558,7 +68558,7 @@ "hd_id240920171003006302\n" "help.text" msgid "Live Data Stream" -msgstr "" +msgstr "Live Datastrøm" #. mB9BH #: live_data_stream.xhp @@ -68567,7 +68567,7 @@ "par_id240920171003293400\n" "help.text" msgid "Create live data streams for spreadsheets." -msgstr "" +msgstr "Lag direkte datastrømmer for regneark." #. GmNXG #: live_data_stream.xhp @@ -68576,7 +68576,7 @@ "par_id240920171007389295\n" "help.text" msgid "Choose Data – Streams" -msgstr "" +msgstr "Velg Data – Strømmer" #. aV8Lc #: live_data_stream.xhp @@ -68585,7 +68585,7 @@ "par_id221641995264796\n" "help.text" msgid "Data streaming is the continuous flow of data generated by various sources. In %PRODUCTNAME Calc, data streams can be processed, stored, analyzed, and acted upon as it's generated in real-time." -msgstr "" +msgstr "Datastrømming er den kontinuerlige strømmen av data generert av ulike kilder. I %PRODUCTNAME Calc kan datastrømmer behandles, lagres, analyseres og utføres etter hvert som de genereres i sanntid." #. KANFG #: live_data_stream.xhp @@ -68594,7 +68594,7 @@ "par_id831641996045238\n" "help.text" msgid "Some real-life examples of streaming data include use cases in every industry, including real-time stock trades, up-to-the-minute retail inventory management, social media feeds, multiplayer game interactions, and ride-sharing apps." -msgstr "" +msgstr "Noen virkelige eksempler på strømmedata inkluderer brukstilfeller i alle bransjer, inkludert aksjehandel i sanntid, oppdatert lagerstyring i detaljhandelen, feeds for sosiale medier, interaksjoner med flere spillere og apper for deling av kjøreturer." #. sWHpE #: live_data_stream.xhp @@ -68603,7 +68603,7 @@ "hd_id791641995257145\n" "help.text" msgid "Source stream" -msgstr "" +msgstr "Kildestrøm" #. dyVdA #: live_data_stream.xhp @@ -68612,7 +68612,7 @@ "hd_id931641998122172\n" "help.text" msgid "URL" -msgstr "" +msgstr "URL" #. oYvgF #: live_data_stream.xhp @@ -68621,7 +68621,7 @@ "par_id31641995269740\n" "help.text" msgid "URL of the source document in the local file system or internet." -msgstr "" +msgstr "URL til kildedokumentet i det lokale filsystemet eller internett." #. 3Bdbh #: live_data_stream.xhp @@ -68630,7 +68630,7 @@ "hd_id811641996480534\n" "help.text" msgid "Interpret stream data as" -msgstr "" +msgstr "Tolk strømdata som" #. QpvTc #: live_data_stream.xhp @@ -68639,7 +68639,7 @@ "par_id591641996318461\n" "help.text" msgid "value1,value2,...,valueN, and fill into range:" -msgstr "" +msgstr "verdi1,verdi2,...,verdiN, og fyll inn i området:" #. iB5Fv #: live_data_stream.xhp @@ -68648,7 +68648,7 @@ "par_id441641996322078\n" "help.text" msgid "address,value:" -msgstr "" +msgstr "adresse,verdi:" #. JYyrF #: live_data_stream.xhp @@ -68657,7 +68657,7 @@ "hd_id241641998151807\n" "help.text" msgid "Empty lines trigger UI refresh" -msgstr "" +msgstr "Tomme linjer utløser UI-oppdatering" #. CEui4 #: live_data_stream.xhp @@ -68666,7 +68666,7 @@ "hd_id341641995330350\n" "help.text" msgid "When new data arrives" -msgstr "" +msgstr "Når nye data kommer" #. snU6R #: live_data_stream.xhp @@ -68675,7 +68675,7 @@ "par_id731641995339462\n" "help.text" msgid "There are three features of this option:" -msgstr "" +msgstr "Det er tre funksjoner for dette alternativet:" #. GLs5t #: live_data_stream.xhp @@ -68684,7 +68684,7 @@ "par_id471641995370002\n" "help.text" msgid "Move existing data down: the existing data is moved down in index and the empty space is filled by arriving data. In short, we deal in fix range of indexes." -msgstr "" +msgstr "Flytt eksisterende data ned: de eksisterende dataene flyttes ned i indeksen og den tomme plassen fylles av ankommende data. Kort sagt, vi håndterer et utvalg av faste indekser." #. nfgHU #: live_data_stream.xhp @@ -68693,7 +68693,7 @@ "par_id841641995386510\n" "help.text" msgid "Move the range down: the arriving data is appended at the end of existing data and range of indexes to be processed is shifted." -msgstr "" +msgstr "Flytt området ned: de ankommende dataene legges til på slutten av eksisterende data, og rekkevidden av indekser som skal behandles blir forskjøvet." #. 4zg6F #: live_data_stream.xhp @@ -68702,7 +68702,7 @@ "par_id1001641996559358\n" "help.text" msgid "Overwrite existing data: the arriving data overrides the existing data." -msgstr "" +msgstr "Overskriv eksisterende data: de innkommende dataene overstyrer eksisterende data." #. ZHiEZ #: live_data_stream.xhp @@ -68711,7 +68711,7 @@ "hd_id121641995404922\n" "help.text" msgid "Maximal Amount of Rows" -msgstr "" +msgstr "Maksimalt antall rader" #. GTkWu #: live_data_stream.xhp @@ -68720,7 +68720,7 @@ "par_id961641995414472\n" "help.text" msgid "Limit the maximum numbers of rows to a specified value or leave undefined, but limited to the %PRODUCTNAME Calc row limit." -msgstr "" +msgstr "Begrens det maksimale antallet rader til en spesifisert verdi eller la det være udefinert, men begrenset til radgrensen for %PRODUCTNAME Calc." #. AWPkL #: recalculate_hard.xhp @@ -68729,7 +68729,7 @@ "tit\n" "help.text" msgid "Recalculate hard" -msgstr "" +msgstr "Tving omberegning" #. EB6vW #: recalculate_hard.xhp @@ -68738,7 +68738,7 @@ "bm_id351645231629404\n" "help.text" msgid "calculate;recalculate hard formulas;recalculate hard calculate;force recalculation formulas;force recalculation non volatile functions;force recalculation cell contents;force recalculation" -msgstr "" +msgstr "beregne;tving omberegning formler;tving omberegning beregn;tving omberegning formler;tving omberegning ikke-flyktige funksjoner;tving omberegning celleinnehold;tving omberegning" #. CLMED #: recalculate_hard.xhp @@ -68747,7 +68747,7 @@ "hd_id611645217532285\n" "help.text" msgid "Recalculate Hard" -msgstr "" +msgstr "Tving omberegning" #. gCAFM #: recalculate_hard.xhp @@ -68756,7 +68756,7 @@ "par_id631645217532291\n" "help.text" msgid "Recalculates all formulas in the document, including Add-In functions and non-volatile functions." -msgstr "" +msgstr "Beregner alle formler i dokumentet på nytt, inkludert tilleggsfunksjoner og ikke-flyktige funksjoner." #. ooD3F #: recalculate_hard.xhp @@ -68765,7 +68765,7 @@ "par_id361645227084327\n" "help.text" msgid "The Recalculate Hard command forces recalculation of all formula cells of the spreadsheet document, including explicit non-volatile functions, even if no new input event exist. Examples of explicit non-volatile functions are RAND.NV and RANDBETWEEN.NV." -msgstr "" +msgstr "Kommandoen Tving omberegning fremtvinger omberegning av alle formelceller i regnearkdokumentet, inkludert eksplisitte ikke-flyktige funksjoner, selv om det ikke eksisterer noen ny inndatahendelse. Eksempler på eksplisitte ikke-flyktige funksjoner er RAND.NV og RANDBETWEEN.NV." #. t5LiZ #: shared_spreadsheet.xhp @@ -68774,7 +68774,7 @@ "tit\n" "help.text" msgid "Sharing Spreadsheets" -msgstr "" +msgstr "Deling av regneark" #. nGSyy #: shared_spreadsheet.xhp @@ -68783,7 +68783,7 @@ "bm_id671647274159909\n" "help.text" msgid "share spreadsheet spreadsheet;collaboration spreadsheet;share" -msgstr "" +msgstr "del regneark regneark;samarbeid regneark;del" #. yDBns #: shared_spreadsheet.xhp @@ -68792,7 +68792,7 @@ "hd_id461647272004705\n" "help.text" msgid "Share Spreadsheet" -msgstr "" +msgstr "Del regneark" #. KZGLG #: shared_spreadsheet.xhp @@ -68801,7 +68801,7 @@ "par_id551647272004709\n" "help.text" msgid "Sharing a spreadsheet allows several users to open the same file for editing at the same time." -msgstr "" +msgstr "Ved å dele et regneark kan flere brukere åpne den samme filen for redigering samtidig." #. 9BuYS #: shared_spreadsheet.xhp @@ -68810,7 +68810,7 @@ "par_id211647275285230\n" "help.text" msgid "The spreadsheet needs to be on a shared drive, server, website, or similar. Some conditions must be met on operating systems with user permission management:" -msgstr "" +msgstr "Regnearket må være på en delt stasjon, server, nettside eller lignende. Noen betingelser må oppfylles på operativsystemer med brukertillatelse:" #. 7Cbn3 #: shared_spreadsheet.xhp @@ -68819,7 +68819,7 @@ "par_id621647275321672\n" "help.text" msgid "The shared file needs to reside in a location which is accessible by all collaborators." -msgstr "" +msgstr "Den delte filen må ligge på et sted som er tilgjengelig for alle om kan redigere filen." #. 6hGDF #: shared_spreadsheet.xhp @@ -68828,7 +68828,7 @@ "par_id731647275360618\n" "help.text" msgid "The file permissions for both the document and the corresponding lock file need to be set so that all collaborators can create, delete, and change the files." -msgstr "" +msgstr "Filtillatelsene for både dokumentet og den tilsvarende låsefilen må angis slik at alle som kan redigere filen kan opprette, slette og endre filene." #. UhRSD #: shared_spreadsheet.xhp @@ -68837,7 +68837,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 "For å kunne identifisere endringene riktig, bør alle som kan redigere filen skrive inn navnet sitt i %PRODUCTNAME - InnstillingerVerktøy - Alternativer - %PRODUCTNAME - Brukerdata på menylinjen." #. k7H5Y #: solver.xhp @@ -68855,7 +68855,7 @@ "bm_id7654652\n" "help.text" msgid "goal seeking;solver what if operations;solver back-solving solver mathematical programming;solver for Calc mathematical optimization;solver for Calc operations research;solver for Calc" -msgstr "" +msgstr "målsøkende;løser hva om operasjoner; løser tilbakeløsning løser matematisk programmering;løser for Calc matematisk optimalisering;løser for Calc operasjonsforskning;løser for Calc" #. cBvDd #: solver.xhp @@ -68873,7 +68873,7 @@ "par_id9210486\n" "help.text" msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods." -msgstr "" +msgstr "Åpner dialogboksen Løser. En løser lar deg løse matematiske problemer med flere ukjente variabler og et sett med begrensninger på variablene ved hjelp av målsøkende metoder." #. wszcE #: solver.xhp @@ -68882,7 +68882,7 @@ "hd_id21589912365601\n" "help.text" msgid "Solver settings" -msgstr "" +msgstr "Løserinnstillinger" #. gMCQC #: solver.xhp @@ -68891,7 +68891,7 @@ "par_id501589912905479\n" "help.text" msgid "Solver settings are not saved to the file by %PRODUCTNAME Calc. Closing and reopening the file will reset the solver dialog to default settings." -msgstr "" +msgstr "Løserinnstillinger lagres ikke i filen av %PRODUCTNAME Calc. Hvis du lukker og åpner filen igjen, tilbakestilles løsningsdialogen til standardinnstillingene." #. GgVk7 #: solver.xhp @@ -68900,7 +68900,7 @@ "hd_id121589913023217\n" "help.text" msgid "Target Cell" -msgstr "" +msgstr "Målcelle" #. EsgHG #: solver.xhp @@ -68909,7 +68909,7 @@ "par_id8538773\n" "help.text" msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized." -msgstr "" +msgstr "Skriv inn eller klikk på cellereferansen til målcellen. Dette feltet tar adressen til cellen hvis verdi skal optimaliseres." #. 9j2m7 #: solver.xhp @@ -68918,7 +68918,7 @@ "hd_id441589913036601\n" "help.text" msgid "Optimize results to" -msgstr "" +msgstr "Optimaliser resultatene til" #. U8Ttv #: solver.xhp @@ -68927,7 +68927,7 @@ "par_id7564012\n" "help.text" msgid "Maximum: Try to solve the equation for a maximum value of the target cell." -msgstr "" +msgstr "Maksimum: Prøv å løse ligningen for en maksimal verdi av målcellen." #. N5C2U #: solver.xhp @@ -68936,7 +68936,7 @@ "par_id1186254\n" "help.text" msgid "Minimum: Try to solve the equation for a minimum value of the target cell." -msgstr "" +msgstr "Minimum: Prøv å løse ligningen for en minimumsverdi av målcellen." #. JAo82 #: solver.xhp @@ -68945,7 +68945,7 @@ "par_id7432477\n" "help.text" msgid "Value of: Try to solve the equation to approach a given value of the target cell." -msgstr "" +msgstr "Verdi av: Prøv å løse ligningen for å nærme deg en gitt verdi av målcellen." #. 5BC94 #: solver.xhp @@ -68954,7 +68954,7 @@ "par_id7141026\n" "help.text" msgid "Enter the value or a cell reference in the text field." -msgstr "" +msgstr "Skriv inn verdien eller en cellereferanse i tekstfeltet." #. KMA6B #: solver.xhp @@ -68963,7 +68963,7 @@ "hd_id761589914010085\n" "help.text" msgid "By Changing Cells" -msgstr "" +msgstr "Ved å endre celler" #. VvrzV #: solver.xhp @@ -68972,7 +68972,7 @@ "par_id8531449\n" "help.text" msgid "Enter the cell range that can be changed. These are the variables of the equations." -msgstr "" +msgstr "Skriv inn celleområdet som kan endres. Dette er variablene til ligningene." #. if7S9 #: solver.xhp @@ -68981,7 +68981,7 @@ "hd_id671589914927836\n" "help.text" msgid "Limiting Conditions" -msgstr "" +msgstr "Begrensende villkår" #. QQCWC #: solver.xhp @@ -68990,7 +68990,7 @@ "par_id421589915278885\n" "help.text" msgid "Add the set of constraints for the mathematical problem. Each constraint is represented by a cell reference (a variable), an operator, and a value." -msgstr "" +msgstr "Legg til settet med begrensninger for det matematiske problemet. Hver villkårene er representert av en cellereferanse (en variabel), en operator og en verdi." #. YApta #: solver.xhp @@ -68999,7 +68999,7 @@ "par_id9183935\n" "help.text" msgid "Cell reference: Enter a cell reference of the variable." -msgstr "" +msgstr "Cellereferanse: Skriv inn en cellereferanse for variabelen." #. eyxy9 #: solver.xhp @@ -69008,7 +69008,7 @@ "par_id1939451\n" "help.text" msgid "Click the Shrink button to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box." -msgstr "" +msgstr "Klikk på Krymp-knappen for å krympe eller gjenopprette dialogen. Du kan klikke eller velge celler i arket. Du kan legge inn en cellereferanse manuelt i inndataboksen." #. CWWbZ #: solver.xhp @@ -69017,7 +69017,7 @@ "par_id946684\n" "help.text" msgid "Operator: Select an operator from the list. Use Binary operator to restrict your variable to 0 or 1. Use the Integer operator to restrict your variable to take only integer values (no decimal part)." -msgstr "" +msgstr "Operator: Velg en operator fra listen. Bruk binær operator for å begrense variabelen til 0 eller 1. Bruk heltallsoperatoren for å begrense variabelen til å ta bare heltallsverdier (ingen desimaldel)." #. CtpNG #: solver.xhp @@ -69026,7 +69026,7 @@ "par_id9607226\n" "help.text" msgid "Value: Enter a value or a cell reference. This field is ignored when the operator is Binary or Integer." -msgstr "" +msgstr "Verdi: Skriv inn en verdi eller en cellereferanse. Dette feltet ignoreres når operatoren er binær eller heltall." #. GzohM #: solver.xhp @@ -69035,7 +69035,7 @@ "par_id9038972\n" "help.text" msgid "Remove button: Click to remove the row from the list. Any rows from below this row move up." -msgstr "" +msgstr "Fjern-knapp: Klikk for å fjerne raden fra listen. Alle rader fra under denne raden flyttes opp." #. H3FEH #: solver.xhp @@ -69044,7 +69044,7 @@ "par_id511589916338595\n" "help.text" msgid "You can set multiple conditions for a variable. For example, a variable in cell A1 that must be an integer less than 10. In that case, set two limiting conditions for A1." -msgstr "" +msgstr "Du kan angi flere betingelser for en variabel. For eksempel en variabel i celle A1 som må være et heltall mindre enn 10. Sett i så fall to begrensende betingelser for A1." #. B4DtG #: solver.xhp @@ -69053,7 +69053,7 @@ "hd_id441589917031236\n" "help.text" msgid "Options" -msgstr "" +msgstr "Alternativer" #. 5aZF7 #: solver.xhp @@ -69062,7 +69062,7 @@ "par_id2423780\n" "help.text" msgid "Opens the Solver Options dialog." -msgstr "" +msgstr "Åpner dialogboksen Løseralternativer." #. jDGPG #: solver.xhp @@ -69071,7 +69071,7 @@ "par_id221589917833431\n" "help.text" msgid "The Solver Options dialog let you select the different solver algorithms for either linear and non-linear problems and set their solving parameters." -msgstr "" +msgstr "Dialogboksen Løseralternativer lar deg velge de forskjellige løseralgoritmene for enten lineære og ikke-lineære problemer og angi deres løsningsparametere." #. 8YGDA #: solver.xhp @@ -69080,7 +69080,7 @@ "hd_id771589917064147\n" "help.text" msgid "Solve" -msgstr "" +msgstr "Løs" #. jFwTt #: solver.xhp @@ -69089,7 +69089,7 @@ "par_id2569658\n" "help.text" msgid "Click to solve the problem with the current settings. The dialog settings are retained until you close the current document." -msgstr "" +msgstr "Klikk for å løse problemet med gjeldende innstillinger. Dialoginnstillingene beholdes til du lukker gjeldende dokument." #. VFnjv #: solver.xhp @@ -69098,7 +69098,7 @@ "par_id5474410\n" "help.text" msgid "To solve equations with the solver" -msgstr "" +msgstr "Å løse ligninger med løseren" #. HMiDW #: solver.xhp @@ -69107,7 +69107,7 @@ "par_id2216559\n" "help.text" msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the target cell, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value." -msgstr "" +msgstr "Målet med løserprosessen er å finne de variable verdiene til en ligning som resulterer i en optimalisert verdi i målcellen, også kalt \"objektivet\". Du kan velge om verdien i målcellen skal være et maksimum, et minimum eller nærme seg en gitt verdi." #. tPUFj #: solver.xhp @@ -69116,7 +69116,7 @@ "par_id7869502\n" "help.text" msgid "The initial variable values are inserted in a rectangular cell range that you enter in the By changing cells box." -msgstr "" +msgstr "De innledende variabelverdiene settes inn i et rektangulært celleområde som du angir i boksen Ved å endre celler." #. HtNbG #: solver.xhp @@ -69125,7 +69125,7 @@ "par_id9852900\n" "help.text" msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)." -msgstr "" +msgstr "Du kan definere en rekke begrensende betingelser som setter begrensninger for enkelte celler. Du kan for eksempel angi begrensningen at en av variablene eller cellene ikke må være større enn en annen variabel, eller ikke større enn en gitt verdi. Du kan også definere begrensningen at én eller flere variabler må være heltall (verdier uten desimaler), eller binære verdier (der bare 0 og 1 er tillatt)." #. irGoh #: solver.xhp @@ -69134,7 +69134,7 @@ "hd_id0603200910430882\n" "help.text" msgid "Using Non-Linear solvers" -msgstr "" +msgstr "Bruk av ikke-lineære løsere" #. UTzzV #: solver.xhp @@ -69143,7 +69143,7 @@ "par_id0603200910430845\n" "help.text" msgid "Regardless whether you use DEPS or SCO, you start by going to Tools - Solver and set the Cell to be optimized, the direction to go (minimization, maximization) and the cells to be modified to reach the goal. Then you go to the Options and specify the solver to be used and if necessary adjust the according parameters." -msgstr "" +msgstr "Uansett om du bruker DEPS eller SCO, starter du med å gå til Verktøy - Løser og stiller inn cellen som skal optimaliseres, retningen som skal gå (minimering, maksimering) og cellene som skal modifiseres for å nå målet . Deretter går du til Alternativer og spesifiserer løseren som skal brukes og om nødvendig justerer du parametrene." #. gJGz2 #: solver.xhp @@ -69152,7 +69152,7 @@ "par_id0603200910430821\n" "help.text" msgid "There is also a list of constraints you can use to restrict the possible range of solutions or to penalize certain conditions. However, in case of the evolutionary solvers DEPS and SCO, these constraints are also used to specify bounds on the variables of the problem. Due to the random nature of the algorithms, it is highly recommended to do so and give upper (and in case \"Assume Non-Negative Variables\" is turned off also lower) bounds for all variables. They don't have to be near the actual solution (which is probably unknown) but should give a rough indication of the expected size (0 ≤ var ≤ 1 or maybe -1000000 ≤ var ≤ 1000000)." -msgstr "" +msgstr "Det er også en liste over begrensninger du kan bruke for å begrense det mulige utvalget av løsninger eller for å straffe visse forhold. Men når det gjelder de evolusjonære løserne DEPS og SCO, brukes disse begrensningene også til å spesifisere grenser for variablene til problemet. På grunn av algoritmenes tilfeldige natur, anbefales det å gjøre det og gi øvre (og i tilfelle \"Anta ikke-negative variabler\" er slått av også lavere) grenser for alle variabler. De trenger ikke være i nærheten av den faktiske løsningen (som sannsynligvis er ukjent), men bør gi en grov indikasjon på forventet størrelse (0 ≤ var ≤ 1 eller kanskje -1000000 ≤ var ≤ 1000000)." #. GFZqJ #: solver.xhp @@ -69161,7 +69161,7 @@ "par_id0603200910430873\n" "help.text" msgid "Bounds are specified by selecting one or more variables (as range) on the left side and entering a numerical value (not a cell or a formula) on the right side. That way you can also choose one or more variables to be Integer or Binary only." -msgstr "" +msgstr "Grenser spesifiseres ved å velge en eller flere variabler (som område) på venstre side og angi en numerisk verdi (ikke en celle eller en formel) på høyre side. På den måten kan du også velge en eller flere variabler som bare skal være heltall eller binære." #. nApF3 #: solver.xhp @@ -69170,7 +69170,7 @@ "par_id271589981559367\n" "help.text" msgid "Wiki page on solvers and their algorithms" -msgstr "" +msgstr "Wiki-side om løsere og deres algoritmer" #. akxrP #: solver_options.xhp @@ -69179,7 +69179,7 @@ "tit\n" "help.text" msgid "Solver Options" -msgstr "" +msgstr "løser for Calc;alternativer" #. UBnZK #: solver_options.xhp @@ -69188,7 +69188,7 @@ "bm_id291590166034871\n" "help.text" msgid "solver for Calc;options" -msgstr "" +msgstr "løser for Calc;alternativer" #. sPBHR #: solver_options.xhp @@ -69197,7 +69197,7 @@ "hd_id2794274\n" "help.text" msgid "Solver Options" -msgstr "" +msgstr "Løseralternativer" #. LHgS8 #: solver_options.xhp @@ -69206,7 +69206,7 @@ "par_id3163853\n" "help.text" msgid "Use the Options dialog to configure the solver engine." -msgstr "" +msgstr "Bruk dialogboksen Alternativer for å konfigurere løsermotoren." #. mFtPo #: solver_options.xhp @@ -69215,7 +69215,7 @@ "par_id9999694\n" "help.text" msgid "Click OK to accept the changes and to go back to the Solver dialog." -msgstr "" +msgstr "Klikk OK for å godta endringene og gå tilbake til Løser-dialogen." #. gE7WZ #: solver_options.xhp @@ -69224,7 +69224,7 @@ "hd_id581589922716672\n" "help.text" msgid "Solver engine" -msgstr "" +msgstr "Løsermotor" #. A7MrG #: solver_options.xhp @@ -69233,7 +69233,7 @@ "par_id393993\n" "help.text" msgid "Select a solver engine. The listbox is disabled if only one solver engine is installed." -msgstr "" +msgstr "Velg en løsningsmotor. Listeboksen er deaktivert hvis bare én løsermotor er installert." #. NMHJR #: solver_options.xhp @@ -69242,7 +69242,7 @@ "par_id221589959855748\n" "help.text" msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions." -msgstr "" +msgstr "Du kan installere flere løsermotorer som utvidelser, hvis tilgjengelig. Åpne Verktøy - Utvidelseradmin og bla til Utvidelses-nettstedet for å søke etter utvidelser." #. QtDyE #: solver_options.xhp @@ -69251,7 +69251,7 @@ "hd_id711589922750833\n" "help.text" msgid "Settings" -msgstr "" +msgstr "Innstillinger" #. ncgjf #: solver_options.xhp @@ -69260,7 +69260,7 @@ "par_id130619\n" "help.text" msgid "Configure the current solver. In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialog where you can change the value." -msgstr "" +msgstr "Konfigurer gjeldende løser. I Innstillinger-boksen merker du av for alle innstillingene du vil bruke for den gjeldende målsøkingsoperasjonen. Hvis det gjeldende alternativet tilbyr andre verdier, er Rediger-knappen aktivert. Klikk Rediger for å åpne en dialogboks der du kan endre verdien." #. DPYew #: solver_options.xhp @@ -69278,7 +69278,7 @@ "par_id6531266\n" "help.text" msgid "If the current entry in the Settings listbox allows you to edit a value, you can click the Edit button. A dialog opens where you can change the value." -msgstr "" +msgstr "Hvis gjeldende oppføring i listeboksen Innstillinger lar deg redigere en verdi, kan du klikke på Rediger-knappen. En dialog åpnes der du kan endre verdien." #. JzS8w #: solver_options.xhp @@ -69287,7 +69287,7 @@ "hd_id331589923158248\n" "help.text" msgid "Edit settings spin box" -msgstr "" +msgstr "Rediger innstillinger spinnerboks" #. B4WMx #: solver_options.xhp @@ -69296,7 +69296,7 @@ "par_id3912778\n" "help.text" msgid "Enter or change the value of the selected setting." -msgstr "" +msgstr "Angi eller endre verdien for den valgte innstillingen." #. GTuhj #: solver_options.xhp @@ -69305,7 +69305,7 @@ "par_id271589981559367\n" "help.text" msgid "Wiki page on non-linear solvers and their algorithms" -msgstr "" +msgstr "Wiki-side om ikke-lineære løsere og deres algoritmer" #. A843R #: solver_options_algo.xhp @@ -69314,7 +69314,7 @@ "tit\n" "help.text" msgid "Options" -msgstr "" +msgstr "Alternativer" #. U9kTW #: solver_options_algo.xhp @@ -69323,7 +69323,7 @@ "bm_id0503200917110375_scalc\n" "help.text" msgid "Solver for Nonlinear Problems;Options solver for Calc; DEPS evolutionary algorithm solver for Calc; SCO evolutionary algorithm solver for Calc; linear solver solver for Calc; CoinMP linear solver solver for Calc; swarm non-linear solver" -msgstr "" +msgstr "Løser for ikke-lineære problemer;Alternativer løser for Calc; DEPS evolusjonsalgoritme løser for Calc; SCO evolusjonsalgoritme løser for Calc; lineær løser løser for Calc; CoinMP lineær løser løser for Calc; sverm ikke-lineær løser" #. epbWC #: solver_options_algo.xhp @@ -69332,7 +69332,7 @@ "hd_id0503200917103593\n" "help.text" msgid "Solver Algorithms Options" -msgstr "" +msgstr "Alternativer for løseralgoritmer" #. o9GvM #: solver_options_algo.xhp @@ -69341,7 +69341,7 @@ "par_id651589925044267\n" "help.text" msgid "DEPS Evolutionary Algorithm" -msgstr "" +msgstr "DEPS Evolusjonsalgoritme" #. nebDs #: solver_options_algo.xhp @@ -69350,7 +69350,7 @@ "par_id931590164412542\n" "help.text" msgid "DEPS consists of two independent algorithms: Differential Evolution and Particle Swarm Optimization. Both are especially suited for numerical problems, such as nonlinear optimization, and are complementary to each other in that they even out each other’s shortcomings." -msgstr "" +msgstr "DEPS består av to uavhengige algoritmer: Differensiell utvikling og partikkelsvermoptimalisering. Begge er spesielt egnet for numeriske problemer, som ikke-lineær optimalisering, og er komplementære til hverandre ved at de utjevner hverandres mangler." #. EFbzc #: solver_options_algo.xhp @@ -69359,7 +69359,7 @@ "par_id0603200910394232\n" "help.text" msgid "Agent Switch Rate" -msgstr "" +msgstr "Byttehastighet for agent" #. E3ZoK #: solver_options_algo.xhp @@ -69368,7 +69368,7 @@ "par_id0603200910394248\n" "help.text" msgid "Specifies the probability for an individual to choose the Differential Evolution strategy." -msgstr "" +msgstr "Spesifiserer sannsynligheten for at en person velger differensialutviklingsstrategien." #. DbnUB #: solver_options_algo.xhp @@ -69377,7 +69377,7 @@ "par_id0603200910394277\n" "help.text" msgid "DE: Crossover Probability" -msgstr "" +msgstr "DE: Kryssingssannsynlighet" #. phaC2 #: solver_options_algo.xhp @@ -69386,7 +69386,7 @@ "par_id0603200910394280\n" "help.text" msgid "Defines the probability of the individual being combined with the globally best point. If crossover is not used, the point is assembled from the own memory of the individual." -msgstr "" +msgstr "Definerer sannsynligheten for at individet blir kombinert med det globalt beste punktet. Hvis crossover ikke brukes, er punktet satt sammen fra individets eget minne." #. G4GC9 #: solver_options_algo.xhp @@ -69395,7 +69395,7 @@ "par_id0643200910394216\n" "help.text" msgid "DE: Scaling Factor" -msgstr "" +msgstr "DE: Skaleringsfaktor" #. qKt78 #: solver_options_algo.xhp @@ -69404,7 +69404,7 @@ "par_id360320091039424\n" "help.text" msgid "During crossover, the scaling factor decides about the “speed” of movement." -msgstr "" +msgstr "Under crossover bestemmer skaleringsfaktoren \"hastigheten\" på bevegelsen." #. HPPHg #: solver_options_algo.xhp @@ -69413,7 +69413,7 @@ "par_id0507200917103771\n" "help.text" msgid "Learning Cycles" -msgstr "" +msgstr "Læringssykluser" #. ED86j #: solver_options_algo.xhp @@ -69422,7 +69422,7 @@ "par_id0503210917103720\n" "help.text" msgid "Defines the number of iterations, the algorithm should take. In each iteration, all individuals make a guess on the best solution and share their knowledge." -msgstr "" +msgstr "Definerer antall iterasjoner som algoritmen skal ta. I hver iterasjon gjetter alle individer på den beste løsningen og deler kunnskapen sin." #. M5Ka8 #: solver_options_algo.xhp @@ -69431,7 +69431,7 @@ "par_id3603200910394222\n" "help.text" msgid "PS: Cognitive Constant" -msgstr "" +msgstr "PS: Kognitiv konstant" #. bVENc #: solver_options_algo.xhp @@ -69440,7 +69440,7 @@ "par_id3603200915394212\n" "help.text" msgid "Sets the importance of the own memory (in particular the best reached point so far)." -msgstr "" +msgstr "Angir betydningen av eget minne (spesielt det best nådde punktet så langt)." #. ujBHP #: solver_options_algo.xhp @@ -69449,7 +69449,7 @@ "par_id060324091037421\n" "help.text" msgid "PS: Constriction Coefficient" -msgstr "" +msgstr "PS: Konstriksjonskoeffisient" #. Z86BZ #: solver_options_algo.xhp @@ -69458,7 +69458,7 @@ "par_id0608200910394225\n" "help.text" msgid "Defines the speed at which the particles/individuals move towards each other." -msgstr "" +msgstr "Definerer hastigheten som partiklene/individene beveger seg mot hverandre med." #. nFnAu #: solver_options_algo.xhp @@ -69467,7 +69467,7 @@ "par_id060320091039425\n" "help.text" msgid "PS: Mutation Probability" -msgstr "" +msgstr "PS: Mutasjonssannsynlighet" #. fGiKi #: solver_options_algo.xhp @@ -69476,7 +69476,7 @@ "par_id0603200910394272\n" "help.text" msgid "Defines the probability, that instead of moving a component of the particle towards the best point, it randomly chooses a new value from the valid range for that variable." -msgstr "" +msgstr "Definerer sannsynligheten for at i stedet for å flytte en komponent av partikkelen mot det beste punktet, velger den tilfeldig en ny verdi fra det gyldige området for den variabelen." #. nn4Ms #: solver_options_algo.xhp @@ -69485,7 +69485,7 @@ "par_id0603200910394292\n" "help.text" msgid "PS: Social Constant" -msgstr "" +msgstr "PS: Sosial konstant" #. nAD2Z #: solver_options_algo.xhp @@ -69494,7 +69494,7 @@ "par_id0603200910394284\n" "help.text" msgid "Sets the importance of the global best point between all particles/individuals." -msgstr "" +msgstr "Angir betydningen av det globale beste punktet mellom alle partikler/individer." #. GAGDE #: solver_options_algo.xhp @@ -69503,7 +69503,7 @@ "par_id0503200217103891\n" "help.text" msgid "Show Enhanced Solver Status" -msgstr "" +msgstr "Vis forbedret løserstatus" #. na8Ee #: solver_options_algo.xhp @@ -69512,7 +69512,7 @@ "par_id0523200917103832\n" "help.text" msgid "If enabled, an additional dialog is shown during the solving process which gives information about the current progress, the level of stagnation, the currently best known solution as well as the possibility, to stop or resume the solver." -msgstr "" +msgstr "Hvis aktivert, vises en ekstra dialogboks under løsningsprosessen som gir informasjon om gjeldende fremdrift, stagnasjonsnivået, den mest kjente løsningen samt muligheten , for å stoppe eller gjenoppta løseren." #. 3LaZ7 #: solver_options_algo.xhp @@ -69521,7 +69521,7 @@ "par_id0503200417103780\n" "help.text" msgid "Size of Swarm" -msgstr "" +msgstr "Størrelse på svermen" #. UhBid #: solver_options_algo.xhp @@ -69530,7 +69530,7 @@ "par_id0503100917103723\n" "help.text" msgid "Defines the number of individuals to participate in the learning process. Each individual finds its own solutions and contributes to the overall knowledge." -msgstr "" +msgstr "Definerer antall individer som skal delta i læringsprosessen. Hver enkelt finner sine egne løsninger og bidrar til den samlede kunnskapen." #. r62GH #: solver_options_algo.xhp @@ -69539,7 +69539,7 @@ "par_id0504200917103794\n" "help.text" msgid "Stagnation Limit" -msgstr "" +msgstr "Stagnasjonsbegrensning" #. LDNEL #: solver_options_algo.xhp @@ -69548,7 +69548,7 @@ "par_id050320091710377\n" "help.text" msgid "If this number of individuals found solutions within a close range, the iteration is stopped and the best of these values is chosen as optimal." -msgstr "" +msgstr "Hvis dette antallet individer fant løsninger innenfor et nært område, stoppes iterasjonen og den beste av disse verdiene velges som optimal." #. vGYwe #: solver_options_algo.xhp @@ -69557,7 +69557,7 @@ "par_id0503200917103762\n" "help.text" msgid "Stagnation Tolerance" -msgstr "" +msgstr "Stagnasjonstoleranse" #. wqeXY #: solver_options_algo.xhp @@ -69566,7 +69566,7 @@ "par_id0503200917103834\n" "help.text" msgid "Defines in what range solutions are considered “similar”." -msgstr "" +msgstr "Definerer i hvilket område løsninger anses som \"liknende\"." #. jKuiG #: solver_options_algo.xhp @@ -69575,7 +69575,7 @@ "par_id0503200917103740\n" "help.text" msgid "Use ACR Comparator" -msgstr "" +msgstr "Bruk ACR-sammenligning" #. D8e8D #: solver_options_algo.xhp @@ -69584,7 +69584,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 "" +msgstr "Hvis deaktivert (standard), brukes BCH-sammenligneren. Den sammenligner to individer ved først å se på brudd på begrensningene deres, og bare hvis de er like, måler den deres nåværende løsning." #. 7LWoa #: solver_options_algo.xhp @@ -69593,7 +69593,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 "" +msgstr "Hvis aktivert, brukes ACR-komparatoren. Den sammenligner to individer som er avhengige av gjeldende iterasjon og måler deres godhet med kunnskap om bibliotekenes verste kjente løsninger (med hensyn til brudd på begrensningene deres)." #. GZ7C2 #: solver_options_algo.xhp @@ -69602,7 +69602,7 @@ "par_id0503200917103792\n" "help.text" msgid "Use Random Starting Point" -msgstr "" +msgstr "Bruk tilfeldig startpunkt" #. EdJoF #: solver_options_algo.xhp @@ -69611,7 +69611,7 @@ "par_id0503200917103790\n" "help.text" msgid "If enabled, the library is simply filled up with randomly chosen points." -msgstr "" +msgstr "Hvis aktivert, blir biblioteket ganske enkelt fylt opp med tilfeldig valgte punkter." #. oCPc4 #: solver_options_algo.xhp @@ -69620,7 +69620,7 @@ "par_id0503200917103765\n" "help.text" msgid "If disabled, the currently present values (as given by the user) are inserted in the library as reference point." -msgstr "" +msgstr "Hvis deaktivert, blir gjeldende verdier (som gitt av brukeren) satt inn i biblioteket som referansepunkt." #. ctLqK #: solver_options_algo.xhp @@ -69629,7 +69629,7 @@ "par_id0503200917103732\n" "help.text" msgid "Variable Bounds Guessing" -msgstr "" +msgstr "Gjetting av variabelgrenser" #. rc95a #: solver_options_algo.xhp @@ -69638,7 +69638,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 "Hvis aktivert (standard), prøver algoritmen å finne variabelgrenser ved å se på startverdiene." #. JctSA #: solver_options_algo.xhp @@ -69647,7 +69647,7 @@ "par_id0503200917103794\n" "help.text" msgid "Variable Bounds Threshold" -msgstr "" +msgstr "Terskel for variabelgrenser" #. NNyfL #: solver_options_algo.xhp @@ -69656,7 +69656,7 @@ "par_id0503200917103710\n" "help.text" msgid "When guessing variable bounds, this threshold specifies, how the initial values are shifted to build the bounds. For an example how these values are calculated, please refer to the Manual in the Wiki." -msgstr "" +msgstr "Når man gjetter variabelgrenser, spesifiserer denne terskelen hvordan startverdiene forskyves for å bygge grensene. For et eksempel på hvordan disse verdiene beregnes, se manualen i Wiki." #. g7v8S #: solver_options_algo.xhp @@ -69665,7 +69665,7 @@ "par_id391589925078747\n" "help.text" msgid "SCO Evolutionary Algorithm" -msgstr "" +msgstr "SCO-evolusjonsalgoritme" #. tqkJh #: solver_options_algo.xhp @@ -69674,7 +69674,7 @@ "par_id681590165847694\n" "help.text" msgid "Social Cognitive Optimization takes into account the human behavior of learning and sharing information. Each individual has access to a common library with knowledge shared between all individuals." -msgstr "" +msgstr "Sosial kognitiv optimalisering tar hensyn til menneskelig atferd ved å lære og dele informasjon. Hver enkelt har tilgang til et felles bibliotek med kunnskap som deles mellom alle individer." #. wovoy #: solver_options_algo.xhp @@ -69683,7 +69683,7 @@ "par_id0503200917103771\n" "help.text" msgid "Learning Cycles" -msgstr "" +msgstr "Læringssykluser" #. wgKE5 #: solver_options_algo.xhp @@ -69692,7 +69692,7 @@ "par_id0503200917103720\n" "help.text" msgid "Defines the number of iterations, the algorithm should take. In each iteration, all individuals make a guess on the best solution and share their knowledge." -msgstr "" +msgstr "Definerer antall iterasjoner som algoritmen skal ta. I hver iterasjon gjetter alle individer på den beste løsningen og deler kunnskapen sin." #. wrasx #: solver_options_algo.xhp @@ -69701,7 +69701,7 @@ "par_id0603200910401382\n" "help.text" msgid "Size of Library" -msgstr "" +msgstr "Størrelse på bibliotek" #. 4PmLg #: solver_options_algo.xhp @@ -69710,7 +69710,7 @@ "par_id060320091040136\n" "help.text" msgid "Defines the amount of information to store in the public library. Each individual stores knowledge there and asks for information." -msgstr "" +msgstr "Definerer mengden informasjon som skal lagres i det offentlige biblioteket. Hver enkelt lagrer kunnskap der og ber om informasjon." #. EPiZn #: solver_options_algo.xhp @@ -69719,7 +69719,7 @@ "par_id741589980722689\n" "help.text" msgid "" -msgstr "" +msgstr "" #. Ltucz #: solver_options_algo.xhp @@ -69728,7 +69728,7 @@ "par_id901589980722691\n" "help.text" msgid "" -msgstr "" +msgstr "" #. FAW7L #: solver_options_algo.xhp @@ -69737,7 +69737,7 @@ "par_id671589925148891\n" "help.text" msgid "%PRODUCTNAME Linear Solver and CoinMP Linear solver" -msgstr "" +msgstr "%PRODUCTNAME Linjær Løser og CoinMP Linjær Løser" #. PNEaC #: solver_options_algo.xhp @@ -69746,7 +69746,7 @@ "par_id731589925837981\n" "help.text" msgid "Setting" -msgstr "" +msgstr "Innstilling" #. DhVRA #: solver_options_algo.xhp @@ -69755,7 +69755,7 @@ "par_id611589925837982\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. MqHfE #: solver_options_algo.xhp @@ -69764,7 +69764,7 @@ "par_id511589925837984\n" "help.text" msgid "Assume variables as integers" -msgstr "" +msgstr "Anta at variabler er heltall" #. Javmc #: solver_options_algo.xhp @@ -69773,7 +69773,7 @@ "par_id11589925837985\n" "help.text" msgid "Mark to force variables to be integers only." -msgstr "" +msgstr "Marker for å tvinge variabler til bare å være heltall." #. yie3u #: solver_options_algo.xhp @@ -69782,7 +69782,7 @@ "par_id221589961756407\n" "help.text" msgid "Assume variables as non negative" -msgstr "" +msgstr "Anta at variabler er ikke-negative" #. ij2he #: solver_options_algo.xhp @@ -69791,7 +69791,7 @@ "par_id861589961756408\n" "help.text" msgid "Mark to force variables to be positive only." -msgstr "" +msgstr "Marker for å tvinge variabler til kun å være positive." #. uEDEh #: solver_options_algo.xhp @@ -69800,7 +69800,7 @@ "par_id971589961907787\n" "help.text" msgid "Epsilon level" -msgstr "" +msgstr "Epsilon nivå" #. JSVtE #: solver_options_algo.xhp @@ -69809,7 +69809,7 @@ "par_id421589961907788\n" "help.text" msgid "Epsilon level. Valid values are in range 0 (very tight) to 3 (very loose). Epsilon is the tolerance for rounding values to zero." -msgstr "" +msgstr "Epsilon nivå. Gyldige verdier er i området 0 (veldig stramt) til 3 (veldig løst). Epsilon er toleransen for å avrunde verdier til null." #. rtCLo #: solver_options_algo.xhp @@ -69818,7 +69818,7 @@ "par_id71589961998523\n" "help.text" msgid "Limit branch-and-bound depth" -msgstr "" +msgstr "Begrens gren-og-bundet dybde" #. yeTw2 #: solver_options_algo.xhp @@ -69827,7 +69827,7 @@ "par_id331589961998525\n" "help.text" msgid "Specifies the maximum branch-and-bound depth. A positive value means that the depth is absolute. A negative value means a relative branch-and-bound depth limit." -msgstr "" +msgstr "Angir maksimal gren-og-bundet dybde. En positiv verdi betyr at dybden er absolutt. En negativ verdi betyr en relativ gren-og-bundet dybdegrense." #. pnUYs #: solver_options_algo.xhp @@ -69836,7 +69836,7 @@ "par_id91589962070327\n" "help.text" msgid "Solver time limit" -msgstr "" +msgstr "Tidsgrense for løser" #. PPtR8 #: solver_options_algo.xhp @@ -69845,7 +69845,7 @@ "par_id331589962070329\n" "help.text" msgid "Sets the maximum time for the algorithm to converge to a solution." -msgstr "" +msgstr "Angi maksimal tid for algoritmen for å konvergere til en løsning." #. dBQSw #: solver_options_algo.xhp @@ -69854,7 +69854,7 @@ "par_id711589925192067\n" "help.text" msgid "%PRODUCTNAME Swarm Non-Linear Solver (Experimental)" -msgstr "" +msgstr "%PRODUCTNAME Sverm Ikke-lineær løser (eksperimentell)" #. TFadK #: solver_options_algo.xhp @@ -69863,7 +69863,7 @@ "par_id971589963431459\n" "help.text" msgid "Swarm algorithm" -msgstr "" +msgstr "Svermalgoritme" #. cgpYF #: solver_options_algo.xhp @@ -69872,7 +69872,7 @@ "par_id71589963431460\n" "help.text" msgid "Set the swarm algorithm. 0 for differential evolution and 1 for particle swarm optimization. Default is 0." -msgstr "" +msgstr "Still inn svermalgoritmen. 0 for differensiell evolusjon og 1 for partikkelsvermoptimalisering. Standard er 0." #. BTYCC #: solver_options_algo.xhp @@ -69881,7 +69881,7 @@ "par_id271589981559367\n" "help.text" msgid "Wiki page on non-linear solvers and their algorithms" -msgstr "" +msgstr "Wiki-side om ikke-lineære løsere og deres algoritmer" #. D2nCR #: solver_options_algo.xhp @@ -69890,7 +69890,7 @@ "par_id211590163660314\n" "help.text" msgid "lp_solve reference guide in sourceforge.net" -msgstr "" +msgstr "lp_solve-referanseguide i sourceforge.net" #. pbKdu #: sparklines.xhp @@ -69899,7 +69899,7 @@ "tit\n" "help.text" msgid "Sparklines" -msgstr "" +msgstr "Gnistlinje" #. 82qW9 #: sparklines.xhp @@ -69908,7 +69908,7 @@ "bm_id901654173679276\n" "help.text" msgid "sparklines" -msgstr "" +msgstr "gnistlinje" #. P8DfA #: sparklines.xhp @@ -69917,7 +69917,7 @@ "hd_id721654173263812\n" "help.text" msgid "Sparklines" -msgstr "" +msgstr "Gnistlinjer" #. wUPfH #: sparklines.xhp @@ -69926,7 +69926,7 @@ "par_id981654173263817\n" "help.text" msgid "Sparklines are small data charts displayed inside a cell." -msgstr "" +msgstr "Gnistlinjer er små datadiagrammer som vises i en celle." #. Hwfhj #: sparklines.xhp @@ -69935,7 +69935,7 @@ "par_id341654174064080\n" "help.text" msgid "Sparklines are defined for one cell, but multiple sparklines can be joined together into a group. The group shares the same properties for rendering the sparkline. The unique data that is defined only for one sparkline is the data range, that a sparkline will use for rendering." -msgstr "" +msgstr "Gnistlinjer er definert for en celle, men flere gnistlinjer kan slås sammen til en gruppe. Gruppen deler de samme egenskapene for gjengivelse av gnistlinje. De unike dataene som bare er definert for én gnistlinje, er dataområdet som en gnistlinje vil bruke for gjengivelse." #. cqUKB #: sparklines.xhp @@ -69944,7 +69944,7 @@ "par_id761654173486733\n" "help.text" msgid "Choose Insert - Sparkline." -msgstr "" +msgstr "Velg Sett inn - Gnistlinje." #. 6ivXp #: sparklines.xhp @@ -69953,7 +69953,7 @@ "hd_id391654173530650\n" "help.text" msgid "Data" -msgstr "" +msgstr "Data" #. y498T #: sparklines.xhp @@ -69962,7 +69962,7 @@ "par_id751654174462868\n" "help.text" msgid "Input range: enter the cell range of the data. Use the shrink button to select the data range with the mouse." -msgstr "" +msgstr "Inndataområde: skriv inn celleområdet for dataene. Bruk krymp-knappen for å velge dataområdet med musen." #. uKmTQ #: sparklines.xhp @@ -69971,7 +69971,7 @@ "par_id701654174578218\n" "help.text" msgid "Output range: select the cell range to receive the sparkline. Use the shrink button to select the cell range with the mouse." -msgstr "" +msgstr "Utdataområde: velg celleområdet for å motta sparkline. Bruk krymp-knappen for å velge celleområdet med musen." #. GhzeC #: sparklines.xhp @@ -69980,7 +69980,7 @@ "hd_id651654174597644\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Egenskaper" #. mRxgt #: sparklines.xhp @@ -69989,7 +69989,7 @@ "par_id961654174732293\n" "help.text" msgid "Type: select the sparkline type in the drop-down list. Choices are:" -msgstr "" +msgstr "Type: velg gnistlinje-typen i rullegardinlisten. Valgene er:" #. wPWdA #: sparklines.xhp @@ -69998,7 +69998,7 @@ "par_id481654191793887\n" "help.text" msgid "Line: draws a line between data values." -msgstr "" +msgstr "Linje: trekker en linje mellom dataverdier." #. eA77b #: sparklines.xhp @@ -70007,7 +70007,7 @@ "par_id391654191798913\n" "help.text" msgid "Column: draws a bar for each data value." -msgstr "" +msgstr "Kolonne: tegner en stolpe for hver dataverdi." #. dUFBB #: sparklines.xhp @@ -70016,7 +70016,7 @@ "par_id481654191804474\n" "help.text" msgid "Stacked: also known as win/loss. Displays equally sized bars indicating positive and negative values." -msgstr "" +msgstr "Stablet: også kjent som seier/tap. Viser like store stolper som indikerer positive og negative verdier." #. bsCDU #: sparklines.xhp @@ -70025,7 +70025,7 @@ "par_id701654174850309\n" "help.text" msgid "Line width: enter the line width number manually or use the spin button." -msgstr "" +msgstr "Linjebredde: skriv inn linjebreddenummeret manuelt eller bruk spinnknappen." #. CAGGB #: sparklines.xhp @@ -70034,7 +70034,7 @@ "par_id761654176569576\n" "help.text" msgid "Display empty cells as: choices are available in the drop-down list:" -msgstr "" +msgstr "Vis tomme celler som: valg er tilgjengelige i rullegardinlisten:" #. cnwYt #: sparklines.xhp @@ -70043,7 +70043,7 @@ "par_id171654176533173\n" "help.text" msgid "Gap: the missing data is not displayed. The line type discontinues in the gap and the column is not displayed." -msgstr "" +msgstr "Gap: de manglende dataene vises ikke. Linjetypen fortsetter ikke i mellomrommet og kolonnen vises ikke." #. PrmF8 #: sparklines.xhp @@ -70052,7 +70052,7 @@ "par_id81654176538165\n" "help.text" msgid "Zero: the missing data is displayed as value zero." -msgstr "" +msgstr "Zero: de manglende dataene vises som verdien null." #. G9ZDs #: sparklines.xhp @@ -70061,7 +70061,7 @@ "par_id801654176544375\n" "help.text" msgid "Span: for line type only, draws a continuous line connecting the previous value to the next value." -msgstr "" +msgstr "Span: kun for linjetype, tegner en sammenhengende linje som forbinder forrige verdi med neste verdi." #. BNnGT #: sparklines.xhp @@ -70070,7 +70070,7 @@ "par_id431654176711837\n" "help.text" msgid "Display hidden: check to show all columns or stacks in the range even when the data is in hidden cells. If unchecked, the hidden data is ignored." -msgstr "" +msgstr "Vis skjult: merk av for å vise alle kolonner eller stabler i området selv når dataene er i skjulte celler. Hvis det ikke er merket av, ignoreres de skjulte dataene." #. 7NZyB #: sparklines.xhp @@ -70079,7 +70079,7 @@ "par_id21654177035348\n" "help.text" msgid "Right-to-left: check to have the sparklines show the data in reverse order." -msgstr "" +msgstr "Høyre-til-venstre: Merk av for å få gnistlinjene til å vise dataene i omvendt rekkefølge." #. FhUrj #: sparklines.xhp @@ -70088,7 +70088,7 @@ "hd_id911654177186844\n" "help.text" msgid "Colors" -msgstr "" +msgstr "Farger" #. sq3di #: sparklines.xhp @@ -70097,7 +70097,7 @@ "par_id11654177765370\n" "help.text" msgid "Series: select the main color for the sparklines." -msgstr "" +msgstr "Serier: velg hovedfargen for gnistlinjer." #. ZAZbq #: sparklines.xhp @@ -70106,7 +70106,7 @@ "par_id421654177770032\n" "help.text" msgid "Negative points: check and select the color for negative points." -msgstr "" +msgstr "Negative punkter: sjekk og velg fargen for negative punkter." #. vJjrw #: sparklines.xhp @@ -70115,7 +70115,7 @@ "par_id231654177773798\n" "help.text" msgid "High points: check and select the color for high points." -msgstr "" +msgstr "Høye punkter: sjekk og velg fargen for høye punkter." #. XGDyn #: sparklines.xhp @@ -70124,7 +70124,7 @@ "par_id371654177777479\n" "help.text" msgid "Low points: check and select the color for low points." -msgstr "" +msgstr "Lavpunkter: sjekk og velg fargen for lave punkter." #. wkzjv #: sparklines.xhp @@ -70133,7 +70133,7 @@ "par_id521654177784536\n" "help.text" msgid "Marker: check and select the color for data points (line type only)." -msgstr "" +msgstr "Markør: sjekk og velg fargen for datapunkter (kun linjetype)." #. xJA6Q #: sparklines.xhp @@ -70142,7 +70142,7 @@ "par_id181654177788533\n" "help.text" msgid "First point: check and select the color for first point." -msgstr "" +msgstr "Første punkt: sjekk og velg farge for første punkt." #. 2BLQa #: sparklines.xhp @@ -70151,7 +70151,7 @@ "par_id241654177793144\n" "help.text" msgid "Last point: check and select the color for last point." -msgstr "" +msgstr "Siste punkt: sjekk og velg fargen for siste punkt." #. KxQEE #: sparklines.xhp @@ -70160,7 +70160,7 @@ "hd_id251654180880861\n" "help.text" msgid "Axes" -msgstr "" +msgstr "Akser" #. mRJUH #: sparklines.xhp @@ -70169,7 +70169,7 @@ "par_id871654181525722\n" "help.text" msgid "Display X axis: check to show the X axis for sparklines." -msgstr "" +msgstr "Vis X-aksen: Merk av for å vise X-aksen for gnistlinjer." #. qmn7h #: sparklines.xhp @@ -70178,7 +70178,7 @@ "par_id891654181533521\n" "help.text" msgid "Vertical minimum, Vertical maximum: check to set the minimum (maximum) value for the Y axis. Select one of following:" -msgstr "" +msgstr "Vertikalt minimum, Vertikalt maksimum: merk av for å angi minimum (maksimum) verdi for Y-aksen. Velg ett av følgende:" #. KnHCA #: sparklines.xhp @@ -70187,7 +70187,7 @@ "par_id521654181404234\n" "help.text" msgid "Individual: sets automatically the minimum (maximum) value for each sparkline based on the sparkline data range values." -msgstr "" +msgstr "Individuell: angir automatisk minimumsverdien (maksimumsverdien) for hver gnistlinje basert på verdiene for gnistlinje-dataområdet." #. mHjnu #: sparklines.xhp @@ -70196,7 +70196,7 @@ "par_id821654181425448\n" "help.text" msgid "Group: sets the minimum (maximum) value based on the lower and higher values found in the group of sparklines." -msgstr "" +msgstr "Gruppe: angir minimumsverdien (maksimumsverdien) basert på de lavere og høyere verdiene som finnes i gruppen med gnistlinje." #. NNez9 #: sparklines.xhp @@ -70205,7 +70205,7 @@ "par_id51654181442414\n" "help.text" msgid "Custom: enter the minimum (maximum) value for the sparkline group. Enter the minimum (maximum) values or use the spin buttons." -msgstr "" +msgstr "Egendefinert: Angi minimumsverdien (maksimumsverdien) for sparklinegruppen. Angi minimum (maksimum) verdier eller bruk spinnknappene." #. XG5Kv #: sparklines.xhp @@ -70214,7 +70214,7 @@ "par_id801654192214865\n" "help.text" msgid "Developer blog post on sparklines" -msgstr "" +msgstr "Utviklerblogginnlegg om gnistlinjer" #. Q6isn #: stat_data.xhp @@ -70241,7 +70241,7 @@ "par_id1000010\n" "help.text" msgid "Input Range: The reference of the range of the data to analyze." -msgstr "" +msgstr "Inndataområde: Referansen til rekkevidden av dataene som skal analyseres." #. tVWXF #: stat_data.xhp @@ -70250,7 +70250,7 @@ "par_id1000020\n" "help.text" msgid "Results to: The reference of the top left cell of the range where the results will be displayed." -msgstr "" +msgstr "Resultater til: Referansen til cellen øverst til venstre i området der resultatene skal vises." #. CxAAD #: stat_data.xhp @@ -70259,7 +70259,7 @@ "hd_id1000020\n" "help.text" msgid "Grouped By" -msgstr "" +msgstr "Gruppert etter" #. AppmZ #: stat_data.xhp @@ -70268,7 +70268,7 @@ "par_id1000030\n" "help.text" msgid "Select whether the input data has columns or rows layout." -msgstr "" +msgstr "Velg om inndataene har kolonne eller rad layout." #. ft7Qy #: stat_data.xhp @@ -70277,7 +70277,7 @@ "par_id1000040\n" "help.text" msgid "The following data will be used as example" -msgstr "" +msgstr "Følgende data vil bli brukt som eksempel" #. U37rK #: stat_data.xhp @@ -70286,7 +70286,7 @@ "par_id1000090\n" "help.text" msgid "Maths" -msgstr "" +msgstr "Matte" #. EQ45W #: stat_data.xhp @@ -70295,7 +70295,7 @@ "par_id1000100\n" "help.text" msgid "Physics" -msgstr "" +msgstr "Fysikk" #. AEvwX #: stat_data.xhp @@ -70304,7 +70304,7 @@ "par_id1000110\n" "help.text" msgid "Biology" -msgstr "" +msgstr "Biologi" #. i4WNL #: stat_data.xhp @@ -70313,7 +70313,7 @@ "par_id1000550\n" "help.text" msgid "The following table has two time series, one representing an impulse function at time t=0 and the other an impulse function at time t=2." -msgstr "" +msgstr "Følgende tabell har to tidsserier, den ene representerer en impulsfunksjon til tiden t=0 og den andre en impulsfunksjonen til tiden t=2." #. uZ5BP #: stat_data.xhp @@ -70322,7 +70322,7 @@ "par_id1000970\n" "help.text" msgid "The following table has two data sets." -msgstr "" +msgstr "Følgende tabell har to datasett." #. 3Ehtm #: stat_data.xhp @@ -70331,7 +70331,7 @@ "par_id1701201619425624\n" "help.text" msgid "The following table has samples of a physical phenomenon taken in 1 second interval." -msgstr "" +msgstr "Følgende tabell har eksempler på et fysisk fenomen tatt i 1 sekunds intervall." #. NoTX4 #: stat_data.xhp @@ -70340,7 +70340,7 @@ "par_id11561818344892\n" "help.text" msgid "Group By Columns" -msgstr "" +msgstr "Grupper etter kolonner" #. Ei5b9 #: stat_data.xhp @@ -70349,7 +70349,7 @@ "par_id151561818353339\n" "help.text" msgid "TRUE" -msgstr "" +msgstr "SANN" #. BSNLd #: stat_data.xhp @@ -70358,7 +70358,7 @@ "par_id141561818361892\n" "help.text" msgid "Polar" -msgstr "" +msgstr "Polar" #. 9DG5B #: stat_data.xhp @@ -70367,7 +70367,7 @@ "par_id361561818366868\n" "help.text" msgid "FALSE" -msgstr "" +msgstr "USANN" #. eztCR #: stat_data.xhp @@ -70376,7 +70376,7 @@ "par_id181561818387534\n" "help.text" msgid "Inverse" -msgstr "" +msgstr "Invers" #. dMpg5 #: stat_data.xhp @@ -70385,7 +70385,7 @@ "par_id681561818391189\n" "help.text" msgid "FALSE" -msgstr "" +msgstr "USANN" #. 5mvKB #: stat_data.xhp @@ -70394,7 +70394,7 @@ "par_id201561827895671\n" "help.text" msgid "Formula" -msgstr "" +msgstr "Formel" #. W8iXh #: stat_data.xhp @@ -70403,7 +70403,7 @@ "par_id361561818379679\n" "help.text" msgid "{=FOURIER(B6:C40,B1,B2,B3,0)}" -msgstr "" +msgstr "{=FOURIER(B6:C40,B1,B2,B3,0)}" #. VDD3g #: stat_data.xhp @@ -70412,7 +70412,7 @@ "par_id711561818399814\n" "help.text" msgid "Source Array" -msgstr "" +msgstr "Kildeamatrise" #. BjvDD #: stat_data.xhp @@ -70421,7 +70421,7 @@ "par_id551561818405550\n" "help.text" msgid "Transformed Array" -msgstr "" +msgstr "Transformert matrise" #. 6qfvf #: stat_data.xhp @@ -70430,7 +70430,7 @@ "par_id581561818425613\n" "help.text" msgid "Real" -msgstr "" +msgstr "Virkelig" #. mr7CX #: stat_data.xhp @@ -70439,7 +70439,7 @@ "par_id251561818431620\n" "help.text" msgid "Imaginary" -msgstr "" +msgstr "Imaginær" #. AEKDc #: stat_data.xhp @@ -70448,7 +70448,7 @@ "par_id161561818436495\n" "help.text" msgid "Real" -msgstr "" +msgstr "Virkelig" #. fTDsR #: stat_data.xhp @@ -70457,7 +70457,7 @@ "par_id471561818441429\n" "help.text" msgid "Imaginary" -msgstr "" +msgstr "Imaginær" #. rTRpz #: statistics.xhp @@ -70466,7 +70466,7 @@ "tit\n" "help.text" msgid "Data Statistics in Calc" -msgstr "" +msgstr "Datastatistikk i Calc" #. qDZm7 #: statistics.xhp @@ -70475,7 +70475,7 @@ "hd_id1000010\n" "help.text" msgid "Statistics" -msgstr "" +msgstr "Statistikk" #. iXfGE #: statistics.xhp @@ -70484,7 +70484,7 @@ "par_id1000010\n" "help.text" msgid "Use the data statistics in Calc to perform complex data analysis" -msgstr "" +msgstr "Bruk datastatistikken i Calc til å utføre kompleks dataanalyse" #. PGkib #: statistics.xhp @@ -70493,7 +70493,7 @@ "par_id1000020\n" "help.text" msgid "To work on a complex statistical or engineering analysis, you can save steps and time by using Calc Data Statistics. You provide the data and parameters for each analysis, and the set of tools uses the appropriate statistical or engineering functions to calculate and display the results in an output table." -msgstr "" +msgstr "For å jobbe med en kompleks statistisk eller teknisk analyse kan du spare trinn og tid ved å bruke Calc Data Statistics. Du oppgir dataene og parameterne for hver analyse, og settet med verktøy bruker de riktige statistiske eller tekniske funksjonene for å beregne og vise resultatene i en utdatatabell." #. CGf5i #: statistics_anova.xhp @@ -70502,7 +70502,7 @@ "tit\n" "help.text" msgid "ANOVA" -msgstr "" +msgstr "ANOVA" #. UAf2Q #: statistics_anova.xhp @@ -70511,7 +70511,7 @@ "bm_id02001\n" "help.text" msgid "Analysis toolpack;analysis of varianceAnalysis toolpack;ANOVAanalysis of variance;Analysis toolpackANOVA;Analysis toolpackData statistics;analysis of varianceData statistics;ANOVA" -msgstr "" +msgstr "Analyseverktøypakke; variansanalyseAnalyseverktøypakke;ANOVAvariasjonsanalyse;AnalyseverktøypakkeANOVA;AnalyseverktøypakkeDatastatistikk; variansanalyseDatastatistikk;ANOVA" #. cMChc #: statistics_anova.xhp @@ -70520,7 +70520,7 @@ "hd_id1000060\n" "help.text" msgid "Analysis of Variance (ANOVA)" -msgstr "" +msgstr "Variansanalyse (ANOVA)" #. oSUDa #: statistics_anova.xhp @@ -70529,7 +70529,7 @@ "par_id1001240\n" "help.text" msgid "Produces the analysis of variance (ANOVA) of a given data set" -msgstr "" +msgstr "Beregner variansanalysen (ANOVA) for et gitt datasett" #. w5pw6 #: statistics_anova.xhp @@ -70538,7 +70538,7 @@ "par_id1001250\n" "help.text" msgid "Choose Data - Statistics - Analysis of Variance (ANOVA)" -msgstr "" +msgstr "Velg Data - Statistikk - Variansanalyse (ANOVA)" #. r9GGt #: statistics_anova.xhp @@ -70547,7 +70547,7 @@ "par_id1001260\n" "help.text" msgid "ANOVA is the acronym for ANalysis Of VAriance. This tool produces the analysis of variance of a given data set" -msgstr "" +msgstr "ANOVA er akronymet for ANalysis Of VArance. Dette verktøyet beregner variansanalysen til et gitt datasett" #. WTgyZ #: statistics_anova.xhp @@ -70556,7 +70556,7 @@ "par_id1001270\n" "help.text" msgid "For more information on ANOVA, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om ANOVA, se tilsvarende Wikipedia-artikkel." #. Lw9W4 #: statistics_anova.xhp @@ -70565,7 +70565,7 @@ "hd_id1000070\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. t2j8D #: statistics_anova.xhp @@ -70574,7 +70574,7 @@ "par_id1001280\n" "help.text" msgid "Select if the analysis is for a single factor or for two factor ANOVA." -msgstr "" +msgstr "Velg om analysen er for en enkeltfaktor eller for tofaktor ANOVA." #. msAwu #: statistics_anova.xhp @@ -70583,7 +70583,7 @@ "hd_id1000080\n" "help.text" msgid "Parameters" -msgstr "" +msgstr "Parametre" #. ARzmU #: statistics_anova.xhp @@ -70592,7 +70592,7 @@ "par_id1001290\n" "help.text" msgid "Alpha: the level of significance of the test." -msgstr "" +msgstr "Alpha: signifikansnivået til testen." #. PyK5A #: statistics_anova.xhp @@ -70601,7 +70601,7 @@ "par_id1001300\n" "help.text" msgid "Rows per sample: Define how many rows a sample has." -msgstr "" +msgstr "Rader per prøve: Definer hvor mange rader et utvalg har." #. 5yBo2 #: statistics_anova.xhp @@ -70610,7 +70610,7 @@ "par_id1001310\n" "help.text" msgid "The following table displays the results of the analysis of variance (ANOVA) of the sample data above." -msgstr "" +msgstr "Følgende tabell viser resultatene av variansanalysen (ANOVA) av eksempeldataene ovenfor." #. 5uDqB #: statistics_anova.xhp @@ -70619,7 +70619,7 @@ "par_id1001320\n" "help.text" msgid "ANOVA - Single Factor" -msgstr "" +msgstr "ANOVA - Enkeltfaktor" #. AzFd3 #: statistics_anova.xhp @@ -70628,7 +70628,7 @@ "par_id1001330\n" "help.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #. Dvbo3 #: statistics_anova.xhp @@ -70637,7 +70637,7 @@ "par_id1001350\n" "help.text" msgid "Groups" -msgstr "" +msgstr "Grupper" #. L6VAY #: statistics_anova.xhp @@ -70646,7 +70646,7 @@ "par_id1001360\n" "help.text" msgid "Count" -msgstr "" +msgstr "Antall" #. G9fqK #: statistics_anova.xhp @@ -70655,7 +70655,7 @@ "par_id1001370\n" "help.text" msgid "Sum" -msgstr "" +msgstr "Sum" #. n2Ayi #: statistics_anova.xhp @@ -70664,7 +70664,7 @@ "par_id1001380\n" "help.text" msgid "Mean" -msgstr "" +msgstr "Gjennomsnitt" #. CnFDW #: statistics_anova.xhp @@ -70673,7 +70673,7 @@ "par_id1001390\n" "help.text" msgid "Variance" -msgstr "" +msgstr "Varianse" #. 2LDkn #: statistics_anova.xhp @@ -70682,7 +70682,7 @@ "par_id1001400\n" "help.text" msgid "Column 1" -msgstr "" +msgstr "Kolonne 1" #. p6hJA #: statistics_anova.xhp @@ -70691,7 +70691,7 @@ "par_id1001450\n" "help.text" msgid "Column 2" -msgstr "" +msgstr "Kolonne 2" #. 6jqh4 #: statistics_anova.xhp @@ -70700,7 +70700,7 @@ "par_id1001500\n" "help.text" msgid "Column 3" -msgstr "" +msgstr "Kolonne 3" #. d3ASg #: statistics_anova.xhp @@ -70709,7 +70709,7 @@ "par_id1001550\n" "help.text" msgid "Source of Variation" -msgstr "" +msgstr "Kilde til variasjon" #. CrpJv #: statistics_anova.xhp @@ -70718,7 +70718,7 @@ "par_id1001560\n" "help.text" msgid "SS" -msgstr "" +msgstr "SS" #. 3BARp #: statistics_anova.xhp @@ -70727,7 +70727,7 @@ "par_id1001570\n" "help.text" msgid "df" -msgstr "" +msgstr "df" #. YhWBw #: statistics_anova.xhp @@ -70736,7 +70736,7 @@ "par_id1001580\n" "help.text" msgid "MS" -msgstr "" +msgstr "MS" #. KV6Cy #: statistics_anova.xhp @@ -70745,7 +70745,7 @@ "par_id1001590\n" "help.text" msgid "F" -msgstr "" +msgstr "F" #. QRdrB #: statistics_anova.xhp @@ -70754,7 +70754,7 @@ "par_id1001600\n" "help.text" msgid "P-value" -msgstr "" +msgstr "P-verdi" #. Vabri #: statistics_anova.xhp @@ -70763,7 +70763,7 @@ "par_id841554943563747\n" "help.text" msgid "F-critical" -msgstr "" +msgstr "F-kritisk" #. RR2va #: statistics_anova.xhp @@ -70772,7 +70772,7 @@ "par_id1001610\n" "help.text" msgid "Between Groups" -msgstr "" +msgstr "Mellom grupper" #. tpzCU #: statistics_anova.xhp @@ -70781,7 +70781,7 @@ "par_id1001670\n" "help.text" msgid "Within Groups" -msgstr "" +msgstr "Innen grupper" #. Lcu3C #: statistics_anova.xhp @@ -70790,7 +70790,7 @@ "par_id1001710\n" "help.text" msgid "Total" -msgstr "" +msgstr "Totalt" #. NaUDo #: statistics_correlation.xhp @@ -70799,7 +70799,7 @@ "tit\n" "help.text" msgid "Data Correlation in Calc" -msgstr "" +msgstr "Datakorrelasjon i Calc" #. agTA6 #: statistics_correlation.xhp @@ -70808,7 +70808,7 @@ "bm_id1464278\n" "help.text" msgid "Analysis toolpack;correlationcorrelation;Analysis toolpackData statistics;correlation" -msgstr "" +msgstr "Analyseverktøypakke;korrelasjonkorrelasjon;AnalyseverktøypakkeDatastatistikk;korrelasjon" #. HyBpH #: statistics_correlation.xhp @@ -70817,7 +70817,7 @@ "hd_id1000090\n" "help.text" msgid "Correlation" -msgstr "" +msgstr "Korrelasjon" #. zJrnQ #: statistics_correlation.xhp @@ -70826,7 +70826,7 @@ "par_id1001740\n" "help.text" msgid "Calculates the correlation of two sets of numeric data." -msgstr "" +msgstr "Beregner korrelasjonen mellom to sett med numeriske data." #. WK8ke #: statistics_correlation.xhp @@ -70835,7 +70835,7 @@ "par_id1001750\n" "help.text" msgid "Choose Data - Statistics - Correlation" -msgstr "" +msgstr "Velg Data - Statistikk - Korrelasjon" #. 85aLv #: statistics_correlation.xhp @@ -70844,7 +70844,7 @@ "par_id1001760\n" "help.text" msgid "The correlation coefficient (a value between -1 and +1) means how strongly two variables are related to each other. You can use the CORREL function or the Data Statistics to find the correlation coefficient between two variables." -msgstr "" +msgstr "Korrelasjonskoeffisienten (en verdi mellom -1 og +1) betyr hvor sterkt to variabler er relatert til hverandre. Du kan bruke CORREL-funksjonen eller datastatistikken for å finne korrelasjonskoeffisienten mellom to variabler." #. Az6pZ #: statistics_correlation.xhp @@ -70853,7 +70853,7 @@ "par_id1001770\n" "help.text" msgid "A correlation coefficient of +1 indicates a perfect positive correlation." -msgstr "" +msgstr "En korrelasjonskoeffisient på +1 indikerer en perfekt positiv korrelasjon." #. FtKmy #: statistics_correlation.xhp @@ -70862,7 +70862,7 @@ "par_id1001780\n" "help.text" msgid "A correlation coefficient of -1 indicates a perfect negative correlation" -msgstr "" +msgstr "En korrelasjonskoeffisient på -1 indikerer en perfekt negativ korrelasjon" #. A2FeY #: statistics_correlation.xhp @@ -70871,7 +70871,7 @@ "par_id1001790\n" "help.text" msgid "For more information on statistical correlation, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om statistisk korrelasjon, se tilsvarende Wikipedia-artikkel." #. 9LxBc #: statistics_correlation.xhp @@ -70880,7 +70880,7 @@ "par_id1001800\n" "help.text" msgid "The following table displays the results of the correlation of the sample data above." -msgstr "" +msgstr "Tabellen nedenfor viser resultatene av korrelasjonen av eksempeldataene ovenfor." #. GZnGj #: statistics_correlation.xhp @@ -70889,7 +70889,7 @@ "par_id1001810\n" "help.text" msgid "Correlations" -msgstr "" +msgstr "Korrelasjoner" #. JMJ4R #: statistics_correlation.xhp @@ -70898,7 +70898,7 @@ "par_id1001820\n" "help.text" msgid "Column 1" -msgstr "" +msgstr "Kolonne 1" #. EJm3M #: statistics_correlation.xhp @@ -70907,7 +70907,7 @@ "par_id1001830\n" "help.text" msgid "Column 2" -msgstr "" +msgstr "Kolonne 2" #. UjLAb #: statistics_correlation.xhp @@ -70916,7 +70916,7 @@ "par_id1001840\n" "help.text" msgid "Column 3" -msgstr "" +msgstr "Kolonne 3" #. JiUAt #: statistics_correlation.xhp @@ -70925,7 +70925,7 @@ "par_id1001850\n" "help.text" msgid "Column 1" -msgstr "" +msgstr "Kolonne 1" #. h5ubU #: statistics_correlation.xhp @@ -70934,7 +70934,7 @@ "par_id1001870\n" "help.text" msgid "Column 2" -msgstr "" +msgstr "Kolonne 2" #. j3GXA #: statistics_correlation.xhp @@ -70943,7 +70943,7 @@ "par_id1001900\n" "help.text" msgid "Column 3" -msgstr "" +msgstr "Kolonne 3" #. SpEzh #: statistics_covariance.xhp @@ -70952,7 +70952,7 @@ "tit\n" "help.text" msgid "Data Covariance in Calc" -msgstr "" +msgstr "Datakovarians i Calc" #. FsgEU #: statistics_covariance.xhp @@ -70961,7 +70961,7 @@ "bm_id2964278\n" "help.text" msgid "Analysis toolpack;covariancecovariance;Analysis toolpackData statistics;covariance" -msgstr "" +msgstr "Analyseverktøypakke;kovarianskovarians;AnalyseverktøypakkeDatastatistikk;kovarians" #. RS5xC #: statistics_covariance.xhp @@ -70970,7 +70970,7 @@ "hd_id1000100\n" "help.text" msgid "Covariance" -msgstr "" +msgstr "Kovarians" #. xZ7MH #: statistics_covariance.xhp @@ -70979,7 +70979,7 @@ "par_id1001940\n" "help.text" msgid "Calculates the covariance of two sets of numeric data." -msgstr "" +msgstr "Beregner kovariansen til to sett med numeriske data." #. WgiEU #: statistics_covariance.xhp @@ -70988,7 +70988,7 @@ "par_id1001950\n" "help.text" msgid "Choose Data - Statistics - Covariance" -msgstr "" +msgstr "Velg Data - Statistikk - Kovarians" #. PrEaV #: statistics_covariance.xhp @@ -70997,7 +70997,7 @@ "par_id1001960\n" "help.text" msgid "The covariance is a measure of how much two random variables change together." -msgstr "" +msgstr "Kovariansen er et mål på hvor mye to tilfeldige variabler endres sammen." #. Shwy7 #: statistics_covariance.xhp @@ -71006,7 +71006,7 @@ "par_id1001970\n" "help.text" msgid "For more information on statistical covariance, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om statistisk kovarians, se Wikipedia-artikkel." #. FNxfQ #: statistics_covariance.xhp @@ -71015,7 +71015,7 @@ "par_id1001980\n" "help.text" msgid "The following table displays the results of the covariance of the sample data above." -msgstr "" +msgstr "Tabellen nedenfor viser resultatene av kovariansen til eksempeldataene ovenfor." #. NEWzK #: statistics_covariance.xhp @@ -71024,7 +71024,7 @@ "par_id1001990\n" "help.text" msgid "Covariances" -msgstr "" +msgstr "Kovarianser" #. onYs5 #: statistics_covariance.xhp @@ -71033,7 +71033,7 @@ "par_id1002000\n" "help.text" msgid "Column 1" -msgstr "" +msgstr "Kolonne 1" #. sqErz #: statistics_covariance.xhp @@ -71042,7 +71042,7 @@ "par_id1002010\n" "help.text" msgid "Column 2" -msgstr "" +msgstr "Kolonne 2" #. n3e2C #: statistics_covariance.xhp @@ -71051,7 +71051,7 @@ "par_id1002020\n" "help.text" msgid "Column 3" -msgstr "" +msgstr "Kolonne 3" #. F4E2J #: statistics_covariance.xhp @@ -71060,7 +71060,7 @@ "par_id1002030\n" "help.text" msgid "Column 1" -msgstr "" +msgstr "Kolonne 1" #. 3d6Ds #: statistics_covariance.xhp @@ -71069,7 +71069,7 @@ "par_id1002050\n" "help.text" msgid "Column 2" -msgstr "" +msgstr "Kolonne 2" #. GajDs #: statistics_covariance.xhp @@ -71078,7 +71078,7 @@ "par_id1002080\n" "help.text" msgid "Column 3" -msgstr "" +msgstr "Kolonne 3" #. mc3YQ #: statistics_descriptive.xhp @@ -71087,7 +71087,7 @@ "tit\n" "help.text" msgid "Descriptive Statistics in Calc" -msgstr "" +msgstr "Beskrivende statistikk i Calc" #. H4Cik #: statistics_descriptive.xhp @@ -71096,7 +71096,7 @@ "bm_id01001\n" "help.text" msgid "Analysis toolpack;descriptive statisticsdescriptive statistics;Analysis toolpackData statistics;descriptive statistics" -msgstr "" +msgstr "Analyseverktøypakke;beskrivende statistikkbeskrivende statistikk;AnalyseverktøypakkeDatastatistikk;beskrivende statistikk" #. 5FQb4 #: statistics_descriptive.xhp @@ -71105,7 +71105,7 @@ "hd_id1000050\n" "help.text" msgid "Descriptive Statistics" -msgstr "" +msgstr "Beskrivende statistikk" #. 7XkEb #: statistics_descriptive.xhp @@ -71114,7 +71114,7 @@ "par_id1000640\n" "help.text" msgid "Fill a table in the spreadsheet with the main statistical properties of the data set." -msgstr "" +msgstr "Fyll en tabell i regnearket med de viktigste statistiske egenskapene til datasettet." #. EAywA #: statistics_descriptive.xhp @@ -71123,7 +71123,7 @@ "par_id1000650\n" "help.text" msgid "Choose Data - Statistics - Descriptive Statistics" -msgstr "" +msgstr "Velg Data - Statistikk - Beskrivende statistikk" #. cuUnJ #: statistics_descriptive.xhp @@ -71132,7 +71132,7 @@ "par_id1000660\n" "help.text" msgid "The Descriptive Statistics analysis tool generates a report of univariate statistics for data in the input range, providing information about the central tendency and variability of your data." -msgstr "" +msgstr "Analyseverktøyet Descriptive Statistics genererer en rapport med univariat statistikk for data i inngangsområdet, og gir informasjon om den sentrale tendensen og variasjonen til dataene dine." #. 6Shyn #: statistics_descriptive.xhp @@ -71141,7 +71141,7 @@ "par_id1000670\n" "help.text" msgid "For more information on descriptive statistics, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om beskrivende statistikk, se Wikipedia-artikkel." #. VccwM #: statistics_descriptive.xhp @@ -71150,7 +71150,7 @@ "par_id1000680\n" "help.text" msgid "The following table displays the results of the descriptive statistics of the sample data above." -msgstr "" +msgstr "Tabellen nedenfor viser resultatene av den beskrivende statistikken for eksempeldataene ovenfor." #. BmGdK #: statistics_descriptive.xhp @@ -71159,7 +71159,7 @@ "par_id1000690\n" "help.text" msgid "Maths" -msgstr "" +msgstr "Matte" #. BYWoQ #: statistics_descriptive.xhp @@ -71168,7 +71168,7 @@ "par_id1000700\n" "help.text" msgid "Physics" -msgstr "" +msgstr "Fysikk" #. FeMDR #: statistics_descriptive.xhp @@ -71177,7 +71177,7 @@ "par_id1000710\n" "help.text" msgid "Biology" -msgstr "" +msgstr "Biologi" #. AjAbs #: statistics_descriptive.xhp @@ -71186,7 +71186,7 @@ "par_id1000720\n" "help.text" msgid "Mean" -msgstr "" +msgstr "Gjennomsnitt" #. CuH3F #: statistics_descriptive.xhp @@ -71195,7 +71195,7 @@ "par_id1000760\n" "help.text" msgid "Standard Error" -msgstr "" +msgstr "Standardfeil" #. bU9Yb #: statistics_descriptive.xhp @@ -71204,7 +71204,7 @@ "par_id1000800\n" "help.text" msgid "Mode" -msgstr "" +msgstr "Modus" #. PH44f #: statistics_descriptive.xhp @@ -71213,7 +71213,7 @@ "par_id1000840\n" "help.text" msgid "Median" -msgstr "" +msgstr "Median" #. GKGy8 #: statistics_descriptive.xhp @@ -71222,7 +71222,7 @@ "par_id1000880\n" "help.text" msgid "Variance" -msgstr "" +msgstr "Varianse" #. XBfaP #: statistics_descriptive.xhp @@ -71231,7 +71231,7 @@ "par_id1000920\n" "help.text" msgid "Standard Deviation" -msgstr "" +msgstr "Standardavvik" #. JqtpV #: statistics_descriptive.xhp @@ -71240,7 +71240,7 @@ "par_id1000960\n" "help.text" msgid "Kurtosis" -msgstr "" +msgstr "Kurtose" #. CNLwk #: statistics_descriptive.xhp @@ -71249,7 +71249,7 @@ "par_id1001000\n" "help.text" msgid "Skewness" -msgstr "" +msgstr "Skjevhet" #. 4dWHz #: statistics_descriptive.xhp @@ -71258,7 +71258,7 @@ "par_id1001040\n" "help.text" msgid "Range" -msgstr "" +msgstr "Område" #. XX2DK #: statistics_descriptive.xhp @@ -71267,7 +71267,7 @@ "par_id1001080\n" "help.text" msgid "Minimum" -msgstr "" +msgstr "Minimum" #. LKHuw #: statistics_descriptive.xhp @@ -71276,7 +71276,7 @@ "par_id1001120\n" "help.text" msgid "Maximum" -msgstr "" +msgstr "Maksimum" #. FM2fN #: statistics_descriptive.xhp @@ -71285,7 +71285,7 @@ "par_id1001160\n" "help.text" msgid "Sum" -msgstr "" +msgstr "Sum" #. FZdrB #: statistics_descriptive.xhp @@ -71294,7 +71294,7 @@ "par_id1001200\n" "help.text" msgid "Count" -msgstr "" +msgstr "Antall" #. gAEBc #: statistics_exposmooth.xhp @@ -71303,7 +71303,7 @@ "tit\n" "help.text" msgid "Exponential Smoothing in Calc" -msgstr "" +msgstr "Eksponentiell utjevning i Calc" #. cNRQD #: statistics_exposmooth.xhp @@ -71312,7 +71312,7 @@ "bm_id03001\n" "help.text" msgid "Analysis toolpack;exponential smoothingexponential smoothing;Analysis toolpackData statistics;exponential smoothing" -msgstr "" +msgstr "Analyseverktøypakke;eksponentiell utjevningeksponentiell utjevning;AnalyseverktøypakkeDatastatistikk;eksponentiell utjevning" #. FufST #: statistics_exposmooth.xhp @@ -71321,7 +71321,7 @@ "hd_id1000110\n" "help.text" msgid "Exponential Smoothing" -msgstr "" +msgstr "Eksponentiell utjevning" #. ESHYa #: statistics_exposmooth.xhp @@ -71330,7 +71330,7 @@ "par_id1002120\n" "help.text" msgid "Results in a smoothed data series" -msgstr "" +msgstr "Resultater i en jevnet dataserie" #. CA94C #: statistics_exposmooth.xhp @@ -71339,7 +71339,7 @@ "par_id1002130\n" "help.text" msgid "Choose Data - Statistics - Exponential Smoothing" -msgstr "" +msgstr "Velg Data - Statistikk - Eksponentiell utjevning" #. M4GPm #: statistics_exposmooth.xhp @@ -71348,7 +71348,7 @@ "par_id1002140\n" "help.text" msgid "Exponential smoothing is a filtering technique that when applied to a data set, produces smoothed results. It is employed in many domains such as stock market, economics and in sampled measurements." -msgstr "" +msgstr "Eksponentiell utjevning er en filtreringsteknikk som når den brukes på et datasett, gir jevne resultater. Det brukes i mange domener som aksjemarked, økonomi og i samplede målinger." #. 5CBMM #: statistics_exposmooth.xhp @@ -71357,7 +71357,7 @@ "par_id1002150\n" "help.text" msgid "For more information on exponential smoothing, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om eksponentiell utjevning, se Wikipedia-artikkel." #. 2PBvq #: statistics_exposmooth.xhp @@ -71366,7 +71366,7 @@ "hd_id1000120\n" "help.text" msgid "Parameters" -msgstr "" +msgstr "Parametre" #. 5FYLV #: statistics_exposmooth.xhp @@ -71375,7 +71375,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 "" +msgstr "Utjevningsfaktor: En parameter mellom 0 og 1 som representerer dempningsfaktoren Alfaa i utjevningsligningen." #. b4y8A #: statistics_exposmooth.xhp @@ -71384,7 +71384,7 @@ "par_id1002170\n" "help.text" msgid "The resulting smoothing is below with smoothing factor as 0.5:" -msgstr "" +msgstr "Den resulterende utjevningen er under med utjevningsfaktoren som 0,5:" #. GnSwW #: statistics_exposmooth.xhp @@ -71393,7 +71393,7 @@ "par_id1002180\n" "help.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #. ZJzEM #: statistics_exposmooth.xhp @@ -71402,7 +71402,7 @@ "par_id1002200\n" "help.text" msgid "Column 1" -msgstr "" +msgstr "Kolonne 1" #. dMdDR #: statistics_exposmooth.xhp @@ -71411,7 +71411,7 @@ "par_id1002210\n" "help.text" msgid "Column 2" -msgstr "" +msgstr "Kolonne 2" #. AXaMM #: statistics_fourier.xhp @@ -71420,7 +71420,7 @@ "tit\n" "help.text" msgid "Fourier Analysis" -msgstr "" +msgstr "Fourier Analyse" #. F2ncB #: statistics_fourier.xhp @@ -71429,7 +71429,7 @@ "bm_id2764278\n" "help.text" msgid "Analysis toolpack;Fourier analysisFourier analysis;Analysis toolpackData statistics;Fourier analysis" -msgstr "" +msgstr "Analyseverktøypakke;FourieranalyseFourieranalyse;AnalyseverktøypakkeDatastatistikk;Fourieranalyse" #. 9bA5L #: statistics_fourier.xhp @@ -71438,7 +71438,7 @@ "hd_id431561808831965\n" "help.text" msgid "Fourier Analysis" -msgstr "" +msgstr "Fourier Analyse" #. EEBRe #: statistics_fourier.xhp @@ -71447,7 +71447,7 @@ "par_id1001240\n" "help.text" msgid "Produces the Fourier analysis of a data set by computing the Discrete Fourier Transform (DFT) of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms." -msgstr "" +msgstr "Produserer Fourier-analysen av et datasett ved å beregne den diskrete Fourier-transformasjonen (DFT) til en inngangsmatrise med komplekse tall ved å bruke et par Fast Fourier-transformasjoner (FFT) algoritmer." #. sG8zA #: statistics_fourier.xhp @@ -71456,7 +71456,7 @@ "par_id1000040\n" "help.text" msgid "Choose Data - Statistics - Fourier Analysis" -msgstr "" +msgstr "Velg Data - Statistikk - Fourieranalyse" #. bpqpg #: statistics_fourier.xhp @@ -71465,7 +71465,7 @@ "par_id1001270\n" "help.text" msgid "For more information on Fourier analysis, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om Fourier-analyse, se Wikipedia-artikkel." #. VArYS #: statistics_fourier.xhp @@ -71474,7 +71474,7 @@ "par_id301561811172762\n" "help.text" msgid "Input range has label: Mark when the first row or column of the input array is actually a label and not part of the data analysis." -msgstr "" +msgstr "Inndataområde har etikett: Merk når den første raden eller kolonnen i inndatamatrisen faktisk er en etikett og ikke en del av dataanalysen." #. Gi5kk #: statistics_fourier.xhp @@ -71483,7 +71483,7 @@ "par_id741556228390897\n" "help.text" msgid "Input Range is a 2 x N or N x 2 range representing an array of complex number to be transformed, where N is the length of the array. The array represents the real and imaginary parts of the data." -msgstr "" +msgstr "Inndataområde er et 2 x N eller N x 2 område som representerer en matrise med komplekse tall som skal transformeres, der N er lengden på matrisen. Matrisen representerer de virkelige og imaginære delene av dataene." #. GqXZr #: statistics_fourier.xhp @@ -71492,7 +71492,7 @@ "hd_id211561811324208\n" "help.text" msgid "Options:" -msgstr "" +msgstr "Alternativer:" #. 68RRB #: statistics_fourier.xhp @@ -71501,7 +71501,7 @@ "par_id631556228516997\n" "help.text" msgid "Inverse: When checked, calculates the inverse Discrete Fourier Transform." -msgstr "" +msgstr "Invers: Når det er avmerket, beregnes den inverse diskrete Fourier-transformasjonen." #. MH9kg #: statistics_fourier.xhp @@ -71510,7 +71510,7 @@ "par_id811561732287508\n" "help.text" msgid "Polar: When checked, the results are in polar coordinates (magnitude, phase)." -msgstr "" +msgstr "Polar: Når det er avmerket, er resultatene i polare koordinater (størrelse, fase)." #. peNbe #: statistics_fourier.xhp @@ -71519,7 +71519,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 "Minste størrelse for utdata i polar form (i dB): brukes bare når utdata er i polar form. Alle frekvenskomponenter med størrelse mindre enn denne verdien i desibel vil bli undertrykt med en null størrelsesfase-inngang. Dette er veldig nyttig når man ser på størrelsesfasespekteret til et signal fordi det alltid er en veldig liten mengde avrundingsfeil når man gjør FFT-algoritmer og resulterer i feil fase som ikke er null for ikke-eksisterende frekvenser. Ved å gi en passende verdi til denne parameteren, kan disse ikke-eksisterende frekvenskomponentene undertrykkes." #. SVjc3 #: statistics_fourier.xhp @@ -71528,7 +71528,7 @@ "par_id731561827207828\n" "help.text" msgid "The source data for this example is the same of the FOURIER function page." -msgstr "" +msgstr "Kildedataene for dette eksemplet er de samme som FOURIER-funksjonssiden." #. 4XJPB #: statistics_fourier.xhp @@ -71537,7 +71537,7 @@ "par_id290620191257279817\n" "help.text" msgid "Fourier Transform" -msgstr "" +msgstr "Fourier-transformasjon" #. nfhVE #: statistics_fourier.xhp @@ -71546,7 +71546,7 @@ "par_id29062019125727379\n" "help.text" msgid "Fourier Transform" -msgstr "" +msgstr "Fourier-transformasjon" #. G6aEG #: statistics_fourier.xhp @@ -71555,7 +71555,7 @@ "par_id290620191257276510\n" "help.text" msgid "Input data range : $B$6:$C$40" -msgstr "" +msgstr "Inndataområde: $B$6:$C$40" #. 5L22z #: statistics_fourier.xhp @@ -71564,7 +71564,7 @@ "par_id290620191257273433\n" "help.text" msgid "Input data range : $B$6:$C$40" -msgstr "" +msgstr "Inndataområde: $B$6:$C$40" #. Vyu9a #: statistics_fourier.xhp @@ -71573,7 +71573,7 @@ "par_id290620191257273688\n" "help.text" msgid "Real" -msgstr "" +msgstr "Virkelig" #. qEshW #: statistics_fourier.xhp @@ -71582,7 +71582,7 @@ "par_id290620191257276202\n" "help.text" msgid "Imaginary" -msgstr "" +msgstr "Imaginær" #. fJ6BG #: statistics_fourier.xhp @@ -71591,7 +71591,7 @@ "par_id481561825547527\n" "help.text" msgid "Magnitude" -msgstr "" +msgstr "Størrelse" #. XcXJz #: statistics_fourier.xhp @@ -71600,7 +71600,7 @@ "par_id751561825556834\n" "help.text" msgid "Phase" -msgstr "" +msgstr "Fase" #. Yo4ob #: statistics_movingavg.xhp @@ -71609,7 +71609,7 @@ "tit\n" "help.text" msgid "Moving Average in Calc" -msgstr "" +msgstr "Glidende gjennomsnitt i Calc" #. pgLeC #: statistics_movingavg.xhp @@ -71618,7 +71618,7 @@ "bm_id04001\n" "help.text" msgid "Analysis toolpack;moving averagemoving average;Analysis toolpackData statistics;moving average" -msgstr "" +msgstr "Analyseverktøypakke;glidende gjennomsnittglidende gjennomsnitt;AnalyseverktøypakkeDatastatistikk;glidende gjennomsnitt" #. t6SJm #: statistics_movingavg.xhp @@ -71627,7 +71627,7 @@ "hd_id1000130\n" "help.text" msgid "Moving Average" -msgstr "" +msgstr "Glidende gjennomsnitt" #. ghTMS #: statistics_movingavg.xhp @@ -71636,7 +71636,7 @@ "par_id1002500\n" "help.text" msgid "Calculates the moving average of a time series" -msgstr "" +msgstr "Beregner det glidende gjennomsnittet av en tidsserie" #. yW3BR #: statistics_movingavg.xhp @@ -71645,7 +71645,7 @@ "par_id1002510\n" "help.text" msgid "Choose Data - Statistics - Moving Average" -msgstr "" +msgstr "Velg Data - statistikk - glidende gjennomsnitt" #. ADBDE #: statistics_movingavg.xhp @@ -71654,7 +71654,7 @@ "par_id1002520\n" "help.text" msgid "For more information on the moving average, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om glidende gjennomsnitt, se tilsvarende Wikipedia-artikkel." #. eoQu3 #: statistics_movingavg.xhp @@ -71663,7 +71663,7 @@ "hd_id1000140\n" "help.text" msgid "Parameters" -msgstr "" +msgstr "Parametre" #. z4Wmd #: statistics_movingavg.xhp @@ -71672,7 +71672,7 @@ "par_id1002530\n" "help.text" msgid "Interval: The number of samples used in the moving average calculation." -msgstr "" +msgstr "Intervall: Antall prøver brukt i beregningen av glidende gjennomsnitt." #. ZTYni #: statistics_movingavg.xhp @@ -71681,7 +71681,7 @@ "hd_id1000171\n" "help.text" msgid "Results of the moving average:" -msgstr "" +msgstr "Resultater av det glidende gjennomsnittet:" #. GGAtW #: statistics_movingavg.xhp @@ -71690,7 +71690,7 @@ "par_id1002540\n" "help.text" msgid "Column 1" -msgstr "" +msgstr "Kolonne 1" #. LDUuS #: statistics_movingavg.xhp @@ -71699,7 +71699,7 @@ "par_id1002550\n" "help.text" msgid "Column 2" -msgstr "" +msgstr "Kolonne 2" #. bJZmR #: statistics_movingavg.xhp @@ -71708,7 +71708,7 @@ "par_id1002560\n" "help.text" msgid "#N/A" -msgstr "" +msgstr "#N/A" #. qn2Vi #: statistics_movingavg.xhp @@ -71717,7 +71717,7 @@ "par_id1002570\n" "help.text" msgid "#N/A" -msgstr "" +msgstr "#N/A" #. bE5BK #: statistics_movingavg.xhp @@ -71726,7 +71726,7 @@ "par_id1002800\n" "help.text" msgid "#N/A" -msgstr "" +msgstr "#N/A" #. qTU2p #: statistics_movingavg.xhp @@ -71735,7 +71735,7 @@ "par_id1002810\n" "help.text" msgid "#N/A" -msgstr "" +msgstr "#N/A" #. 7EZAg #: statistics_regression.xhp @@ -71744,7 +71744,7 @@ "tit\n" "help.text" msgid "Regression Analysis" -msgstr "" +msgstr "Regresjonsanalyse" #. vJQLe #: statistics_regression.xhp @@ -71753,7 +71753,7 @@ "bm_id2764278\n" "help.text" msgid "Analysis toolpack;regression analysisregression analysis;Analysis toolpackData statistics;regression analysisConfidence level;regression analysisregression analysis;linearregression analysis;powerregression analysis;logarithmic" -msgstr "" +msgstr "Analyseverktøypakke;regresjonsanalyseregresjonsanalyse;AnalyseverktøypakkeDatastatistikk;regresjonsanalyseKonfidensnivå;regresjonsanalyseregresjonsanalyse;lineærregresjonsanalyse;potensiellregresjonsanalyse;logaritmisk" #. PUyBc #: statistics_regression.xhp @@ -71762,7 +71762,7 @@ "hd_id1701201615033510\n" "help.text" msgid "Regression Analysis" -msgstr "" +msgstr "Regresjonsanalyse" #. A8gk9 #: statistics_regression.xhp @@ -71771,7 +71771,7 @@ "par_id1001240\n" "help.text" msgid "Performs linear, logarithmic, or power regression analysis of a data set comprising one dependent variable and multiple independent variables." -msgstr "" +msgstr "Utfører lineær, logaritmisk eller potensregresjonsanalyse av et datasett som består av én avhengig variabel og flere uavhengige variabler." #. PDDGb #: statistics_regression.xhp @@ -71780,7 +71780,7 @@ "par_id431629832333206\n" "help.text" msgid "For example, a crop yield (dependent variable) may be related to rainfall, temperature conditions, sunshine, humidity, soil quality and more, all of them independent variables." -msgstr "" +msgstr "For eksempel kan en avling (avhengig variabel) være relatert til nedbør, temperaturforhold, solskinn, fuktighet, jordkvalitet og mer, alle uavhengige variabler." #. ENJtD #: statistics_regression.xhp @@ -71789,7 +71789,7 @@ "par_id1000040\n" "help.text" msgid "Choose Data - Statistics - Regression" -msgstr "" +msgstr "Velg Data - Statistikk - Regresjon" #. 3vwBF #: statistics_regression.xhp @@ -71798,7 +71798,7 @@ "par_id1001270\n" "help.text" msgid "For more information on regression analysis, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om regresjonsanalyse, se Wikipedia-artikkel." #. G5y4R #: statistics_regression.xhp @@ -71807,7 +71807,7 @@ "hd_id891629830986496\n" "help.text" msgid "Data" -msgstr "" +msgstr "Data" #. 9uRGh #: statistics_regression.xhp @@ -71816,7 +71816,7 @@ "hd_id101629830993962\n" "help.text" msgid "Independent variable(s) (X) range:" -msgstr "" +msgstr "Uavhengig variabel(er) (X) område:" #. XGD77 #: statistics_regression.xhp @@ -71825,7 +71825,7 @@ "par_id961629834099308\n" "help.text" msgid "Enter a single range that contains multiple independent variable observations (along columns or rows). All X variable observations need to be entered adjacent to each other in the same table." -msgstr "" +msgstr "Angi et enkelt område som inneholder flere uavhengige variabelobservasjoner (langs kolonner eller rader). Alle X variable observasjoner må legges inn ved siden av hverandre i samme tabell." #. yCogF #: statistics_regression.xhp @@ -71834,7 +71834,7 @@ "hd_id871629830998653\n" "help.text" msgid "Dependent variable (Y) range:" -msgstr "" +msgstr "Avhengig variabel (Y) område:" #. NiB9B #: statistics_regression.xhp @@ -71843,7 +71843,7 @@ "par_id391629834089370\n" "help.text" msgid "Enter the range that contains the dependent variable whose regression is to be calculated." -msgstr "" +msgstr "Angi området som inneholder den avhengige variabelen hvis regresjon skal beregnes." #. A8dZ8 #: statistics_regression.xhp @@ -71852,7 +71852,7 @@ "hd_id931629831003368\n" "help.text" msgid "Both X and Y ranges have labels" -msgstr "" +msgstr "Både X- og Y-områdene har etiketter" #. mSnba #: statistics_regression.xhp @@ -71861,7 +71861,7 @@ "par_id261629834071776\n" "help.text" msgid "Check to use the first line (or column) of the data sets as variable names in the output range." -msgstr "" +msgstr "Merk av for å bruke den første linjen (eller kolonnen) i datasettene som variabelnavn i utdataområdet." #. 7TDwz #: statistics_regression.xhp @@ -71870,7 +71870,7 @@ "hd_id11629831014811\n" "help.text" msgid "Results to:" -msgstr "" +msgstr "Resultater til:" #. CAKdU #: statistics_regression.xhp @@ -71879,7 +71879,7 @@ "par_id441629834000533\n" "help.text" msgid "The reference of the top left cell of the range where the results will be displayed." -msgstr "" +msgstr "Referansen til cellen øverst til venstre i området der resultatene skal vises." #. ZMxv6 #: statistics_regression.xhp @@ -71888,7 +71888,7 @@ "hd_id1000070\n" "help.text" msgid "Output Regression Types" -msgstr "" +msgstr "Utdataregresjonstyper" #. QMDBG #: statistics_regression.xhp @@ -71897,7 +71897,7 @@ "par_id1001280\n" "help.text" msgid "Set the regression type. Three types are available:" -msgstr "" +msgstr "Angi regresjonstypen. Tre typer er tilgjengelige:" #. vauNm #: statistics_regression.xhp @@ -71906,7 +71906,7 @@ "par_id1701201620334364\n" "help.text" msgid "Linear Regression: finds a linear function in the form of y = b + a1.[x1] + a2.[x2] + a3.[x3] ..., where ai is the i-th slope, [xi] is the i-th independent variable, and b is the intercept that best fits the data." -msgstr "" +msgstr "Lineær regresjon: finner en lineær funksjon i form av y = b + a1.[x1] + a2.[x2] + a3.[x3] ..., hvor eni er i-te stigningen, [xi] er i-te uavhengige variabelen, og b er skjæringspunktet som passer best til dataene." #. cR7FM #: statistics_regression.xhp @@ -71915,7 +71915,7 @@ "par_id1701201620340168\n" "help.text" msgid "Logarithmic regression: finds a logarithmic curve in the form of y = b + a1.ln[x1] + a2.ln[x2] + a3.ln[x3] ..., where ai is the i-th coefficient, b is the intercept and ln[xi] is the natural logarithm of the i-th independent variable, that best fits the data." -msgstr "" +msgstr "Logaritmisk regresjon: finner en logaritmisk kurve i form av y = b + a1.ln[x1] + a2 .ln[x2] + a3.ln[x3] ..., hvor ai er den i-te koeffisienten, b er skjæringspunktet og ln[xi] er den naturlige logaritmen til den i-te uavhengige variabelen som passer best til dataene." #. YfNEL #: statistics_regression.xhp @@ -71924,7 +71924,7 @@ "par_id1701201620340139\n" "help.text" msgid "Power regression: finds a power curve in the form of y = exp( b + a1.ln[x1] + a2.ln[x2] + a3.ln[x3] ...), where ai is the i-th power, [xi] is the i-th independent variable, and b is intercept that best fits the data." -msgstr "" +msgstr "Potens regresjon: finner en potenskurve i form av y = exp( b + a1.ln[x1] + a2.ln[x2] + a3.ln[x3] ...), hvor eni er i-te potensen, [xi] er i-te uavhengige variabelen, og b er avskjæringen som passer best til dataene." #. 3KkxA #: statistics_regression.xhp @@ -71933,7 +71933,7 @@ "hd_id331629834218606\n" "help.text" msgid "Options" -msgstr "" +msgstr "Alternativer" #. uBCr7 #: statistics_regression.xhp @@ -71942,7 +71942,7 @@ "hd_id481629834269509\n" "help.text" msgid "Confidence level" -msgstr "" +msgstr "Konfidensnivå" #. YjBMV #: statistics_regression.xhp @@ -71951,7 +71951,7 @@ "par_id971629835636129\n" "help.text" msgid "A numeric value between 0 and 1 (exclusive), default is 0.95. Calc uses this percentage to compute the corresponding confidence intervals for each of the estimates (namely the slopes and intercept)." -msgstr "" +msgstr "En numerisk verdi mellom 0 og 1 (eksklusivt), standard er 0,95. Calc bruker denne prosentandelen til å beregne de tilsvarende konfidensintervallene for hvert av estimatene (nemlig fallet og avskjæringen)." #. f2CEs #: statistics_regression.xhp @@ -71960,7 +71960,7 @@ "hd_id751629834274709\n" "help.text" msgid "Calculate residuals" -msgstr "" +msgstr "Beregn residualer" #. b4unQ #: statistics_regression.xhp @@ -71969,7 +71969,7 @@ "par_id401629835408653\n" "help.text" msgid "Select whether to opt in or out of computing the residuals, which may be beneficial in cases where you are interested only in the slopes and intercept estimates and their statistics. The residuals give information on how far the actual data points deviate from the predicted data points, based on the regression model." -msgstr "" +msgstr "Velg om du vil velge inn eller ut av å beregne restverdiene, noe som kan være fordelaktig i tilfeller der du kun er interessert i fallene og avskjæringsestimatene og deres statistikk. Residualene gir informasjon om hvor langt de faktiske datapunktene avviker fra de predikerte datapunktene, basert på regresjonsmodellen." #. F99az #: statistics_regression.xhp @@ -71978,7 +71978,7 @@ "hd_id861629834279039\n" "help.text" msgid "Force intercept to be zero" -msgstr "" +msgstr "Tving avskjæringen til å være null" #. UYdQb #: statistics_regression.xhp @@ -71987,7 +71987,7 @@ "par_id121629837424848\n" "help.text" msgid "Calculates the regression model using zero as the intercept, thus forcing the model to pass through the origin." -msgstr "" +msgstr "Beregner regresjonsmodellen ved å bruke null som avskjæring, og tvinger dermed modellen til å passere gjennom origo." #. u47eB #: statistics_sampling.xhp @@ -71996,7 +71996,7 @@ "tit\n" "help.text" msgid "Data Sampling in Calc" -msgstr "" +msgstr "Dataprøvetaking i Calc" #. LSf66 #: statistics_sampling.xhp @@ -72005,7 +72005,7 @@ "bm_id2764278\n" "help.text" msgid "Analysis toolpack;samplingsampling;Analysis toolpackData statistics;sampling" -msgstr "" +msgstr "Analyseverktøypakke;samplingsampling;AnalyseverktøypakkeDatastatistikk;sampling" #. xpPzu #: statistics_sampling.xhp @@ -72014,7 +72014,7 @@ "hd_id1000020\n" "help.text" msgid "Sampling" -msgstr "" +msgstr "Sampling" #. 9XjLD #: statistics_sampling.xhp @@ -72023,7 +72023,7 @@ "par_id1000030\n" "help.text" msgid "Create a table with data sampled from another table." -msgstr "" +msgstr "Lag en tabell med data samplet fra en annen tabell." #. vM6cz #: statistics_sampling.xhp @@ -72032,7 +72032,7 @@ "par_id1000040\n" "help.text" msgid "Choose Data - Statistics - Sampling" -msgstr "" +msgstr "Velg Data - Statistikk - Sampling" #. bdELn #: statistics_sampling.xhp @@ -72041,7 +72041,7 @@ "par_id1000050\n" "help.text" msgid "Sampling allows you to pick data from a source table (population) to fill a target table. The sampling can be random or in a periodic basis, as well as with or without sample replacement in the source table." -msgstr "" +msgstr "Sampling lar deg velge data fra en kilde-tabell (populasjon) for å fylle en mål-tabell. Utvalget kan være tilfeldig eller på periodisk basis, samt med eller uten prøveutskifting i kildetabellen." #. GRbRi #: statistics_sampling.xhp @@ -72050,7 +72050,7 @@ "par_id1000060\n" "help.text" msgid "Sampling is done row-wise. That means, the sampled data will pick the whole line of the source table and copy into a line of the target table." -msgstr "" +msgstr "Prøvetaking gjøres radvis. Det betyr at samplede data vil plukke hele linjen i kildetabellen og kopiere til en linje i måltabellen." #. DmJMr #: statistics_sampling.xhp @@ -72059,7 +72059,7 @@ "hd_id1000030\n" "help.text" msgid "Sampling Method" -msgstr "" +msgstr "Prøvetakingsmetode" #. XsLMx #: statistics_sampling.xhp @@ -72068,7 +72068,7 @@ "hd_id611623249550632\n" "help.text" msgid "Random" -msgstr "" +msgstr "Slumpvis" #. fnhdR #: statistics_sampling.xhp @@ -72077,7 +72077,7 @@ "par_id711623249563655\n" "help.text" msgid "Picks exactly Sample Size lines of the source table in a random way." -msgstr "" +msgstr "Velger nøyaktig Sample Size-linjer i kildetabellen på en slumpvis måte." #. ePB4n #: statistics_sampling.xhp @@ -72086,7 +72086,7 @@ "hd_id431623249579089\n" "help.text" msgid "Sample size" -msgstr "" +msgstr "Utvalgsstørrelse" #. LtFAr #: statistics_sampling.xhp @@ -72095,7 +72095,7 @@ "par_id461623249594879\n" "help.text" msgid "Number of lines sampled from the source table. The Sample size is limited to the population size for all sampling methods without replacement." -msgstr "" +msgstr "Antall linjer som er tatt fra kildetabellen. Prøvestørrelsen er begrenset til populasjonsstørrelsen for alle prøvetakingsmetoder uten erstatning." #. S4cc4 #: statistics_sampling.xhp @@ -72104,7 +72104,7 @@ "hd_id931623249610097\n" "help.text" msgid "With replacement" -msgstr "" +msgstr "Med erstatning" #. ArJPP #: statistics_sampling.xhp @@ -72113,7 +72113,7 @@ "par_id191623249619384\n" "help.text" msgid "When checked, put back samples in population (source table) after draw. A sample can be drawn more than once and therefore a larger sample size than population is possible. This option is mutually exclusive with Keep order. When unchecked, a sample drawn is not put back to the population and sample size is limited to population size." -msgstr "" +msgstr "Når avkrysset, sett tilbake prøver i populasjon (kildetabell) etter trekning. Et utvalg kan trekkes mer enn én gang, og derfor er en større utvalgsstørrelse enn populasjonen mulig. Dette alternativet er gjensidig utelukkende med Behold rekkefølge. Når det ikke er merket av, blir ikke et utvalg trukket tilbake til populasjonen, og utvalgsstørrelsen er begrenset til populasjonsstørrelsen." #. QG5Yo #: statistics_sampling.xhp @@ -72122,7 +72122,7 @@ "hd_id791623249632175\n" "help.text" msgid "Keep order" -msgstr "" +msgstr "Behold sortering" #. KBoyr #: statistics_sampling.xhp @@ -72131,7 +72131,7 @@ "par_id741623249641180\n" "help.text" msgid "When checked, samples are drawn in order of population data. Samples are not put back to the population (exclusive with With replacement). This option is automatically checked for Periodic sampling. When unchecked, samples are drawn in random order." -msgstr "" +msgstr "Når det er merket av, trekkes utvalgene i rekkefølge etter populasjonsdata. Prøver settes ikke tilbake til populasjonen (eksklusivt med Med erstatning). Dette alternativet blir automatisk merket av for Periodisk prøvetaking. Når det ikke er merket av, trekkes prøver i tilfeldig rekkefølge." #. 73nDr #: statistics_sampling.xhp @@ -72140,7 +72140,7 @@ "hd_id461623249656476\n" "help.text" msgid "Periodic" -msgstr "" +msgstr "Periodisk" #. MFSpi #: statistics_sampling.xhp @@ -72149,7 +72149,7 @@ "par_id481623249667345\n" "help.text" msgid "Picks lines in a pace defined by Period." -msgstr "" +msgstr "Velger linjer i et tempo definert av Periode." #. jM46a #: statistics_sampling.xhp @@ -72158,7 +72158,7 @@ "hd_id101623249682605\n" "help.text" msgid "Period" -msgstr "" +msgstr "Periode" #. NVGau #: statistics_sampling.xhp @@ -72167,7 +72167,7 @@ "par_id621623249692296\n" "help.text" msgid "The number of lines to skip periodically when sampling. The Period is limited to the population size." -msgstr "" +msgstr "Antall linjer som skal hoppes over med jevne mellomrom ved prøvetaking. Perioden er begrenset til populasjonsstørrelsen." #. NjytZ #: statistics_sampling.xhp @@ -72176,7 +72176,7 @@ "par_id1000110\n" "help.text" msgid "The following data will be used as example of source data table for sampling:" -msgstr "" +msgstr "Følgende data vil bli brukt som eksempel på kildedatatabell for prøvetaking:" #. VR7DD #: statistics_sampling.xhp @@ -72185,7 +72185,7 @@ "par_id1000510\n" "help.text" msgid "Sampling with a period of 2 will result in the following table:" -msgstr "" +msgstr "Prøvetaking med en periode på 2 vil resultere i følgende tabell:" #. 7UA8A #: statistics_test_chisqr.xhp @@ -72194,7 +72194,7 @@ "tit\n" "help.text" msgid "Chi Square Statistics in Calc" -msgstr "" +msgstr "Chi Kvadrat Statistikk i Calc" #. hAnmA #: statistics_test_chisqr.xhp @@ -72203,7 +72203,7 @@ "bm_id05004\n" "help.text" msgid "Analysis toolpack;Chi-square testChi-square test;Analysis toolpackData statistics;Chi-square test" -msgstr "" +msgstr "Analyseverktøypakke;Chi-Kvadrat-testChi-Kvadrat-test;AnalyseverktøypakkeDatastatistikk;Chi-Kvadrat-test" #. 5paJF #: statistics_test_chisqr.xhp @@ -72212,7 +72212,7 @@ "hd_id1000240\n" "help.text" msgid "Chi-square test" -msgstr "" +msgstr "Chi-Kvadrat test" #. u5MGV #: statistics_test_chisqr.xhp @@ -72221,7 +72221,7 @@ "par_id1003641\n" "help.text" msgid "Calculates the Chi-square test of a data sample." -msgstr "" +msgstr "Beregner Chi-Kvadrat test av et datautvalg." #. pdD2p #: statistics_test_chisqr.xhp @@ -72230,7 +72230,7 @@ "par_id1003990\n" "help.text" msgid "Choose Data - Statistics - Chi-square Test" -msgstr "" +msgstr "Velg Data - Statistikk - Chi-Kvadrat Test" #. cQrU7 #: statistics_test_chisqr.xhp @@ -72239,7 +72239,7 @@ "par_id1004000\n" "help.text" msgid "For more information on chi-square tests, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om chi-kvadrat-tester, se Wikipedia-artikkel." #. 46RmG #: statistics_test_chisqr.xhp @@ -72248,7 +72248,7 @@ "hd_id1000231\n" "help.text" msgid "Results for Chi-square Test:" -msgstr "" +msgstr "Resultater for Chi-Kvadrat Test:" #. QHuAe #: statistics_test_chisqr.xhp @@ -72257,7 +72257,7 @@ "par_id1004030\n" "help.text" msgid "Test of Independence (Chi-Square)" -msgstr "" +msgstr "Test av uavhengighet (Chi-Kvadrat)" #. BzGNg #: statistics_test_chisqr.xhp @@ -72266,7 +72266,7 @@ "par_id1004040\n" "help.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #. CRP8j #: statistics_test_chisqr.xhp @@ -72275,7 +72275,7 @@ "par_id1004060\n" "help.text" msgid "df" -msgstr "" +msgstr "df" #. rcX5Y #: statistics_test_chisqr.xhp @@ -72284,7 +72284,7 @@ "par_id1004080\n" "help.text" msgid "P-value" -msgstr "" +msgstr "P-verdi" #. oF79y #: statistics_test_chisqr.xhp @@ -72293,7 +72293,7 @@ "par_id1004100\n" "help.text" msgid "Test Statistic" -msgstr "" +msgstr "Test Statistikk" #. ykGTD #: statistics_test_chisqr.xhp @@ -72302,7 +72302,7 @@ "par_id1004120\n" "help.text" msgid "Critical Value" -msgstr "" +msgstr "Kritisk verdi" #. SeEHX #: statistics_test_f.xhp @@ -72311,7 +72311,7 @@ "tit\n" "help.text" msgid "F Test Statistics in Calc" -msgstr "" +msgstr "F Teststatistikk i Calc" #. bWFPL #: statistics_test_f.xhp @@ -72320,7 +72320,7 @@ "bm_id05002\n" "help.text" msgid "Analysis toolpack;F-testF-test;Analysis toolpackData statistics;F-test" -msgstr "" +msgstr "Analyseverktøypakke;F-testF-test;AnalyseverktøypakkeDatastatistikk;F-test" #. UTG4f #: statistics_test_f.xhp @@ -72329,7 +72329,7 @@ "hd_id1000180\n" "help.text" msgid "F-test" -msgstr "" +msgstr "F-test" #. qHRjW #: statistics_test_f.xhp @@ -72338,7 +72338,7 @@ "par_id1003240\n" "help.text" msgid "Calculates the F-Test of two data samples." -msgstr "" +msgstr "Beregner F-testen for to dataeksempler." #. ARt6p #: statistics_test_f.xhp @@ -72347,7 +72347,7 @@ "par_id1003250\n" "help.text" msgid "Choose Data - Statistics - F-test" -msgstr "" +msgstr "Velg Data - Statistikk - F-test" #. FxKGF #: statistics_test_f.xhp @@ -72356,7 +72356,7 @@ "par_id1003260\n" "help.text" msgid "A F-test is any statistical test based on the F-distribution under the null hypothesis." -msgstr "" +msgstr "En F-test er enhver statistisk test basert på F-fordelingen under nullhypotesen." #. AsStM #: statistics_test_f.xhp @@ -72365,7 +72365,7 @@ "par_id1003270\n" "help.text" msgid "For more information on F-tests, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om F-tester, se Wikipedia-artikkel." #. GxHaD #: statistics_test_f.xhp @@ -72374,7 +72374,7 @@ "hd_id1000190\n" "help.text" msgid "Data" -msgstr "" +msgstr "Data" #. jtjaQ #: statistics_test_f.xhp @@ -72383,7 +72383,7 @@ "par_id1003280\n" "help.text" msgid "Variable 1 range: The reference of the range of the first data series to analyze." -msgstr "" +msgstr "Variabel 1-område: Referansen til området for den første dataserien som skal analyseres." #. qzYBv #: statistics_test_f.xhp @@ -72392,7 +72392,7 @@ "par_id1003290\n" "help.text" msgid "Variable 2 range: The reference of the range of the second data series to analyze." -msgstr "" +msgstr "Variabel 2-område: Referansen til området for den andre dataserien som skal analyseres." #. MvvMT #: statistics_test_f.xhp @@ -72401,7 +72401,7 @@ "par_id1003300\n" "help.text" msgid "Results to: The reference of the top left cell of the range where the test will be displayed." -msgstr "" +msgstr "Resultater til: Referansen til cellen øverst til venstre i området der testen skal vises." #. Greqo #: statistics_test_f.xhp @@ -72410,7 +72410,7 @@ "hd_id1000200\n" "help.text" msgid "Results for F-Test:" -msgstr "" +msgstr "Resultater for F-test:" #. XqyMa #: statistics_test_f.xhp @@ -72419,7 +72419,7 @@ "par_id1003310\n" "help.text" msgid "The following table shows the F-Test for the data series above:" -msgstr "" +msgstr "Følgende tabell viser F-testen for dataserien ovenfor:" #. git3T #: statistics_test_f.xhp @@ -72428,7 +72428,7 @@ "par_id1003320\n" "help.text" msgid "Ftest" -msgstr "" +msgstr "Ftest" #. WsA4s #: statistics_test_f.xhp @@ -72437,7 +72437,7 @@ "par_id1003330\n" "help.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #. xj9Se #: statistics_test_f.xhp @@ -72446,7 +72446,7 @@ "par_id1003350\n" "help.text" msgid "Variable 1" -msgstr "" +msgstr "Variabel 1" #. p5piv #: statistics_test_f.xhp @@ -72455,7 +72455,7 @@ "par_id1003360\n" "help.text" msgid "Variable 2" -msgstr "" +msgstr "Variabel 2" #. YA2dy #: statistics_test_f.xhp @@ -72464,7 +72464,7 @@ "par_id1003370\n" "help.text" msgid "Mean" -msgstr "" +msgstr "Gjennomsnitt" #. 8MXro #: statistics_test_f.xhp @@ -72473,7 +72473,7 @@ "par_id1003400\n" "help.text" msgid "Variance" -msgstr "" +msgstr "Varianse" #. W2J6x #: statistics_test_f.xhp @@ -72482,7 +72482,7 @@ "par_id1003430\n" "help.text" msgid "Observations" -msgstr "" +msgstr "Observasjoner" #. DqgMQ #: statistics_test_f.xhp @@ -72491,7 +72491,7 @@ "par_id1003460\n" "help.text" msgid "df" -msgstr "" +msgstr "df" #. BJ3Vi #: statistics_test_f.xhp @@ -72500,7 +72500,7 @@ "par_id1003490\n" "help.text" msgid "F" -msgstr "" +msgstr "F" #. AasLh #: statistics_test_f.xhp @@ -72509,7 +72509,7 @@ "par_id1003510\n" "help.text" msgid "P (F<=f) right-tail" -msgstr "" +msgstr "P (F <=f) høyre-hale" #. FVAJa #: statistics_test_f.xhp @@ -72518,7 +72518,7 @@ "par_id1003530\n" "help.text" msgid "F Critical right-tail" -msgstr "" +msgstr "F Kritisk høyre-hale" #. zBzCY #: statistics_test_f.xhp @@ -72527,7 +72527,7 @@ "par_id1003550\n" "help.text" msgid "P (F<=f) left-tail" -msgstr "" +msgstr "P (F<=f) venstre-hale" #. LA56M #: statistics_test_f.xhp @@ -72536,7 +72536,7 @@ "par_id1003570\n" "help.text" msgid "F Critical left-tail" -msgstr "" +msgstr "F Kritisk venstre-hale" #. 9ZNSy #: statistics_test_f.xhp @@ -72545,7 +72545,7 @@ "par_id1003590\n" "help.text" msgid "P two-tail" -msgstr "" +msgstr "P to-hale" #. dQ4WA #: statistics_test_f.xhp @@ -72554,7 +72554,7 @@ "par_id1003610\n" "help.text" msgid "F Critical two-tail" -msgstr "" +msgstr "F Kritisk to-hale" #. jMBzo #: statistics_test_t.xhp @@ -72563,7 +72563,7 @@ "tit\n" "help.text" msgid "T Test Statistics in Calc" -msgstr "" +msgstr "T Teststatistikk i Calc" #. cKb9k #: statistics_test_t.xhp @@ -72572,7 +72572,7 @@ "bm_id05001\n" "help.text" msgid "Analysis toolpack;t-testAnalysis toolpack;paired t-testt-test;Analysis toolpackpaired t-test;Analysis toolpackData statistics;paired t-test" -msgstr "" +msgstr "Analyseverktøypakke;t-testAnalyseverktøypakke;paret t-testt-test;Analyseverktøypakkesammenkoblet t-test;Analyseverktøypakke Datastatistikk;paret t-test" #. GEv5d #: statistics_test_t.xhp @@ -72581,7 +72581,7 @@ "hd_id1000150\n" "help.text" msgid "Paired t-test" -msgstr "" +msgstr "Paret t-test" #. TXtGV #: statistics_test_t.xhp @@ -72590,7 +72590,7 @@ "par_id1002820\n" "help.text" msgid "Calculates the paired t-Test of two data samples." -msgstr "" +msgstr "Beregner den sammenkoblede t-testen av to dataeutvalg." #. EVZDy #: statistics_test_t.xhp @@ -72599,7 +72599,7 @@ "par_id1002830\n" "help.text" msgid "Choose Data - Statistics - Paired t-test" -msgstr "" +msgstr "Velg Data - Statistikk - Sammenkoblet t-test" #. 3ngCe #: statistics_test_t.xhp @@ -72608,7 +72608,7 @@ "par_id1002840\n" "help.text" msgid "A paired t-test is any statistical hypothesis test that follows a Student's t distribution." -msgstr "" +msgstr "En paret t-test er enhver statistisk hypotesetest som følger en elevs t-fordeling." #. hdi8H #: statistics_test_t.xhp @@ -72617,7 +72617,7 @@ "par_id1002850\n" "help.text" msgid "For more information on paired t-tests, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om sammenkoblede t-tester, se Wikipedia-artikkel." #. BEkGF #: statistics_test_t.xhp @@ -72626,7 +72626,7 @@ "hd_id1000160\n" "help.text" msgid "Data" -msgstr "" +msgstr "Data" #. aU9k6 #: statistics_test_t.xhp @@ -72635,7 +72635,7 @@ "par_id1002860\n" "help.text" msgid "Variable 1 range: The reference of the range of the first data series to analyze." -msgstr "" +msgstr "Variabel 1-område: Referansen til området for den første dataserien som skal analyseres." #. 27zQ4 #: statistics_test_t.xhp @@ -72644,7 +72644,7 @@ "par_id1002870\n" "help.text" msgid "Variable 2 range: The reference of the range of the second data series to analyze." -msgstr "" +msgstr "Variabel 2-område: Referansen til området for den andre dataserien som skal analyseres." #. 8D2Gp #: statistics_test_t.xhp @@ -72653,7 +72653,7 @@ "par_id1002880\n" "help.text" msgid "Results to: The reference of the top left cell of the range where the test will be displayed." -msgstr "" +msgstr "Resultater til: Referansen til cellen øverst til venstre i området der testen skal vises." #. KcmaB #: statistics_test_t.xhp @@ -72662,7 +72662,7 @@ "hd_id1000170\n" "help.text" msgid "Results for paired t-test:" -msgstr "" +msgstr "Resultater for sammenkoblet T-test:" #. egFAr #: statistics_test_t.xhp @@ -72671,7 +72671,7 @@ "par_id1002890\n" "help.text" msgid "The following table shows the paired t-test for the data series above:" -msgstr "" +msgstr "Følgende tabell viser den parede t-testen for dataserien ovenfor:" #. rDVBE #: statistics_test_t.xhp @@ -72680,7 +72680,7 @@ "par_id1002900\n" "help.text" msgid "paired t-test" -msgstr "" +msgstr "sammenkoblet t-test" #. pFrdF #: statistics_test_t.xhp @@ -72689,7 +72689,7 @@ "par_id1002910\n" "help.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #. da77D #: statistics_test_t.xhp @@ -72698,7 +72698,7 @@ "par_id1002930\n" "help.text" msgid "Hypothesized Mean Difference" -msgstr "" +msgstr "Antatt gjennomsnittlig forskjell" #. tJarn #: statistics_test_t.xhp @@ -72707,7 +72707,7 @@ "par_id1002950\n" "help.text" msgid "Variable 1" -msgstr "" +msgstr "Variabel 1" #. kfGaW #: statistics_test_t.xhp @@ -72716,7 +72716,7 @@ "par_id1002960\n" "help.text" msgid "Variable 2" -msgstr "" +msgstr "Variabel 2" #. ttThs #: statistics_test_t.xhp @@ -72725,7 +72725,7 @@ "par_id1002970\n" "help.text" msgid "Mean" -msgstr "" +msgstr "Gjennomsnitt" #. G7NDq #: statistics_test_t.xhp @@ -72734,7 +72734,7 @@ "par_id1003000\n" "help.text" msgid "Variance" -msgstr "" +msgstr "Varianse" #. AsmDu #: statistics_test_t.xhp @@ -72743,7 +72743,7 @@ "par_id1003030\n" "help.text" msgid "Observations" -msgstr "" +msgstr "Observasjoner" #. MmDD2 #: statistics_test_t.xhp @@ -72752,7 +72752,7 @@ "par_id1003060\n" "help.text" msgid "Pearson Correlation" -msgstr "" +msgstr "Pearson-korrelasjon" #. Nqq8i #: statistics_test_t.xhp @@ -72761,7 +72761,7 @@ "par_id1003080\n" "help.text" msgid "Observed Mean Difference" -msgstr "" +msgstr "Observert gjennomsnittlig forskjell" #. vDgsc #: statistics_test_t.xhp @@ -72770,7 +72770,7 @@ "par_id1003100\n" "help.text" msgid "Variance of the Differences" -msgstr "" +msgstr "Varians av forskjellene" #. CFBrp #: statistics_test_t.xhp @@ -72779,7 +72779,7 @@ "par_id1003120\n" "help.text" msgid "df" -msgstr "" +msgstr "df" #. mAixM #: statistics_test_t.xhp @@ -72788,7 +72788,7 @@ "par_id1003140\n" "help.text" msgid "t Stat" -msgstr "" +msgstr "t Stat" #. utcA9 #: statistics_test_t.xhp @@ -72797,7 +72797,7 @@ "par_id1003160\n" "help.text" msgid "P (T<=t) one-tail" -msgstr "" +msgstr "P (T<=t) en-hale" #. 7mezL #: statistics_test_t.xhp @@ -72806,7 +72806,7 @@ "par_id1003180\n" "help.text" msgid "t Critical one-tail" -msgstr "" +msgstr "t Kritisk en-hale" #. GdcRG #: statistics_test_t.xhp @@ -72815,7 +72815,7 @@ "par_id1003200\n" "help.text" msgid "P (T<=t) two-tail" -msgstr "" +msgstr "P (T<=t) to-hale" #. kh5E7 #: statistics_test_t.xhp @@ -72824,7 +72824,7 @@ "par_id1003220\n" "help.text" msgid "t Critical two-tail" -msgstr "" +msgstr "t Kritisk to-hale" #. QA9fL #: statistics_test_z.xhp @@ -72833,7 +72833,7 @@ "tit\n" "help.text" msgid "Z Test Statistics in Calc" -msgstr "" +msgstr "Z Teststatistikk i Calc" #. EQw7L #: statistics_test_z.xhp @@ -72842,7 +72842,7 @@ "bm_id05003\n" "help.text" msgid "Analysis toolpack;Z-testZ-test;Analysis toolpackData statistics;Z-test" -msgstr "" +msgstr "Analyseverktøypakke;Z-testZ-test;AnalyseverktøypakkeDatastatistikk;Z-test" #. Z5iqi #: statistics_test_z.xhp @@ -72851,7 +72851,7 @@ "hd_id1000210\n" "help.text" msgid "Z-test" -msgstr "" +msgstr "Z-test" #. vjPXp #: statistics_test_z.xhp @@ -72860,7 +72860,7 @@ "par_id1003640\n" "help.text" msgid "Calculates the z-Test of two data samples." -msgstr "" +msgstr "Beregner z-testen for to dataeksempler." #. FeUKV #: statistics_test_z.xhp @@ -72869,7 +72869,7 @@ "par_id1003650\n" "help.text" msgid "Choose Data - Statistics - Z-test" -msgstr "" +msgstr "Velg Data - Statistikk - Z-test" #. 2khLG #: statistics_test_z.xhp @@ -72878,7 +72878,7 @@ "par_id1003660\n" "help.text" msgid "For more information on Z-tests, refer to the corresponding Wikipedia article." -msgstr "" +msgstr "For mer informasjon om Z-tester, se Wikipedia-artikkel." #. uj2zU #: statistics_test_z.xhp @@ -72887,7 +72887,7 @@ "hd_id1000220\n" "help.text" msgid "Data" -msgstr "" +msgstr "Data" #. G5qUC #: statistics_test_z.xhp @@ -72896,7 +72896,7 @@ "par_id1003670\n" "help.text" msgid "Variable 1 range: The reference of the range of the first data series to analyze." -msgstr "" +msgstr "Variabel 1-område: Referansen til området for den første dataserien som skal analyseres." #. 6sDZb #: statistics_test_z.xhp @@ -72905,7 +72905,7 @@ "par_id1003680\n" "help.text" msgid "Variable 2 range: The reference of the range of the second data series to analyze." -msgstr "" +msgstr "Variabel 2-område: Referansen til området for den andre dataserien som skal analyseres." #. SRfn5 #: statistics_test_z.xhp @@ -72914,7 +72914,7 @@ "par_id1003690\n" "help.text" msgid "Results to: The reference of the top left cell of the range where the test will be displayed." -msgstr "" +msgstr "Resultater til: Referansen til cellen øverst til venstre i området der testen skal vises." #. WLqsj #: statistics_test_z.xhp @@ -72923,7 +72923,7 @@ "hd_id1000230\n" "help.text" msgid "Results for z-Test:" -msgstr "" +msgstr "Resultater for z-Test:" #. bS4Zx #: statistics_test_z.xhp @@ -72932,7 +72932,7 @@ "par_id1003700\n" "help.text" msgid "The following table shows the z-Test for the data series above:" -msgstr "" +msgstr "Følgende tabell viser z-testen for dataserien ovenfor:" #. cyNij #: statistics_test_z.xhp @@ -72941,7 +72941,7 @@ "par_id1003710\n" "help.text" msgid "z-test" -msgstr "" +msgstr "z-test" #. 2jGDY #: statistics_test_z.xhp @@ -72950,7 +72950,7 @@ "par_id1003720\n" "help.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #. S4FZC #: statistics_test_z.xhp @@ -72959,7 +72959,7 @@ "par_id1003740\n" "help.text" msgid "Hypothesized Mean Difference" -msgstr "" +msgstr "Hypotesert gjennomsnittlig forskjell" #. EyFTK #: statistics_test_z.xhp @@ -72968,7 +72968,7 @@ "par_id1003760\n" "help.text" msgid "Variable 1" -msgstr "" +msgstr "Variabel 1" #. yybKF #: statistics_test_z.xhp @@ -72977,7 +72977,7 @@ "par_id1003770\n" "help.text" msgid "Variable 2" -msgstr "" +msgstr "Variabel 2" #. zi3v9 #: statistics_test_z.xhp @@ -72986,7 +72986,7 @@ "par_id1003780\n" "help.text" msgid "Known Variance" -msgstr "" +msgstr "Kjent varians" #. RozyW #: statistics_test_z.xhp @@ -72995,7 +72995,7 @@ "par_id1003810\n" "help.text" msgid "Mean" -msgstr "" +msgstr "Gjennomsnitt" #. fV5Cq #: statistics_test_z.xhp @@ -73004,7 +73004,7 @@ "par_id1003840\n" "help.text" msgid "Observations" -msgstr "" +msgstr "Observasjoner" #. Nfz8K #: statistics_test_z.xhp @@ -73013,7 +73013,7 @@ "par_id1003870\n" "help.text" msgid "Observed Mean Difference" -msgstr "" +msgstr "Observert gjennomsnittlig forskjell" #. MDCGb #: statistics_test_z.xhp @@ -73022,7 +73022,7 @@ "par_id1003890\n" "help.text" msgid "z" -msgstr "" +msgstr "z" #. N35cE #: statistics_test_z.xhp @@ -73031,7 +73031,7 @@ "par_id1003900\n" "help.text" msgid "#DIV/0!" -msgstr "" +msgstr "#DIV/0!" #. BiBJi #: statistics_test_z.xhp @@ -73040,7 +73040,7 @@ "par_id1003910\n" "help.text" msgid "P (Z<=z) one-tail" -msgstr "" +msgstr "P (Z<=z) en-hale" #. HqGPf #: statistics_test_z.xhp @@ -73049,7 +73049,7 @@ "par_id1003920\n" "help.text" msgid "#DIV/0!" -msgstr "" +msgstr "#DIV/0!" #. 2NUBk #: statistics_test_z.xhp @@ -73058,7 +73058,7 @@ "par_id1003930\n" "help.text" msgid "z Critical one-tail" -msgstr "" +msgstr "z Kritisk en-hale" #. WBGeU #: statistics_test_z.xhp @@ -73067,7 +73067,7 @@ "par_id1003950\n" "help.text" msgid "P (Z<=z) two-tail" -msgstr "" +msgstr "P (Z<=z) to-hale" #. TPsmf #: statistics_test_z.xhp @@ -73076,7 +73076,7 @@ "par_id1003960\n" "help.text" msgid "#DIV/0!" -msgstr "" +msgstr "#DIV/0!" #. NCMYu #: statistics_test_z.xhp @@ -73085,7 +73085,7 @@ "par_id1003970\n" "help.text" msgid "z Critical two-tail" -msgstr "" +msgstr "z Kritisk to-hale" #. bdLFh #: text2columns.xhp @@ -73121,7 +73121,7 @@ "par_id655232\n" "help.text" msgid "Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells." -msgstr "" +msgstr "Åpner tekst til kolonner-dialogen, der du angir innstillinger for å utvide innholdet i valgte celler til flere celler." #. YwdL2 #: text2columns.xhp @@ -73130,7 +73130,7 @@ "hd_id9599597\n" "help.text" msgid "To expand cell contents to multiple cells" -msgstr "" +msgstr "For å utvide celleinnhold til flere celler" #. z5ESo #: text2columns.xhp @@ -73139,7 +73139,7 @@ "par_id2021546\n" "help.text" msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row." -msgstr "" +msgstr "Du kan utvide celler som inneholder kommadelte verdier (CSV) til flere celler i samme rad." #. RG9PG #: text2columns.xhp @@ -73148,7 +73148,7 @@ "par_id2623981\n" "help.text" msgid "For example, cell A1 contains the comma separated values 1,2,3,4, and cell A2 contains the text A,B,C,D." -msgstr "" +msgstr "For eksempel inneholder celle A1 de kommaseparerte verdiene 1,2,3,4, og celle A2 inneholder teksten A,B,C, D." #. WeJnJ #: text2columns.xhp @@ -73175,7 +73175,7 @@ "par_id6334116\n" "help.text" msgid "You see the Text to Columns dialog." -msgstr "" +msgstr "Du ser dialogboksen Tekst til kolonner." #. BpH4f #: text2columns.xhp @@ -73184,7 +73184,7 @@ "par_id9276406\n" "help.text" msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells." -msgstr "" +msgstr "Velg separatoralternativene. Forhåndsvisningen viser hvordan det gjeldende celleinnholdet vil bli transformert til flere celler." #. V77jv #: text2columns.xhp @@ -73193,7 +73193,7 @@ "par_id8523819\n" "help.text" msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions." -msgstr "" +msgstr "Du kan velge en fast bredde og deretter klikke linjalen på forhåndsvisningen for å angi celleoppdelingsposisjoner." #. DjifN #: text2columns.xhp @@ -73202,7 +73202,7 @@ "par_id1517380\n" "help.text" msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents." -msgstr "" +msgstr "Du kan velge eller skrive inn skilletegn for å definere posisjonene til brytepunkter. Skilletegnene fjernes fra det resulterende celleinnholdet." #. Gm2Jy #: text2columns.xhp @@ -73211,7 +73211,7 @@ "par_id7110812\n" "help.text" msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on." -msgstr "" +msgstr "I eksemplet velger du komma som skilletegn. Cellene A1 og A2 utvides til fire kolonner hver. A1 inneholder 1, B1 inneholder 2, og så videre." #. ABXho #: xml_source.xhp @@ -73220,7 +73220,7 @@ "tit\n" "help.text" msgid "XML Data" -msgstr "" +msgstr "XML Data" #. mRd9B #: xml_source.xhp @@ -73229,7 +73229,7 @@ "bm_id240920171018528200\n" "help.text" msgid "XML Source;load XML data in spreadsheets" -msgstr "" +msgstr "XML-kilde;last XML-data i regneark" #. iaidA #: xml_source.xhp @@ -73238,7 +73238,7 @@ "hd_id240920171003006302\n" "help.text" msgid "XML Source" -msgstr "" +msgstr "XML-kilde" #. N4w3P #: xml_source.xhp @@ -73247,7 +73247,7 @@ "par_id240920171003293400\n" "help.text" msgid "Import XML data in a spreadsheet." -msgstr "" +msgstr "Importer XML-data i et regneark." #. 8CuiN #: xml_source.xhp @@ -73256,7 +73256,7 @@ "par_id861521496523519\n" "help.text" msgid "The XML Source feature allows to import data from arbitrarily structured XML content into cells in an existing spreadsheet document. It allows XML content to be imported either partially or in full, depending on the structure of the XML content and the map definitions that the user defines. The user can specify multiple non-overlapping sub-structures to be mapped to different cell positions within the same document. The user can import either element contents, attribute values or both." -msgstr "" +msgstr "XML-kildefunksjonen lar deg importere data fra vilkårlig strukturert XML-innhold til celler i et eksisterende regnearkdokument. Den lar XML-innhold importeres enten delvis eller i sin helhet, avhengig av strukturen til XML-innholdet og kartdefinisjonene som brukeren definerer. Brukeren kan spesifisere flere ikke-overlappende understrukturer som skal tilordnes til forskjellige celleposisjoner i samme dokument. Brukeren kan importere enten elementinnhold, attributtverdier eller begge deler." #. SBwHr #: xml_source.xhp @@ -73265,7 +73265,7 @@ "par_id240920171007389295\n" "help.text" msgid "Choose Data - XML Source." -msgstr "" +msgstr "Velg Data - XML-kilde." #. m8sWR #: xml_source.xhp @@ -73274,7 +73274,7 @@ "hd_id801521494731764\n" "help.text" msgid "XML Source Dialog" -msgstr "" +msgstr "XML-kildedialog" #. MZB9H #: xml_source.xhp @@ -73283,7 +73283,7 @@ "par_id291521494762812\n" "help.text" msgid "The dialog consists of four parts." -msgstr "" +msgstr "Dialogen består av fire deler." #. w7NoA #: xml_source.xhp @@ -73292,7 +73292,7 @@ "hd_id601521494755603\n" "help.text" msgid "Source file" -msgstr "" +msgstr "Kildefil" #. dSeBP #: xml_source.xhp @@ -73301,7 +73301,7 @@ "par_id161521494769832\n" "help.text" msgid "This lets you specify the path to the XML file that you wish to import into your document." -msgstr "" +msgstr "Dette lar deg spesifisere banen til XML-filen du ønsker å importere til dokumentet." #. hcfNL #: xml_source.xhp @@ -73310,7 +73310,7 @@ "hd_id491521494788029\n" "help.text" msgid "Map to Document" -msgstr "" +msgstr "Mapping til Dokument" #. RpAuk #: xml_source.xhp @@ -73319,7 +73319,7 @@ "par_id211521494776007\n" "help.text" msgid "This pane shows the structure of the source XML content as a tree. This is initially empty, and gets populated when you specify the source file." -msgstr "" +msgstr "Denne ruten viser strukturen til XML-kildeinnholdet som et tre. Denne er i utgangspunktet tom, og fylles ut når du spesifiserer kildefilen." #. dBEwr #: xml_source.xhp @@ -73328,7 +73328,7 @@ "par_id161521494796604\n" "help.text" msgid "Each element in the tree can be one of three types:" -msgstr "" +msgstr "Hvert element i treet kan være en av tre typer:" #. T65DV #: xml_source.xhp @@ -73337,7 +73337,7 @@ "par_id931521494810426\n" "help.text" msgid "attribute, represented by the symbol @" -msgstr "" +msgstr "attributt, representert ved symbolet @" #. xkror #: xml_source.xhp @@ -73346,7 +73346,7 @@ "par_id521521494825665\n" "help.text" msgid "single non-recurring element, represented by the symbol , and" -msgstr "" +msgstr "enkelt ikke-gjentakende element, representert ved symbolet , og" #. ReEmy #: xml_source.xhp @@ -73355,7 +73355,7 @@ "par_id691521494844848\n" "help.text" msgid "recurring element, represented by the symbol ." -msgstr "" +msgstr "gjentakende element, representert ved symbolet ." #. WcNfX #: xml_source.xhp @@ -73364,7 +73364,7 @@ "par_id451521494864514\n" "help.text" msgid "A non-recurring element is an element that can only occur once under the same parent. It is mapped to a single cell in the document." -msgstr "" +msgstr "Et engangselement er et element som bare kan forekomme én gang under samme overordnede. Den er tilordnet en enkelt celle i dokumentet." #. WVC7K #: xml_source.xhp @@ -73373,7 +73373,7 @@ "par_id361521494872103\n" "help.text" msgid "A recurring element is an element that can appear multiple times under the same parent. It serves as an enclosing parent of a single record entry of multiple record entries. These entries are imported into a range those height equals the number of entries plus one additional header row." -msgstr "" +msgstr "Et gjentakende element er et element som kan vises flere ganger under samme overordnede. Den fungerer som en omsluttende overordnet for en enkelt postoppføring av flere postoppføringer. Disse oppføringene importeres til et område hvor høyden tilsvarer antall oppføringer pluss en ekstra overskriftsrad." #. 3BFmD #: xml_source.xhp @@ -73382,7 +73382,7 @@ "hd_id581521494885433\n" "help.text" msgid "Mapped cell" -msgstr "" +msgstr "Mappet celle" #. hPodi #: xml_source.xhp @@ -73391,7 +73391,7 @@ "par_id661521494897796\n" "help.text" msgid "This field specifies the position of a cell in the document that an element or an attribute is linked to. If it is a non-recurring element or an attribute, it simply points to the cell where the value of the linked element/attribute will get imported. If it is a recurring element, it points to the top-left cell of the range where the whole record entries plus header will get imported." -msgstr "" +msgstr "Dette feltet spesifiserer plasseringen av en celle i dokumentet som et element eller et attributt er knyttet til. Hvis det er et ikke-gjentakende element eller et attributt, peker det ganske enkelt på cellen der verdien av det koblede elementet/attributtet vil bli importert. Hvis det er et gjentakende element, peker det til cellen øverst til venstre i området der hele postoppføringene pluss overskriften blir importert." #. ipMuD #: xml_source.xhp @@ -73400,7 +73400,7 @@ "hd_id151521553082338\n" "help.text" msgid "Import" -msgstr "" +msgstr "Import" #. LrH8y #: xml_source.xhp @@ -73409,7 +73409,7 @@ "par_id131521553077261\n" "help.text" msgid "Pressing the Import button starts the import process based on the link definitions that the user has provided. Once the import finishes, the dialog will close." -msgstr "" +msgstr "Ved å trykke på Import-knappen starter importprosessen basert på koblingsdefinisjonene som brukeren har oppgitt. Når importen er ferdig, lukkes dialogboksen." #. nfBjK #: xml_source.xhp @@ -73418,4 +73418,4 @@ "par_id240920171007419799\n" "help.text" msgid "Wiki page on XML Source" -msgstr "" +msgstr "Wiki-side om XML-kilde" diff -Nru libreoffice-7.5.1~rc2/translations/source/nb/helpcontent2/source/text/swriter/guide.po libreoffice-7.5.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.5.1~rc2/translations/source/nb/helpcontent2/source/text/swriter/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-08 10:41+0000\n" +"PO-Revision-Date: 2023-03-08 09:32+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.5.1~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-01-09 03:14+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: 1565984194.000000\n" #. W5ukN @@ -15314,7 +15314,7 @@ "Label\n" "value.text" msgid "Vortex" -msgstr "Vortex" +msgstr "Vorteks" #. Ca9F8 #: Effects.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/nb/sc/messages.po libreoffice-7.5.2~rc2/translations/source/nb/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/nb/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nb/sc/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-09 03:15+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: 1563900008.000000\n" #. kBovX @@ -31119,7 +31119,7 @@ #: sc/uiconfig/scalc/ui/sparklinedialog.ui:399 msgctxt "SparklineDialog|checkButton_Marker" msgid "Marker:" -msgstr "Marker:" +msgstr "Markør:" #. 4yLTi #: sc/uiconfig/scalc/ui/sparklinedialog.ui:437 diff -Nru libreoffice-7.5.1~rc2/translations/source/nb/starmath/messages.po libreoffice-7.5.2~rc2/translations/source/nb/starmath/messages.po --- libreoffice-7.5.1~rc2/translations/source/nb/starmath/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nb/starmath/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-10-21 14:18+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: 1563560065.000000\n" #. GrDhX @@ -2432,7 +2432,7 @@ #: starmath/inc/strings.hrc:357 msgctxt "STR_LAVENDER" msgid "lavender" -msgstr "lavender" +msgstr "lavendel" #. DLUaV #: starmath/inc/strings.hrc:358 diff -Nru libreoffice-7.5.1~rc2/translations/source/nb/svx/messages.po libreoffice-7.5.2~rc2/translations/source/nb/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/nb/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nb/svx/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-02-07 15:34+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: 1561033255.000000\n" #. 3GkZj @@ -5050,7 +5050,7 @@ #: include/svx/strings.hrc:885 msgctxt "RID_SVXSTR_BMP57" msgid "Plaid" -msgstr "Plaid" +msgstr "Rutete" #. ZrVMS #: include/svx/strings.hrc:886 @@ -7841,7 +7841,7 @@ #: include/svx/strings.hrc:1411 msgctxt "STR_IMAGE_VIEW_SIZE" msgid "$(WIDTH) × $(HEIGHT) at $(DPI) DPI" -msgstr "$(WIDTH) × $(HEIGHT) at $(DPI) DPI" +msgstr "$(WIDTH) × $(HEIGHT) ved $(DPI) DPI" #. EvHUn #: include/svx/strings.hrc:1412 @@ -17140,13 +17140,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.5.1~rc2/translations/source/nl/cui/messages.po libreoffice-7.5.2~rc2/translations/source/nl/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/nl/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nl/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-10 12:33+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" @@ -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 @@ -18111,7 +18111,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:485 msgctxt "paraindentspacing|labelFL_PROPERTIES" msgid "Line Spacing" -msgstr "Rege_lafstand" +msgstr "Regelafstand" #. pbs4W #: cui/uiconfig/ui/paratabspage.ui:114 diff -Nru libreoffice-7.5.1~rc2/translations/source/nl/formula/messages.po libreoffice-7.5.2~rc2/translations/source/nl/formula/messages.po --- libreoffice-7.5.1~rc2/translations/source/nl/formula/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nl/formula/messages.po 2023-03-24 16:53:38.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-12-21 17:45+0100\n" -"PO-Revision-Date: 2022-12-27 13:43+0100\n" +"PO-Revision-Date: 2023-03-24 15:27+0100\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.5.1~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-01-12 14:11+0000\n" +"PO-Revision-Date: 2023-03-18 14:45+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: 1548055268.000000\n" #. ViEWM @@ -24062,7 +24062,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.5.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po libreoffice-7.5.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.5.1~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-08 18:53+0000\n" +"PO-Revision-Date: 2023-03-18 14:45+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 @@ -5135,7 +5135,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.5.1~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-03-20 09: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" @@ -18914,7 +18914,7 @@ "Label\n" "value.text" msgid "Entire Page" -msgstr "Hele dia" +msgstr "Hele pagina" #. Es6QK #: GenericCommands.xcu @@ -20836,7 +20836,7 @@ "Label\n" "value.text" msgid "Page Width" -msgstr "Diabreedte" +msgstr "~Paginabreedte" #. aPYJv #: GenericCommands.xcu @@ -26136,7 +26136,7 @@ "Label\n" "value.text" msgid "R~eference" -msgstr "R~eferentie" +msgstr "V~erwijzing" #. CGExU #: GenericCommands.xcu @@ -30816,7 +30816,7 @@ "Label\n" "value.text" msgid "Content Control Properties" -msgstr "Eigenschappen voor inhoudsbesturingselementen" +msgstr "Eigenschappen voor besturingselementen" #. npNpZ #: WriterCommands.xcu @@ -30986,7 +30986,7 @@ "Label\n" "value.text" msgid "Content Controls" -msgstr "Inhoudsbesturingselement" +msgstr "Besturingselement" #. isyh9 #: WriterCommands.xcu @@ -30996,7 +30996,7 @@ "Label\n" "value.text" msgid "Insert Rich Text Content Control" -msgstr "Rich Text Content-besturingselement invoegen" +msgstr "Rich-Text" #. GH8DZ #: WriterCommands.xcu @@ -31006,7 +31006,7 @@ "Label\n" "value.text" msgid "Insert Check Box Content Control" -msgstr "Inhoudsbesturingselement keuzevakje invoegen" +msgstr "Keuzevakje" #. h2RBS #: WriterCommands.xcu @@ -31016,7 +31016,7 @@ "Label\n" "value.text" msgid "Insert Drop-Down List Content Control" -msgstr "Inhoudsbeheer in keuzelijst invoegen" +msgstr "Keuzelijst" #. Avn9E #: WriterCommands.xcu @@ -31026,7 +31026,7 @@ "Label\n" "value.text" msgid "Insert Picture Content Control" -msgstr "Besturingselement beeldinhoud invoegen" +msgstr "Afbeelding" #. oxa64 #: WriterCommands.xcu @@ -31036,7 +31036,7 @@ "Label\n" "value.text" msgid "Insert Date Content Control" -msgstr "Beturingselement Datum invoegen" +msgstr "Datum" #. tumfQ #: WriterCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/nl/sc/messages.po libreoffice-7.5.2~rc2/translations/source/nl/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/nl/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nl/sc/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-03-20 09: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" @@ -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.5.1~rc2/translations/source/nl/sw/messages.po libreoffice-7.5.2~rc2/translations/source/nl/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/nl/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nl/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-03-19 05:33+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" @@ -11000,7 +11000,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 @@ -12728,7 +12728,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 @@ -12836,7 +12836,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 @@ -16915,7 +16915,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 @@ -29456,7 +29456,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.5.1~rc2/translations/source/nn/cui/messages.po libreoffice-7.5.2~rc2/translations/source/nn/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/nn/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nn/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-22 14:22+0000\n" +"PO-Revision-Date: 2023-03-05 08: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" @@ -13023,7 +13023,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 @@ -21241,7 +21241,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.5.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po libreoffice-7.5.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.5.1~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-23 11:28+0000\n" +"PO-Revision-Date: 2023-03-04 13:32+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: 1566317546.000000\n" #. yzYVt @@ -27923,7 +27923,7 @@ "par_id591667555032629\n" "help.text" msgid "A text for TypeName suffixed with '()' for arrays." -msgstr "" +msgstr "Ein tekst for TypeName etterfølgd med «()» for matriser." #. 2XLBM #: 03103600.xhp @@ -27932,7 +27932,7 @@ "par_id371667555034757\n" "help.text" msgid "An integer for VarType. The number 8192 is added to the returned value for arrays of type VarType." -msgstr "" +msgstr "Eit heiltal for VarType. Talet 8192 vert lagt til den returnerte verdien for matriser av typen VarType." #. 3xswS #: 03103600.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/guide.po libreoffice-7.5.2~rc2/translations/source/nn/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.5.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nn/helpcontent2/source/text/swriter/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-27 11:23+0000\n" +"PO-Revision-Date: 2023-03-12 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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565257384.000000\n" #. XAt2Y @@ -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.5.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.5.2~rc2/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.5.1~rc2/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nn/helpcontent2/source/text/swriter/librelogo.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-08 18:53+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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: 1497373371.000000\n" #. kypzs @@ -248,7 +248,7 @@ "par_430\n" "help.text" msgid "LibreLogo drawings and programs use the same Writer document. The LibreLogo canvas is on the first page of the Writer document. You can insert a page break before the LibreLogo programs and set page zoom using the “magic wand” icon of the Logo toolbar, also change the font size for a comfortable 2-page layout for LibreLogo programming: left (first) page is the canvas, right (second) page is the LibreLogo program editor." -msgstr "LibreLogo-teikningane og programkoden brukar det same Writer-dokumentet. Teikneflata for LibreLogo er på den første sida av dokumentet. Programmet vert skrive på den neste sida eller dei neste sidene om nødvendig. Når du opnar dokumentet, kan få fram skjelpadda og setja inn eit sideskift etter den første sida ved å trykkja på «tryllestaven» på verktøylinja for Logo. Det er som oftast praktisk og ha teiknesida og programsida side ved side. Du kan eventuelt endra skriftstorleiken slik at det vert lettare å lesa teksten." +msgstr "LibreLogo-teikningane og programkoden brukar det same Writer-dokumentet. Teikneflata for LibreLogo er på den første sida av dokumentet. Du kan setja inn eit sideskift før LibreLogo-programma og bruka ikonet med tryllestaven på Logo-verktøylinja for å optimalisera visinga slik at eit komfortabelt dobbeltsidig oppsett er tilgjengeleg for vising av programmeringa i LobreLogo: på venstre side (første side) teikneflata og på høgre side programkoden." #. SSNHJ #: LibreLogo.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:44+0100\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" +"PO-Revision-Date: 2023-03-18 02: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: 1566133413.000000\n" #. W5ukN @@ -16724,7 +16724,7 @@ "Label\n" "value.text" msgid "Block Arc" -msgstr "Boge" +msgstr "Blokkboge" #. 4t7wU #: GenericCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/nn/scp2/source/ooo.po libreoffice-7.5.2~rc2/translations/source/nn/scp2/source/ooo.po --- libreoffice-7.5.1~rc2/translations/source/nn/scp2/source/ooo.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nn/scp2/source/ooo.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-11-14 08:17+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.5.1~rc2/translations/source/nn/sd/messages.po libreoffice-7.5.2~rc2/translations/source/nn/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/nn/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nn/sd/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:12+0100\n" -"PO-Revision-Date: 2023-02-05 17:34+0000\n" +"PO-Revision-Date: 2023-03-22 11: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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566133701.000000\n" #. WDjkB @@ -3100,7 +3100,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 @@ -7880,7 +7880,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:57 msgctxt "optimpressgeneralpage|startwithwizard" msgid "Start with _Template Selection" -msgstr "Byrja med å velje _mal" +msgstr "Byrja med å velja _mal" #. L97gv #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:65 @@ -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.5.1~rc2/translations/source/nn/svx/messages.po libreoffice-7.5.2~rc2/translations/source/nn/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/nn/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/nn/svx/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-02-13 16:31+0000\n" +"PO-Revision-Date: 2023-03-19 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" @@ -19482,7 +19482,7 @@ #: svx/uiconfig/ui/sidebargallery.ui:373 msgctxt "sidebargallery|btnMoreGalleries" msgid "Add more galleries via extension" -msgstr "Legg til fleire galleri med ei utviding" +msgstr "Legg til fleire galleri via utvidingar" #. BdPh5 #: svx/uiconfig/ui/sidebargraphic.ui:46 @@ -20023,7 +20023,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.5.1~rc2/translations/source/pa-IN/extensions/source/update/check/org/openoffice/Office.po libreoffice-7.5.2~rc2/translations/source/pa-IN/extensions/source/update/check/org/openoffice/Office.po --- libreoffice-7.5.1~rc2/translations/source/pa-IN/extensions/source/update/check/org/openoffice/Office.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pa-IN/extensions/source/update/check/org/openoffice/Office.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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:33+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.5.1~rc2/translations/source/pa-IN/scp2/source/draw.po libreoffice-7.5.2~rc2/translations/source/pa-IN/scp2/source/draw.po --- libreoffice-7.5.1~rc2/translations/source/pa-IN/scp2/source/draw.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pa-IN/scp2/source/draw.po 2023-03-24 16:53:38.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-10-10 13:36+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 @@ -393,4 +393,4 @@ "STR_REG_VAL_PDF\n" "LngText.text" msgid "PDF (Portable Document Format)" -msgstr "" +msgstr "PDF (ਪੋਰਟੇਬਲ ਡੌਕੂਮੈਂਟ ਫ਼ਾਰਮੈਟ)" diff -Nru libreoffice-7.5.1~rc2/translations/source/pa-IN/scp2/source/gnome.po libreoffice-7.5.2~rc2/translations/source/pa-IN/scp2/source/gnome.po --- libreoffice-7.5.1~rc2/translations/source/pa-IN/scp2/source/gnome.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pa-IN/scp2/source/gnome.po 2023-03-24 16:53:38.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.5.1~rc2/translations/source/pa-IN/scp2/source/writer.po libreoffice-7.5.2~rc2/translations/source/pa-IN/scp2/source/writer.po --- libreoffice-7.5.1~rc2/translations/source/pa-IN/scp2/source/writer.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pa-IN/scp2/source/writer.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\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: 1548642463.000000\n" #. V3iDr @@ -266,4 +266,4 @@ "STR_REG_VAL_PAGES_DOCUMENT\n" "LngText.text" msgid "Apple Pages" -msgstr "" +msgstr "ਐਪਲ ਪੇਜ਼ਸ" diff -Nru libreoffice-7.5.1~rc2/translations/source/pa-IN/sd/messages.po libreoffice-7.5.2~rc2/translations/source/pa-IN/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/pa-IN/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pa-IN/sd/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+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" @@ -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 @@ -2465,21 +2465,18 @@ #. 8KV99 #: sd/inc/strings.hrc:379 -#, fuzzy msgctxt "SID_SD_A11Y_P_PAGE_N" msgid "PresentationPage" -msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ" +msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ-ਸਫ਼ਾ" #. R6kyg #: sd/inc/strings.hrc:380 -#, fuzzy msgctxt "SID_SD_A11Y_P_NOTES_N" msgid "PresentationNotes" -msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ" +msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ-ਨੋਟਿਸ" #. X8c9Z #: sd/inc/strings.hrc:381 -#, fuzzy msgctxt "SID_SD_A11Y_P_HANDOUT_N" msgid "Handout" msgstr "ਹੈਂਡਆਉਟ" @@ -2492,17 +2489,15 @@ #. sA8of #: sd/inc/strings.hrc:383 -#, fuzzy msgctxt "SID_SD_A11Y_P_FOOTER_N" msgid "PresentationFooter" -msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ ਮੋਡ" +msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ-ਫ਼ੁੱਟਰ" #. KAC6Z #: sd/inc/strings.hrc:384 -#, fuzzy msgctxt "SID_SD_A11Y_P_HEADER_N" msgid "PresentationHeader" -msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ" +msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ-ਹੈੱਡਰ" #. EfHeH #: sd/inc/strings.hrc:385 @@ -2555,7 +2550,6 @@ #. buhox #: sd/inc/strings.hrc:393 -#, fuzzy msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE" msgid "Handout" msgstr "ਹੈਂਡਆਉਟ" @@ -3060,7 +3054,7 @@ #: sd/uiconfig/sdraw/ui/breakdialog.ui:56 msgctxt "breakdialog|label1" msgid "Processing metafile:" -msgstr "" +msgstr "ਮੇਟਾਫ਼ਾਇਲ ਉੱਤੇ ਕਾਰਵਾਈ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ:" #. 4SJMQ #: sd/uiconfig/sdraw/ui/breakdialog.ui:68 @@ -3240,7 +3234,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 @@ -3268,10 +3262,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 @@ -3295,7 +3288,7 @@ #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:144 msgctxt "crossfadedialog|label2" msgid "Increments:" -msgstr "" +msgstr "ਵਾਧਾ:" #. d2wBc #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:163 @@ -3433,13 +3426,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 @@ -3475,7 +3468,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 @@ -3631,7 +3624,7 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:8 msgctxt "drawprtldialog|DrawPRTLDialog" msgid "Presentation Layout" -msgstr "" +msgstr "ਪੇਸ਼ਕਾਰੀ ਖਾਕਾ" #. qhGQW #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:138 @@ -3673,7 +3666,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 @@ -3727,7 +3720,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 @@ -6015,10 +6008,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 @@ -6028,23 +6020,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 @@ -6078,10 +6068,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 @@ -6093,7 +6082,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 @@ -6103,23 +6092,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 @@ -6135,10 +6122,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 @@ -6154,10 +6140,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 @@ -6167,10 +6152,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 @@ -6463,10 +6447,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 @@ -6500,10 +6483,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 @@ -6555,43 +6537,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:60 msgctxt "layoutwindow|label5" msgid "Horizontal" -msgstr "" +msgstr "ਲੇਟਵਾਂ" #. usUqJ #: sd/uiconfig/simpress/ui/layoutwindow.ui:112 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 @@ -6601,10 +6579,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 @@ -6626,10 +6603,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 @@ -6641,14 +6617,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 @@ -6658,49 +6633,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 @@ -6710,22 +6681,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:119 msgctxt "navigatorpanel|STR_OBJECTS_TREE" msgid "Page Tree" -msgstr "" +msgstr "ਸਫ਼ਾ ਲੜੀ" #. e6gMq #: sd/uiconfig/simpress/ui/navigatorpanel.ui:120 @@ -6737,7 +6707,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 @@ -6749,7 +6719,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:159 msgctxt "navigatorpanel|previous|tooltip_text" msgid "Previous Slide" -msgstr "" +msgstr "ਪਿਛਲੀ ਸਲਾਈਡ" #. PJUma #: sd/uiconfig/simpress/ui/navigatorpanel.ui:163 @@ -6773,7 +6743,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:193 msgctxt "navigatorpanel|last|tooltip_text" msgid "Last Slide" -msgstr "" +msgstr "ਆਖਰੀ ਸਲਾਈਡ" #. aPU7Y #: sd/uiconfig/simpress/ui/navigatorpanel.ui:197 @@ -6783,7 +6753,6 @@ #. mHVom #: sd/uiconfig/simpress/ui/navigatorpanel.ui:222 -#, fuzzy msgctxt "navigatorpanel|dragmode|tooltip_text" msgid "Drag Mode" msgstr "ਚੁੱਕਣ ਢੰਗ" @@ -6798,7 +6767,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:239 msgctxt "navigatorpanel|shapes|tooltip_text" msgid "Show Shapes" -msgstr "" +msgstr "ਸ਼ਕਲਾਂ ਵੇਖੋ" #. EUeae #: sd/uiconfig/simpress/ui/navigatorpanel.ui:243 @@ -6822,13 +6791,13 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:286 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 @@ -6840,97 +6809,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:6008 msgctxt "impressnotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "ਸ਼ਾਮਲ(_I)" #. t3YwN #: sd/uiconfig/simpress/ui/notebookbar.ui:6111 msgctxt "impressnotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "ਸ਼ਾਮਲ(~I)" #. 58fjG #: sd/uiconfig/simpress/ui/notebookbar.ui:6886 msgctxt "impressnotebookbar|SlideMenuButton" msgid "_Layout" -msgstr "" +msgstr "ਖਾਕਾ(_L)" #. ArPLp #: sd/uiconfig/simpress/ui/notebookbar.ui:6971 msgctxt "impressnotebookbar|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "ਖਾਕਾ(~L)" #. vRtjP #: sd/uiconfig/simpress/ui/notebookbar.ui:7435 msgctxt "impressnotebookbar|SlideShowMenuButton" msgid "_Slide Show" -msgstr "" +msgstr "ਸਲਾਈਡ ਸ਼ੋ(_S)" #. nV5FC #: sd/uiconfig/simpress/ui/notebookbar.ui:7519 msgctxt "impressnotebookbar|ReferencesLabel" msgid "~Slide Show" -msgstr "" +msgstr "ਸਲਾਈਡ ਸ਼ੋ(~S)" #. sDdGm #: sd/uiconfig/simpress/ui/notebookbar.ui:8055 msgctxt "impressnotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "ਪੜਤਾਲ(~R)" #. drk6E #: sd/uiconfig/simpress/ui/notebookbar.ui:8138 msgctxt "impressnotebookbar|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "ਪੜਤਾਲ(~R)" #. vjE5w #: sd/uiconfig/simpress/ui/notebookbar.ui:9357 msgctxt "impressnotebookbar|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "ਵੇਖੋ(_V)" #. KJK9J #: sd/uiconfig/simpress/ui/notebookbar.ui:9442 msgctxt "impressnotebookbar|ViewLabel" msgid "~View" -msgstr "" +msgstr "ਵੇਖੋ(~V)" #. bWC2b #: sd/uiconfig/simpress/ui/notebookbar.ui:10336 msgctxt "impressnotebookbar|TableMenuButton" msgid "_Table" -msgstr "" +msgstr "ਸਾਰਣੀ(_T)" #. dmEJG #: sd/uiconfig/simpress/ui/notebookbar.ui:10420 msgctxt "impressnotebookbar|TableLabel" msgid "~Table" -msgstr "" +msgstr "ਸਾਰਣੀ(~T)" #. Cn8TS #: sd/uiconfig/simpress/ui/notebookbar.ui:10945 @@ -6938,43 +6907,43 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:14011 msgctxt "impressnotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "" +msgstr "ਬਦਲੋ" #. do5DT #: sd/uiconfig/simpress/ui/notebookbar.ui:11615 msgctxt "impressnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "" +msgstr "ਚਿੱਤਰ(_g)" #. XCSMA #: sd/uiconfig/simpress/ui/notebookbar.ui:11724 msgctxt "impressnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "ਚਿੱਤਰ(~g)" #. nTy3C #: sd/uiconfig/simpress/ui/notebookbar.ui:13426 msgctxt "impressnotebookbar|DrawMenuButton" msgid "_Draw" -msgstr "" +msgstr "ਡਰਾਅ(_D)" #. BfNQD #: sd/uiconfig/simpress/ui/notebookbar.ui:13533 msgctxt "impressnotebookbar|DrawLabel" msgid "~Draw" -msgstr "" +msgstr "ਡਰਾਅ(~D)" #. p3Faf #: sd/uiconfig/simpress/ui/notebookbar.ui:14367 msgctxt "impressnotebookbar|ObjectMenuButton" msgid "_Object" -msgstr "" +msgstr "ਆਬਜੈਕਟ(_O)" #. wL8mu #: sd/uiconfig/simpress/ui/notebookbar.ui:14474 msgctxt "impressnotebookbar|ObjectLabel" msgid "~Object" -msgstr "" +msgstr "ਆਬਜੈਕਟ(~O)" #. AAosj #: sd/uiconfig/simpress/ui/notebookbar.ui:14975 @@ -7451,13 +7420,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 @@ -7467,24 +7436,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 @@ -7494,31 +7460,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 @@ -7530,21 +7492,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 @@ -7552,33 +7512,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 @@ -7588,23 +7544,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 @@ -7614,29 +7568,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 @@ -7648,65 +7600,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 @@ -7718,21 +7662,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 @@ -7742,10 +7684,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 @@ -7767,14 +7708,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 "ਐਂਡ-ਨੋਟ" @@ -7787,7 +7726,6 @@ #. JE3bf #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:151 -#, fuzzy msgctxt "notebookbar_groups|crossreference" msgid "Cross-Reference" msgstr "ਕਰਾਂਸ-ਰੈਫਰੈਂਸ" @@ -7796,13 +7734,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 @@ -7812,7 +7750,6 @@ #. 7YLfF #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:265 -#, fuzzy msgctxt "notebookbar_groups|shapestylenofill" msgid "No Fill" msgstr "ਭਰਨਾ ਨਹੀਂ" @@ -7825,17 +7762,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 @@ -7845,14 +7780,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 "ਸ਼ੈਲੀ" @@ -7867,7 +7800,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 @@ -7877,17 +7810,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 @@ -7897,10 +7828,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 @@ -7923,21 +7853,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 "ਸ਼ੈਲੀ" @@ -7950,17 +7877,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 @@ -7982,7 +7907,6 @@ #. EpwrB #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1844 -#, fuzzy msgctxt "notebookbar_groups|wrapon" msgid "Parallel" msgstr "ਸਮਾਂਤਰ" @@ -8003,21 +7927,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 @@ -8033,10 +7955,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 @@ -10115,7 +10036,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324 msgctxt "slidetransitionspanel|label2" msgid "Advance Slide" -msgstr "" +msgstr "ਅਗਲੀ ਸਲਾਈਡ" #. czZBc #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350 @@ -10185,17 +10106,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 @@ -10207,7 +10126,7 @@ #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:152 msgctxt "tabledesignpanel|menunew" msgid "New" -msgstr "" +msgstr "ਨਵਾਂ" #. U5Noi #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:160 @@ -10219,19 +10138,19 @@ #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:168 msgctxt "tabledesignpanel|menudelete" msgid "Delete" -msgstr "" +msgstr "ਹਟਾਓ" #. RWsRb #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:176 msgctxt "tabledesignpanel|menureset" msgid "Reset" -msgstr "" +msgstr "ਮੁੜ-ਸੈੱਟ ਕਰੋ" #. ZCDY2 #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:184 msgctxt "tabledesignpanel|menuformat" msgid "Format" -msgstr "" +msgstr "ਫ਼ਾਰਮੈਟ" #. 8myJL #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:194 @@ -10277,10 +10196,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 @@ -10296,7 +10214,6 @@ #. 5d7Zo #: sd/uiconfig/simpress/ui/templatedialog.ui:199 -#, fuzzy msgctxt "templatedialog|line" msgid "Line" msgstr "ਰੇਖਾ" @@ -10328,7 +10245,6 @@ #. tuaZJ #: sd/uiconfig/simpress/ui/templatedialog.ui:439 -#, fuzzy msgctxt "templatedialog|fonteffect" msgid "Font Effects" msgstr "ਫੋਂਟ ਪ੍ਰਭਾਵ" @@ -10337,7 +10253,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:487 msgctxt "templatedialog|indents" msgid "Indents & Spacing" -msgstr "" +msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰੀ ਤੇ ਫ਼ਾਸਲਾ" #. siGDD #: sd/uiconfig/simpress/ui/templatedialog.ui:535 @@ -10366,7 +10282,6 @@ #. nBYNb #: sd/uiconfig/simpress/ui/templatedialog.ui:727 -#, fuzzy msgctxt "templatedialog|alignment" msgid "Alignment" msgstr "ਇਕਸਾਰ" diff -Nru libreoffice-7.5.1~rc2/translations/source/pa-IN/svl/messages.po libreoffice-7.5.2~rc2/translations/source/pa-IN/svl/messages.po --- libreoffice-7.5.1~rc2/translations/source/pa-IN/svl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pa-IN/svl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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.5.1~rc2/translations/source/pa-IN/svtools/messages.po libreoffice-7.5.2~rc2/translations/source/pa-IN/svtools/messages.po --- libreoffice-7.5.1~rc2/translations/source/pa-IN/svtools/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pa-IN/svtools/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2021-05-24 07:37+0000\n" +"PO-Revision-Date: 2023-03-10 12:33+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 @@ -3113,7 +3113,7 @@ #: svtools/inc/langtab.hrc:114 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Greek" -msgstr "ਗਰੀਕ" +msgstr "ਯੂਨਾਨੀ" #. QzGHA #: svtools/inc/langtab.hrc:115 @@ -5163,7 +5163,7 @@ #: svtools/uiconfig/ui/calendar.ui:43 msgctxt "calendar|STR_SVT_CALENDAR_TODAY" msgid "Today" -msgstr "" +msgstr "ਅੱਜ" #. Cr9A2 #: svtools/uiconfig/ui/calendar.ui:58 @@ -5215,10 +5215,9 @@ #. ZWxGB #: svtools/uiconfig/ui/graphicexport.ui:202 -#, fuzzy msgctxt "graphicexport|resolutionft" msgid "Resolution:" -msgstr "ਰੈਜ਼ੋਲੂਸ਼ਨ" +msgstr "ਰੈਜ਼ੋਲੂਸ਼ਨ:" #. 2rwEJ #: svtools/uiconfig/ui/graphicexport.ui:222 @@ -5654,7 +5653,7 @@ #: svtools/uiconfig/ui/placeedit.ui:236 msgctxt "placeedit|webdavs" msgid "Secure connection" -msgstr "" +msgstr "ਸੁਰੱਖਿਅਤ ਕਨਕੈਸ਼ਨ" #. B8mT8 #: svtools/uiconfig/ui/placeedit.ui:252 @@ -5664,17 +5663,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 @@ -5684,10 +5681,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 @@ -5703,38 +5699,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 @@ -5746,7 +5737,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 @@ -5768,17 +5759,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 @@ -5803,25 +5792,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 @@ -5917,7 +5906,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 @@ -5929,4 +5918,4 @@ #: svtools/uiconfig/ui/thineditcontrol.ui:72 msgctxt "thineditcontrol|button" msgid "Pick Date" -msgstr "" +msgstr "ਤਾਰੀਖ ਚੁਣੋ" diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/cui/messages.po libreoffice-7.5.2~rc2/translations/source/pl/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/pl/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-02 02:43+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" @@ -4086,7 +4086,7 @@ #: cui/inc/treeopt.hrc:142 msgctxt "SID_SCH_EDITOPTIONS_RES" msgid "Default Colors" -msgstr "Domyślne kolory" +msgstr "Kolory domyślne" #. oUBac #: cui/inc/treeopt.hrc:147 @@ -17870,13 +17870,13 @@ #: cui/uiconfig/ui/paragalignpage.ui:172 msgctxt "paragalignpage|labelST_RIGHTALIGN_ASIAN" msgid "Righ_t/Bottom" -msgstr "Od p_rawej / od dołu" +msgstr "Do p_rawej / do dołu" #. hpARG #: cui/uiconfig/ui/paragalignpage.ui:184 msgctxt "paragalignpage|labelST_LEFTALIGN_ASIAN" msgid "_Left/Top" -msgstr "Od _lewej / od góry" +msgstr "Do _lewej / do góry" #. RaDiT #: cui/uiconfig/ui/paragalignpage.ui:196 @@ -18135,7 +18135,7 @@ #: cui/uiconfig/ui/paratabspage.ui:233 msgctxt "paratabspage|radiobuttonST_LEFTTAB_ASIAN" msgid "_Left/Top" -msgstr "Od _lewej / od góry" +msgstr "Do _lewej / do góry" #. dtaBp #: cui/uiconfig/ui/paratabspage.ui:259 @@ -18147,7 +18147,7 @@ #: cui/uiconfig/ui/paratabspage.ui:274 msgctxt "paratabspage|radiobuttonST_RIGHTTAB_ASIAN" msgid "Righ_t/Bottom" -msgstr "Od p_rawej / od dołu" +msgstr "Do p_rawej / do dołu" #. fDVEt #: cui/uiconfig/ui/paratabspage.ui:295 diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/filter/source/config/fragments/filters.po libreoffice-7.5.2~rc2/translations/source/pl/filter/source/config/fragments/filters.po --- libreoffice-7.5.1~rc2/translations/source/pl/filter/source/config/fragments/filters.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/filter/source/config/fragments/filters.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" +"PO-Revision-Date: 2023-03-23 13: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.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 @@ -714,7 +714,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 @@ -724,7 +724,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 @@ -904,7 +904,7 @@ "UIName\n" "value.text" msgid "PalmDoc eBook" -msgstr "PalmDoc eBook" +msgstr "E-book PalmDoc" #. SkskA #: Palm_Text_Document.xcu @@ -924,7 +924,7 @@ "UIName\n" "value.text" msgid "Plucker eBook" -msgstr "Plucker eBook" +msgstr "E-book Plucker" #. YffjT #: PowerPoint3.xcu @@ -1074,7 +1074,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Drawing" -msgstr "Starszy StarOffice Rysunek" +msgstr "Starszy rysunek StarOffice" #. AA8DU #: StarOffice_Presentation.xcu @@ -1084,7 +1084,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Presentation" -msgstr "Starszy StarOffice Prezentacja" +msgstr "Starsza prezentacja StarOffice" #. wU9ui #: StarOffice_Spreadsheet.xcu @@ -1094,7 +1094,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Spreadsheet" -msgstr "Starszy StarOffice Arkusz kalkulacyjny" +msgstr "Starszy arkusz kalkulacyjny StarOffice" #. eLzL6 #: StarOffice_Writer.xcu @@ -1104,7 +1104,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 @@ -1274,7 +1274,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 @@ -1284,7 +1284,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.5.1~rc2/translations/source/pl/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-01-08 10:42+0000\n" +"PO-Revision-Date: 2023-03-22 12: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: 1564159673.000000\n" #. ViEWM @@ -158,7 +158,7 @@ "hd_id31529004750471\n" "help.text" msgid "The ScriptForge Library" -msgstr "" +msgstr "Biblioteka ScriptForge" #. Poeai #: lib_ScriptForge.xhp @@ -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" #. MmFGR #: lib_ScriptForge.xhp @@ -194,7 +194,7 @@ "par_id1001623412767893\n" "help.text" msgid "To learn more about how to create and execute Python scripts using the ScriptForge library, read the help page Creating Python Scripts with ScriptForge." -msgstr "" +msgstr "Aby dowiedzieć się więcej o tworzeniu i wykonywaniu skryptów w języku Python przy użyciu biblioteki ScriptForge, przeczytaj stronę pomocy Tworzenie skryptów w języku Python za pomocą ScriptForge." #. 2Fr3S #: 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." #. iT3Br #: lib_euro.xhp @@ -401,7 +401,7 @@ "par_id1001593520257636\n" "help.text" msgid "ImportWizard and Tools Basic libraries" -msgstr "" +msgstr "Biblioteki Basic ImportWizard i Narzędzia" #. DT897 #: lib_euro.xhp @@ -410,7 +410,7 @@ "par_id251593518523704\n" "help.text" msgid "Euro Converter Wizard describes what the Euro library does." -msgstr "" +msgstr "Kreator Konwerter Euro opisuje działanie biblioteki Euro." #. G8mp2 #: lib_formwizard.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." #. XW9eu #: lib_gimmicks.xhp @@ -509,7 +509,7 @@ "par_id1001593520257636\n" "help.text" msgid "Tools Basic library" -msgstr "" +msgstr "Biblioteka Basic Narzędzia" #. RAiw5 #: lib_gimmicks.xhp @@ -518,7 +518,7 @@ "par_id251593518523704\n" "help.text" msgid "Using AutoText explains what the Gimmicks library does." -msgstr "" +msgstr "Korzystanie z autotekstu wyjaśnia, co robi biblioteka Gimmicks." #. EwqqW #: lib_importwiz.xhp @@ -527,7 +527,7 @@ "tit\n" "help.text" msgid "ImportWizard Library" -msgstr "" +msgstr "Biblioteka ImportWizard" #. 7Rszk #: lib_importwiz.xhp @@ -536,7 +536,7 @@ "hd_id31529004750471\n" "help.text" msgid "The ImportWizard Library" -msgstr "" +msgstr "Biblioteka ImportWizard" #. pbesX #: 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." #. w27Ax #: lib_importwiz.xhp @@ -599,7 +599,7 @@ "par_id1001593520257636\n" "help.text" msgid "Tools Basic library" -msgstr "" +msgstr "Biblioteka Basic Narzędzia" #. FaMgp #: lib_importwiz.xhp @@ -608,7 +608,7 @@ "par_id251593518523704\n" "help.text" msgid "Document Converter describes what the ImportWizard library does." -msgstr "" +msgstr "Konwerter dokumentów opisuje działanie biblioteki ImportWizard." #. UWzWk #: lib_schedule.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." #. P4psx #: lib_script.xhp @@ -707,7 +707,7 @@ "par_id251593524531077\n" "help.text" msgid "Basic macro selector" -msgstr "" +msgstr "Selektor makr Basic" #. vAYvG #: lib_script.xhp @@ -716,7 +716,7 @@ "par_id721593525163663\n" "help.text" msgid "Beanshell, Java and JavaScript Scripts" -msgstr "" +msgstr "Skrypty Beanshell, Java i JavaScript" #. QZNvL #: lib_template.xhp @@ -995,7 +995,7 @@ "tit\n" "help.text" msgid "WikiEditor Library" -msgstr "" +msgstr "Biblioteka WikiEditor" #. FUfqM #: lib_wikieditor.xhp @@ -1004,7 +1004,7 @@ "hd_id31529004750471\n" "help.text" msgid "The WikiEditor Library" -msgstr "" +msgstr "Biblioteka WikiEditor" #. mBGxx #: 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" #. vJZCW #: sf_array.xhp @@ -1067,7 +1067,7 @@ "bm_id781582391760253\n" "help.text" msgid "ScriptForge.Array service" -msgstr "" +msgstr "Usługa ScriptForge.Array" #. jMjFA #: 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 @@ -20741,7 +20741,7 @@ "tit\n" "help.text" msgid "Creating Python Scripts with ScriptForge" -msgstr "" +msgstr "Tworzenie skryptów w języku Python za pomocą ScriptForge" #. QFG5C #: sf_intro.xhp @@ -20750,7 +20750,7 @@ "hd_id461623364876507\n" "help.text" msgid "Creating Python Scripts with ScriptForge" -msgstr "" +msgstr "Tworzenie skryptów w języku Python za pomocą ScriptForge " #. 6JuA3 #: sf_intro.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/scalc/00.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/scalc/00.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/scalc/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/scalc/00.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:43+0100\n" -"PO-Revision-Date: 2023-01-12 14:11+0000\n" -"Last-Translator: serval2412 \n" -"Language-Team: Polish \n" +"PO-Revision-Date: 2023-03-16 09:12+0000\n" +"Last-Translator: Adam Rak \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 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 diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/scalc/guide.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/scalc/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/scalc/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 05:34+0000\n" +"PO-Revision-Date: 2023-03-12 04: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" @@ -4037,7 +4037,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/sdatabase.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/sdatabase.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/sdatabase.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/sdatabase.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-21 16:54+0000\n" +"PO-Revision-Date: 2023-02-28 22:04+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" #. ugSgG #: 02000000.xhp @@ -103,7 +103,7 @@ "par_id3149398\n" "help.text" msgid "Drag the name of the table or query into the open text document or spreadsheet. The dialog Insert Database Columns opens." -msgstr "" +msgstr "Przeciągnij nazwę tabeli lub kwerendy do otwartego dokumentu tekstowego lub arkusza kalkulacyjnego. Zostanie otwarte okno dialogowe Wstaw kolumny bazy danych." #. m5TnG #: 02000000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/sdraw.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/sdraw.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/sdraw.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/sdraw.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-06 07:22+0000\n" +"PO-Revision-Date: 2023-03-02 08: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" @@ -266,7 +266,7 @@ "tit\n" "help.text" msgid "Line and Filling Bar" -msgstr "Pasek formatowania" +msgstr "Pasek Linia i wypełnienie" #. ghWFK #: main0202.xhp @@ -275,7 +275,7 @@ "hd_id3149669\n" "help.text" msgid "Line and Filling Bar" -msgstr "Pasek formatowania" +msgstr "Pasek Linia i wypełnienie" #. ZbyBP #: main0202.xhp @@ -284,7 +284,7 @@ "par_id3150543\n" "help.text" msgid "The Line and Filling bar contains commands for the current editing mode." -msgstr "Pasek formatowania zawiera polecenia dotyczące pracy w bieżącym trybie edycji." +msgstr "Pasek Linia i wypełnienie zawiera polecenia dotyczące pracy w bieżącym trybie edycji." #. yCmrn #: main0202.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/shared/00.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/shared/00.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/shared/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/shared/00.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" -"Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"PO-Revision-Date: 2023-03-22 12:34+0000\n" +"Last-Translator: serval2412 \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -5225,7 +5225,7 @@ "hd_id3145138\n" "help.text" msgid "Field delimiter" -msgstr "Separator pola" +msgstr "Ogranicznik pola" #. MSSDg #: 00000207.xhp @@ -5243,7 +5243,7 @@ "hd_id3154682\n" "help.text" msgid "Text delimiter" -msgstr "Separator tekstu" +msgstr "Ogranicznik tekstu" #. AC8vt #: 00000207.xhp @@ -5270,7 +5270,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 @@ -5621,7 +5621,7 @@ "hd_id3150978\n" "help.text" msgid "Merge delimiters" -msgstr "Scal separatory" +msgstr "Scal ograniczniki" #. G6Vj9 #: 00000208.xhp @@ -9293,7 +9293,7 @@ "par_id3155607\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Print." -msgstr "" +msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web -Drukuj." #. zBCAL #: 00000406.xhp @@ -9302,7 +9302,7 @@ "par_id3988769\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Print." -msgstr "" +msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc - Drukuj." #. YtRNf #: 00000406.xhp @@ -9311,7 +9311,7 @@ "par_id3145769\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table." -msgstr "" +msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Tabela." #. ApgmU #: 00000406.xhp @@ -9320,7 +9320,7 @@ "par_id3147005\n" "help.text" msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Changes." -msgstr "" +msgstr "Otwórz dokument tekstowy, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer - Zmiany." #. BQHkB #: 00000406.xhp @@ -9329,7 +9329,7 @@ "par_id3159333\n" "help.text" msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web." -msgstr "" +msgstr "Otwórz dokument HTML, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer/Web." #. G6ZxC #: 00000406.xhp @@ -9338,7 +9338,7 @@ "par_id3149448\n" "help.text" msgid "Open an HTML document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web - Background." -msgstr "" +msgstr "Otwórz dokument HTML, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer/Web - Tło." #. mfAqt #: 00000406.xhp @@ -9347,7 +9347,7 @@ "par_id3149336\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc." -msgstr "" +msgstr "Otwórz dokument arkusza kalkulacyjnego, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc." #. NkTut #: 00000406.xhp @@ -9356,7 +9356,7 @@ "par_id3152966\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - General." -msgstr "" +msgstr "Otwórz dokument arkusza kalkulacyjnego, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc - Ogólne." #. 5Ny4L #: 00000406.xhp @@ -9365,7 +9365,7 @@ "par_id3149814\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "" +msgstr "Otwórz dokument arkusza kalkulacyjnego, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc - Widok." #. jYrtX #: 00000406.xhp @@ -9374,7 +9374,7 @@ "par_id3154656\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Calculate." -msgstr "" +msgstr "Otwórz dokument arkusza kalkulacyjnego, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc - Oblicz." #. v9qCe #: 00000406.xhp @@ -9383,7 +9383,7 @@ "par_id3154657\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Compatibility." -msgstr "" +msgstr "Otwórz dokument arkusza kalkulacyjnego, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc - Zgodność." #. YLDHE #: 00000406.xhp @@ -9392,7 +9392,7 @@ "par_id3152494\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgstr "Otwórz dokument arkusza kalkulacyjnego, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc - Listy sortowania." #. CV4hm #: 00000406.xhp @@ -9401,7 +9401,7 @@ "par_id3152495\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Formula." -msgstr "" +msgstr "Otwórz dokument arkusza kalkulacyjnego, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc - Formuła." #. jgcRa #: 00000406.xhp @@ -9410,7 +9410,7 @@ "par_id3152496\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Defaults." -msgstr "" +msgstr "Otwórz dokument arkusza kalkulacyjnego, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc - Domyślne." #. njiyY #: 00000406.xhp @@ -9419,7 +9419,7 @@ "par_id3149527\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists - Copy button." -msgstr "" +msgstr "Otwórz dokument arkusza kalkulacyjnego, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc - Listy sortowania - przycisk Kopiuj." #. 9qzJx #: 00000406.xhp @@ -9428,7 +9428,7 @@ "par_id3154903\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Changes." -msgstr "" +msgstr "Otwórz dokument arkusza kalkulacyjnego, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Calc - Zmiany." #. dYa3d #: 00000406.xhp @@ -9437,7 +9437,7 @@ "par_id3152582\n" "help.text" msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress." -msgstr "" +msgstr "Otwórz dokument prezentacji, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Impress." #. dEm72 #: 00000406.xhp @@ -9446,7 +9446,7 @@ "par_id3148418\n" "help.text" msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General." -msgstr "" +msgstr "Otwórz dokument prezentacji, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Ogólne." #. uGQBp #: 00000406.xhp @@ -9455,7 +9455,7 @@ "par_id3150380\n" "help.text" msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View." -msgstr "" +msgstr "Otwórz dokument prezentacji, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Widok." #. EjNLJ #: 00000406.xhp @@ -9464,7 +9464,7 @@ "par_id3166423\n" "help.text" msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid." -msgstr "" +msgstr "Otwórz dokument prezentacji, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Siatka." #. kN9hg #: 00000406.xhp @@ -9473,7 +9473,7 @@ "par_id3148873\n" "help.text" msgid "Open a presentation document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print." -msgstr "" +msgstr "Otwórz dokument prezentacji, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Drukowanie." #. B5oLh #: 00000406.xhp @@ -9482,7 +9482,7 @@ "par_id3145220\n" "help.text" msgid "Open a drawing document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw." -msgstr "" +msgstr "Otwórz dokument rysunku, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Draw." #. GDADD #: 00000406.xhp @@ -9491,7 +9491,7 @@ "par_id3149573\n" "help.text" msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math." -msgstr "" +msgstr "Otwórz dokument Math, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Math." #. fU6x2 #: 00000406.xhp @@ -9500,7 +9500,7 @@ "par_id3145613\n" "help.text" msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math - Settings." -msgstr "" +msgstr "Otwórz dokument Math, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Math - Ustawienia." #. JfMtL #: 00000406.xhp @@ -9509,7 +9509,7 @@ "par_id3155137\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts." -msgstr "" +msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - Wykresy." #. cAbjU #: 00000406.xhp @@ -9518,7 +9518,7 @@ "par_id3149211\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Charts - Default Colors." -msgstr "" +msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - Wykresy - Kolory domyślne." #. qgWMd #: 00000406.xhp @@ -9527,7 +9527,7 @@ "par_id3150862\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base." -msgstr "" +msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Base." #. KGoCT #: 00000406.xhp @@ -9536,7 +9536,7 @@ "par_id3147368\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Connections." -msgstr "" +msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje- %PRODUCTNAME Base - Połączenia." #. oiNZc #: 00000406.xhp @@ -9545,7 +9545,7 @@ "par_idN1120D\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Base - Databases." -msgstr "" +msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Base - Bazy danych." #. FfMAN #: 00000407.xhp @@ -9572,7 +9572,7 @@ "par_id3083278\n" "help.text" msgid "Choose Window - New Window." -msgstr "" +msgstr "Wybierz Okno - Nowe okno." #. RZdEA #: 00000407.xhp @@ -9581,7 +9581,7 @@ "par_id3154545\n" "help.text" msgid "Choose Window - List of open documents." -msgstr "" +msgstr "Wybierz Okno - Lista otwartych dokumentów." #. Jr8uE #: 00000408.xhp @@ -9608,7 +9608,7 @@ "par_id3150960\n" "help.text" msgid "Choose Help - %PRODUCTNAME Help." -msgstr "" +msgstr "Wybierz Pomoc - Pomoc %PRODUCTNAME." #. ovUZh #: 00000408.xhp @@ -9617,7 +9617,7 @@ "par_id3147240\n" "help.text" msgid "Choose Help - About %PRODUCTNAME." -msgstr "" +msgstr "Wybierz Pomoc - Informacje o %PRODUCTNAME." #. T3TZj #: 00000408.xhp @@ -9653,7 +9653,7 @@ "par_id3156053\n" "help.text" msgid "Choose Data - More Filters - Standard Filter." -msgstr "" +msgstr "Wybierz Dane - Więcej filtrów - Filtr standardowy." #. qnVcf #: 00000409.xhp @@ -9662,7 +9662,7 @@ "par_id3154350\n" "help.text" msgid "Database table view: Standard Filter icon in the Database toolbar." -msgstr "" +msgstr "Widok tabeli bazy danych: ikona Filtr standardowy na pasku narzędzi Baza danych." #. yYnME #: 00000409.xhp @@ -9671,7 +9671,7 @@ "par_id3154183\n" "help.text" msgid "Form view: Standard Filter icon in the Form bar." -msgstr "" +msgstr "Widok formularza: ikona Filtr standardowy na pasku Formularz." #. 3jukD #: 00000409.xhp @@ -9680,7 +9680,7 @@ "par_id3155619\n" "help.text" msgid "Icon Standard Filter" -msgstr "" +msgstr "Ikona filtra standardowego" #. oB9GF #: 00000409.xhp @@ -9716,7 +9716,7 @@ "par_id3152876\n" "help.text" msgid "In a database file window, choose Tools - Table Filter." -msgstr "" +msgstr "W oknie pliku bazy danych wybierz Narzędzia - Filtr tabeli." #. 6DeRD #: 00000450.xhp @@ -9734,7 +9734,7 @@ "par_id3147294\n" "help.text" msgid "In a database file window, choose Edit - Database - Properties - Advanced Settings tab." -msgstr "" +msgstr "W oknie pliku bazy danych wybierz kartę Edycja - Baza danych - Właściwości - Ustawienia zaawansowane." #. 3JDkL #: 00000450.xhp @@ -9743,7 +9743,7 @@ "par_id3159411\n" "help.text" msgid "In a database file window of type ODBC or Address book,
choose Edit - Database - Connection Type.
" -msgstr "" +msgstr "W oknie pliku bazy danych typu ODBC lub Książka adresowa
wybierz Edycja - Baza danych - Typ połączenia.
" #. D9G6N #: 00000450.xhp @@ -9752,7 +9752,7 @@ "par_id3149119\n" "help.text" msgid "Path selection button in various wizards / Edit buttons for some entries in %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths." -msgstr "" +msgstr "Przycisk wyboru ścieżki w różnych kreatorach / przyciski Edycja dla niektórych pozycji w %PRODUCTNAME - PreferencjeNarzędzia - Opcje - $[officename] - Ścieżki." #. GSGKR #: 00000450.xhp @@ -9761,7 +9761,7 @@ "par_id3154497\n" "help.text" msgid "In a database file window of type ODBC, choose Edit - Database - Connection Type." -msgstr "" +msgstr "W oknie pliku bazy danych typu ODBC wybierz Edytuj - Baza danych - Typ połączenia." #. XuSPv #: 00000450.xhp @@ -9770,7 +9770,7 @@ "par_id3149355\n" "help.text" msgid "In a database file window of type Address book - LDAP, choose Edit - Database - Properties." -msgstr "" +msgstr "W oknie pliku bazy danych typu Książka adresowa - LDAP wybierz Edycja - Baza danych - Właściwości." #. DBAuz #: 00000450.xhp @@ -9779,7 +9779,7 @@ "par_id3157896\n" "help.text" msgid "In a database file window of type JDBC, choose Edit - Database - Properties." -msgstr "" +msgstr "W oknie pliku bazy danych typu JDBC wybierz Edycja - Baza danych - Właściwości." #. FRza9 #: 00000450.xhp @@ -9788,7 +9788,7 @@ "par_id3148548\n" "help.text" msgid "In a database file window of type MySQL, choose Edit - Database - Properties." -msgstr "" +msgstr "W oknie pliku bazy danych typu MySQL wybierz Edycja - Baza danych - Właściwości." #. CAfwh #: 00000450.xhp @@ -9797,7 +9797,7 @@ "par_id3149346\n" "help.text" msgid "In a database file window of type dBASE, choose Edit - Database - Properties." -msgstr "" +msgstr "W oknie pliku bazy danych typu dBASE wybierz Edycja - Baza danych - Właściwości." #. nszBF #: 00000450.xhp @@ -9806,7 +9806,7 @@ "par_id3147043\n" "help.text" msgid "In a database file window of type dBASE, choose Edit - Database - Properties, click Indexes." -msgstr "" +msgstr "W oknie pliku bazy danych typu dBASE wybierz Edycja - Baza danych - Właściwości, kliknij Indeksy." #. vdiHb #: 00000450.xhp @@ -9815,7 +9815,7 @@ "par_id3154317\n" "help.text" msgid "In a database file window of type Text, choose Edit - Database - Properties." -msgstr "" +msgstr "W oknie pliku bazy danych typu Tekst wybierz Edycja - Baza danych - Właściwości." #. bhFWN #: 00000450.xhp @@ -9824,7 +9824,7 @@ "par_id3150774\n" "help.text" msgid "In a database file window of type MS ADO, choose Edit - Database - Properties." -msgstr "" +msgstr "W oknie pliku bazy danych typu MS ADO wybierz Edycja - Baza danych - Właściwości." #. 3KDA2 #: 00000450.xhp @@ -9833,7 +9833,7 @@ "par_id3151110\n" "help.text" msgid "In a database file window, choose Tools - SQL." -msgstr "" +msgstr "W oknie pliku bazy danych wybierz Narzędzia - SQL." #. 38BhN #: 00000450.xhp @@ -9842,7 +9842,7 @@ "par_id3147209\n" "help.text" msgid "In a database file window, click the Queries icon." -msgstr "" +msgstr "W oknie pliku bazy danych kliknij ikonę Kwerendy." #. hZbEP #: 00000450.xhp @@ -9851,7 +9851,7 @@ "par_id3153880\n" "help.text" msgid "In a database file window, click the Tables icon." -msgstr "" +msgstr "W oknie pliku bazy danych kliknij ikonę Tabele." #. TVLoR #: 00000450.xhp @@ -9860,7 +9860,7 @@ "par_id3153760\n" "help.text" msgid "In a database file window, click the Tables icon. Choose Insert - Table Design or Edit - Edit." -msgstr "" +msgstr "W oknie pliku bazy danych kliknij ikonę Tabele. Wybierz Wstaw - Projekt tabeli lub Edycja - Edycja." #. KsxFC #: 00000450.xhp @@ -9869,7 +9869,7 @@ "par_id3156329\n" "help.text" msgid "In a database file window, click the Tables icon. Choose Insert - Table Design or Edit - Edit." -msgstr "" +msgstr "W oknie pliku bazy danych kliknij ikonę Tabele. Wybierz Wstaw - Projekt tabeli lub Edycja - Edycja." #. Ayi5s #: 00000450.xhp @@ -9878,7 +9878,7 @@ "par_id3154047\n" "help.text" msgid "In a database file window, choose Insert - Query (Design view)." -msgstr "" +msgstr "W oknie pliku bazy danych wybierz Wstaw - Kwerenda (widok projektu)." #. W8EtK #: 00000450.xhp @@ -9887,7 +9887,7 @@ "par_id3149579\n" "help.text" msgid "In a database file window, click the Queries icon, then choose Edit - Edit." -msgstr "" +msgstr "W oknie pliku bazy danych kliknij ikonę Kwerendy, a następnie wybierz Edycja - Edycja." #. b34tE #: 00000450.xhp @@ -9896,7 +9896,7 @@ "par_id3149902\n" "help.text" msgid "In a database file window, click the Queries icon, then choose Edit - Edit.
If the referenced fields no longer exist, you see this dialog.
" -msgstr "" +msgstr "W oknie pliku bazy danych kliknij ikonę Kwerendy, a następnie wybierz Edycja - Edycja.
Jeśli pola, do których się odwołujesz, już nie istnieją , zobaczysz to okno dialogowe.
" #. DttLt #: 00000450.xhp @@ -9914,7 +9914,7 @@ "par_id3151245\n" "help.text" msgid "Add Table Icon" -msgstr "" +msgstr "Ikona dodawania tabeli" #. ooNgH #: 00000450.xhp @@ -9932,7 +9932,7 @@ "par_id3149457\n" "help.text" msgid "New Relation Icon" -msgstr "" +msgstr "Ikona nowej relacji" #. DRd37 #: 00000450.xhp @@ -9950,7 +9950,7 @@ "par_id3150414\n" "help.text" msgid "Find Record icon on the Table Data bar and Form Design bar." -msgstr "" +msgstr "Ikona Znajdź rekord na pasku danych tabeli i pasku projektu formularza." #. Fuhzi #: 00000450.xhp @@ -9959,7 +9959,7 @@ "par_id3157962\n" "help.text" msgid "Find Record Icon" -msgstr "" +msgstr "Ikona znajdowania rekordu" #. JTGFP #: 00000450.xhp @@ -9977,7 +9977,7 @@ "par_id3150870\n" "help.text" msgid "Sort Order icon on the Table Data bar and Form Design bar." -msgstr "" +msgstr "Ikona Porządek sortowania na pasku danych tabeli i pasku projektu formularza." #. sDtNU #: 00000450.xhp @@ -9986,7 +9986,7 @@ "par_id3150393\n" "help.text" msgid "Sort Order Icon" -msgstr "" +msgstr "Ikona porządku sortowania" #. gPJGC #: 00000450.xhp @@ -10004,7 +10004,7 @@ "par_id3145171\n" "help.text" msgid "In a database file window, choose Edit - Database - Properties." -msgstr "" +msgstr "W oknie pliku bazy danych wybierz Edycja - Baza danych - Właściwości." #. Jmhsb #: 00000450.xhp @@ -10013,7 +10013,7 @@ "par_id3159252\n" "help.text" msgid "Drag and drop a table or a query into the table part of another database file window." -msgstr "" +msgstr "Przeciągnij i upuść tabelę lub kwerendę do części tabelarycznej innego okna pliku bazy danych." #. Epg8E #: 00000450.xhp @@ -10022,7 +10022,7 @@ "par_id3148560\n" "help.text" msgid "In a database file window, choose Insert - Form." -msgstr "" +msgstr "W oknie pliku bazy danych wybierz Wstaw - Formularz." #. dE2WP #: 00000450.xhp @@ -10031,7 +10031,7 @@ "par_id3155430\n" "help.text" msgid "In a database file window, choose Edit - Database - Properties." -msgstr "" +msgstr "W oknie pliku bazy danych wybierz Edycja - Baza danych - Właściwości." #. S8tmR #: 00000450.xhp @@ -10040,7 +10040,7 @@ "par_id3147441\n" "help.text" msgid "In a database file window, choose Tools - Relationships." -msgstr "" +msgstr "W oknie pliku bazy danych wybierz Narzędzia - Relacje." #. t2T9h #: 00040500.xhp @@ -10067,7 +10067,7 @@ "par_id3156426\n" "help.text" msgid "Open Optimize Size dropdown menu from Table bar, click" -msgstr "" +msgstr "Otwórz menu rozwijane Optymalizuj rozmiar z paska Tabela, a następnie kliknij" #. GHptw #: 00040500.xhp @@ -10076,7 +10076,7 @@ "par_id481655731478873\n" "help.text" msgid "Open Optimize Size dropdown menu from Table bar, click" -msgstr "" +msgstr "Otwórz menu rozwijane Optymalizuj rozmiar z paska Tabela, a następnie kliknij" #. LNCUB #: 00040500.xhp @@ -10085,7 +10085,7 @@ "par_id271654223353638\n" "help.text" msgid "Choose Table - Size - Minimal Row Height." -msgstr "" +msgstr "Wybierz Tabela - Rozmiar - Minimalna wysokość wiersza." #. Gh5VB #: 00040500.xhp @@ -10094,7 +10094,7 @@ "par_id151655731003155\n" "help.text" msgid "Choose Format - Table - Minimal Row Height." -msgstr "" +msgstr "Wybierz Format - Tabela - Minimalna wysokość wiersza." #. CZ6Az #: 00040500.xhp @@ -10103,7 +10103,7 @@ "par_id451655738489793\n" "help.text" msgid "Select rows in table, right-click, choose Size - Minimal Row Height." -msgstr "" +msgstr "Zaznacz wiersze w tabeli, kliknij prawym przyciskiem myszy i wybierz Rozmiar - Minimalna wysokość wiersza." #. UEWjA #: 00040500.xhp @@ -10112,7 +10112,7 @@ "par_id751654222949632\n" "help.text" msgid "Minimal Row Height Icon" -msgstr "" +msgstr "Ikona minimalnej wysokości wiersza" #. kp47D #: 00040500.xhp @@ -10121,7 +10121,7 @@ "par_id961654222949632\n" "help.text" msgid "Minimal Row Height" -msgstr "" +msgstr "Minimalna wysokość wiersza" #. NN4r3 #: 00040500.xhp @@ -10130,7 +10130,7 @@ "par_id3155536\n" "help.text" msgid "Choose Table - Size - Optimal Row Height." -msgstr "" +msgstr "Wybierz Tabela - Rozmiar - Optymalna wysokość wiersza." #. pCsAR #: 00040500.xhp @@ -10139,7 +10139,7 @@ "par_id621655731074115\n" "help.text" msgid "Choose Format - Table - Optimal Row Height." -msgstr "" +msgstr "Wybierz Format - Tabela - Optymalna wysokość wiersza." #. zLApF #: 00040500.xhp @@ -10148,7 +10148,7 @@ "par_id741655738425233\n" "help.text" msgid "Select rows in table, right-click, choose Size - Optimal Row Height." -msgstr "" +msgstr "Zaznacz wiersze w tabeli, kliknij prawym przyciskiem myszy i wybierz Rozmiar - Optymalna wysokość wiersza." #. U2ETB #: 00040500.xhp @@ -10157,7 +10157,7 @@ "par_id3145222\n" "help.text" msgid "Icon Optimal Row Height" -msgstr "" +msgstr "Ikona optymalnej wysokości wiersza" #. meaVC #: 00040500.xhp @@ -10166,7 +10166,7 @@ "par_id3153545\n" "help.text" msgid "Optimal Row Height" -msgstr "" +msgstr "Optymalna wysokość wiersza" #. zvEoa #: 00040500.xhp @@ -10175,7 +10175,7 @@ "par_id3153569\n" "help.text" msgid "Choose Table - Size - Distribute Rows Evenly." -msgstr "" +msgstr "Wybierz Tabela - Rozmiar - Rozłóż wiersze równomiernie." #. vVi3q #: 00040500.xhp @@ -10184,7 +10184,7 @@ "par_id701655731168178\n" "help.text" msgid "Choose Format - Table - Distribute Rows Evenly." -msgstr "" +msgstr "Wybierz Format - Tabela - Rozłóż wiersze równomiernie." #. ZFAHG #: 00040500.xhp @@ -10193,7 +10193,7 @@ "par_id801655738379330\n" "help.text" msgid "Select rows in table, right-click, choose Size - Distribute Rows Evenly." -msgstr "" +msgstr "Zaznacz wiersze w tabeli, kliknij prawym przyciskiem myszy i wybierz Rozmiar - Rozłóż wiersze równomiernie." #. aALKw #: 00040500.xhp @@ -10202,7 +10202,7 @@ "par_id3145297\n" "help.text" msgid "Icon Distribute Rows Evenly" -msgstr "" +msgstr "Ikona rozkładania wierszy równomiernie" #. tgSLB #: 00040500.xhp @@ -10211,7 +10211,7 @@ "par_id3153206\n" "help.text" msgid "Distribute Rows Evenly" -msgstr "" +msgstr "Rozłóż wiersze równomiernie" #. 8znyd #: 00040500.xhp @@ -10220,7 +10220,7 @@ "par_id51654220677297\n" "help.text" msgid "Choose Table - Size - Minimal Column Width." -msgstr "" +msgstr "Wybierz Tabela - Rozmiar - Minimalna szerokość kolumny." #. EFZvU #: 00040500.xhp @@ -10229,7 +10229,7 @@ "par_id691655731247050\n" "help.text" msgid "Choose Format - Table - Minimal Column Width." -msgstr "" +msgstr "Wybierz Format - Tabela - Minimalna szerokość kolumny." #. bqVXT #: 00040500.xhp @@ -10238,7 +10238,7 @@ "par_id941655738180090\n" "help.text" msgid "Select columns in table, right-click, choose Size - Minimal Column Width." -msgstr "" +msgstr "Zaznacz kolumny w tabeli, kliknij prawym przyciskiem myszy i wybierz Rozmiar - Minimalna szerokość kolumny." #. UvZy2 #: 00040500.xhp @@ -10247,7 +10247,7 @@ "par_id11654222599271\n" "help.text" msgid "Minimal Column Width Icon" -msgstr "" +msgstr "Ikona minimalnej szerokości kolumny" #. 4Vw5o #: 00040500.xhp @@ -10256,7 +10256,7 @@ "par_id161654222599272\n" "help.text" msgid "Minimal Column Width" -msgstr "" +msgstr "Minimalna szerokość kolumny" #. pNAs2 #: 00040500.xhp @@ -10265,7 +10265,7 @@ "par_id3154752\n" "help.text" msgid "Choose Table - Size - Optimal Column Width." -msgstr "" +msgstr "Wybierz Tabela - Rozmiar - Optymalna szerokość kolumny." #. RnQAg #: 00040500.xhp @@ -10274,7 +10274,7 @@ "par_id471655731343905\n" "help.text" msgid "Choose Format - Table - Optimal Column Width." -msgstr "" +msgstr "Wybierz Format - Tabela - Optymalna szerokość kolumny." #. hphNu #: 00040500.xhp @@ -10283,7 +10283,7 @@ "par_id701655738103242\n" "help.text" msgid "Select columns in table, right-click, choose Size - Optimal Column Width." -msgstr "" +msgstr "Zaznacz kolumny w tabeli, kliknij prawym przyciskiem myszy i wybierz Rozmiar - Optymalna szerokość kolumny." #. C6MQK #: 00040500.xhp @@ -10292,7 +10292,7 @@ "par_id3157881\n" "help.text" msgid "Icon Optimal Column Width" -msgstr "" +msgstr "Ikona optymalnej szerokości kolumny" #. c9tX3 #: 00040500.xhp @@ -10301,7 +10301,7 @@ "par_id3150524\n" "help.text" msgid "Optimal Column Width" -msgstr "" +msgstr "Optymalna szerokość kolumny" #. ow3LU #: 00040500.xhp @@ -10310,7 +10310,7 @@ "par_id3159219\n" "help.text" msgid "Choose Table - Size - Distribute Columns Evenly." -msgstr "" +msgstr "Wybierz Tabela - Rozmiar - Rozłóż kolumny równomiernie." #. zFDHf #: 00040500.xhp @@ -10319,7 +10319,7 @@ "par_id991655731434331\n" "help.text" msgid "Choose Format - Table - Distribute Columns Evenly." -msgstr "" +msgstr "Wybierz Format - Tabela - Rozłóż kolumny równomiernie." #. LGcd8 #: 00040500.xhp @@ -10328,7 +10328,7 @@ "par_id151654212978990\n" "help.text" msgid "Select columns in table, right-click, choose Size - Distribute Columns Evenly." -msgstr "" +msgstr "Zaznacz kolumny w tabeli, kliknij prawym przyciskiem myszy, wybierz Rozmiar - Rozłóż kolumny równomiernie." #. 7hd74 #: 00040500.xhp @@ -10337,7 +10337,7 @@ "par_id3145179\n" "help.text" msgid "Icon Distribute Columns Evenly" -msgstr "" +msgstr "Ikona rozkładania kolumn równomiernie" #. m2sdA #: 00040500.xhp @@ -10346,7 +10346,7 @@ "par_id3151364\n" "help.text" msgid "Distribute Columns Evenly" -msgstr "" +msgstr "Rozłóż kolumny równomiernie" #. yUJ5g #: 00040500.xhp @@ -10355,7 +10355,7 @@ "par_id3145356\n" "help.text" msgid "Choose Format - Clear Direct Formatting." -msgstr "" +msgstr "Wybierz Format - Wyczyść formatowanie bezpośrednie." #. Aw62P #: 00040500.xhp @@ -10364,7 +10364,7 @@ "par_id3153244\n" "help.text" msgid "Choose Format - Character." -msgstr "" +msgstr "Wybierz Format - Znak." #. F9bk6 #: 00040500.xhp @@ -10373,7 +10373,7 @@ "par_id3152352\n" "help.text" msgid "On Text Formatting bar (with cursor in object), click" -msgstr "" +msgstr "Na pasku Formatowanie tekstu (z kursorem w obiekcie) kliknij" #. rxcvE #: 00040500.xhp @@ -10382,7 +10382,7 @@ "par_id3148998\n" "help.text" msgid "Icon Character" -msgstr "" +msgstr "Ikona znaku" #. AdBzN #: 00040500.xhp @@ -10400,7 +10400,7 @@ "par_id3153935\n" "help.text" msgid "Choose Format - Character - Font tab." -msgstr "" +msgstr "Wybierz kartę Format - Znak - Czcionka." #. hT4Cf #: 00040500.xhp @@ -10409,7 +10409,7 @@ "par_id3157958\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Czcionka." #. vEDDL #: 00040500.xhp @@ -10418,7 +10418,7 @@ "par_id3155338\n" "help.text" msgid "Open context menu of a row header in a database table - choose Table Format - Font tab." -msgstr "" +msgstr "Otwórz menu kontekstowe główki wiersza w tabeli bazy danych – wybierz kartę Format tabeli - Czcionka." #. 4dCFB #: 00040500.xhp @@ -10427,7 +10427,7 @@ "par_id3150355\n" "help.text" msgid "Choose Format - Title - Character tab (Chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Tytuł - Znak (dokumenty z wykresami)." #. nV4EJ #: 00040500.xhp @@ -10436,7 +10436,7 @@ "par_id3149812\n" "help.text" msgid "Choose Format - Legend - Character tab (Chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Legenda - Znak (dokumenty z wykresami)." #. Z93Az #: 00040500.xhp @@ -10445,7 +10445,7 @@ "par_id3153717\n" "help.text" msgid "Choose Format - Axis - Character tab (Chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Oś - Znak (dokumenty z wykresami)." #. QhGCy #: 00040500.xhp @@ -10454,7 +10454,7 @@ "par_id3154749\n" "help.text" msgid "Choose Format - Cells - Font tab (spreadsheets)." -msgstr "" +msgstr "Wybierz kartę Format - Komórki - Czcionka (arkusze kalkulacyjne)." #. UqWpS #: 00040500.xhp @@ -10463,7 +10463,7 @@ "par_id3156306\n" "help.text" msgid "Menu Format - Page Style - Header/Footer - Edit button (spreadsheets)." -msgstr "" +msgstr "Menu Format - Styl strony - Główka/Stopka ‐ przycisk Edycja (arkusze kalkulacyjne)." #. f7aHb #: 00040500.xhp @@ -10472,7 +10472,7 @@ "par_id3155829\n" "help.text" msgid "Choose Format - Character - Font Effects tab." -msgstr "" +msgstr "Wybierz kartę Format - Znak - Efekty czcionki." #. s38Vy #: 00040500.xhp @@ -10481,7 +10481,7 @@ "par_id3149819\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font Effects tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Efekty czcionki." #. 5k7D4 #: 00040500.xhp @@ -10490,7 +10490,7 @@ "par_id3159176\n" "help.text" msgid "Menu Format - Page Style - Header/Footer - Edit button (spreadsheets)." -msgstr "" +msgstr "Menu Format - Styl strony - Główka/Stopka - przycisk Edycja (arkusze kalkulacyjne)." #. PGTCS #: 00040500.xhp @@ -10499,7 +10499,7 @@ "par_id3153541\n" "help.text" msgid "Choose Format - Character - Position tab." -msgstr "" +msgstr "Wybierz kartę Format - Znak - Pozycja." #. 6HCVo #: 00040500.xhp @@ -10508,7 +10508,7 @@ "par_id3159256\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Alignment tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe wpisu i kliknij kartę Modyfikuj/Nowy - Wyrównanie." #. E3vEQ #: 00040500.xhp @@ -10517,7 +10517,7 @@ "par_id3151385\n" "help.text" msgid "Menu Format - Page Style - Header/Footer - Edit button (spreadsheets)." -msgstr "" +msgstr "Menu Format - Styl strony - Główka/Stopka - przycisk Edycja (arkusze kalkulacyjne)." #. cExz7 #: 00040500.xhp @@ -10535,7 +10535,7 @@ "par_id3152811\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Layout tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji i kliknij kartę Modyfikuj/Nowy - Układ azjatycki." #. 4ZZLP #: 00040500.xhp @@ -10544,7 +10544,7 @@ "par_id3153524\n" "help.text" msgid "Choose Format - Paragraph - Asian Typography tab (not in HTML)." -msgstr "" +msgstr "Wybierz kartę Format - Akapit - Typografia azjatycka (nie w formacie HTML)." #. FFjcy #: 00040500.xhp @@ -10553,7 +10553,7 @@ "par_id3154366\n" "help.text" msgid "Choose Format - Cells - Asian Typography tab." -msgstr "" +msgstr "Wybierz kartę Format - Komórki - Typografia azjatycka." #. cJhf6 #: 00040500.xhp @@ -10562,7 +10562,7 @@ "par_id3148742\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Typography tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji i kliknij kartę Modyfikuj/Nowy - Typografia azjatycka." #. DGFGA #: 00040500.xhp @@ -10571,7 +10571,7 @@ "par_id3148922\n" "help.text" msgid "Choose Format - Character - Hyperlink tab." -msgstr "" +msgstr "Wybierz kartę Format - Znak - Hiperłącze." #. KScGP #: 00040500.xhp @@ -10580,7 +10580,7 @@ "par_id3149169\n" "help.text" msgid "Choose Format - Paragraph." -msgstr "" +msgstr "Wybierz Format - Akapit." #. zc5tA #: 00040500.xhp @@ -10598,7 +10598,7 @@ "par_id3155995\n" "help.text" msgid "Icon Paragraph" -msgstr "" +msgstr "Ikona akapitu" #. E7XoA #: 00040500.xhp @@ -10616,7 +10616,7 @@ "par_id3147289\n" "help.text" msgid "Choose Format - Paragraph - Alignment tab." -msgstr "" +msgstr "Wybierz kartę Format - Akapit - Wyrównanie." #. 76KRT #: 00040500.xhp @@ -10625,7 +10625,7 @@ "par_id3147352\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Alignment tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Wyrównanie." #. EF6ft #: 00040500.xhp @@ -10634,7 +10634,7 @@ "par_id3154640\n" "help.text" msgid "Choose Format - Paragraph - Indents & Spacing tab." -msgstr "" +msgstr "Wybierz kartę Format - Akapit - Wcięcia i odstępy." #. XSjyi #: 00040500.xhp @@ -10643,7 +10643,7 @@ "par_id3152463\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Indents & Spacing tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Wcięcia i odstępy." #. iqEQr #: 00040500.xhp @@ -10652,7 +10652,7 @@ "par_id3154319\n" "help.text" msgid "Choose Format - Paragraph - Tabs tab." -msgstr "" +msgstr "Wybierz zakładkę Format - Akapit - Tabulatory." #. cnwp8 #: 00040500.xhp @@ -10661,7 +10661,7 @@ "par_id3154833\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Tabs tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Karty." #. iG9GL #: 00040500.xhp @@ -10688,7 +10688,7 @@ "par_id3156105\n" "help.text" msgid "Choose Format - Paragraph - Borders tab." -msgstr "" +msgstr "Wybierz kartę Format - Akapit - Krawędzie." #. dzAEa #: 00040500.xhp @@ -10697,7 +10697,7 @@ "par_id3154149\n" "help.text" msgid "Choose Format - Image - Properties - Borders tab." -msgstr "" +msgstr "Wybierz kartę Format - Obraz - Właściwości - Krawędzie." #. GmjH4 #: 00040500.xhp @@ -10706,7 +10706,7 @@ "par_id3163822\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Borders tab." -msgstr "" +msgstr "Wybierz kartę Format - Ramka i obiekt - Właściwości - Krawędzie." #. 8mDJv #: 00040500.xhp @@ -10715,7 +10715,7 @@ "par_id3150048\n" "help.text" msgid "Choose Format - Page - Borders tab." -msgstr "" +msgstr "Wybierz kartę Format - Strona - Krawędzie." #. qfy7M #: 00040500.xhp @@ -10724,7 +10724,7 @@ "par_id3151148\n" "help.text" msgid "Choose Format - Character - Borders tab." -msgstr "" +msgstr "Wybierz kartę Format - Znak - Krawędzie." #. 2JCBU #: 00040500.xhp @@ -10733,7 +10733,7 @@ "par_id3149911\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Borders tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Krawędzie." #. cBspq #: 00040500.xhp @@ -10742,7 +10742,7 @@ "par_id3150094\n" "help.text" msgid "Choose Format - Page - Header - More button." -msgstr "" +msgstr "Wybierz przycisk Format - Strona - Główka - Więcej." #. C2DAK #: 00040500.xhp @@ -10751,7 +10751,7 @@ "par_id3154501\n" "help.text" msgid "Choose Format - Page - Footer - More button." -msgstr "" +msgstr "Wybierz przycisk Format - Strona - Stopka - Więcej." #. Xd5bJ #: 00040500.xhp @@ -10760,7 +10760,7 @@ "par_id3148455\n" "help.text" msgid "Choose Format - Cells - Borders tab." -msgstr "" +msgstr "Wybierz kartę Format - Komórki - Krawędzie." #. 93Zxq #: 00040500.xhp @@ -10769,7 +10769,7 @@ "par_id3155915\n" "help.text" msgid "Menu Format - Paragraph - Border tab - Padding." -msgstr "" +msgstr "Menu Format - Akapit - karta Krawędzie - Wypełnianie." #. oErGE #: 00040500.xhp @@ -10778,7 +10778,7 @@ "par_id3159130\n" "help.text" msgid "Menu Format - Page Style - Border - Padding." -msgstr "" +msgstr "Menu Format - Styl strony - Krawędzie - Wypełnianie." #. PGrMv #: 00040500.xhp @@ -10787,7 +10787,7 @@ "par_id3155853\n" "help.text" msgid "Choose Format - Paragraph - Background tab." -msgstr "" +msgstr "Wybierz kartę Format - Akapit - Tło." #. kfo3L #: 00040500.xhp @@ -10796,7 +10796,7 @@ "par_id3147330\n" "help.text" msgid "Choose Format - Character - Highlighting tab." -msgstr "" +msgstr "Wybierz kartę Format - Znak - Wyróżnianie." #. nd9vD #: 00040500.xhp @@ -10805,7 +10805,7 @@ "par_id3149486\n" "help.text" msgid "Choose Format - Image - Background tab." -msgstr "" +msgstr "Wybierz kartę Format - Obraz - Tło." #. FBBCB #: 00040500.xhp @@ -10814,7 +10814,7 @@ "par_id3150592\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Area tab." -msgstr "" +msgstr "Wybierz Format - Ramka i obiekt - Właściwości - Obszar." #. WnzDC #: 00040500.xhp @@ -10823,7 +10823,7 @@ "par_id3151321\n" "help.text" msgid "Choose Format - Page Style - Background tab." -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Tło." #. XSpZK #: 00040500.xhp @@ -10832,7 +10832,7 @@ "par_id3154510\n" "help.text" msgid "Choose Format - Page Style - Header - More button." -msgstr "" +msgstr "Wybierz przycisk Format - Styl strony - Główka - Więcej." #. BRTp2 #: 00040500.xhp @@ -10841,7 +10841,7 @@ "par_id3159110\n" "help.text" msgid "Choose Format - Page Style - Footer - More button." -msgstr "" +msgstr "Wybierz przycisk Format - Styl strony - Stopka - Więcej." #. RKBDo #: 00040500.xhp @@ -10850,7 +10850,7 @@ "par_id3153532\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Background tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Tło." #. nLzZW #: 00040500.xhp @@ -10868,7 +10868,7 @@ "par_id3146900\n" "help.text" msgid "Choose Format - Cells - Background tab." -msgstr "" +msgstr "Wybierz kartę Format - Komórki - Tło." #. DjVCQ #: 00040500.xhp @@ -10877,7 +10877,7 @@ "par_id3146791\n" "help.text" msgid "Choose Format - Page Style - Organizer tab." -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Organizator." #. 5BJtP #: 00040500.xhp @@ -10886,7 +10886,7 @@ "par_id7146791\n" "help.text" msgid "Choose Styles - Edit Style - Organizer tab." -msgstr "" +msgstr "Wybierz kartę Style - Edycja stylu - Organizator." #. 8xdE8 #: 00040500.xhp @@ -10895,7 +10895,7 @@ "par_id631579002848692\n" "help.text" msgid "Choose Styles - Manage Styles - open context menu of an entry and choose Modify/New - Organizer tab." -msgstr "" +msgstr "Wybierz Style - Zarządzaj stylami - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Organizator." #. oZUMH #: 00040500.xhp @@ -10904,7 +10904,7 @@ "par_id3146788\n" "help.text" msgid "Choose Format - Page Style - Organizer tab." -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Organizator." #. Y2ck5 #: 00040500.xhp @@ -10913,7 +10913,7 @@ "par_id961579003607432\n" "help.text" msgid "Choose Styles - Manage Styles - open context menu of an entry and choose Modify/New - Organizer tab." -msgstr "" +msgstr "Wybierz Style - Zarządzaj stylami - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Organizator." #. 5tDj9 #: 00040500.xhp @@ -10922,7 +10922,7 @@ "par_id3123788\n" "help.text" msgid "Choose Format - Styles - Edit Style - Organizer tab." -msgstr "" +msgstr "Wybierz kartę Format - Style - Edycja stylu - Organizator." #. HE8gX #: 00040500.xhp @@ -10931,7 +10931,7 @@ "par_id111579003773016\n" "help.text" msgid "Choose Format - Styles - Manage Styles - open context menu of an entry and choose Modify/New - Organizer tab." -msgstr "" +msgstr "Wybierz Format - Style - Zarządzaj stylami - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Organizator." #. rSUuK #: 00040500.xhp @@ -10940,7 +10940,7 @@ "par_id3149388\n" "help.text" msgid "Choose Slide - Properties - Page tab." -msgstr "" +msgstr "Wybierz kartę Slajd - Właściwości - Strona." #. nMbj6 #: 00040500.xhp @@ -10949,7 +10949,7 @@ "par_id3154482\n" "help.text" msgid "Choose View - Styles (Command+T)(F11) - open context menu of an entry and choose Modify/New - Organizer tab." -msgstr "" +msgstr "Wybierz Widok - Style (Command+T)(F11) - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Organizator." #. eEUQg #: 00040500.xhp @@ -10958,7 +10958,7 @@ "par_id3149323\n" "help.text" msgid "Choose Slide - Properties - Slide tab" -msgstr "" +msgstr "Wybierz kartę Slajd - Właściwości - Slajd" #. 8xjGD #: 00040500.xhp @@ -10967,7 +10967,7 @@ "par_id3154972\n" "help.text" msgid "Choose Page - Properties - Page tab." -msgstr "" +msgstr "Wybierz kartę Strona - Właściwości - Strona." #. FSBTR #: 00040500.xhp @@ -10976,7 +10976,7 @@ "par_id731601602622257\n" "help.text" msgid "Choose Format - Page Style - Page tab." -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Strona." #. gMqXo #: 00040500.xhp @@ -10985,7 +10985,7 @@ "par_id3154362\n" "help.text" msgid "Choose View - Styles (Command+T)(F11) - open context menu of a page style entry and choose Modify/New - Page tab." -msgstr "" +msgstr "Wybierz Widok - Style (Command+T)(F11) - otwórz menu kontekstowe pozycji stylu strony i wybierz kartę Modyfikuj/Nowy - Strona." #. cgX2W #: 00040500.xhp @@ -10994,7 +10994,7 @@ "par_id3153357\n" "help.text" msgid "Choose Format - Page Style - Page tab." -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Strona." #. GF8Ps #: 00040500.xhp @@ -11003,7 +11003,7 @@ "par_id31543624680\n" "help.text" msgid "Choose View - Styles (Command+T)(F11) - open context menu of a page style entry and choose Modify/New - Page tab." -msgstr "" +msgstr "Wybierz Widok - Style (Command+T)(F11) - otwórz menu kontekstowe pozycji stylu strony i wybierz kartę Modyfikuj/Nowy - Strona." #. iCz7o #: 00040500.xhp @@ -11012,7 +11012,7 @@ "par_id3133357\n" "help.text" msgid "Choose Format - Page Style - Page tab (Writer)." -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Strona (Writer)." #. 6KGHN #: 00040500.xhp @@ -11021,7 +11021,7 @@ "par_id3155515\n" "help.text" msgid "Choose Format - Page Style - Header tab." -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Główka." #. jZj9w #: 00040500.xhp @@ -11030,7 +11030,7 @@ "par_id3148405\n" "help.text" msgid "Choose View - Styles - open context menu of a page style entry and choose Modify/New - Header tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji stylu strony i wybierz kartę Modyfikuj/Nowy - Główka." #. nJY9z #: 00040500.xhp @@ -11039,7 +11039,7 @@ "par_id3145618\n" "help.text" msgid "Choose Format - Page Style - Footer tab." -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Stopka." #. 5gs5x #: 00040500.xhp @@ -11048,7 +11048,7 @@ "par_id3155175\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Footer tab." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe pozycji i wybierz kartę Modyfikuj/Nowy - Stopka." #. 6pGoA #: 00040500.xhp @@ -11057,7 +11057,7 @@ "par_id3166447\n" "help.text" msgid "Command+TF11" -msgstr "" +msgstr "Command+TF11" #. fqW8D #: 00040500.xhp @@ -11066,7 +11066,7 @@ "par_id3147404\n" "help.text" msgid "Choose View - Styles." -msgstr "" +msgstr "Wybierz Widok - Style." #. j6BRB #: 00040500.xhp @@ -11075,7 +11075,7 @@ "par_id2847164\n" "help.text" msgid "Choose Format - Styles - Manage Styles." -msgstr "" +msgstr "Wybierz Format - Style - Zarządzaj stylami." #. AKrzh #: 00040500.xhp @@ -11084,7 +11084,7 @@ "par_id3147164\n" "help.text" msgid "Choose Format - Styles - Manage Styles." -msgstr "" +msgstr "Wybierz Format - Style - Zarządzaj stylami." #. 3RGHA #: 00040500.xhp @@ -11093,7 +11093,7 @@ "par_id3192854\n" "help.text" msgid "Choose Styles - Manage Styles." -msgstr "" +msgstr "Wybierz Style - Zarządzaj stylami." #. LUBTb #: 00040500.xhp @@ -11102,7 +11102,7 @@ "par_id3147854\n" "help.text" msgid "Choose Styles - Manage Styles." -msgstr "" +msgstr "Wybierz Style - Zarządzaj stylami." #. VR98p #: 00040500.xhp @@ -11111,7 +11111,7 @@ "par_id3147321\n" "help.text" msgid "On Formatting bar, click" -msgstr "" +msgstr "Na pasku Formatowanie kliknij" #. xHqEM #: 00040500.xhp @@ -11120,7 +11120,7 @@ "par_id3148533\n" "help.text" msgid "Icon Styles" -msgstr "" +msgstr "Ikona stylów" #. GGmAC #: 00040500.xhp @@ -11138,7 +11138,7 @@ "par_id3159313\n" "help.text" msgid "On the Drawing bar, click" -msgstr "" +msgstr "Na pasku Rysunek kliknij" #. GtJbA #: 00040500.xhp @@ -11147,7 +11147,7 @@ "par_id3109845\n" "help.text" msgid "Icon 3d window" -msgstr "" +msgstr "Ikona efektów 3D" #. hT4Qu #: 00040500.xhp @@ -11156,7 +11156,7 @@ "par_id3152498\n" "help.text" msgid "3D Effects" -msgstr "" +msgstr "Efekty 3D" #. zmQYJ #: 00040500.xhp @@ -11165,7 +11165,7 @@ "par_id3145256\n" "help.text" msgid "Open the context menu of the 3D object, choose 3D Effects - Geometry tab." -msgstr "" +msgstr "Otwórz menu kontekstowe obiektu 3D, wybierz kartę Efekty 3D - Geometria." #. zpRAA #: 00040500.xhp @@ -11174,7 +11174,7 @@ "par_id3154203\n" "help.text" msgid "Open the context menu of the 3D object, choose 3D Effects - Shading tab." -msgstr "" +msgstr "Otwórz menu kontekstowe obiektu 3D, wybierz kartę Efekty 3D - Cieniowanie." #. E8Vha #: 00040500.xhp @@ -11183,7 +11183,7 @@ "par_id3151284\n" "help.text" msgid "Open the context menu of the 3D object, choose 3D Effects - Illumination tab." -msgstr "" +msgstr "Otwórz menu kontekstowe obiektu 3D, wybierz kartę Efekty 3D - Oświetlenie." #. tNrii #: 00040500.xhp @@ -11192,7 +11192,7 @@ "par_id3152475\n" "help.text" msgid "Open the context menu of the 3D object, choose 3D Effects - Textures tab." -msgstr "" +msgstr "Otwórz menu kontekstowe obiektu 3D, wybierz kartę Efekty 3D - Tekstury." #. Jk9Eh #: 00040500.xhp @@ -11201,7 +11201,7 @@ "par_id3154572\n" "help.text" msgid "Open the context menu of the 3D object, choose 3D Effects - Material tab." -msgstr "" +msgstr "Otwórz menu kontekstowe obiektu 3D, wybierz kartę Efekty 3D - Materiał." #. 2GPzi #: 00040500.xhp @@ -11210,7 +11210,7 @@ "par_id3145220\n" "help.text" msgid "Choose Format - Bullets and Numbering." -msgstr "" +msgstr "Wybierz Format - Wypunktowanie i numeracja." #. GmdFv #: 00040500.xhp @@ -11219,7 +11219,7 @@ "par_id761616160771224\n" "help.text" msgid "Right-click a paragraph, choose List - Bullets and Numbering." -msgstr "" +msgstr "Kliknij akapit prawym przyciskiem myszy i wybierz Lista - Wypunktowanie i numeracja." #. N8NwQ #: 00040500.xhp @@ -11228,7 +11228,7 @@ "par_id3148771\n" "help.text" msgid "On Formatting bar, click" -msgstr "" +msgstr "Na pasku Formatowanie kliknij" #. sQFWD #: 00040500.xhp @@ -11237,7 +11237,7 @@ "par_id3149445\n" "help.text" msgid "Bullets and Numbering dialog Icon" -msgstr "" +msgstr "Ikona okna dialogowego Wypunktowanie i numeracja" #. BPPZD #: 00040500.xhp @@ -11246,7 +11246,7 @@ "par_id3157970\n" "help.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Wypunktowanie i numeracja" #. XAbBj #: 00040500.xhp @@ -11255,7 +11255,7 @@ "par_id3149735\n" "help.text" msgid "Choose Format - Bullets and Numbering. Open Customize tab page." -msgstr "" +msgstr "Wybierz Format - Wypunktowanie i numeracja. Otwórz kartę Dostosuj." #. y4rGF #: 00040500.xhp @@ -11264,7 +11264,7 @@ "par_id3150785\n" "help.text" msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." -msgstr "" +msgstr "Otwórz Style - Style prezentacji - menu kontekstowe Stylu konspektu - wybierz Nowy/Modyfikuj." #. pC5yB #: 00040500.xhp @@ -11273,7 +11273,7 @@ "par_id3148420\n" "help.text" msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." -msgstr "" +msgstr "Otwórz Style - Style listy - menu kontekstowe pozycji - wybierz Nowy/Modyfikuj." #. Mx4EM #: 00040500.xhp @@ -11282,7 +11282,7 @@ "par_id3148888\n" "help.text" msgid "Choose Format - Bullets and Numbering - Bullets tab." -msgstr "" +msgstr "Wybierz kartę Format - Wypunktowanie i numeracja - Znaki wypunktowania." #. bYrZa #: 00040500.xhp @@ -11291,7 +11291,7 @@ "par_id3149917\n" "help.text" msgid "Open Styles - Presentation Styles - context menu of an Outline Style - choose New/Modify." -msgstr "" +msgstr "Otwórz Style - Style prezentacji - menu kontekstowe Stylu konspektu - wybierz Nowy/Modyfikuj." #. ZPMxH #: 00040500.xhp @@ -11300,7 +11300,7 @@ "par_id3154930\n" "help.text" msgid "Open Styles - List Styles - context menu of an entry - choose New/Modify." -msgstr "" +msgstr "Otwórz Style - Style listy - menu kontekstowe pozycji - wybierz Nowy/Modyfikuj." #. n79tw #: 00040500.xhp @@ -11309,7 +11309,7 @@ "par_id3156011\n" "help.text" msgid "Choose View - Styles (Command+TF11) - context menu of a Presentation Style (except Background) - choose New/Modify - Numbering tab." -msgstr "" +msgstr "Wybierz Widok - Style (Command+TF11) - menu kontekstowe stylu prezentacji (z wyjątkiem tła) - wybierz kartę Nowy/Modyfikuj - Numeracja." #. tbLJG #: 00040500.xhp @@ -11318,7 +11318,7 @@ "par_id3150862\n" "help.text" msgid "Choose Format - Bullets and Numbering - Ordered tab." -msgstr "" +msgstr "Wybierz kartę Format - Wypunktowanie i numeracja - Uporządkowane." #. Rak4H #: 00040500.xhp @@ -11327,7 +11327,7 @@ "par_id3129011\n" "help.text" msgid "Choose View - Styles (Command+TF11) - context menu of a List Style - choose New/Modify - Ordered tab." -msgstr "" +msgstr "Wybierz Widok - Style (Command+TF11) - menu kontekstowe stylu listy - wybierz kartę Nowy/Modyfikuj - Uporządkowane." #. 2XAFx #: 00040500.xhp @@ -11336,7 +11336,7 @@ "par_id3146019\n" "help.text" msgid "Choose Styles - Manage Styles - context menu of a List Style - choose New/Modify - Ordered tab." -msgstr "" +msgstr "Wybierz Style - Zarządzaj stylami - menu kontekstowe stylu listy - wybierz kartę Nowy/Modyfikuj - Uporządkowane." #. 4AKhs #: 00040500.xhp @@ -11345,7 +11345,7 @@ "par_id0611200904324832\n" "help.text" msgid "Choose Format - Bullets and Numbering - Image tab." -msgstr "" +msgstr "Wybierz kartę Format - Wypunktowanie i numeracja - Obraz." #. CwE3e #: 00040500.xhp @@ -11354,7 +11354,7 @@ "par_id3155848\n" "help.text" msgid "Choose Format - Bullets and Numbering - Outline tab." -msgstr "" +msgstr "Wybierz kartę Format - Wypunktowanie i numeracja - Konspekt." #. 8cr6F #: 00040500.xhp @@ -11363,7 +11363,7 @@ "par_id3148733\n" "help.text" msgid "Choose Styles - Manage Styles (Command+TF11) - context menu of a List Style entry - choose New/Modify." -msgstr "" +msgstr "Wybierz Style - Zarządzaj stylami (Command+ TF11) - menu kontekstowe pozycji stylu listy - wybierz Nowy/Modyfikuj." #. gfMdA #: 00040500.xhp @@ -11372,7 +11372,7 @@ "par_id3156658\n" "help.text" msgid "Choose Format - Bullets and Numbering - Position tab." -msgstr "" +msgstr "Wybierz Format - Wypunktowanie i numeracja - karta Pozycja." #. DVZRw #: 00040500.xhp @@ -11381,7 +11381,7 @@ "par_id3153812\n" "help.text" msgid "Choose View - Styles (Command+TF11) - choose List Styles - context menu of an entry - choose New/Modify - Position tab." -msgstr "" +msgstr "Wybierz Widok - Style (Command+TF11) - wybierz Style listy, otwórz menu kontekstowe wybranej pozycji i wybierz kartę Nowy/Modyfikuj - Pozycja." #. t8uTF #: 00040500.xhp @@ -11390,7 +11390,7 @@ "par_id3153899\n" "help.text" msgid "Choose Styles - Manage Styles - choose List Styles - context menu of an entry - choose New/Modify - Position tab." -msgstr "" +msgstr "Wybierz Style - Zarządzaj stylami - wybierz Style listy, otwórz menu kontekstowe wybranej pozycji i wybierz kartę Nowy/Modyfikuj - Pozycja." #. DEQfE #: 00040500.xhp @@ -11399,7 +11399,7 @@ "par_id3156170\n" "help.text" msgid "Choose Tools - Chapter Numbering - Position tab." -msgstr "" +msgstr "Wybierz kartę Narzędzia - Numeracja rozdziałów - Pozycja." #. 8AtZC #: 00040500.xhp @@ -11408,7 +11408,7 @@ "par_id3151332\n" "help.text" msgid "Menu Format - Image - Properties - Crop tab." -msgstr "" +msgstr "Wybierz kartę Format - Obraz - Właściwości - Przytnij." #. eREMF #: 00040500.xhp @@ -11417,7 +11417,7 @@ "par_id3153317\n" "help.text" msgid "Icon on the Image toolbar:" -msgstr "" +msgstr "Ikona na pasku narzędzi Obraz:" #. YKAFD #: 00040500.xhp @@ -11426,7 +11426,7 @@ "par_id3149953\n" "help.text" msgid "Icon Crop" -msgstr "" +msgstr "Ikona kadrowania" #. Qs4bZ #: 00040500.xhp @@ -11444,7 +11444,7 @@ "par_id3151254\n" "help.text" msgid "Choose Format - Text." -msgstr "" +msgstr "Wybierz Format - Tekst." #. CHNi9 #: 00040500.xhp @@ -11453,7 +11453,7 @@ "par_id3151255\n" "help.text" msgid "Choose Format - Spacing." -msgstr "" +msgstr "Wybierz Format - Odstępy." #. suPn7 #: 00040500.xhp @@ -11462,7 +11462,7 @@ "par_id3153579\n" "help.text" msgid "Menu Format - Asian phonetic guide." -msgstr "" +msgstr "Menu Format - Przewodnik fonetyczny dla języków azjatyczkich." #. FcynE #: 00040501.xhp @@ -11516,7 +11516,7 @@ "par_id3156553\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form." -msgstr "" +msgstr "Otwórz pasek narzędzi Formanty formularza, kliknij ikonę Pole kombi lub Pole listy i przeciągnij myszą, aby wygenerować pole. Połączenie z bazą danych musi istnieć w formularzu." #. ktLsQ #: 00040501.xhp @@ -11525,7 +11525,7 @@ "par_id3148825\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1." -msgstr "" +msgstr "Otwórz pasek narzędzi Formanty formularza, kliknij ikonę Pole kombi lub Pole listy i przeciągnij myszką, aby wygenerować pole. Połączenie z bazą danych musi istnieć w postaci: Kreator - Strona 1." #. Wf4dW #: 00040501.xhp @@ -11534,7 +11534,7 @@ "par_id3155434\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2." -msgstr "" +msgstr "Otwórz pasek narzędzi Formanty formularza, kliknij ikonę Pole kombi lub Pole listy i przeciągnij myszą, aby wygenerować pole. Połączenie z bazą danych musi istnieć w postaci: Kreator - Strona 2." #. ZVxGp #: 00040501.xhp @@ -11543,7 +11543,7 @@ "par_id3151378\n" "help.text" msgid "Open Form Controls toolbar, click List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." -msgstr "" +msgstr "Otwórz pasek narzędzi Formanty formularza, kliknij ikonę Pole listy i przeciągnij myszą, aby wygenerować pole. Połączenie z bazą danych musi istnieć w postaci: Kreator - Strona 3." #. LPa9C #: 00040501.xhp @@ -11552,7 +11552,7 @@ "par_id3151246\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." -msgstr "" +msgstr "Otwórz pasek narzędzi Formanty formularza, kliknij ikonę Pole listy i przeciągnij myszą, aby wygenerować pole. Połączenie z bazą danych musi istnieć w postaci: Kreator - Strona 3." #. PBeVy #: 00040501.xhp @@ -11570,7 +11570,7 @@ "par_id3151054\n" "help.text" msgid "Icon Properties" -msgstr "" +msgstr "Ikona właściwości" #. 89DTS #: 00040501.xhp @@ -11588,7 +11588,7 @@ "par_id3149292\n" "help.text" msgid "Open context menu of a selected form element - choose Form Properties." -msgstr "" +msgstr "Otwórz menu kontekstowe wybranej pozycji formularza - wybierz Właściwości formularza." #. CMsFE #: 00040501.xhp @@ -11597,7 +11597,7 @@ "par_id3152933\n" "help.text" msgid "Icon Form" -msgstr "" +msgstr "Ikona formularza" #. F5LMe #: 00040501.xhp @@ -11615,7 +11615,7 @@ "par_id3150447\n" "help.text" msgid "Open context menu of a selected form element - choose Form Properties - General tab." -msgstr "" +msgstr "Otwórz menu kontekstowe wybranej pozycju formularza - wybierz kartę Właściwości formularza - Ogólne." #. CPHGz #: 00040501.xhp @@ -11624,7 +11624,7 @@ "par_id3144448\n" "help.text" msgid "Open Form Design toolbar, click Form Properties icon - General tab." -msgstr "" +msgstr "Otwórz pasek narzędzi Projekt formularza, kliknij ikonę Właściwości formularza - karta Ogólne." #. pKDYX #: 00040501.xhp @@ -11633,7 +11633,7 @@ "par_id3145786\n" "help.text" msgid "Open context menu of a selected form element - choose Form Properties - Data tab." -msgstr "" +msgstr "Otwórz menu kontekstowe wybranej pozycji formularza - wybierz kartę Właściwości formularza - Dane." #. BbiDH #: 00040501.xhp @@ -11642,7 +11642,7 @@ "par_id3158156\n" "help.text" msgid "Open Form Design toolbar, click Form Properties icon - Data tab." -msgstr "" +msgstr "Otwórz pasek narzędzi Projekt formularza, kliknij ikonę Właściwości formularza - karta Dane." #. gyPpR #: 00040501.xhp @@ -11651,7 +11651,7 @@ "par_id1979125\n" "help.text" msgid "Open context menu of a selected control on an XML Form document, choose Control Properties - Data tab." -msgstr "" +msgstr "Otwórz menu kontekstowe wybranego formantu dokumentu Formularz XML, wybierz kartę Właściwości formantu - Dane." #. DtgW8 #: 00040501.xhp @@ -11660,7 +11660,7 @@ "par_id1769463\n" "help.text" msgid "Open Form Controls toolbar of an XML Form document, click Control icon - Data tab." -msgstr "" +msgstr "Otwórz pasek narzędzi Formanty formularza dokumentu Formularz XML, kliknij ikonę Formant - karta Dane." #. jGM6T #: 00040501.xhp @@ -11669,7 +11669,7 @@ "par_id3145364\n" "help.text" msgid "Open context menu of a selected form element - choose Form Properties - Events tab." -msgstr "" +msgstr "Otwórz menu kontekstowe wybranego elementu formularza - wybierz kartę Właściwości formularza - Zdarzenia." #. ErFpd #: 00040501.xhp @@ -11678,7 +11678,7 @@ "par_id3153575\n" "help.text" msgid "Open Form Design toolbar, click Form Properties icon - Events tab." -msgstr "" +msgstr "Otwórz pasek narzędzi Projekt formularza, kliknij ikonę Właściwości formularza - karta Zdarzenia." #. w9Zuc #: 00040501.xhp @@ -11687,7 +11687,7 @@ "par_id3147234\n" "help.text" msgid "Open context menu of a selected form element - choose Control Properties." -msgstr "" +msgstr "Otwórz menu kontekstowe wybranej pozycju formularza - wybierz Właściwości formantu." #. z6tko #: 00040501.xhp @@ -11696,7 +11696,7 @@ "par_id3153953\n" "help.text" msgid "Icon Control" -msgstr "" +msgstr "Ikona formantu" #. ADmRP #: 00040501.xhp @@ -11714,7 +11714,7 @@ "par_id3153943\n" "help.text" msgid "Open context menu of a selected form element - choose Control Properties - General tab." -msgstr "" +msgstr "Otwórz menu kontekstowe wybranej pozycji formularza - wybierz kartę Właściwości formantu - Ogólne" #. XDaSr #: 00040501.xhp @@ -11723,7 +11723,7 @@ "par_id3159198\n" "help.text" msgid "Open Form Design toolbar, click Control icon - General tab." -msgstr "" +msgstr "Otwórz pasek narzędzi Projekt formularza, kliknij ikonę Formant - karta Ogólne." #. MAnJk #: 00040501.xhp @@ -11732,7 +11732,7 @@ "par_id3153203\n" "help.text" msgid "Open context menu of a selected form element - choose Control Properties - Data tab." -msgstr "" +msgstr "Otwórz menu kontekstowe wybranej pozycji formularza - wybierz kartę Właściwości formantu - Dane." #. LW7yw #: 00040501.xhp @@ -11741,7 +11741,7 @@ "par_id3150048\n" "help.text" msgid "Open Form Design toolbar, click Control icon - Data tab." -msgstr "" +msgstr "Otwórz pasek narzędzi Projekt formularza, kliknij ikonę Formant - karta Dane." #. U7r5z #: 00040501.xhp @@ -11750,7 +11750,7 @@ "par_id3153334\n" "help.text" msgid "Open context menu of a selected form element - choose Control Properties - Events tab." -msgstr "" +msgstr "Otwórz menu kontekstowe wybranej pozycji formularza - wybierz kartę Właściwości formantu - Zdarzenia." #. GweHD #: 00040501.xhp @@ -11759,7 +11759,7 @@ "par_id3153744\n" "help.text" msgid "Open Form Design toolbar, click Control Properties icon - Events tab." -msgstr "" +msgstr "Otwórz pasek narzędzi Projekt formularza, kliknij ikonę Właściwości formantu - karta Zdarzenia." #. 9LBJs #: 00040501.xhp @@ -11768,7 +11768,7 @@ "par_id6058839\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "Na pasku Projekt formularza kliknij" #. EJCyJ #: 00040501.xhp @@ -11777,7 +11777,7 @@ "par_id3157874\n" "help.text" msgid "Icon Activation Order" -msgstr "" +msgstr "Ikona kolejności aktywacji" #. BmMW5 #: 00040501.xhp @@ -11795,7 +11795,7 @@ "par_id2709433\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "Na pasku Projekt formularza kliknij" #. pNmAg #: 00040501.xhp @@ -11804,7 +11804,7 @@ "par_id3156439\n" "help.text" msgid "Icon Add Field" -msgstr "" +msgstr "Ikona dodania pola" #. iQFBK #: 00040501.xhp @@ -11822,7 +11822,7 @@ "par_id9929502\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "Na pasku Projekt formularza kliknij" #. hgCuD #: 00040501.xhp @@ -11831,7 +11831,7 @@ "par_id3150749\n" "help.text" msgid "Icon Form Navigator" -msgstr "" +msgstr "Ikona nawigatora formularza" #. QEjGP #: 00040501.xhp @@ -11849,7 +11849,7 @@ "par_id4886928\n" "help.text" msgid "On Form Controls toolbar or Form Design bar, click" -msgstr "" +msgstr "Na pasku narzędzi Formanty formularza lub pasku Projekt formularza kliknij" #. YgQWC #: 00040501.xhp @@ -11858,7 +11858,7 @@ "par_id3156056\n" "help.text" msgid "Icon Design Mode" -msgstr "" +msgstr "Ikona trybu projektu" #. AATfh #: 00040501.xhp @@ -11867,7 +11867,7 @@ "par_id3153767\n" "help.text" msgid "Design Mode On/Off" -msgstr "" +msgstr "Włącz/wyłącz tryb projektu" #. 3YRwF #: 00040501.xhp @@ -11876,7 +11876,7 @@ "par_id3148828\n" "help.text" msgid "Open Form Navigator - select form - open context menu - choose Open in Design Mode." -msgstr "" +msgstr "Otwórz Nawigator formularza - wybierz formularz – otwórz menu kontekstowe – wybierz Otwórz w trybie projektu." #. mRTG5 #: 00040501.xhp @@ -11885,7 +11885,7 @@ "par_id8177434\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "Na pasku Projekt formularza kliknij" #. iGE3k #: 00040501.xhp @@ -11894,7 +11894,7 @@ "par_id3149822\n" "help.text" msgid "Icon Open in Design Mode" -msgstr "" +msgstr "Ikona otwierania w trybie projektu" #. UqdMN #: 00040501.xhp @@ -11912,7 +11912,7 @@ "par_id3147533\n" "help.text" msgid "On Form Control toolbar, click" -msgstr "" +msgstr "Na pasku narzędzi Formant formularza kliknij" #. msyNv #: 00040501.xhp @@ -11921,7 +11921,7 @@ "par_id3152948\n" "help.text" msgid "Icon Wizard" -msgstr "" +msgstr "Ikona kreatora" #. o64U6 #: 00040501.xhp @@ -11939,7 +11939,7 @@ "par_id3147244\n" "help.text" msgid "Choose Format - Arrange ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Rozmieść ($[officename] Writer, $[officename] Calc)." #. BJj2z #: 00040501.xhp @@ -11948,7 +11948,7 @@ "par_id3159334\n" "help.text" msgid "Open context menu - choose Arrange ($[officename] Impress, $[officename] Draw)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Rozmieść ($[officename] Impress, $[officename] Draw)." #. zzpRV #: 00040501.xhp @@ -11957,7 +11957,7 @@ "par_id3154023\n" "help.text" msgid "Choose Shape - Arrange ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Rozmieść ($[officename] Draw)." #. gqcDq #: 00040501.xhp @@ -11966,7 +11966,7 @@ "par_id3155578\n" "help.text" msgid "Icon Arrange" -msgstr "" +msgstr "Ikona rozmieszczenia" #. jwdWP #: 00040501.xhp @@ -11984,7 +11984,7 @@ "par_id3148459\n" "help.text" msgid "Choose Format - Arrange - Bring to Front ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Ułóż - Przesuń na wierzch ($[officename] Writer, $[officename] Calc)." #. DYFCd #: 00040501.xhp @@ -11993,7 +11993,7 @@ "par_id3148425\n" "help.text" msgid "Choose Shape - Arrange - Bring to Front ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Rozmieść - Przesuń na wierzch ($[officename] Draw)." #. WE9Pd #: 00040501.xhp @@ -12002,7 +12002,7 @@ "par_id3153268\n" "help.text" msgid "Shift+CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)." -msgstr "" +msgstr "Shift+CommandCtrl+ znak plusa ($[officename] Impress, $[officename] Draw)." #. D6WN7 #: 00040501.xhp @@ -12011,7 +12011,7 @@ "par_id3154206\n" "help.text" msgid "Open context menu - choose Arrange - Bring to Front ($[officename] Impress)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Rozmieść - Przesuń na wierzch ($[officename] Impress)." #. HPFLD #: 00040501.xhp @@ -12020,7 +12020,7 @@ "par_id3151213\n" "help.text" msgid "Icon Bring to Front" -msgstr "" +msgstr "Ikona przesuwania na wierzch" #. sBuGt #: 00040501.xhp @@ -12038,7 +12038,7 @@ "par_id3147092\n" "help.text" msgid "Choose Format - Arrange - Bring Forward ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Rozmieść - Przesuń do przodu ($[officename] Writer, $[officename] Calc)." #. aMRva #: 00040501.xhp @@ -12047,7 +12047,7 @@ "par_id3148396\n" "help.text" msgid "Choose Shape - Arrange - Bring Forward ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Rozmieść - Przesuń do przodu ($[officename] Draw)." #. 3CxUb #: 00040501.xhp @@ -12065,7 +12065,7 @@ "par_id3154658\n" "help.text" msgid "Open context menu - choose Arrange - Bring Forward ($[officename] Impress)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Rozmieść - Przesuń do przodu ($[officename] Impress)." #. TSeCV #: 00040501.xhp @@ -12074,7 +12074,7 @@ "par_id3159121\n" "help.text" msgid "Icon Bring Forward" -msgstr "" +msgstr "Ikona przesuwania do przodu" #. P9V6A #: 00040501.xhp @@ -12092,7 +12092,7 @@ "par_id3154815\n" "help.text" msgid "Choose Format - Arrange - Send Backward ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Rozmieść - Przesuń do tyłu ($[officename] Writer, $[officename] Calc)." #. yfLSs #: 00040501.xhp @@ -12101,7 +12101,7 @@ "par_id3150428\n" "help.text" msgid "Choose Shape - Arrange - Send Backward ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Rozmieść - Przesuń do tyłu ($[officename] Draw)." #. uc68f #: 00040501.xhp @@ -12119,7 +12119,7 @@ "par_id3159107\n" "help.text" msgid "Open context menu - choose Arrange - Send Backward ($[officename] Impress)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Rozmieść - Przesuń do tyłu ($[officename] Impress)." #. BQhNe #: 00040501.xhp @@ -12128,7 +12128,7 @@ "par_id3152994\n" "help.text" msgid "Icon Send Backward" -msgstr "" +msgstr "Ikona przesuwania do tyłu" #. WKKNG #: 00040501.xhp @@ -12146,7 +12146,7 @@ "par_id3149493\n" "help.text" msgid "Choose Format - Arrange - Send to Back ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Rozmieść - Przesuń na spód ($[officename] Writer, $[officename] Calc)." #. 5pzCr #: 00040501.xhp @@ -12155,7 +12155,7 @@ "par_id3148595\n" "help.text" msgid "Choose Shape - Arrange - Send to Back ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Rozmieść - Przesuń na spód ($[officename] Draw)." #. cG5R9 #: 00040501.xhp @@ -12173,7 +12173,7 @@ "par_id3154486\n" "help.text" msgid "Open context menu - choose Arrange - Send to Back ($[officename] Impress)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Rozmieść - Przesuń na spód ($[officename] Impress)." #. A873M #: 00040501.xhp @@ -12182,7 +12182,7 @@ "par_id3145384\n" "help.text" msgid "Icon Send to Back" -msgstr "" +msgstr "Ikona przesuwania na spód" #. mH2tS #: 00040501.xhp @@ -12200,7 +12200,7 @@ "par_id3145410\n" "help.text" msgid "Choose Format - Arrange - To Foreground." -msgstr "" +msgstr "Wybierz Format - Rozmieść - Na pierwszym planie." #. G2AjB #: 00040501.xhp @@ -12209,7 +12209,7 @@ "par_id3149408\n" "help.text" msgid "Icon To Foreground" -msgstr "" +msgstr "Ikona na pierwszym planie" #. 4ahEr #: 00040501.xhp @@ -12227,7 +12227,7 @@ "par_id3159626\n" "help.text" msgid "Choose Format - Arrange - To Background." -msgstr "" +msgstr "Wybierz Format - Rozmieść - W tle." #. FQRn8 #: 00040501.xhp @@ -12236,7 +12236,7 @@ "par_id3153815\n" "help.text" msgid "Icon To Background" -msgstr "" +msgstr "Ikona w tle" #. rCVpM #: 00040501.xhp @@ -12254,7 +12254,7 @@ "par_id3146854\n" "help.text" msgid "Choose Format - Align ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Wyrównaj ($[officename] Writer, $[officename] Calc)." #. kcWEi #: 00040501.xhp @@ -12263,7 +12263,7 @@ "par_id3153914\n" "help.text" msgid "Choose Shape - Align (objects selected) ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Wyrównaj (zaznaczone obiekty) ($[officename] Draw)." #. 8n9qi #: 00040501.xhp @@ -12272,7 +12272,7 @@ "par_id3153185\n" "help.text" msgid "Open context menu - choose Align (objects selected) ($[officename] Impress, $[officename] Draw)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Wyrównaj (zaznaczone obiekty) ($[officename] Impress, $[officename] Draw)." #. TpsPU #: 00040501.xhp @@ -12281,7 +12281,7 @@ "par_id3168611\n" "help.text" msgid "Choose Format - Align - Left ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Wyrównaj - Do lewej ($[officename] Writer, $[officename] Calc)." #. hjvGi #: 00040501.xhp @@ -12290,7 +12290,7 @@ "par_id3083450\n" "help.text" msgid "Choose Shape - Align - Left (selected objects) ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Wyrównaj - Do lewej (zaznaczone obiekty) ($[officename] Draw)." #. cahTG #: 00040501.xhp @@ -12299,7 +12299,7 @@ "par_id3150257\n" "help.text" msgid "Open context menu - choose Align - Left (objects selected) ($[officename] Impress, $[officename] Draw)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Wyrównaj - Do lewej (zaznaczone obiekty) ($[officename] Impress, $[officename] Draw)." #. i2YPG #: 00040501.xhp @@ -12308,7 +12308,7 @@ "par_id3146786\n" "help.text" msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" -msgstr "" +msgstr "Na pasku Wyrównaj ($[officename] Impress, $[officename] Draw) kliknij" #. Po4LF #: 00040501.xhp @@ -12317,7 +12317,7 @@ "par_id3153373\n" "help.text" msgid "Icon Left" -msgstr "" +msgstr "Ikona do lewej" #. 3u7D2 #: 00040501.xhp @@ -12335,7 +12335,7 @@ "par_id3150268\n" "help.text" msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Wyrównaj - Do środka ($[officename] Writer, $[officename] Calc)." #. CcnGf #: 00040501.xhp @@ -12344,7 +12344,7 @@ "par_id3157978\n" "help.text" msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Wyrównaj - Do środka (zaznaczone obiekty) ($[officename] Draw)." #. qhghb #: 00040501.xhp @@ -12353,7 +12353,7 @@ "par_id3150139\n" "help.text" msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" -msgstr "" +msgstr "Na pasku Wyrównaj ($[officename] Impress, $[officename] Draw) kliknij" #. mbnDh #: 00040501.xhp @@ -12362,7 +12362,7 @@ "par_id3149519\n" "help.text" msgid "Icon Centered" -msgstr "" +msgstr "Ikona do środka" #. fawoM #: 00040501.xhp @@ -12380,7 +12380,7 @@ "par_id3156546\n" "help.text" msgid "Choose Format - Align - Right." -msgstr "" +msgstr "Wybierz Format - Wyrównaj - Do prawej." #. obAsM #: 00040501.xhp @@ -12389,7 +12389,7 @@ "par_id3145073\n" "help.text" msgid "Choose Shape - Align - Right (objects selected) ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Wyrównaj - Do prawej (zaznaczone obiekty) ($[officename] Draw)." #. WVrzG #: 00040501.xhp @@ -12398,7 +12398,7 @@ "par_id3146953\n" "help.text" msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" -msgstr "" +msgstr "Na pasku Wyrównaj ($[officename] Impress, $[officename] Draw) kliknij" #. EDVzM #: 00040501.xhp @@ -12407,7 +12407,7 @@ "par_id3155436\n" "help.text" msgid "Icon Right" -msgstr "" +msgstr "Ikona do prawej" #. mF7W6 #: 00040501.xhp @@ -12425,7 +12425,7 @@ "par_id3153109\n" "help.text" msgid "Choose Format - Align - Top ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Wyrównaj - Do góry ($[officename] Writer, $[officename] Calc)." #. 4ZwPY #: 00040501.xhp @@ -12434,7 +12434,7 @@ "par_id3150213\n" "help.text" msgid "Choose Shape - Align - Top (objects selected) ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Wyrównaj - Do góry (zaznaczone obiekty) ($[officename] Draw)." #. TKQg7 #: 00040501.xhp @@ -12443,7 +12443,7 @@ "par_id3155093\n" "help.text" msgid "Open context menu - choose Align - Top (objects selected) ($[officename] Impress, $[officename] Draw)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Wyrównaj - Do góry (zaznaczone obiekty) ($[officename] Impress, $[officename] Draw)." #. ptXRN #: 00040501.xhp @@ -12452,7 +12452,7 @@ "par_id3151303\n" "help.text" msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" -msgstr "" +msgstr "Na pasku Wyrównaj ($[officename] Impress, $[officename] Draw) kliknij" #. eYWWR #: 00040501.xhp @@ -12461,7 +12461,7 @@ "par_id3155386\n" "help.text" msgid "Icon Top" -msgstr "" +msgstr "Ikona do góry" #. WFtRg #: 00040501.xhp @@ -12479,7 +12479,7 @@ "par_id3153976\n" "help.text" msgid "Choose Format - Align - Centered ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Wyrównaj - Do środka ($[officename] Writer, $[officename] Calc)." #. ZYyu9 #: 00040501.xhp @@ -12488,7 +12488,7 @@ "par_id3153246\n" "help.text" msgid "Choose Shape - Align - Centered (objects selected) ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Wyrównaj - Do środka (zaznaczone obiekty) ($[officename] Draw)." #. gFmHK #: 00040501.xhp @@ -12497,7 +12497,7 @@ "par_id3154614\n" "help.text" msgid "Open context menu - choose Align - Centered (objects selected) ($[officename] Impress, $[officename] Draw)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Wyrównaj - Do środka (zaznaczone obiekty) ($[officename] Impress, $[officename] Draw)." #. 7FTrD #: 00040501.xhp @@ -12506,7 +12506,7 @@ "par_id3149196\n" "help.text" msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" -msgstr "" +msgstr "Na pasku Wyrównaj ($[officename] Impress, $[officename] Draw) kliknij" #. RgieQ #: 00040501.xhp @@ -12515,7 +12515,7 @@ "par_id3145755\n" "help.text" msgid "Icon Centered" -msgstr "" +msgstr "Ikona do środka" #. NYgDY #: 00040501.xhp @@ -12533,7 +12533,7 @@ "par_id3149896\n" "help.text" msgid "Choose Format - Align - Bottom ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Wybierz Format - Wyrównaj - Do dołu ($[officename] Writer, $[officename] Calc)." #. HAKcr #: 00040501.xhp @@ -12542,7 +12542,7 @@ "par_id3156049\n" "help.text" msgid "Choose Shape - Align - Bottom (objects selected) ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Wyrównaj - Do dołu (zaznaczone obiekty) ($[officename] Draw)." #. QWWtV #: 00040501.xhp @@ -12551,7 +12551,7 @@ "par_id3152545\n" "help.text" msgid "On Align bar ($[officename] Impress, $[officename] Draw), click" -msgstr "" +msgstr "Na pasku Wyrównaj ($[officename] Impress, $[officename] Draw) kliknij" #. DcDSM #: 00040501.xhp @@ -12560,7 +12560,7 @@ "par_id3154057\n" "help.text" msgid "Icon Bottom" -msgstr "" +msgstr "Ikona do dołu" #. rkNkG #: 00040501.xhp @@ -12578,7 +12578,7 @@ "par_id3145197\n" "help.text" msgid "For a selected object, choose Format - Anchor." -msgstr "" +msgstr "Dla zaznaczonego obiektu wybierz Format - Zakotwiczenie." #. pGQXt #: 00040501.xhp @@ -12587,7 +12587,7 @@ "par_id671653364659217\n" "help.text" msgid "Right-click on a selected object - choose Anchor." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy zaznaczony obiekt i wybierz Zakotwiczenie." #. nazhG #: 00040501.xhp @@ -12596,7 +12596,7 @@ "par_id2851649\n" "help.text" msgid "On Drawing Object Properties bar, Image bar, Frame bar, OLE Objects bar or Form Design bar, click" -msgstr "" +msgstr "Na pasku Właściwości obiektu rysunkowego, pasku Obraz, pasku Ramka, pasku Obiekty OLE lub pasku Projekt formularza, kliknij" #. DcsgR #: 00040501.xhp @@ -12605,7 +12605,7 @@ "par_id3151122\n" "help.text" msgid "Icon Anchor" -msgstr "" +msgstr "Ikona zakotwiczenia" #. MTXwp #: 00040501.xhp @@ -12614,7 +12614,7 @@ "par_id3154763\n" "help.text" msgid "Anchor" -msgstr "" +msgstr "Zakotwiczenie" #. Y2HFo #: 00040501.xhp @@ -12623,7 +12623,7 @@ "par_id3148899\n" "help.text" msgid "Choose Format - Anchor - To Page." -msgstr "" +msgstr "Wybierz Format - Zakotwiczenie - Do strony." #. RW78d #: 00040501.xhp @@ -12632,7 +12632,7 @@ "par_id3149342\n" "help.text" msgid "Choose Format - Anchor - To Paragraph." -msgstr "" +msgstr "Wybierz Format - Zakotwiczenie - Do akapitu." #. HHMcF #: 00040501.xhp @@ -12641,7 +12641,7 @@ "par_id3155147\n" "help.text" msgid "Choose Format - Anchor - To Character." -msgstr "" +msgstr "Wybierz Format - Zakotwiczenie - Do znaku." #. 6Fm2P #: 00040501.xhp @@ -12650,7 +12650,7 @@ "par_id3153042\n" "help.text" msgid "Choose Format - Anchor - As Character." -msgstr "" +msgstr "Wybierz Format - Zakotwiczenie - Jako znak." #. V2QAS #: 00040501.xhp @@ -12659,7 +12659,7 @@ "par_id3146964\n" "help.text" msgid "Choose Format - Anchor - To Frame." -msgstr "" +msgstr "Wybierz Format - Zakotwiczenie - Do ramki." #. qR6aB #: 00040501.xhp @@ -12668,7 +12668,7 @@ "par_id3150781\n" "help.text" msgid "Choose Format - Anchor - To Cell." -msgstr "" +msgstr "Wybierz Format - Zakotwiczenie - Do komórki." #. DFDf3 #: 00040502.xhp @@ -12695,7 +12695,7 @@ "par_id3146857\n" "help.text" msgid "Choose Format - Line (Impress and Draw)." -msgstr "" +msgstr "Wybierz Format - Linia (Impress and Draw)." #. yDiGN #: 00040502.xhp @@ -12704,7 +12704,7 @@ "par_id366527\n" "help.text" msgid "Choose Format - Text Box and Shape - Line (Writer)." -msgstr "" +msgstr "Wybierz Format - Pole tekstowe i kształt - Linia (Writer)." #. oRRBE #: 00040502.xhp @@ -12713,7 +12713,7 @@ "par_id3835261\n" "help.text" msgid "Choose Format - Object - Line (Calc)." -msgstr "" +msgstr "Wybierz Format - Obiekt - Linia (Calc)." #. KVd3h #: 00040502.xhp @@ -12722,7 +12722,7 @@ "par_id3148668\n" "help.text" msgid "On Line and Filling bar, click" -msgstr "" +msgstr "Na pasku Linia i wypełnienie kliknij" #. wRABY #: 00040502.xhp @@ -12731,7 +12731,7 @@ "par_id3148889\n" "help.text" msgid "Icon Line" -msgstr "" +msgstr "Ikona linii" #. acBGp #: 00040502.xhp @@ -12749,7 +12749,7 @@ "par_id3154285\n" "help.text" msgid "Choose Format - Text Box and Shape - Line - Line tab." -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Linia - Linia." #. fnMGF #: 00040502.xhp @@ -12758,7 +12758,7 @@ "par_id3153596\n" "help.text" msgid "Choose Format - Object - Line - Line tab." -msgstr "" +msgstr "Wybierz kartę Format - Obiekt - Linia - Linia." #. AAT9i #: 00040502.xhp @@ -12767,7 +12767,7 @@ "par_id3156023\n" "help.text" msgid "Choose Format - Title - Borders tab (charts)." -msgstr "" +msgstr "Wybierz kartę Format - Tytuł - Krawędzie (wykresy)." #. knxFR #: 00040502.xhp @@ -12776,7 +12776,7 @@ "par_id3153061\n" "help.text" msgid "Choose Format - Legend - Borders tab (charts)." -msgstr "" +msgstr "Wybierz kartę Format - Legenda - Krawędzie (wykresy)." #. F6966 #: 00040502.xhp @@ -12785,7 +12785,7 @@ "par_id3155922\n" "help.text" msgid "Choose Format - Axis - Line tab (charts)." -msgstr "" +msgstr "Wybierz kartę Format - Oś - Linia (wykresy)." #. yFq4k #: 00040502.xhp @@ -12794,7 +12794,7 @@ "par_id3147559\n" "help.text" msgid "Choose Format - Grid - Line tab (charts)." -msgstr "" +msgstr "Wybierz kartę Format - Siatka - Linia (wykresy)." #. nNAkS #: 00040502.xhp @@ -12803,7 +12803,7 @@ "par_id3154758\n" "help.text" msgid "Choose Format - Chart Wall - Borders tab (charts)." -msgstr "" +msgstr "Wybierz kartę Format - Ściana wykresu - Krawędzie (wykresy)." #. Aedak #: 00040502.xhp @@ -12812,7 +12812,7 @@ "par_id3153960\n" "help.text" msgid "Choose Format - Chart Floor - Borders tab (charts)." -msgstr "" +msgstr "Wybierz kartę Format - Podstawa wykresu - Krawędzie (wykresy)." #. Ujfzj #: 00040502.xhp @@ -12821,7 +12821,7 @@ "par_id3154939\n" "help.text" msgid "Choose Format - Chart Area - Borders tab (charts)." -msgstr "" +msgstr "Wybierz kartę Format - Obszar wykresu - Krawędzie (wykresy)." #. DYuKv #: 00040502.xhp @@ -12830,7 +12830,7 @@ "par_id3147335\n" "help.text" msgid "Choose View - Styles - open context menu and choose Modify/New - Line tab (presentation documents)." -msgstr "" +msgstr "Wybierz Widok - Style - otwórz menu kontekstowe i wybierz kartę Modyfikuj/Nowy - Linia (dokumenty prezentacji)." #. r2Bvs #: 00040502.xhp @@ -12839,7 +12839,7 @@ "par_id3151293\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Line - Line Styles tab." -msgstr "" +msgstr "Wybierz Format - Pole tekstowe i kształt - Obiekt - Linia - karta Style linii." #. eRYGg #: 00040502.xhp @@ -12848,7 +12848,7 @@ "par_id811654761854632\n" "help.text" msgid "Choose Format - Line" -msgstr "" +msgstr "Wybierz Format - Linia" #. Jn2jb #: 00040502.xhp @@ -12857,7 +12857,7 @@ "par_id3149317\n" "help.text" msgid "Choose Format - Text Box and Shape - Line - Arrow Styles tab." -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Linia - Style strzałek." #. Bs2oC #: 00040502.xhp @@ -12866,7 +12866,7 @@ "par_id631649991449892\n" "help.text" msgid "Right-click a selected object - choose Line - Arrow Styles tab." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy zaznaczony obiekt i wybierz kartę Linia - Style strzałek." #. XRr6D #: 00040502.xhp @@ -12875,7 +12875,7 @@ "par_id641654762186921\n" "help.text" msgid "On the Drawing Object Properties bar, choose Arrow Styles tab, after clicking" -msgstr "" +msgstr "Na pasku Właściwości obiektu rysunkowego wybierz kartę Style strzałek po kliknięciu" #. eG8ay #: 00040502.xhp @@ -12884,7 +12884,7 @@ "par_id331654762248984\n" "help.text" msgid "On the Drawing Object Properties bar or Image bar, choose Arrow Styles tab, after clicking" -msgstr "" +msgstr "Na pasku Właściwości obiektu rysunkowego lub Obraz wybierz kartę Style strzałek po kliknięciu" #. bgwEt #: 00040502.xhp @@ -12893,7 +12893,7 @@ "par_id411654762306808\n" "help.text" msgid "On the Image bar or Line and Filling bar, choose Arrow Styles tab, after clicking" -msgstr "" +msgstr "Na pasku Obraz lub pasku Linia i wypełnienie wybierz kartę Style strzałek po kliknięciu" #. 9zBMS #: 00040502.xhp @@ -12902,7 +12902,7 @@ "par_id3156082\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Area." -msgstr "" +msgstr "Wybierz Format - Pole tekstowe i kształt - Obiekt - Obszar." #. EAChU #: 00040502.xhp @@ -12911,7 +12911,7 @@ "par_id3148922\n" "help.text" msgid "On Line and Filling bar, click" -msgstr "" +msgstr "Na pasku Linia i wypełnienie kliknij" #. HBmFB #: 00040502.xhp @@ -12920,7 +12920,7 @@ "par_id3156424\n" "help.text" msgid "Icon Area" -msgstr "" +msgstr "Ikona obszaru" #. tdHtP #: 00040502.xhp @@ -12938,7 +12938,7 @@ "par_id511592159765396\n" "help.text" msgid "Choose View - Styles (Command+TF11) - choose Paragraph, Frame or Page style - open context menu - choose Modify/New - Area tab." -msgstr "" +msgstr "Wybierz Widok - Style (Command+TF11) - wybierz styl akapitu, ramki lub strony - otwórz menu kontekstowe - wybierz kartę Modyfikuj/Nowy - Obszar." #. sV6fD #: 00040502.xhp @@ -12947,7 +12947,7 @@ "par_id841527083135387\n" "help.text" msgid "Choose Table - Properties - Background tab. Select the table object - Cell, Row or Table - which background area is to be filled." -msgstr "" +msgstr "Wybierz kartę Tabela - Właściwości - Tło. Zaznacz obiekt tabeli (komórkę, wiersz lub tabelę), którego tło chcesz wypełnić." #. DhLwG #: 00040502.xhp @@ -12956,7 +12956,7 @@ "par_id821578662265845\n" "help.text" msgid "Choose Format - Page Style - Area tab." -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Obszar." #. GQb6M #: 00040502.xhp @@ -12965,7 +12965,7 @@ "par_id901592158395353\n" "help.text" msgid "Choose Format - Text Box and Shape - Area - Area" -msgstr "" +msgstr "Wybierz Format - Pole tekstowe i kształt - Obszar - Obszar" #. vAmBH #: 00040502.xhp @@ -12974,7 +12974,7 @@ "par_id1001592157774069\n" "help.text" msgid "Choose Styles - Manage Styles (Command+TF11) - choose Cell or Page style - open context menu - choose Modify/New - Background tab." -msgstr "" +msgstr "Wybierz Style - Zarządzaj stylami (Command+TF11 ) - wybierz styl komórki lub strony - otwórz menu kontekstowe - wybierz kartę Modyfikuj/Nowy - Tło." #. 4F4Kh #: 00040502.xhp @@ -12983,7 +12983,7 @@ "par_id771592156369992\n" "help.text" msgid "Choose Format - Page Style - Background tab" -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Tło" #. NP4xZ #: 00040502.xhp @@ -12992,7 +12992,7 @@ "par_id431578737397995\n" "help.text" msgid "Choose Format - Cells - Background tab" -msgstr "" +msgstr "Wybierz kartę Format - Komórki - Tło" #. LVAwN #: 00040502.xhp @@ -13001,7 +13001,7 @@ "par_id881592158156157\n" "help.text" msgid "Choose Format - Object - Area - Area tab." -msgstr "" +msgstr "Wybierz kartę Format - Obiekt - Obszar - Obszar." #. uQS9p #: 00040502.xhp @@ -13010,7 +13010,7 @@ "par_id951592158682096\n" "help.text" msgid "Choose Format - Style - Edit Style - Area tab" -msgstr "" +msgstr "Wybierz kartę Format - Styl - Edycja stylu - Obszar" #. vKEWq #: 00040502.xhp @@ -13019,7 +13019,7 @@ "par_id11592158856626\n" "help.text" msgid "Choose Slide - Properties - Background tab" -msgstr "" +msgstr "Wybierz kartę Slajd - Właściwości - Tło" #. Hb7gT #: 00040502.xhp @@ -13028,7 +13028,7 @@ "par_id891592159117695\n" "help.text" msgid "Choose Format - Styles - Manage Styles (Command+TF11), choose Drawing or Presentation style - open context menu - choose Modify/New - Area tab." -msgstr "" +msgstr "Wybierz Format - Style - Zarządzaj stylami (Command+TF11), wybierz styl rysunku lub prezentacji, otwórz menu kontekstowe i wybierz kartę Modyfikuj/Nowy - Obszar." #. 8f2xv #: 00040502.xhp @@ -13037,7 +13037,7 @@ "par_id741592159264211\n" "help.text" msgid "Choose Format - Object and Shape - Area - Area tab" -msgstr "" +msgstr "Wybierz kartę Format - Obiekt i kształt - Obszar - Obszar" #. GN2Rd #: 00040502.xhp @@ -13046,7 +13046,7 @@ "par_id271592159552714\n" "help.text" msgid "Choose Format - Style - Edit Style - Area tab" -msgstr "" +msgstr "Wybierz kartę Format - Styl - Edycja stylu - Obszar" #. LcgxB #: 00040502.xhp @@ -13055,7 +13055,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 "" +msgstr "Wybierz Format - Style - Zarządzaj stylami (Command+TF11), wybierz styl rysowania, otwórz menu kontekstowe i wybierz kartę Modyfikuj/Nowy - Obszar." #. 8Ac8B #: 00040502.xhp @@ -13064,7 +13064,7 @@ "par_id9149694\n" "help.text" msgid "Choose Page - Properties - Background tab." -msgstr "" +msgstr "Wybierz kartę Strona - Właściwości - Tło." #. DkwpP #: 00040502.xhp @@ -13073,7 +13073,7 @@ "par_id471592158481451\n" "help.text" msgid "Choose Format - Area - Area tab" -msgstr "" +msgstr "Wybierz kartę Format - Obszar - Obszar" #. 8CDNt #: 00040502.xhp @@ -13082,7 +13082,7 @@ "par_id3152922\n" "help.text" msgid "Choose Format - Title - Area tab." -msgstr "" +msgstr "Wybierz kartę Format - Tytuł - Obszar." #. TRyTB #: 00040502.xhp @@ -13091,7 +13091,7 @@ "par_id3157894\n" "help.text" msgid "Choose Format - Legend - Area tab." -msgstr "" +msgstr "Wybierz kartę Format - Legenda - Obszar." #. A6CBn #: 00040502.xhp @@ -13100,7 +13100,7 @@ "par_id3144444\n" "help.text" msgid "Choose Format - Chart Wall - Area tab." -msgstr "" +msgstr "Wybierz kartę Format - Ściana wykresu - Obszar." #. jFmfH #: 00040502.xhp @@ -13109,7 +13109,7 @@ "par_id3156543\n" "help.text" msgid "Choose Format - Chart Floor - Area." -msgstr "" +msgstr "Wybierz Format - Podstawa wykresu - Obszar." #. Pz9P5 #: 00040502.xhp @@ -13118,7 +13118,7 @@ "par_id3150685\n" "help.text" msgid "Choose Format - Chart Area - Area." -msgstr "" +msgstr "Wybierz Format - Obszar wykresu - Obszar." #. 9F87x #: 00040502.xhp @@ -13127,7 +13127,7 @@ "par_id901592160809757\n" "help.text" msgid "When editing a form:" -msgstr "" +msgstr "Podczas edycji formularza:" #. oABmb #: 00040502.xhp @@ -13136,7 +13136,7 @@ "par_id201592161190323\n" "help.text" msgid "When editing a report:" -msgstr "" +msgstr "Podczas edycji raportu:" #. VBYSN #: 00040502.xhp @@ -13145,7 +13145,7 @@ "par_id591592161180508\n" "help.text" msgid "Choose Format - Page - Background tab." -msgstr "" +msgstr "Wybierz kartę Format - Strona - Tło." #. Y8S4k #: 00040502.xhp @@ -13154,7 +13154,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 @@ -13163,7 +13163,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 @@ -13172,7 +13172,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 @@ -13181,7 +13181,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 @@ -13190,7 +13190,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 @@ -13199,7 +13199,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 @@ -13208,7 +13208,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 @@ -13217,7 +13217,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 @@ -13226,7 +13226,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 @@ -13235,7 +13235,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 @@ -13244,7 +13244,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 @@ -13253,7 +13253,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 @@ -13262,7 +13262,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 @@ -13271,7 +13271,7 @@ "par_id3147189\n" "help.text" msgid "Choose Format - Paragraph - Transparency tab." -msgstr "" +msgstr "Wybierz kartę Format - Akapit - Przezroczystość." #. YAhWh #: 00040502.xhp @@ -13280,7 +13280,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 @@ -13289,7 +13289,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 @@ -13298,7 +13298,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 @@ -13307,7 +13307,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 @@ -13316,7 +13316,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 @@ -13325,7 +13325,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 @@ -13334,7 +13334,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 @@ -13343,7 +13343,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 @@ -13352,7 +13352,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 @@ -13361,7 +13361,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 @@ -13370,7 +13370,7 @@ "par_id3156286\n" "help.text" msgid "F4 keyF4 key" -msgstr "" +msgstr "Klawisz F4Klawisz F4" #. fevBK #: 00040502.xhp @@ -13379,7 +13379,7 @@ "par_id3153052\n" "help.text" msgid "Icon Position and Size" -msgstr "" +msgstr "Ikona pozycji i rozmiaru" #. yL3FJ #: 00040502.xhp @@ -13397,7 +13397,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 @@ -13406,7 +13406,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 @@ -13415,7 +13415,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 @@ -13424,7 +13424,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 @@ -13433,7 +13433,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 @@ -13442,7 +13442,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 @@ -13451,7 +13451,7 @@ "par_id371602337542349\n" "help.text" msgid "Icon Position and Size" -msgstr "" +msgstr "Ikona pozycji i rozmiaru" #. 38DDB #: 00040502.xhp @@ -13460,7 +13460,7 @@ "par_id841602337832667\n" "help.text" msgid "Position and Size menu icon" -msgstr "" +msgstr "Ikona menu Pozycja i rozmiar" #. rjLHN #: 00040502.xhp @@ -13469,7 +13469,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 @@ -13478,7 +13478,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 @@ -13487,7 +13487,7 @@ "par_id3148495\n" "help.text" msgid "Icon Rotate" -msgstr "" +msgstr "Ikona obrotu" #. raRWH #: 00040502.xhp @@ -13505,7 +13505,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 @@ -13514,7 +13514,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 @@ -13523,7 +13523,7 @@ "par_id3083283\n" "help.text" msgid "Choose Edit - Points." -msgstr "" +msgstr "Wybierz Edycja - Punkty." #. pzsDV #: 00040502.xhp @@ -13532,7 +13532,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 @@ -13541,7 +13541,7 @@ "par_id3149019\n" "help.text" msgid "F8 keyF8 key" -msgstr "" +msgstr "Klawisz F8Klawisz F8" #. m9Ntk #: 00040502.xhp @@ -13550,7 +13550,7 @@ "par_id3150044\n" "help.text" msgid "Icon Edit Points" -msgstr "" +msgstr "Ikona edycji punktów" #. AMJ2m #: 00040502.xhp @@ -13568,7 +13568,7 @@ "par_id3151248\n" "help.text" msgid "Choose Format - Character (drawing functions)." -msgstr "" +msgstr "Wybierz Format - Znak (funkcje rysunkowe)." #. fitoG #: 00040502.xhp @@ -13577,7 +13577,7 @@ "par_id3145229\n" "help.text" msgid "Open context menu - choose Character." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Znak." #. wSA5e #: 00040502.xhp @@ -13586,7 +13586,7 @@ "par_id3151342\n" "help.text" msgid "Open context menu - choose Size." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Rozmiar." #. FNawj #: 00040502.xhp @@ -13595,7 +13595,7 @@ "par_id3149255\n" "help.text" msgid "Open context menu - choose Style." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Styl." #. C4ZrM #: 00040502.xhp @@ -13604,7 +13604,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 @@ -13613,7 +13613,7 @@ "par_id3145766\n" "help.text" msgid "Icon Bold" -msgstr "" +msgstr "Ikona pogrubienia" #. pQRTJ #: 00040502.xhp @@ -13631,7 +13631,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 @@ -13640,7 +13640,7 @@ "par_id3159091\n" "help.text" msgid "Icon Italic" -msgstr "" +msgstr "Ikona kursywy" #. cggpG #: 00040502.xhp @@ -13658,7 +13658,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 @@ -13667,7 +13667,7 @@ "par_id3145223\n" "help.text" msgid "Icon Underline" -msgstr "" +msgstr "Ikona podkreślenia" #. Bfqx8 #: 00040502.xhp @@ -13685,7 +13685,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 @@ -13694,7 +13694,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 @@ -13703,7 +13703,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 @@ -13712,7 +13712,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 @@ -13721,7 +13721,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 @@ -13730,7 +13730,7 @@ "par_id3155377\n" "help.text" msgid "Choose Format - Spacing." -msgstr "" +msgstr "Wybierz Format - Odstępy." #. AJWAM #: 00040502.xhp @@ -13739,7 +13739,7 @@ "par_id3154475\n" "help.text" msgid "Choose Format - Spacing - Line Spacing: 1." -msgstr "" +msgstr "Wybierz Format - Odstępy - Interlinia: 1." #. TKPgq #: 00040502.xhp @@ -13748,7 +13748,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 @@ -13757,7 +13757,7 @@ "par_id3147167\n" "help.text" msgid "Choose Format - Spacing - Line Spacing: 2." -msgstr "" +msgstr "Wybierz Format - Odstępy - Interlinia: 2." #. eLguF #: 00040502.xhp @@ -13766,7 +13766,7 @@ "par_id3146978\n" "help.text" msgid "Choose Format - Align Text - Left." -msgstr "" +msgstr "Wybierz Format - Wyrównaj tekst - Do lewej." #. reirq #: 00040502.xhp @@ -13775,7 +13775,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 @@ -13784,7 +13784,7 @@ "par_id3147310\n" "help.text" msgid "Icon Align Left" -msgstr "" +msgstr "Ikona wyrównania do lewej" #. okQkj #: 00040502.xhp @@ -13802,7 +13802,7 @@ "par_id3155823\n" "help.text" msgid "Choose Format - Align Text - Right." -msgstr "" +msgstr "Wybierz Format - Wyrównaj tekst - Do prawej." #. 2MorN #: 00040502.xhp @@ -13811,7 +13811,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 @@ -13820,7 +13820,7 @@ "par_id3149408\n" "help.text" msgid "Icon Align Right" -msgstr "" +msgstr "Ikona wyrównania do prawej" #. XnJxD #: 00040502.xhp @@ -13838,7 +13838,7 @@ "par_id3149189\n" "help.text" msgid "Choose Format - Align Text - Centered." -msgstr "" +msgstr "Wybierz Format - Wyrównaj tekst - Do środka." #. YutM3 #: 00040502.xhp @@ -13847,7 +13847,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 @@ -13856,7 +13856,7 @@ "par_id3153815\n" "help.text" msgid "Icon Centered" -msgstr "" +msgstr "Ikona wyśrodkowania" #. CQD3j #: 00040502.xhp @@ -13865,7 +13865,7 @@ "par_id3153076\n" "help.text" msgid "Align Center HorizontallyCentered" -msgstr "" +msgstr "Wyrównaj do środka w poziomieDo środka" #. BAFc3 #: 00040502.xhp @@ -13874,7 +13874,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 @@ -13883,7 +13883,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 @@ -13892,7 +13892,7 @@ "par_id3156189\n" "help.text" msgid "Icon Justified" -msgstr "" +msgstr "Ikona od lewej do prawej" #. YBkwj #: 00040502.xhp @@ -13910,7 +13910,7 @@ "par_id3150527\n" "help.text" msgid "Click Fontwork icon on Drawing bar." -msgstr "" +msgstr "Kliknij ikonę Fontwork na pasku Rysunek." #. EMj96 #: 00040502.xhp @@ -13919,7 +13919,7 @@ "par_id3144503\n" "help.text" msgid "Choose Format - Group." -msgstr "" +msgstr "Wybierz Format - Grupuj." #. YJ3t9 #: 00040502.xhp @@ -13928,7 +13928,7 @@ "par_id3154854\n" "help.text" msgid "Open context menu - choose Group." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Grupuj." #. 93FXg #: 00040502.xhp @@ -13937,7 +13937,7 @@ "par_id3157980\n" "help.text" msgid "Choose Shape - Group - Group" -msgstr "" +msgstr "Wybierz Kształt - Grupuj - Grupuj" #. dXNCq #: 00040502.xhp @@ -13946,7 +13946,7 @@ "par_id3157985\n" "help.text" msgid "Choose Format - Group - Group" -msgstr "" +msgstr "Wybierz Format - Grupuj - Grupuj" #. w3EVK #: 00040502.xhp @@ -13955,7 +13955,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 @@ -13964,7 +13964,7 @@ "par_id3146858\n" "help.text" msgid "Icon Group" -msgstr "" +msgstr "Ikona grupowania" #. DVEkd #: 00040502.xhp @@ -13982,7 +13982,7 @@ "par_id3163378\n" "help.text" msgid "Choose Shape - Group - Ungroup." -msgstr "" +msgstr "Wybierz Kształt - Grupuj - Rozgrupuj." #. K7UZY #: 00040502.xhp @@ -13991,7 +13991,7 @@ "par_id3153023\n" "help.text" msgid "Choose Format - Group - Ungroup." -msgstr "" +msgstr "Wybierz Format - Grupuj - Rozgrupuj." #. 9k3ef #: 00040502.xhp @@ -14000,7 +14000,7 @@ "par_id3156038\n" "help.text" msgid "Open context menu - choose Ungroup." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Rozgrupuj." #. zcmBV #: 00040502.xhp @@ -14009,7 +14009,7 @@ "par_id3151300\n" "help.text" msgid "Icon Ungroup" -msgstr "" +msgstr "Ikona rozgrupowania" #. DGWSV #: 00040502.xhp @@ -14027,7 +14027,7 @@ "par_id3145678\n" "help.text" msgid "Choose Shape - Group - Exit Group." -msgstr "" +msgstr "Wybierz Kształt - Grupuj - Wyjdź z grupy." #. fZQDA #: 00040502.xhp @@ -14036,7 +14036,7 @@ "par_id3153109\n" "help.text" msgid "Choose Format - Group - Exit Group." -msgstr "" +msgstr "Wybierz Format - Grupuj - Wyjdź z grupy." #. Bszjv #: 00040502.xhp @@ -14045,7 +14045,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 @@ -14054,7 +14054,7 @@ "par_id3158402\n" "help.text" msgid "Icon Exit Group" -msgstr "" +msgstr "Ikona wychodzenia z grupy" #. ndpeo #: 00040502.xhp @@ -14072,7 +14072,7 @@ "par_id3145354\n" "help.text" msgid "Choose Shape - Group - Enter Group." -msgstr "" +msgstr "Wybierz Kształt - Grupuj - Wejdź do grupy." #. vuF7P #: 00040502.xhp @@ -14081,7 +14081,7 @@ "par_id3149129\n" "help.text" msgid "Choose Format - Group - Enter Group." -msgstr "" +msgstr "Wybierz Format - Grupuj - Wejdź do grupy." #. 4rTmw #: 00040502.xhp @@ -14090,7 +14090,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 @@ -14099,7 +14099,7 @@ "par_id3152388\n" "help.text" msgid "Icon Enter Group" -msgstr "" +msgstr "Ikona wchodzenia do grupy" #. yXmKi #: 00040502.xhp @@ -14135,7 +14135,7 @@ "par_id3147294\n" "help.text" msgid "Choose Format - Rows - Height." -msgstr "" +msgstr "Wybierz Format - Wiersze - Wysokość." #. ZE93F #: 00040503.xhp @@ -14144,7 +14144,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 @@ -14153,7 +14153,7 @@ "par_id3153136\n" "help.text" msgid "Choose Format - Columns - Width." -msgstr "" +msgstr "Wybierz Format - Kolumny - Szerokość." #. zP8Aw #: 00040503.xhp @@ -14162,7 +14162,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 @@ -14171,7 +14171,7 @@ "par_id3148668\n" "help.text" msgid "Choose Format - Cells - Numbers tab." -msgstr "" +msgstr "Wybierz kartę Format - Komórki - Liczby." #. Dkn29 #: 00040503.xhp @@ -14180,7 +14180,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 @@ -14189,7 +14189,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 @@ -14198,7 +14198,7 @@ "par_id3150823\n" "help.text" msgid "Choose Table - Number Format (for tables)." -msgstr "" +msgstr "Wybierz Tabela - Format liczb (dla tabel)." #. zEP8P #: 00040503.xhp @@ -14207,7 +14207,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 @@ -14216,7 +14216,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 @@ -14225,7 +14225,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 @@ -14234,7 +14234,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 @@ -14243,7 +14243,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 @@ -14252,7 +14252,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 @@ -14261,7 +14261,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 @@ -14270,7 +14270,7 @@ "par_id3150495\n" "help.text" msgid "Choose Shape - Flip ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Odbij ($[officename] Draw)." #. 78fz2 #: 00040503.xhp @@ -14279,7 +14279,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 @@ -14288,7 +14288,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 @@ -14297,7 +14297,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 @@ -14306,7 +14306,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 @@ -14315,7 +14315,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 @@ -14324,7 +14324,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 @@ -14333,7 +14333,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 @@ -14342,7 +14342,7 @@ "par_id3156106\n" "help.text" msgid "Choose Format - Flip - Horizontally." -msgstr "" +msgstr "Wybierz Format - Odbij - Poziomo." #. dSXom #: 00040503.xhp @@ -14351,7 +14351,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 @@ -14360,7 +14360,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 @@ -14369,7 +14369,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 @@ -14378,7 +14378,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 @@ -14405,7 +14405,7 @@ "par_id3149948\n" "help.text" msgid "Every docked window has an icon to control the display properties of the window." -msgstr "" +msgstr "Każde zadokowane okno ma ikonę kontrolującą właściwości wyświetlania okna." #. jJcsB #: 01000000.xhp @@ -14702,7 +14702,7 @@ "tit\n" "help.text" msgid "Edit Menu" -msgstr "" +msgstr "Menu Edycja" #. RNm9w #: edit_menu.xhp @@ -14711,7 +14711,7 @@ "hd_id3147273\n" "help.text" msgid "Edit Menu" -msgstr "" +msgstr "Menu Edycja" #. 9zEzn #: edit_menu.xhp @@ -14720,7 +14720,7 @@ "par_id3085157\n" "help.text" msgid "Choose Edit - Undo." -msgstr "" +msgstr "Wybierz Edycja - Cofnij." #. AA56D #: edit_menu.xhp @@ -14729,7 +14729,7 @@ "par_id3145160\n" "help.text" msgid "CommandCtrl+Z" -msgstr "" +msgstr "CommandCtrl+Z" #. LW82F #: edit_menu.xhp @@ -14738,7 +14738,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 @@ -14747,7 +14747,7 @@ "par_id3155449\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. QzA62 #: edit_menu.xhp @@ -14756,7 +14756,7 @@ "par_id3148563\n" "help.text" msgid "Undo" -msgstr "" +msgstr "Cofnij" #. CRhMd #: edit_menu.xhp @@ -14765,7 +14765,7 @@ "par_id3145068\n" "help.text" msgid "Choose Edit - Redo." -msgstr "" +msgstr "Wybierz Edycja - Ponów." #. VgWZG #: edit_menu.xhp @@ -14774,7 +14774,7 @@ "par_id3153897\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. GpeZx #: edit_menu.xhp @@ -14783,7 +14783,7 @@ "par_id3154938\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. F99gF #: edit_menu.xhp @@ -14792,7 +14792,7 @@ "par_id3151211\n" "help.text" msgid "Redo" -msgstr "" +msgstr "Ponów" #. VqzCC #: edit_menu.xhp @@ -14801,7 +14801,7 @@ "par_id3154365\n" "help.text" msgid "Choose Edit - Repeat." -msgstr "" +msgstr "Wybierz Edycja - Powtórz." #. DyHWB #: edit_menu.xhp @@ -14810,7 +14810,7 @@ "par_id3149765\n" "help.text" msgid "Choose Edit - Cut." -msgstr "" +msgstr "Wybierz Edycja - Wytnij." #. siZcT #: edit_menu.xhp @@ -14819,7 +14819,7 @@ "par_id3144762\n" "help.text" msgid "CommandCtrl+X" -msgstr "" +msgstr "CommandCtrl+X" #. YEYM4 #: edit_menu.xhp @@ -14828,7 +14828,7 @@ "par_id3148744\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. zH2jz #: edit_menu.xhp @@ -14837,7 +14837,7 @@ "par_id3145173\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. b2BCg #: edit_menu.xhp @@ -14846,7 +14846,7 @@ "par_id3154153\n" "help.text" msgid "Cut" -msgstr "" +msgstr "Wytnij" #. 75bkj #: edit_menu.xhp @@ -14855,7 +14855,7 @@ "par_id3150742\n" "help.text" msgid "Choose Edit - Copy." -msgstr "" +msgstr "Wybierz Edycja - Kopiuj." #. dqu5U #: edit_menu.xhp @@ -14864,7 +14864,7 @@ "par_id3148923\n" "help.text" msgid "CommandCtrl+C" -msgstr "" +msgstr "CommandCtrl+C" #. ENXCh #: edit_menu.xhp @@ -14873,7 +14873,7 @@ "par_id3159254\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. GNpF7 #: edit_menu.xhp @@ -14882,7 +14882,7 @@ "par_id3154985\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. Ezjwz #: edit_menu.xhp @@ -14891,7 +14891,7 @@ "par_id3150685\n" "help.text" msgid "Copy" -msgstr "" +msgstr "Kopiuj" #. zsvyg #: edit_menu.xhp @@ -14900,7 +14900,7 @@ "par_id3159153\n" "help.text" msgid "Choose Edit - Paste." -msgstr "" +msgstr "Wybierz Edycja - Wklej." #. 2JEAF #: edit_menu.xhp @@ -14909,7 +14909,7 @@ "par_id3155860\n" "help.text" msgid "CommandCtrl+V" -msgstr "" +msgstr "CommandCtrl+V" #. wDTHt #: edit_menu.xhp @@ -14918,7 +14918,7 @@ "par_id3159083\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. 4ZWcQ #: edit_menu.xhp @@ -14927,7 +14927,7 @@ "par_id3156106\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. ZtHb2 #: edit_menu.xhp @@ -14936,7 +14936,7 @@ "par_id3154471\n" "help.text" msgid "Paste" -msgstr "" +msgstr "Wklej" #. 8U2sv #: edit_menu.xhp @@ -14945,7 +14945,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 @@ -14954,7 +14954,7 @@ "par_id431584795675377\n" "help.text" msgid "CommandCtrl + Shift + V." -msgstr "" +msgstr "CommandCtrl + Shift + V." #. iDRPM #: edit_menu.xhp @@ -14963,7 +14963,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 @@ -14972,7 +14972,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 @@ -14981,7 +14981,7 @@ "par_id941584805189349\n" "help.text" msgid "CommandCtrl + Alt + Shift + V." -msgstr "" +msgstr "CommandCtrl + Alt + Shift + V." #. jEkdB #: edit_menu.xhp @@ -14990,7 +14990,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 @@ -14999,7 +14999,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 @@ -15008,7 +15008,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 @@ -15017,7 +15017,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 @@ -15026,7 +15026,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 @@ -15035,7 +15035,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 @@ -15044,7 +15044,7 @@ "par_id3148555\n" "help.text" msgid "Choose Edit - Select All." -msgstr "" +msgstr "Wybierz Edycja - Zaznacz wszystko." #. mia2c #: edit_menu.xhp @@ -15053,7 +15053,7 @@ "par_id3152417\n" "help.text" msgid "CommandCtrl+A" -msgstr "" +msgstr "CommandCtrl+A" #. Fmcad #: edit_menu.xhp @@ -15062,7 +15062,7 @@ "par_id3145748\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. 8xMiC #: edit_menu.xhp @@ -15071,7 +15071,7 @@ "par_id3153139\n" "help.text" msgid "Select All" -msgstr "" +msgstr "Zaznacz wszystko" #. Tb8Mu #: edit_menu.xhp @@ -15080,7 +15080,7 @@ "par_id3145251\n" "help.text" msgid "Choose Edit - Track Changes." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany." #. FtngJ #: edit_menu.xhp @@ -15089,7 +15089,7 @@ "par_id3153336\n" "help.text" msgid "Choose Edit - Track Changes - Record." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Rejestruj." #. eaiZ6 #: edit_menu.xhp @@ -15098,7 +15098,7 @@ "par_id3150594\n" "help.text" msgid "Choose Edit - Track Changes - Show." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Pokaż." #. CXjc8 #: edit_menu.xhp @@ -15107,7 +15107,7 @@ "par_id3153845\n" "help.text" msgid "Choose Edit - Track Changes - Manage." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Zarządzaj." #. RLwDH #: edit_menu.xhp @@ -15116,7 +15116,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 @@ -15125,7 +15125,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 @@ -15134,7 +15134,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 @@ -15143,7 +15143,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 @@ -15152,7 +15152,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 @@ -15161,7 +15161,7 @@ "par_id561647263926698\n" "help.text" msgid "Choose Edit - Track Changes - Protect" -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Chroń" #. DrLSp #: edit_menu.xhp @@ -15170,7 +15170,7 @@ "par_id3148773\n" "help.text" msgid "Choose Edit - Track Changes - Comment." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Komentarz." #. BuLKS #: edit_menu.xhp @@ -15179,7 +15179,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 @@ -15188,7 +15188,7 @@ "par_id31562971\n" "help.text" msgid "Choose Edit - Find." -msgstr "" +msgstr "Wybierz Edycja - Znajdź." #. cPD4u #: edit_menu.xhp @@ -15197,7 +15197,7 @@ "par_id31545031\n" "help.text" msgid "CommandCtrl+F" -msgstr "" +msgstr "CommandCtrl+F" #. f4EM6 #: edit_menu.xhp @@ -15206,7 +15206,7 @@ "par_id3156297\n" "help.text" msgid "Choose Edit - Find & Replace." -msgstr "" +msgstr "Wybierz Edycja - Znajdź i zamień." #. 4pWKe #: edit_menu.xhp @@ -15215,7 +15215,7 @@ "par_id3154503\n" "help.text" msgid "CommandCtrl+H" -msgstr "" +msgstr "CommandCtrl+H" #. UPprs #: edit_menu.xhp @@ -15224,7 +15224,7 @@ "par_id3155083\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. BdmCn #: edit_menu.xhp @@ -15233,7 +15233,7 @@ "par_id3150020\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. jRcHP #: edit_menu.xhp @@ -15242,7 +15242,7 @@ "par_id3144748\n" "help.text" msgid "Find & Replace" -msgstr "" +msgstr "Znajdź i zamień" #. EtPCq #: edit_menu.xhp @@ -15251,7 +15251,7 @@ "par_id3156357\n" "help.text" msgid "Choose Edit - Find & Replace - Attributes." -msgstr "" +msgstr "Wybierz Edycja - Znajdź i zamień - Atrybuty." #. DCnDy #: edit_menu.xhp @@ -15260,7 +15260,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 @@ -15269,7 +15269,7 @@ "par_id781602175775847\n" "help.text" msgid "Search Icon or CommandCtrl+F" -msgstr "" +msgstr "Ikona wyszukiwania lub CommandCtrl+F" #. CNnsD #: edit_menu.xhp @@ -15278,7 +15278,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 @@ -15287,7 +15287,7 @@ "par_id551602176159965\n" "help.text" msgid "Search Icon" -msgstr "" +msgstr "Ikona wyszukiwania" #. 8FD2j #: edit_menu.xhp @@ -15296,7 +15296,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 @@ -15305,7 +15305,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 @@ -15314,7 +15314,7 @@ "par_id3152960\n" "help.text" msgid "Choose View - Navigator." -msgstr "" +msgstr "Wybierz Widok - Nawigator." #. mXj7f #: edit_menu.xhp @@ -15323,7 +15323,7 @@ "par_id3163824\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. QfrGQ #: edit_menu.xhp @@ -15332,7 +15332,7 @@ "par_id3159183\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. DFjLG #: edit_menu.xhp @@ -15341,7 +15341,7 @@ "par_id3147359\n" "help.text" msgid "Navigator On/Off" -msgstr "" +msgstr "Włącz/wyłącz Nawigator" #. XgQEb #: edit_menu.xhp @@ -15350,7 +15350,7 @@ "par_id3147338\n" "help.text" msgid "Choose Tools - Bibliography Database." -msgstr "" +msgstr "Wybierz Narzędzia - Bibliograficzna baza danych." #. EaFwu #: edit_menu.xhp @@ -15359,7 +15359,7 @@ "par_id3149281\n" "help.text" msgid "Choose Edit - External Links." -msgstr "" +msgstr "Wybierz Edycja - Łącza zewnętrzne." #. xSMBV #: edit_menu.xhp @@ -15368,7 +15368,7 @@ "par_id3159339\n" "help.text" msgid "Choose Edit - External Links - Modify (DDE links only)." -msgstr "" +msgstr "Wybierz Edycja - Łącza zewnętrzne - Modyfikuj (tylko linki DDE)." #. bgzTi #: edit_menu.xhp @@ -15377,7 +15377,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 @@ -15386,7 +15386,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 @@ -15395,7 +15395,7 @@ "par_id3149259\n" "help.text" msgid "Choose Edit - OLE Object." -msgstr "" +msgstr "Wybierz Edycja - Obiekt OLE." #. ApejL #: edit_menu.xhp @@ -15404,7 +15404,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 @@ -15413,7 +15413,7 @@ "par_id3149565\n" "help.text" msgid "Choose Edit - OLE Object - Open." -msgstr "" +msgstr "Wybierz Edycja - Obiekt OLE - Otwórz." #. kQifg #: edit_menu.xhp @@ -15422,7 +15422,7 @@ "par_id951603556032047\n" "help.text" msgid "Choose Edit - Reference." -msgstr "" +msgstr "Wybierz Edycja - Odwołanie." #. PNGYK #: icon_alt.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 05:34+0000\n" +"PO-Revision-Date: 2023-03-15 17:36+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" @@ -37841,7 +37841,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-19 17:18+0000\n" +"PO-Revision-Date: 2023-03-17 19: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" @@ -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 @@ -12632,7 +12632,7 @@ "par_id3153089\n" "help.text" msgid "Enables you to edit a read-only document or database table. Use the Edit Mode option to activate the edit mode." -msgstr "" +msgstr "Umożliwia edycję dokumentu tylko do odczytu lub tabeli bazy danych. Użyj opcji Tryb edycji, aby aktywować tryb edycji." #. HpbAm #: 07070000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/shared/guide.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/shared/guide.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/shared/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/shared/guide.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-21 09:34+0000\n" +"PO-Revision-Date: 2023-03-24 13:32+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" @@ -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" #. QLFCn #: 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 @@ -806,7 +806,7 @@ "par_id581626101004089\n" "help.text" msgid "Refer to the help page List of Regular Expressions to learn more about how to use regular expressions in %PRODUCTNAME." -msgstr "" +msgstr "Zapoznaj się ze stroną pomocy Lista wyrażeń regularnych, aby dowiedzieć się więcej o używaniu wyrażeń regularnych w %PRODUCTNAME." #. AE55E #: 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 @@ -1175,7 +1175,7 @@ "hd_id3149346\n" "help.text" msgid "Defining Graphics or Colors in the Background of Pages (Watermark)" -msgstr "" +msgstr "Definiowanie grafiki lub kolorów w tle stron (znaku wodnego)" #. Fa7Pn #: background.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 @@ -1211,7 +1211,7 @@ "par_id3156180\n" "help.text" msgid "Area tab page" -msgstr "" +msgstr "Karta Obszar" #. BDPLL #: 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 @@ -1436,7 +1436,7 @@ "par_id3156346\n" "help.text" msgid "Click the Borders icon on the Table toolbar (Writer) or on the Line and Filling bar to open the Borders window." -msgstr "Kliknij ikonę Krawędzie na pasku narzędzi Tabela (Writer) lub Formatowanie. Spowoduje to otwarcie okna dialogowego Krawędzie." +msgstr "Kliknij ikonę Krawędzie na pasku narzędzi Tabela (Writer) lub Linia i wypełnienie. Spowoduje to otwarcie okna dialogowego Krawędzie." #. tsdz6 #: border_table.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" #. iNnb6 #: classification.xhp @@ -2372,7 +2372,7 @@ "hd_id3156324\n" "help.text" msgid "Document Classification" -msgstr "" +msgstr "Klasyfikacja dokumentu" #. eb5Uk #: 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 @@ -2759,7 +2759,7 @@ "par_id150820161816032923\n" "help.text" msgid "Click on the Remote Files button in the Start Center." -msgstr "Kliknij przycisk Pliki zdalne na planszy startowej." +msgstr "Kliknij przycisk Pliki zdalne w Centrum startowym." #. aCU44 #: 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" #. EANxM #: cmis-remote-files-setup.xhp @@ -2786,7 +2786,7 @@ "par_id150820161816033600\n" "help.text" msgid "Then press Manage Services button in the dialog to open the File Services dialog." -msgstr "" +msgstr "Następnie naciśnij przycisk Zarządzaj usługami w oknie dialogowym, aby otworzyć okno dialogowe Usługi plików." #. NYgGE #: 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 @@ -3209,7 +3209,7 @@ "par_id170820161605414687\n" "help.text" msgid "Click the Remote Files button the Start Center" -msgstr "Kliknij przycisk Pliki zdalne na planszy startowej" +msgstr "Kliknij przycisk Pliki zdalne w Centrum startowym" #. nAisF #: 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 długo 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" #. H2hmH #: convertfilters.xhp @@ -4055,7 +4055,7 @@ "hd_id771554399002497\n" "help.text" msgid "File Conversion Filter Names" -msgstr "" +msgstr "Nazwy filtrów konwersji plików" #. WNb3G #: convertfilters.xhp @@ -4064,7 +4064,7 @@ "par_id581554399002498\n" "help.text" msgid " Tables with filter names for command line document conversion. " -msgstr "" +msgstr "Tabele z nazwami filtrów do konwersji dokumentów wierszem poleceń." #. Whybs #: convertfilters.xhp @@ -4073,7 +4073,7 @@ "hd_id531633524464103\n" "help.text" msgid "Usage" -msgstr "" +msgstr "Użycie" #. DjtnC #: convertfilters.xhp @@ -4082,7 +4082,7 @@ "par_id801633524474460\n" "help.text" msgid "Filter names are used when importing and exporting files in alien formats and converting files formats through the command line." -msgstr "" +msgstr "Nazwy filtrów są używane podczas importowania i eksportowania plików w obcych formatach oraz konwertowania formatów plików za pomocą wiersza poleceń." #. QAzjK #: 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" #. cht3y #: convertfilters.xhp @@ -5477,7 +5477,7 @@ "FilterName_writer_webp_Export\n" "help.text" msgid "WEBP - WebP Image" -msgstr "" +msgstr "WEBP - Obraz WebP" #. fwhjA #: convertfilters.xhp @@ -5486,7 +5486,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 @@ -5495,7 +5495,7 @@ "hd_000pdfimport\n" "help.text" msgid "Filters for PDFIMPORT" -msgstr "" +msgstr "Filtry dla PDFIMPORT" #. xJhTH #: convertfilters.xhp @@ -5504,7 +5504,7 @@ "FilterName_draw_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Draw)" -msgstr "" +msgstr "PDF - Portable Document Format (Draw)" #. JDFdH #: convertfilters.xhp @@ -5513,7 +5513,7 @@ "FilterName_impress_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Impress)" -msgstr "" +msgstr "PDF - Portable Document Format (Impress)" #. WsMeW #: convertfilters.xhp @@ -5522,7 +5522,7 @@ "FilterName_writer_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Writer)" -msgstr "" +msgstr "PDF - Portable Document Format (Writer)" #. 9WyPm #: convertfilters.xhp @@ -5531,7 +5531,7 @@ "FilterName_writer_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. kF4WL #: convertfilters.xhp @@ -5540,7 +5540,7 @@ "FilterName_impress_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. aFqyu #: convertfilters.xhp @@ -5549,7 +5549,7 @@ "FilterName_draw_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. 5AFFP #: convertfilters.xhp @@ -5558,7 +5558,7 @@ "FilterName_calc_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. ziEHZ #: convertfilters.xhp @@ -5567,7 +5567,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 @@ -5576,7 +5576,7 @@ "hd_000xsltfilter\n" "help.text" msgid "Filters for XSLTFILTER" -msgstr "" +msgstr "Filtry dla XSLTFILTER" #. ebRhP #: convertfilters.xhp @@ -5585,7 +5585,7 @@ "FilterName_ADO_Rowset_XML\n" "help.text" msgid "ADO Rowset XML" -msgstr "" +msgstr "ADO Rowset XML" #. tTViV #: convertfilters.xhp @@ -5594,7 +5594,7 @@ "FilterName_DocBook_File\n" "help.text" msgid "DocBook" -msgstr "" +msgstr "DocBook" #. GHC43 #: convertfilters.xhp @@ -5603,7 +5603,7 @@ "FilterName_MS_Excel_2003_XML\n" "help.text" msgid "Microsoft Excel 2003 XML" -msgstr "" +msgstr "Microsoft Excel 2003 XML" #. 5wBfH #: convertfilters.xhp @@ -5612,7 +5612,7 @@ "FilterName_MS_Word_2003_XML\n" "help.text" msgid "Word 2003 XML" -msgstr "" +msgstr "Word 2003 XML" #. CTAEj #: convertfilters.xhp @@ -5621,7 +5621,7 @@ "FilterName_XHTML_Calc_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. VUZrD #: convertfilters.xhp @@ -5630,7 +5630,7 @@ "FilterName_XHTML_Draw_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. AhcRA #: convertfilters.xhp @@ -5639,7 +5639,7 @@ "FilterName_XHTML_Impress_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. iCCFv #: convertfilters.xhp @@ -5648,7 +5648,7 @@ "FilterName_XHTML_Writer_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. MCrWq #: convertfilters.xhp @@ -5657,7 +5657,7 @@ "FilterName_UOF_text\n" "help.text" msgid "Unified Office Format text" -msgstr "" +msgstr "Dokument tekstowy Unified Office Format" #. TXKeC #: convertfilters.xhp @@ -5666,7 +5666,7 @@ "FilterName_UOF_spreadsheet\n" "help.text" msgid "Unified Office Format spreadsheet" -msgstr "" +msgstr "Arkusz kalkulacyjny Unified Office Format" #. VW3Gt #: convertfilters.xhp @@ -5675,7 +5675,7 @@ "FilterName_UOF_presentation\n" "help.text" msgid "Unified Office Format presentation" -msgstr "" +msgstr "Prezentacja Unified Office Format" #. Bkz5M #: copy_drawfunctions.xhp @@ -5765,7 +5765,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 @@ -5891,7 +5891,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 @@ -5981,7 +5981,7 @@ "tit\n" "help.text" msgid "CSV Filter parameters" -msgstr "" +msgstr "Parametry filtra CSV" #. KyLbg #: csv_params.xhp @@ -5990,7 +5990,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ń" #. v2AUB #: csv_params.xhp @@ -5999,7 +5999,7 @@ "hd_id551634734576194\n" "help.text" msgid "CSV Filter Options" -msgstr "" +msgstr "Opcje filtra CSV" #. qRkBK #: csv_params.xhp @@ -6008,7 +6008,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 @@ -6017,7 +6017,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 @@ -6026,7 +6026,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 @@ -6035,7 +6035,7 @@ "par_id511634735255956\n" "help.text" msgid "Token Position" -msgstr "" +msgstr "Pozycja tokena" #. 5rrFy #: csv_params.xhp @@ -6044,7 +6044,7 @@ "par_id71634735255956\n" "help.text" msgid "Definition" -msgstr "" +msgstr "Definicja" #. tBx7H #: csv_params.xhp @@ -6053,7 +6053,7 @@ "par_id581634735255956\n" "help.text" msgid "Meaning and Example of Token" -msgstr "" +msgstr "Znaczenie i przykład tokena" #. FBZ5h #: csv_params.xhp @@ -6062,7 +6062,7 @@ "par_id691634735255956\n" "help.text" msgid "Field Separator" -msgstr "" +msgstr "Separator pól" #. Zgou6 #: csv_params.xhp @@ -6071,7 +6071,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 @@ -6080,7 +6080,7 @@ "par_id661634735416764\n" "help.text" msgid "Text Delimiter" -msgstr "" +msgstr "Ogranicznik tekstu" #. A3NpW #: csv_params.xhp @@ -6089,7 +6089,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 @@ -6098,7 +6098,7 @@ "par_id901634735627024\n" "help.text" msgid "Character Set" -msgstr "" +msgstr "Zestaw znaków" #. v4Gzf #: csv_params.xhp @@ -6107,7 +6107,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)." #. P2HA5 #: csv_params.xhp @@ -6116,7 +6116,7 @@ "par_id631656948569749\n" "help.text" msgid "Line number to start reading." -msgstr "" +msgstr "Numer wiersza, aby rozpocząć odczyt." #. RN5mh #: csv_params.xhp @@ -6125,7 +6125,7 @@ "par_id371634735705688\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "Import CSV" #. p5VKq #: csv_params.xhp @@ -6134,7 +6134,7 @@ "par_id681634735710417\n" "help.text" msgid "N: line number to start reading. Example: 3 (start from third line)." -msgstr "" +msgstr "N: numer wiersza, od którego należy rozpocząć odczyt pliku. Przykład: 3 (zaczyna się od trzeciego wiersza)." #. BeXqG #: csv_params.xhp @@ -6143,7 +6143,7 @@ "par_id741634735821982\n" "help.text" msgid "Cell Format Codes for Each Column" -msgstr "" +msgstr "Kod formatowania komórek dla każdej kolumny" #. d6kEh #: csv_params.xhp @@ -6152,7 +6152,7 @@ "par_id591656948484541\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "Import CSV" #. fjBqE #: csv_params.xhp @@ -6161,7 +6161,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 @@ -6170,7 +6170,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 @@ -6179,7 +6179,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 @@ -6188,7 +6188,7 @@ "par_id971634736857464\n" "help.text" msgid "Language identifier" -msgstr "" +msgstr "Identyfikator języka" #. DrnsR #: csv_params.xhp @@ -6197,7 +6197,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." #. Pf5Aj #: csv_params.xhp @@ -6206,7 +6206,7 @@ "par_id41656949386421\n" "help.text" msgid "Quoted field as text" -msgstr "" +msgstr "Cytowane pole jako tekst" #. 4EDix #: csv_params.xhp @@ -6215,7 +6215,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\"." #. TDzgB #: csv_params.xhp @@ -6224,7 +6224,7 @@ "par_id741656949088694\n" "help.text" msgid "Detect special numbers" -msgstr "" +msgstr "Wykryj numery specjalne" #. SDFCG #: csv_params.xhp @@ -6233,7 +6233,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 @@ -6242,7 +6242,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." #. B9GHr #: csv_params.xhp @@ -6251,7 +6251,7 @@ "par_id321656948708285\n" "help.text" msgid "Save cell contents as shown" -msgstr "" +msgstr "Zapisz zawartość komórki jak przedstawiono" #. D9GzU #: csv_params.xhp @@ -6260,7 +6260,7 @@ "par_id961634737712752\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "Eksport CSV" #. bE733 #: csv_params.xhp @@ -6269,7 +6269,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\"." #. u65as #: csv_params.xhp @@ -6278,7 +6278,7 @@ "par_id601656948754932\n" "help.text" msgid "Export cell formulas" -msgstr "" +msgstr "Eksportuj formuły komórek" #. DbAB4 #: csv_params.xhp @@ -6287,7 +6287,7 @@ "par_id481634896761359\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "Eksport CSV" #. 3V5FY #: csv_params.xhp @@ -6296,7 +6296,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." #. UhfJC #: csv_params.xhp @@ -6305,7 +6305,7 @@ "par_id921656948771058\n" "help.text" msgid "Remove spaces" -msgstr "" +msgstr "Usuń odstępy" #. FE6AD #: csv_params.xhp @@ -6314,7 +6314,7 @@ "par_id221634896896383\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "Import CSV" #. o6NCQ #: csv_params.xhp @@ -6323,7 +6323,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." #. VAaeU #: csv_params.xhp @@ -6332,7 +6332,7 @@ "par_id501656949158133\n" "help.text" msgid "Export sheets" -msgstr "" +msgstr "Eksportuj arkusze" #. e7nRn #: csv_params.xhp @@ -6341,7 +6341,7 @@ "par_id521634896971296\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "Eksport CSV" #. NaJRN #: csv_params.xhp @@ -6350,7 +6350,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." #. zcsB7 #: csv_params.xhp @@ -6359,7 +6359,7 @@ "par_id341634897309489\n" "help.text" msgid "0 or absent: means the default behaviour, first sheet from command line, or current sheet in macro filter options, exported to sample.csv" -msgstr "" +msgstr "0 lub brak: oznacza zachowanie domyślne, pierwszy arkusz z wiersza poleceń lub bieżący arkusz w opcjach filtra makr, wyeksportowany do pliku sample.csv" #. n5k6F #: csv_params.xhp @@ -6368,7 +6368,7 @@ "par_id381634897377753\n" "help.text" msgid "-1: for all sheets, each sheet is exported to an individual file of the base file name concatenated with the sheet name, for example sample-Sheet1.csv, sample-Sheet2.csv and sample-Sheet3.csv" -msgstr "" +msgstr "-1: dla wszystkich arkuszy każdy arkusz jest eksportowany do osobnego pliku o nazwie podstawowej połączonej z nazwą arkusza, na przykład próbka-Arkusz1.csv, próbka-Arkusz2.csv i próbka-Arkusz3 .csv" #. gpAbv #: csv_params.xhp @@ -6377,7 +6377,7 @@ "par_id531634897438255\n" "help.text" msgid "N: export the N-th sheet within the range of number of sheets. Example: to export the second sheet, set 2 here to get sample-Sheet2.csv" -msgstr "" +msgstr "N: eksportuj n-ty arkusz w zakresie liczby arkuszy. Przykład: aby wyeksportować drugi arkusz, ustaw tutaj 2, aby uzyskać plik próbka-Arkusz2.csv" #. LfLAh #: csv_params.xhp @@ -6386,7 +6386,7 @@ "par_id61656948865298\n" "help.text" msgid "Import as formulas" -msgstr "" +msgstr "Importuj jako formuły" #. xfaM3 #: csv_params.xhp @@ -6395,7 +6395,7 @@ "par_id451635293273892\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "Import CSV" #. 54sie #: csv_params.xhp @@ -6404,7 +6404,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 @@ -6413,7 +6413,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 @@ -6422,7 +6422,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 @@ -6431,7 +6431,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 @@ -6440,7 +6440,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 @@ -6449,7 +6449,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 @@ -6458,7 +6458,7 @@ "par_id731638374814029\n" "help.text" msgid "\"LETTER\"|\"ANIMAL\"" -msgstr "" +msgstr "\"LITERA\"|\"ZWIERZĘ\"" #. CsfKB #: csv_params.xhp @@ -6467,7 +6467,7 @@ "par_id801638374818291\n" "help.text" msgid "\"a\"|\"aardvark\"" -msgstr "" +msgstr "\"a\"|\"antylopa\"" #. t62e9 #: csv_params.xhp @@ -6476,7 +6476,7 @@ "par_id621638374822275\n" "help.text" msgid "\"b\"|\"bear\"" -msgstr "" +msgstr "\"b\"|\"bocian\"" #. G2aQG #: csv_params.xhp @@ -6485,7 +6485,7 @@ "par_id851638374831208\n" "help.text" msgid "\"c\"|\"cow\"" -msgstr "" +msgstr "\"c\"|\"chomik\"" #. EFwn3 #: csv_params.xhp @@ -6494,7 +6494,7 @@ "hd_id181634739011588\n" "help.text" msgid "Formatting Codes for Token 5" -msgstr "" +msgstr "Kody formatowania dla tokena 5" #. 3KE5V #: csv_params.xhp @@ -6503,7 +6503,7 @@ "par_id31634738948892\n" "help.text" msgid "Meaning" -msgstr "" +msgstr "Znaczenie" #. kDygY #: csv_params.xhp @@ -6512,7 +6512,7 @@ "par_id101634738948892\n" "help.text" msgid "Code" -msgstr "" +msgstr "Kod" #. BpiaC #: csv_params.xhp @@ -6521,7 +6521,7 @@ "par_id1011670216\n" "help.text" msgid "Standard" -msgstr "" +msgstr "Standardowy" #. o2zeW #: csv_params.xhp @@ -6530,7 +6530,7 @@ "par_id1605952714\n" "help.text" msgid "Text" -msgstr "" +msgstr "Теkst" #. pPwcP #: csv_params.xhp @@ -6539,7 +6539,7 @@ "par_id5066036143\n" "help.text" msgid "MM/DD/YY" -msgstr "" +msgstr "MM/DD/RR" #. 6yrFg #: csv_params.xhp @@ -6548,7 +6548,7 @@ "par_id6386378851\n" "help.text" msgid "DD/MM/YY" -msgstr "" +msgstr "DD/MM/RR" #. BrCte #: csv_params.xhp @@ -6557,7 +6557,7 @@ "par_id6847541095\n" "help.text" msgid "YY/MM/DD" -msgstr "" +msgstr "RR/MM/DD" #. nixiA #: csv_params.xhp @@ -6566,7 +6566,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Ignoruj pole (nie importuj)" #. LEJDn #: csv_params.xhp @@ -6575,7 +6575,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Angielski (USA)" #. wLth6 #: csv_params.xhp @@ -6584,7 +6584,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 @@ -6638,7 +6638,7 @@ "par_id3145609\n" "help.text" msgid "You can change the text writing direction directly by pressing one of the following key combinations:" -msgstr "" +msgstr "Kierunek pisania tekstu można zmienić bezpośrednio, naciskając jedną z następujących kombinacji klawiszy:" #. 5654P #: ctl.xhp @@ -7160,7 +7160,7 @@ "par_id3153223\n" "help.text" msgid "Query Design" -msgstr "" +msgstr "Projekt kwerendy" #. 2ArGc #: data_forms.xhp @@ -7448,7 +7448,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 @@ -7529,7 +7529,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 @@ -7574,7 +7574,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 @@ -7592,7 +7592,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 @@ -7646,7 +7646,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 @@ -7718,7 +7718,7 @@ "par_idN1065F\n" "help.text" msgid "You see the Query Design window." -msgstr "" +msgstr "Zobaczysz okno Projekt kwerendy." #. xGFGr #: data_register.xhp @@ -7754,7 +7754,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 @@ -7925,7 +7925,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 @@ -8204,7 +8204,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 @@ -8348,7 +8348,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 @@ -8357,7 +8357,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 @@ -8366,7 +8366,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 @@ -8384,7 +8384,7 @@ "par_id3149481\n" "help.text" msgid "More information about wildcards and operators can be found in Query Design." -msgstr "" +msgstr "Więcej informacji na temat symboli wieloznacznych i operatorów można znaleźć w Projekt kwerendy." #. cEDEo #: data_search2.xhp @@ -8456,7 +8456,7 @@ "par_id3155535\n" "help.text" msgid "This section contains information about how to create a new database table in the design view." -msgstr "" +msgstr "Ta sekcja zawiera informacje o tym, jak utworzyć nową tabelę bazy danych w widoku projektu." #. 39GZc #: data_tabledefine.xhp @@ -8510,7 +8510,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 @@ -21785,7 +21785,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 @@ -25079,7 +25079,7 @@ "par_id215247284938\n" "help.text" msgid "Using without any arguments opens the start center." -msgstr "Użycie bez argumentów otwiera planszę startową." +msgstr "Użycie bez argumentów otwiera Centrum startowe." #. WEuAN #: start_parameters.xhp @@ -25862,7 +25862,7 @@ "tit\n" "help.text" msgid "Start Center" -msgstr "Centrum rozpoczynania pracy" +msgstr "Centrum startowe" #. BezyC #: startcenter.xhp @@ -25871,7 +25871,7 @@ "bm_id0820200802500562\n" "help.text" msgid "backing window start center" -msgstr "okno podstawowe centrum rozpoczynania pracy" +msgstr "okno podstawowe centrum startowe" #. VxGgY #: startcenter.xhp @@ -25880,7 +25880,7 @@ "hd_id0820200802524447\n" "help.text" msgid "Start Center" -msgstr "Centrum rozpoczynania pracy" +msgstr "Centrum startowe" #. e3XEA #: startcenter.xhp @@ -25889,7 +25889,7 @@ "par_id0820200803204063\n" "help.text" msgid "Welcome to %PRODUCTNAME. Thank you for using the %PRODUCTNAME application help. Press F1 whenever you need help using %PRODUCTNAME." -msgstr "" +msgstr "Witaj w %PRODUCTNAME. Dziękujemy za skorzystanie z pomocy aplikacji %PRODUCTNAME. Naciśnij klawisz F1, jeśli potrzebujesz pomocy przy korzystaniu z %PRODUCTNAME." #. mg9A4 #: startcenter.xhp @@ -25898,7 +25898,7 @@ "par_id0820200802524413\n" "help.text" msgid "You see the Start Center when no document is open in %PRODUCTNAME. It is divided into two panes. Click a button on the left pane to open a new document or a file dialog." -msgstr "" +msgstr "Centrum startowe jest widoczne, gdy w %PRODUCTNAME nie jest otwarty żaden dokument. Podzielone jest ono na dwa panele. Kliknij przycisk w lewym panelu, aby otworzyć nowy dokument lub okno dialogowe pliku." #. mWB6t #: startcenter.xhp @@ -25907,7 +25907,7 @@ "par_id082020080310498\n" "help.text" msgid "Open existing files" -msgstr "" +msgstr "Otwórz istniejące pliki" #. P4QMD #: startcenter.xhp @@ -25916,7 +25916,7 @@ "par_id082020080310500\n" "help.text" msgid "The Open File button presents a file open dialog." -msgstr "" +msgstr "Przycisk Otwórz plik przedstawia okno otwierania pliku." #. k2XUn #: startcenter.xhp @@ -25925,7 +25925,7 @@ "par_id082020080310502\n" "help.text" msgid "The Remote Files button presents a Remote files dialog to open files stored on remote servers." -msgstr "" +msgstr "Przycisk Pliki zdalne wyświetla okno dialogowe Pliki zdalne do otwierania plików przechowywanych na serwerach zdalnych." #. jEVNA #: startcenter.xhp @@ -25934,7 +25934,7 @@ "par_id0820200802525413\n" "help.text" msgid "Click the Recent Documents button to show thumbnails of the most recent documents you opened in the right side of the window. Hover your mouse over the thumbnail to highlight the document, display a tip about the document location and display an icon on the top right to delete the thumbnail from the pane and from the recent files list. Click on the thumbnail to open the document underneath." -msgstr "" +msgstr "Kliknij przycisk Ostatnie dokumenty, aby wyświetlić miniatury ostatnio otwieranych dokumentów po prawej stronie okna. Najedź kursorem myszy na miniaturę, aby podświetlić dokument, wyświetlić wskazówkę dotyczącą lokalizacji dokumentu i wyświetlić ikonę w prawym górnym rogu do usuwania miniatury z panelu i listy ostatnio używanych plików. Kliknij miniaturę, aby otworzyć dokument." #. FRzQw #: startcenter.xhp @@ -25943,7 +25943,7 @@ "par_id0820200802626414\n" "help.text" msgid "You can remove an item from the Recent Documents list by clicking the button in the upper-right corner of the icon. The document itself is not deleted. You can remove all items on the Recent Documents list by pressing the Recent Documents dropdown button and selecting Clear Recent Documents." -msgstr "" +msgstr "Możesz usunąć element z listy Ostatnie dokumenty, klikając przycisk w prawym górnym rogu ikony. Sam dokument nie jest usuwany. Możesz usunąć wszystkie elementy z listy Ostatnie dokumenty, naciskając przycisk rozwijany Ostatnie dokumenty i wybierając Wyczyść ostatnie dokumenty." #. fALjn #: startcenter.xhp @@ -25952,7 +25952,7 @@ "hd_id41607696972873\n" "help.text" msgid "Working with Templates" -msgstr "" +msgstr "Praca z szablonami" #. kBTaf #: startcenter.xhp @@ -25961,7 +25961,7 @@ "par_id0820200803105045\n" "help.text" msgid "Click the Templates button to display templates for all applications in the right side of the window." -msgstr "" +msgstr "Kliknij przycisk Szablony, aby wyświetlić w prawej części okna szablony do wszystkich aplikacji." #. mDftQ #: startcenter.xhp @@ -25970,7 +25970,7 @@ "par_id0820200802626412\n" "help.text" msgid "Click the down arrow after the Templates button to open a menu where you can select a filter to display templates by application type or open the Template Manager dialog." -msgstr "" +msgstr "Kliknij strzałkę w dół na przycisku Szablony, aby otworzyć menu, w którym możesz wybrać filtr do wyświetlania szablonów według aplikacji lub otworzyć okno dialogowe Menedżer szablonów." #. PcEEX #: startcenter.xhp @@ -25979,7 +25979,7 @@ "par_id0820200802626416\n" "help.text" msgid "Right click on a template in the right pane to open a menu where you can either open the template to create a new document based on the template or edit the template itself." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy szablon w prawym panelu, aby otworzyć menu, w którym możesz otworzyć szablon, aby utworzyć nowy dokument na podstawie szablonu lub edytować sam szablon." #. TkkvF #: startcenter.xhp @@ -25997,7 +25997,7 @@ "par_id0820200803104810\n" "help.text" msgid "The document buttons each open a new document of the specified type." -msgstr "" +msgstr "Każdy z przycisków dokumentu otwiera nowy dokument określonego typu." #. GqtWJ #: startcenter.xhp @@ -26006,7 +26006,7 @@ "par_id0820200803104978\n" "help.text" msgid "Writer Document opens %PRODUCTNAME Writer" -msgstr "" +msgstr "Dokument programu Writer otwiera %PRODUCTNAME Writer" #. T9fJd #: startcenter.xhp @@ -26015,7 +26015,7 @@ "par_id0820200803104998\n" "help.text" msgid "Calc Spreadsheet opens %PRODUCTNAME Calc" -msgstr "" +msgstr "Arkusz kalkulacyjny programu Calc otwiera %PRODUCTNAME Calc" #. w8F2G #: startcenter.xhp @@ -26024,7 +26024,7 @@ "par_id0820200803104927\n" "help.text" msgid "Impress Presentation opens %PRODUCTNAME Impress" -msgstr "" +msgstr "Prezentacja programu Impress otwiera %PRODUCTNAME Impress" #. ETSYu #: startcenter.xhp @@ -26033,7 +26033,7 @@ "par_id0820200803104948\n" "help.text" msgid "Draw Drawing opens %PRODUCTNAME Draw" -msgstr "" +msgstr "Rysunek programu Draw otwiera %PRODUCTNAME Draw" #. 5M38G #: startcenter.xhp @@ -26042,7 +26042,7 @@ "par_id0820200803105015\n" "help.text" msgid "Math Formula opens %PRODUCTNAME Math" -msgstr "" +msgstr "Formuła programu Math otwiera %PRODUCTNAME Math" #. nq6EF #: startcenter.xhp @@ -26051,7 +26051,7 @@ "par_id0820200803105089\n" "help.text" msgid "Base Database opens %PRODUCTNAME Base" -msgstr "" +msgstr "Baza danych programu Base otwiera %PRODUCTNAME Base" #. MvEcH #: startcenter.xhp @@ -26060,7 +26060,7 @@ "par_id082020080310501\n" "help.text" msgid "The Extensions button opens the https://extensions.libreoffice.org/ page, where you can download templates and additional features for %PRODUCTNAME." -msgstr "" +msgstr "Przycisk Rozszerzenia otwiera stronę https://extensions.libreoffice.org/, z której możesz pobrać szablony i dodatkowe funkcje programu %PRODUCTNAME." #. LtZCU #: startcenter.xhp @@ -26069,7 +26069,7 @@ "par_id0820200802626413\n" "help.text" msgid "Encrypted files will not display a thumbnail image of its content." -msgstr "" +msgstr "Zaszyfrowane pliki nie będą wyświetlać miniatury ich zawartości." #. vRgcu #: tabs.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/shared/optionen.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/shared/optionen.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/shared/optionen.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 05:34+0000\n" +"PO-Revision-Date: 2023-03-19 15: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" @@ -11687,7 +11687,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/simpress/02.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/simpress/02.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/simpress/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/simpress/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-12-02 16:25+0000\n" +"PO-Revision-Date: 2023-03-08 09:32+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: 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.5.1~rc2/translations/source/pl/helpcontent2/source/text/simpress.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/simpress.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/simpress.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/simpress.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-06 07:22+0000\n" +"PO-Revision-Date: 2023-03-02 08: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" @@ -563,7 +563,7 @@ "tit\n" "help.text" msgid "Line and Filling Bar" -msgstr "Pasek formatowania" +msgstr "Pasek Linia i wypełnienie" #. fFFTq #: main0202.xhp @@ -572,7 +572,7 @@ "hd_id3149664\n" "help.text" msgid "Line and Filling Bar" -msgstr "Pasek formatowania" +msgstr "Pasek Linia i wypełnienie" #. ircV9 #: main0202.xhp @@ -581,7 +581,7 @@ "par_id3153729\n" "help.text" msgid "The Line and Filling Bar contains commands and options that you can apply in the current view." -msgstr "Linia i pasek wypełnienia zawiera polecenia i opcje, które możesz wykorzystać w bieżącym widoku." +msgstr "Pasek Linia i wypełnienie zawiera polecenia i opcje, które możesz wykorzystać w bieżącym widoku." #. 7ASCP #: main0202.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/swriter/00.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/swriter/00.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/swriter/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/swriter/00.po 2023-03-24 16:53:38.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-10-10 13:36+0200\n" -"PO-Revision-Date: 2023-02-19 05:34+0000\n" +"PO-Revision-Date: 2023-02-28 01:04+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" @@ -1499,7 +1499,7 @@ "par_id3149294\n" "help.text" msgid "Choose View - Styles - open context menu Modify/New - Drop Caps tab." -msgstr "Wybierz Widok - Style, następnie otwórz menu kontekstowe Zmień/Nowy - Inicjały." +msgstr "Wybierz Widok - Style, następnie otwórz menu kontekstowe i wybierz kartę Modyfikuj/Nowy - Inicjały." #. JSAcg #: 00000405.xhp @@ -1517,7 +1517,7 @@ "par_id3154260\n" "help.text" msgid "Choose View - Styles - open context menu Modify/New - Text Flow tab." -msgstr "Wybierz Widok - Style, następnie otwórz menu kontekstowe Modyfikuj/Nowy - Przepływ tekstu." +msgstr "Wybierz Widok - Style, następnie otwórz menu kontekstowe i wybierz kartę Modyfikuj/Nowy - Przepływ tekstu." #. ANWP6 #: 00000405.xhp @@ -1661,7 +1661,7 @@ "par_id3147525\n" "help.text" msgid "Choose View - Styles - open context menu Modify/New - List & Numbering tab (Paragraph Styles)." -msgstr "Wybierz Widok - Style, następnie otwórz menu kontekstowe Zmień/Nowy - Lista i numeracja (Style akapitu)." +msgstr "Wybierz Widok - Style, następnie otwórz menu kontekstowe i wybierz kartę Modyfikuj/Nowy - Lista i numeracja (style akapitu)." #. Rp3Q3 #: 00000405.xhp @@ -1742,7 +1742,7 @@ "par_id3149109\n" "help.text" msgid "Choose View - Styles - open context menu Modify/New - Footnote tab." -msgstr "Wybierz Widok - Style, następnie otwórz menu Zmień/Nowy - Przypis dolny." +msgstr "Wybierz Widok - Style, następnie otwórz menu kontekstowe Modyfikuj/Nowy - Przypis dolny." #. GpwGB #: 00000405.xhp @@ -1940,7 +1940,7 @@ "par_id3148856\n" "help.text" msgid "Choose View - Styles - Frame Styles - open context menu Modify/New - Type tab." -msgstr "Wybierz Widok - Style - Style ramki, następnie otwórz menu kontekstowe zakładka Modyfikuj/Nowy - Typ." +msgstr "Wybierz Widok - Style - Style ramki, następnie otwórz menu kontekstowe i wybierz kartę Modyfikuj/Nowy - Typ." #. j5nXW #: 00000405.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/swriter/01.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/swriter/01.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/swriter/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/swriter/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-19 05:34+0000\n" +"PO-Revision-Date: 2023-03-09 11:58+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" @@ -20273,7 +20273,7 @@ "hd_id3145173\n" "help.text" msgid "Assign" -msgstr "Zastosuj" +msgstr "Przypisz" #. 5YXjU #: 05060700.xhp @@ -23387,7 +23387,7 @@ "hd_id3149483\n" "help.text" msgid "Assign" -msgstr "Zastosuj" +msgstr "Przypisz" #. K5F9U #: 05130100.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/swriter/guide.po libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.5.1~rc2/translations/source/pl/helpcontent2/source/text/swriter/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/helpcontent2/source/text/swriter/guide.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-22 18:35+0000\n" +"PO-Revision-Date: 2023-03-07 10:32+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" @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-02-19 19:03+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+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" @@ -2244,7 +2244,7 @@ "TooltipLabel\n" "value.text" msgid "Record Track Changes" -msgstr "Rejestruj śledzone zmiany" +msgstr "Rejestruj śledzenie zmian" #. MAuGe #: CalcCommands.xcu @@ -18574,7 +18574,7 @@ "Label\n" "value.text" msgid "Left" -msgstr "Lewo" +msgstr "Do lewej" #. Ds3tN #: GenericCommands.xcu @@ -18594,7 +18594,7 @@ "Label\n" "value.text" msgid "Right" -msgstr "Prawo" +msgstr "Do prawej" #. EjZGW #: GenericCommands.xcu @@ -18614,7 +18614,7 @@ "Label\n" "value.text" msgid "Center" -msgstr "Środek" +msgstr "Do środka" #. yMjYF #: GenericCommands.xcu @@ -25526,7 +25526,7 @@ "Label\n" "value.text" msgid "Left" -msgstr "Z lewej" +msgstr "Do lewej" #. wwKZj #: GenericCommands.xcu @@ -25546,7 +25546,7 @@ "Label\n" "value.text" msgid "Right" -msgstr "Z prawej" +msgstr "Do prawej" #. EGHqw #: GenericCommands.xcu @@ -25556,7 +25556,7 @@ "Label\n" "value.text" msgid "Top" -msgstr "Od góry" +msgstr "Do góry" #. RdudW #: GenericCommands.xcu @@ -25576,7 +25576,7 @@ "Label\n" "value.text" msgid "Bottom" -msgstr "Od dołu" +msgstr "Do dołu" #. EBFtE #: GenericCommands.xcu @@ -25706,7 +25706,7 @@ "Label\n" "value.text" msgid "Top" -msgstr "Góra" +msgstr "Do góry" #. nZchE #: GenericCommands.xcu @@ -25726,7 +25726,7 @@ "Label\n" "value.text" msgid "Center" -msgstr "Środek" +msgstr "Do środka" #. jcBjW #: GenericCommands.xcu @@ -25746,7 +25746,7 @@ "Label\n" "value.text" msgid "Bottom" -msgstr "Dół" +msgstr "Do dołu" #. Fy2GB #: GenericCommands.xcu @@ -30536,7 +30536,7 @@ "TooltipLabel\n" "value.text" msgid "Record Track Changes" -msgstr "Rejestruj śledzone zmiany" +msgstr "Rejestruj śledzenie zmian" #. uTnAC #: WriterCommands.xcu @@ -32526,7 +32526,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/sc/messages.po libreoffice-7.5.2~rc2/translations/source/pl/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/pl/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/sc/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-03-20 09: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" @@ -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 @@ -21911,7 +21911,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 @@ -23927,7 +23927,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 @@ -23963,7 +23963,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 @@ -26905,7 +26905,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 @@ -29293,7 +29293,7 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:386 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:398 @@ -32131,13 +32131,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 @@ -32221,7 +32221,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.5.1~rc2/translations/source/pl/svx/messages.po libreoffice-7.5.2~rc2/translations/source/pl/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/pl/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/svx/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-02-22 14:22+0000\n" +"PO-Revision-Date: 2023-03-14 12:32+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" @@ -11079,49 +11079,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 @@ -11133,49 +11133,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 #. -------------------------------------------------------------------- diff -Nru libreoffice-7.5.1~rc2/translations/source/pl/sw/messages.po libreoffice-7.5.2~rc2/translations/source/pl/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/pl/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pl/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-03-18 02: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" @@ -3261,7 +3261,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 @@ -5577,7 +5577,7 @@ #: sw/inc/strings.hrc:589 msgctxt "STR_UNDO_INSERT_FORM_FIELD" msgid "Insert form field" -msgstr "Wstaw z pola" +msgstr "Wstaw pole formularza" #. 2zJmG #: sw/inc/strings.hrc:590 @@ -9556,7 +9556,7 @@ #: sw/inc/strings.hrc:1329 msgctxt "STR_TOKEN_ENTRY" msgid "E" -msgstr "E" +msgstr "W" #. gxt8B #: sw/inc/strings.hrc:1330 @@ -11361,7 +11361,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 @@ -12531,7 +12531,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 @@ -12969,7 +12969,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 @@ -23275,7 +23275,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 "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 @@ -27351,7 +27351,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 @@ -27363,7 +27363,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 @@ -28971,7 +28971,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.5.1~rc2/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-01-09 03:14+0000\n" +"PO-Revision-Date: 2023-03-14 12:32+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: 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 @@ -10354,7 +10354,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 @@ -10364,7 +10364,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 @@ -26686,7 +26686,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 @@ -26696,7 +26696,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 @@ -34836,7 +34836,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 @@ -34846,7 +34846,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.5.1~rc2/translations/source/pt-BR/sd/messages.po libreoffice-7.5.2~rc2/translations/source/pt-BR/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/pt-BR/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/pt-BR/sd/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:12+0100\n" -"PO-Revision-Date: 2022-12-21 15:34+0000\n" +"PO-Revision-Date: 2023-03-24 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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562678568.000000\n" #. WDjkB @@ -3796,7 +3796,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:268 msgctxt "insertlayer|locked" msgid "_Locked" -msgstr "_Trancado" +msgstr "_Trancada" #. uaSTH #: sd/uiconfig/sdraw/ui/insertlayer.ui:276 diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/chart2/messages.po libreoffice-7.5.2~rc2/translations/source/ro/chart2/messages.po --- libreoffice-7.5.1~rc2/translations/source/ro/chart2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/chart2/messages.po 2023-03-24 16:53:38.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-11-22 14:43+0100\n" -"PO-Revision-Date: 2023-02-13 16:31+0000\n" +"PO-Revision-Date: 2023-03-01 02:09+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -199,7 +199,7 @@ #: chart2/inc/strings.hrc:39 msgctxt "STR_PAGE_LAYOUT" msgid "Layout" -msgstr "Aspect" +msgstr "Dispunere" #. 4Gz8K #: chart2/inc/strings.hrc:40 @@ -667,7 +667,7 @@ #: chart2/inc/strings.hrc:117 msgctxt "STR_ACTION_REARRANGE_CHART" msgid "Automatic Layout" -msgstr "Aspect automat" +msgstr "Dispunere automată" #. j4xMg #: chart2/inc/strings.hrc:118 @@ -805,7 +805,7 @@ #: chart2/inc/strings.hrc:140 msgctxt "STR_DATA_SELECT_RANGE_FOR_CATEGORIES" msgid "Select Range for Categories" -msgstr "Alege intervalul pentru categorii" +msgstr "Selectați intervalul pentru categorii" #. brKa4 #: chart2/inc/strings.hrc:141 @@ -1571,7 +1571,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:535 msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_TEXTDIR" msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled." -msgstr "Specificați direcția textului pentru un paragraf care utilizează aspect complex de text (CTL). Această caracteristică este disponibilă numai dacă este activat suportul pentru aspectul complex al textului." +msgstr "Specificați direcția textului pentru un paragraf care utilizează o dispunere de text complex (CTL). Această caracteristică este disponibilă numai dacă este activat suportul pentru dispunerea de text complex." #. xpAEz #: chart2/uiconfig/ui/dlg_DataLabel.ui:558 @@ -1811,7 +1811,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:490 msgctxt "dlg_InsertErrorBars|IB_RANGE_POSITIVE|tooltip_text" msgid "Select data range" -msgstr "Selectează intervalul de date" +msgstr "Selectați intervalul de date" #. JYk3c #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:495 @@ -1841,7 +1841,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:574 msgctxt "dlg_InsertErrorBars|IB_RANGE_NEGATIVE|tooltip_text" msgid "Select data range" -msgstr "Selectează intervalul de date" +msgstr "Selectați intervalul de date" #. mEwUr #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:579 @@ -2915,7 +2915,7 @@ #: chart2/uiconfig/ui/titlerotationtabpage.ui:144 msgctxt "titlerotationtabpage|extended_tip|textdirLB" msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled." -msgstr "Specificați direcția textului pentru un paragraf care utilizează aspect complex de text (CTL). Această caracteristică este disponibilă numai dacă este activat suportul pentru aspectul complex al textului." +msgstr "Specificați direcția textului pentru un paragraf care utilizează o dispunere de text complex (CTL). Această caracteristică este disponibilă numai dacă este activat suportul pentru dispunerea de text complex." #. 9cDiw #: chart2/uiconfig/ui/titlerotationtabpage.ui:163 @@ -3929,7 +3929,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:467 msgctxt "tp_DataLabel|extended_tip|LB_LABEL_TEXTDIR" msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled." -msgstr "Specificați direcția textului pentru un paragraf care utilizează aspect complex de text (CTL). Această caracteristică este disponibilă numai dacă este activat suportul pentru aspectul complex al textului." +msgstr "Specificați direcția textului pentru un paragraf care utilizează o dispunere de text complex (CTL). Această caracteristică este disponibilă numai dacă este activat suportul pentru dispunerea de text complex." #. PKnKk #: chart2/uiconfig/ui/tp_DataLabel.ui:490 @@ -3983,13 +3983,13 @@ #: chart2/uiconfig/ui/tp_DataSource.ui:18 msgctxt "tp_DataSource|imageIMB_RANGE_CAT|tooltip_text" msgid "Select data range" -msgstr "Selectează intervalul de date" +msgstr "Selectați intervalul de date" #. kEnRN #: chart2/uiconfig/ui/tp_DataSource.ui:24 msgctxt "tp_DataSource|imageIMB_RANGE_MAIN|tooltip_text" msgid "Select data range" -msgstr "Selectează intervalul de date" +msgstr "Selectați intervalul de date" #. 2iNp6 #: chart2/uiconfig/ui/tp_DataSource.ui:73 @@ -4073,13 +4073,13 @@ #: chart2/uiconfig/ui/tp_DataSource.ui:338 msgctxt "tp_DataSource|extended_tip|EDT_RANGE" msgid "Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the Select data range button." -msgstr "" +msgstr "Arată adresa intervalului sursă din a doua coloană a casetei de listă Interval de date. Puteți modifica intervalul în caseta de text sau trăgând în document. Pentru a minimiza acest dialog în timp ce selectați intervalul de date în Calc, dați clic pe butonul Selectați intervalul de date." #. CwKet #: chart2/uiconfig/ui/tp_DataSource.ui:356 msgctxt "tp_DataSource|extended_tip|IMB_RANGE_MAIN" msgid "Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the Select data range button." -msgstr "" +msgstr "Arată adresa intervalului sursă din a doua coloană a casetei de listă Interval de date. Puteți modifica intervalul în caseta de text sau trăgând în document. Pentru a minimiza acest dialog în timp ce selectați intervalul de date în Calc, dați clic pe butonul Selectați intervalul de date." #. FX2CF #: chart2/uiconfig/ui/tp_DataSource.ui:381 @@ -4103,7 +4103,7 @@ #: 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 "" +msgstr "Arată adresa intervalului sursă a categoriilor (textele pe care le puteți vedea pe axa X a unei diagrame de categorii). Pentru o diagramă XY, caseta de text conține domeniul de sursă al etichetelor de date care sunt afișate pentru punctele de date. Pentru a minimiza acest dialog în timp ce selectați intervalul de date în Calc, dați clic pe butonul Selectați intervalul de date." #. YwALA #: chart2/uiconfig/ui/tp_DataSource.ui:481 @@ -4295,7 +4295,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:436 msgctxt "tp_ErrorBars|IB_RANGE_POSITIVE|tooltip_text" msgid "Select data range" -msgstr "Selectează intervalul de date" +msgstr "Selectați intervalul de date" #. QYRko #: chart2/uiconfig/ui/tp_ErrorBars.ui:441 @@ -4325,7 +4325,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:519 msgctxt "tp_ErrorBars|IB_RANGE_NEGATIVE|tooltip_text" msgid "Select data range" -msgstr "Selectează intervalul de date" +msgstr "Selectați intervalul de date" #. oEACZ #: chart2/uiconfig/ui/tp_ErrorBars.ui:524 @@ -4433,7 +4433,7 @@ #: chart2/uiconfig/ui/tp_LegendPosition.ui:158 msgctxt "tp_LegendPosition|extended_tip|LB_LEGEND_TEXTDIR" msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled." -msgstr "Specificați direcția textului pentru un paragraf care utilizează aspect complex de text (CTL). Această caracteristică este disponibilă numai dacă este activat suportul pentru aspectul complex al textului." +msgstr "Specificați direcția textului pentru un paragraf care utilizează o dispunere de text complex (CTL). Această caracteristică este disponibilă numai dacă este activat suportul pentru dispunerea de text complex." #. sUDkC #: chart2/uiconfig/ui/tp_LegendPosition.ui:174 @@ -4517,7 +4517,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:8 msgctxt "tp_RangeChooser|imageIB_RANGE|tooltip_text" msgid "Select data range" -msgstr "Selectează intervalul de date" +msgstr "Selectați intervalul de date" #. 4zh42 #: chart2/uiconfig/ui/tp_RangeChooser.ui:28 @@ -4535,19 +4535,19 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:69 msgctxt "tp_RangeChooser|extended_tip|ED_RANGE" msgid "Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the Select data range button." -msgstr "" +msgstr "Introduceți intervalul de date pe care doriți să îl includeți în diagramă. Pentru a minimiza acest dialog în timp ce selectați intervalul de date în Calc, dați clic pe butonul Selectați intervalul de date." #. FyVoD #: chart2/uiconfig/ui/tp_RangeChooser.ui:83 msgctxt "tp_RangeChooser|IB_RANGE|tooltip_text" msgid "Select data range" -msgstr "Selectează intervalul de date" +msgstr "Selectați intervalul de date" #. FVivY #: chart2/uiconfig/ui/tp_RangeChooser.ui:88 msgctxt "tp_RangeChooser|extended_tip|IB_RANGE" msgid "Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the Select data range button." -msgstr "" +msgstr "Introduceți intervalul de date pe care doriți să îl includeți în diagramă. Pentru a minimiza acest dialog în timp ce selectați intervalul de date în Calc, dați clic pe butonul Selectați intervalul de date." #. RGGHE #: chart2/uiconfig/ui/tp_RangeChooser.ui:105 @@ -4559,7 +4559,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:114 msgctxt "tp_RangeChooser|extended_tip|RB_DATAROWS" msgid "Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series." -msgstr "" +msgstr "Seriile de date își obțin datele din rânduri consecutive din intervalul selectat. Pentru diagramele de dispersie, prima serie de date va conține valori X pentru toate seriile. Toate celelalte serii de date sunt utilizate ca valori Y, câte una pentru fiecare serie." #. wSDqF #: chart2/uiconfig/ui/tp_RangeChooser.ui:125 @@ -4571,7 +4571,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:134 msgctxt "tp_RangeChooser|extended_tip|RB_DATACOLS" msgid "Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series." -msgstr "" +msgstr "Seriile de date își obțin datele din coloane consecutive din intervalul selectat. Pentru diagramele de dispersie, prima coloană de date va conține valori X pentru toate seriile. Toate celelalte coloane de date sunt utilizate ca valori Y, câte una pentru fiecare serie." #. CExLY #: chart2/uiconfig/ui/tp_RangeChooser.ui:145 @@ -4583,7 +4583,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:153 msgctxt "tp_RangeChooser|extended_tip|CB_FIRST_ROW_ASLABELS" msgid "For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series." -msgstr "" +msgstr "Pentru seriile de date în coloane: primul rând din interval este folosit ca nume pentru seriile de date. Pentru seriile de date pe rânduri: primul rând din interval este utilizat ca categorii. Rândurile rămase cuprind seriile de date. Dacă această casetă de validare nu este bifată, toate rândurile sunt serii de date." #. ER2D7 #: chart2/uiconfig/ui/tp_RangeChooser.ui:164 @@ -4595,7 +4595,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:172 msgctxt "tp_RangeChooser|extended_tip|CB_FIRST_COLUMN_ASLABELS" msgid "For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns." -msgstr "" +msgstr "Pentru seriile de date în coloane: prima coloană din interval este folosită ca nume pentru seriile de date. Pentru seriile de date pe rânduri: prima coloană din interval este utilizată ca categorii. Coloanele rămase cuprind coloanele de date. Dacă această casetă de validare nu este bifată, toate coloanele sunt coloane de date." #. k9TMD #: chart2/uiconfig/ui/tp_RangeChooser.ui:193 @@ -5423,7 +5423,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:382 msgctxt "tp_axisLabel|extended_tip|textdirLB" msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled." -msgstr "Specificați direcția textului pentru un paragraf care utilizează aspect complex de text (CTL). Această caracteristică este disponibilă numai dacă este activat suportul pentru aspectul complex al textului." +msgstr "Specificați direcția textului pentru un paragraf care utilizează o dispunere de text complex (CTL). Această caracteristică este disponibilă numai dacă este activat suportul pentru dispunerea de text complex." #. NxsBh #: chart2/uiconfig/ui/tp_axisLabel.ui:401 diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/cui/messages.po libreoffice-7.5.2~rc2/translations/source/ro/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/ro/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\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==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542195872.000000\n" #. GyY9M @@ -3766,13 +3766,13 @@ #: cui/inc/treeopt.hrc:57 msgctxt "SID_LANGUAGE_OPTIONS_RES" msgid "Asian Layout" -msgstr "Aspect asiatic" +msgstr "Dispunere asiatică" #. VsApk #: cui/inc/treeopt.hrc:58 msgctxt "SID_LANGUAGE_OPTIONS_RES" msgid "Complex Text Layout" -msgstr "Aspect de text complex" +msgstr "Dispunere de text complex" #. 539Cz #: cui/inc/treeopt.hrc:59 @@ -4282,7 +4282,7 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:269 msgctxt "extended_tip|preferences" msgid "List the preferences organized hierarchically in a tree layout." -msgstr "" +msgstr "Listează preferințele organizate ierarhic într-o dispunere arborescentă." #. B8FF9 #: cui/uiconfig/ui/aboutconfigvaluedialog.ui:8 @@ -6354,7 +6354,7 @@ #: cui/uiconfig/ui/cellalignment.ui:143 msgctxt "cellalignment|checkAsianMode" msgid "Asian layout _mode" -msgstr "_Mod de aspect asiatic" +msgstr "_Mod de dispunere asiatică" #. EKAhC #: cui/uiconfig/ui/cellalignment.ui:153 @@ -13773,7 +13773,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:93 msgctxt "objecttitledescdialog|object_title_label" msgid "_Text Alternative:" -msgstr "_Text de alternativă:" +msgstr "Alternativă _textuală:" #. Gqfxb #: cui/uiconfig/ui/objecttitledescdialog.ui:113 @@ -13785,7 +13785,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:127 msgctxt "objecttitledescdialog|desc_label|tooltip_text" msgid "Give longer explanation of non-text content that is too complex to be described briefly in “Text Alternative”" -msgstr "" +msgstr "Oferiți o explicație mai lungă a conținutului non-text care este prea complex pentru a fi descris pe scurt în „Alternativă textuală”" #. kDbQ9 #: cui/uiconfig/ui/objecttitledescdialog.ui:128 @@ -13797,7 +13797,7 @@ #: 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 "" +msgstr "Introduceți un text de descriere. Textul de descriere lung poate fi introdus pentru a descrie un obiect complex sau un grup de obiecte utilizatorilor cu software de citire de ecran. Descrierea este vizibilă ca o etichetă alternativă pentru instrumentele de accesibilitate." #. 8BCe3 #: cui/uiconfig/ui/objecttitledescdialog.ui:179 @@ -14409,7 +14409,7 @@ #: cui/uiconfig/ui/optctlpage.ui:73 msgctxt "optctlpage|typeandreplace" msgid "_Type and replace" -msgstr "Înlocuire la s_criere" +msgstr "_Tastare și înlocuire" #. 4fM2r #: cui/uiconfig/ui/optctlpage.ui:97 @@ -14433,19 +14433,19 @@ #: cui/uiconfig/ui/optctlpage.ui:148 msgctxt "extended_tip|movementlogical" msgid "Pressing the Right Arrow key moves the text cursor toward the end of the current text. Pressing the Left Arrow key moves the text cursor toward the beginning of the current text." -msgstr "" +msgstr "Apăsarea tastei săgeată la dreapta mută cursorul textului către sfârșitul textului curent. Apăsarea tastei săgeată stânga mută cursorul textului către începutul textului curent." #. aEwYW #: cui/uiconfig/ui/optctlpage.ui:159 msgctxt "optctlpage|movementvisual" msgid "_Visual" -msgstr "_Vizibil" +msgstr "_Vizual" #. wpUXS #: cui/uiconfig/ui/optctlpage.ui:168 msgctxt "extended_tip|movementvisual" msgid "Pressing the Right Arrow key moves the text cursor in the right-hand direction. Pressing the Left Arrow key moves the text cursor in the left-hand direction." -msgstr "" +msgstr "Apăsarea tastei săgeată dreapta mută cursorul textului înspre dreapta. Apăsarea tastei săgeată stânga mută cursorul textului înspre stânga." #. 78DkF #: cui/uiconfig/ui/optctlpage.ui:186 @@ -14463,7 +14463,7 @@ #: cui/uiconfig/ui/optctlpage.ui:232 msgctxt "optctlpage|numerals" msgid "Arabic (1, 2, 3…)" -msgstr "Arabă (1, 2, 3…)" +msgstr "Arabic (1, 2, 3…)" #. 2n6dr #: cui/uiconfig/ui/optctlpage.ui:233 @@ -14487,7 +14487,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 "" +msgstr "Selectează tipul de numere utilizate în text, text în obiecte, câmpuri și comenzi, în toate modulele suitei de birou. Numai conținutul celulelor Calc nu este afectat." #. kWczF #: cui/uiconfig/ui/optctlpage.ui:254 @@ -14499,55 +14499,55 @@ #: cui/uiconfig/ui/optctlpage.ui:269 msgctxt "extended_tip|OptCTLPage" msgid "Defines the options for documents with complex text layouts." -msgstr "Definește opțiunile pentru documentele cu aspect complex de text." +msgstr "Definește opțiunile pentru documentele cu dispuneri de text complex." #. xE3dG #: cui/uiconfig/ui/optdeeplpage.ui:29 msgctxt "optdeeplpage|privacy" msgid "Please read the privacy policy" -msgstr "" +msgstr "Citiți politica de confidențialitate" #. F4GTM #: cui/uiconfig/ui/optdeeplpage.ui:54 msgctxt "optdeeplpage|privacy" msgid "API URL:" -msgstr "" +msgstr "URL API:" #. HHJta #: cui/uiconfig/ui/optdeeplpage.ui:68 msgctxt "optdeeplpage|label3" msgid "Authentication key:" -msgstr "" +msgstr "Cheie de autentificare:" #. tcBQE #: cui/uiconfig/ui/optdeeplpage.ui:113 msgctxt "optdeeplpage|label1" msgid "DeepL API Options" -msgstr "" +msgstr "Opțiuni API DeepL" #. G5EDD #: cui/uiconfig/ui/optemailpage.ui:31 msgctxt "optemailpage|label2" msgid "_Email program:" -msgstr "" +msgstr "Program pentru _e-mail:" #. bEyeK #: cui/uiconfig/ui/optemailpage.ui:51 msgctxt "extended_tip|url" msgid "Enter the email program path and name." -msgstr "" +msgstr "Introduceți calea și numele programului de e-mail." #. ACQCM #: cui/uiconfig/ui/optemailpage.ui:62 msgctxt "optemailpage|browse" msgid "Browse..." -msgstr "Navigare..." +msgstr "Răsfoiește..." #. Vs69j #: cui/uiconfig/ui/optemailpage.ui:69 msgctxt "extended_tip|browse" msgid "Opens a file dialog to select the email program." -msgstr "" +msgstr "Deschide un dialog de fișier pentru a selecta programul de e-mail." #. EHBa5 #: cui/uiconfig/ui/optemailpage.ui:95 @@ -14559,19 +14559,19 @@ #: cui/uiconfig/ui/optemailpage.ui:121 msgctxt "optemailpage|suppress" msgid "Suppress hidden elements of documents" -msgstr "Suprimă elementele ascunse dintr-un document" +msgstr "Suprimă elementele ascunse ale documentelor" #. vbcqb #: cui/uiconfig/ui/optemailpage.ui:187 msgctxt "optemailpage|label1" msgid "Sending Documents as Email Attachments" -msgstr "" +msgstr "Trimitere documente ca atașamente la e-mail" #. DoGA3 #: cui/uiconfig/ui/optemailpage.ui:195 msgctxt "extended_tip|OptEmailPage" msgid "Enter the email program path and name." -msgstr "" +msgstr "Introduceți calea și numele programului de e-mail." #. CnnM7 #. A column title, short for Load. This string is repeated as a prefix to an explanatory note under the widget @@ -14591,7 +14591,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 "" +msgstr "Caseta de selectare [Î] și [S] afișează intrările pentru perechea de obiecte OLE care pot fi convertite atunci când sunt încărcate dintr-un format Microsoft [Î] și/sau când sunt salvate într-un format Microsoft [S]. " #. x5kfq #. The [L] here is repeated as the column title for the "Load" column of this options page @@ -14629,7 +14629,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:245 msgctxt "extended_tip|highlighting" msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats." -msgstr "" +msgstr "Microsoft Office are două atribute de caractere similare cu fundalul de caractere Writer. Selectați atributul adecvat (evidențiere sau umbrire) pe care doriți să îl utilizați în timpul exportului în formate de fișiere Microsoft Office." #. Dnrx7 #: cui/uiconfig/ui/optfltrembedpage.ui:257 @@ -14641,7 +14641,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:266 msgctxt "extended_tip|shading" msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats." -msgstr "" +msgstr "Microsoft Office are două atribute de caractere similare cu fundalul de caractere Writer. Selectați atributul adecvat (evidențiere sau umbrire) pe care doriți să îl utilizați în timpul exportului în formate de fișiere Microsoft Office." #. gKwdG #: cui/uiconfig/ui/optfltrembedpage.ui:289 @@ -14659,7 +14659,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:325 msgctxt "extended_tip|mso_lockfile" msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file." -msgstr "" +msgstr "Bifați această casetă de selectare pentru a genera un fișier de blocare Microsoft Office în plus față de fișierul de blocare al acestei suite office." #. Sg5Bw #: cui/uiconfig/ui/optfltrembedpage.ui:341 @@ -14671,127 +14671,127 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:355 msgctxt "extended_tip|OptFilterPage" msgid "Specifies the settings for importing and exporting Microsoft Office and other documents." -msgstr "" +msgstr "Specifică setările pentru importul și exportul Microsoft Office și alte documente." #. ttAk5 #: cui/uiconfig/ui/optfltrpage.ui:27 msgctxt "optfltrpage|wo_basic" msgid "Load Basic _code" -msgstr "Încarcă _codul Basic" +msgstr "Încarcă _codul BASIC" #. QoX7F #: cui/uiconfig/ui/optfltrpage.ui:35 msgctxt "extended_tip|wo_basic" msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub." -msgstr "" +msgstr "Încarcă și salvează codul BASIC dintr-un document Microsoft ca un modul BASIC special împreună cu documentul. Codul Microsoft BASIC dezactivat este vizibil în IDE-ul BASIC între Sub și End Sub." #. AChYC #: cui/uiconfig/ui/optfltrpage.ui:46 msgctxt "optfltrpage|wo_exec" msgid "E_xecutable code" -msgstr "_Cod executabil" +msgstr "Cod e_xecutabil" #. DrWP3 #: cui/uiconfig/ui/optfltrpage.ui:55 msgctxt "extended_tip|wo_exec" msgid "The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this checkbox is not checked, the VBA code will be commented out so it can be inspected, but will not run." -msgstr "" +msgstr "Codul VBA (Visual BASIC for Applications) va fi încărcat gata pentru a fi executat. Dacă această casetă de selectare nu este bifată, codul VBA va fi comentat astfel încât să poată fi inspectat, dar nu va rula." #. avyQV #: cui/uiconfig/ui/optfltrpage.ui:66 msgctxt "optfltrpage|wo_saveorig" msgid "Save _original Basic code" -msgstr "_Salvarea codului Basic original" +msgstr "Salvează codului BASIC _original" #. 2gFSv #: cui/uiconfig/ui/optfltrpage.ui:74 msgctxt "extended_tip|wo_saveorig" msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form." -msgstr "" +msgstr "Specifică faptul că codul original Microsoft BASIC conținut în document este păstrat într-o memorie internă specială atâta timp cât documentul rămâne încărcat în suita de birou. La salvarea documentului în format Microsoft, Microsoft BASIC este salvat din nou cu codul într-o formă neschimbată." #. W6nED #: cui/uiconfig/ui/optfltrpage.ui:89 msgctxt "optfltrpage|label1" msgid "Microsoft Word" -msgstr "" +msgstr "Microsoft Word" #. Z88Ms #: cui/uiconfig/ui/optfltrpage.ui:118 msgctxt "optfltrpage|ex_basic" msgid "Lo_ad Basic code" -msgstr "Înc_arcă codul Basic" +msgstr "Înc_arcă codul BASIC" #. NNMHC #: cui/uiconfig/ui/optfltrpage.ui:126 msgctxt "extended_tip|ex_basic" msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub." -msgstr "" +msgstr "Încarcă și salvează codul BASIC dintr-un document Microsoft ca un modul BASIC special împreună cu documentul. Codul Microsoft BASIC dezactivat este vizibil în IDE-ul BASIC între Sub și End Sub." #. S6ozV #: cui/uiconfig/ui/optfltrpage.ui:137 msgctxt "optfltrpage|ex_exec" msgid "E_xecutable code" -msgstr "_Cod executabil" +msgstr "Cod e_xecutabil" #. qvcsz #: cui/uiconfig/ui/optfltrpage.ui:146 msgctxt "extended_tip|ex_exec" msgid "The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this checkbox is not checked, the VBA code will be commented out so it can be inspected, but will not run." -msgstr "" +msgstr "Codul VBA (Visual BASIC for Applications) va fi încărcat gata pentru a fi executat. Dacă această casetă de selectare nu este bifată, codul VBA va fi comentat astfel încât să poată fi inspectat, dar nu va rula." #. K6YYX #: cui/uiconfig/ui/optfltrpage.ui:157 msgctxt "optfltrpage|ex_saveorig" msgid "Sa_ve original Basic code" -msgstr "_Salvarea codului Basic original" +msgstr "Sal_vează codului BASIC original" #. BXFfA #: cui/uiconfig/ui/optfltrpage.ui:165 msgctxt "extended_tip|ex_saveorig" msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form." -msgstr "" +msgstr "Specifică faptul că codul original Microsoft BASIC conținut în document este păstrat într-o memorie internă specială atâta timp cât documentul rămâne încărcat în suita de birou. La salvarea documentului în format Microsoft, Microsoft BASIC este salvat din nou cu codul într-o formă neschimbată." #. a5EkB #: cui/uiconfig/ui/optfltrpage.ui:180 msgctxt "optfltrpage|label2" msgid "Microsoft Excel" -msgstr "" +msgstr "Microsoft Excel" #. z9TKA #: cui/uiconfig/ui/optfltrpage.ui:209 msgctxt "optfltrpage|pp_basic" msgid "Load Ba_sic code" -msgstr "Încarcă codul Ba_sic" +msgstr "Încarcă codul BA_SIC" #. MNcGz #: cui/uiconfig/ui/optfltrpage.ui:217 msgctxt "extended_tip|pp_basic" msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub." -msgstr "" +msgstr "Încarcă și salvează codul BASIC dintr-un document Microsoft ca un modul BASIC special împreună cu documentul. Codul Microsoft BASIC dezactivat este vizibil în IDE-ul BASIC între Sub și End Sub." #. VSdyY #: cui/uiconfig/ui/optfltrpage.ui:228 msgctxt "optfltrpage|pp_saveorig" msgid "Sav_e original Basic code" -msgstr "_Salvarea codului Basic original" +msgstr "Salv_ează codului Basic original" #. 8VTG9 #: cui/uiconfig/ui/optfltrpage.ui:236 msgctxt "extended_tip|pp_saveorig" msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form." -msgstr "" +msgstr "Specifică faptul că codul original Microsoft BASIC conținut în document este păstrat într-o memorie internă specială atâta timp cât documentul rămâne încărcat în suita de birou. La salvarea documentului în format Microsoft, Microsoft BASIC este salvat din nou cu codul într-o formă neschimbată." #. sazZt #: cui/uiconfig/ui/optfltrpage.ui:251 msgctxt "optfltrpage|label3" msgid "Microsoft PowerPoint" -msgstr "" +msgstr "Microsoft PowerPoint" #. yV3zh #: cui/uiconfig/ui/optfltrpage.ui:266 msgctxt "extended_tip|OptFltrPage" msgid "Specifies the general properties for loading and saving Microsoft Office documents with VBA (Visual Basic for Applications) code." -msgstr "" +msgstr "Specifică proprietățile generale pentru încărcarea și salvarea documentelor Microsoft Office cu codul VBA (Visual BASIC for Applications)." #. Q8yvt #: cui/uiconfig/ui/optfontspage.ui:81 @@ -14803,7 +14803,7 @@ #: cui/uiconfig/ui/optfontspage.ui:95 msgctxt "optfontspage|label3" msgid "Re_place with:" -msgstr "_Înlocuiește cu:" +msgstr "Î_nlocuiește cu:" #. ctZBz #: cui/uiconfig/ui/optfontspage.ui:135 @@ -14833,37 +14833,37 @@ #: 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 "" +msgstr "Listează fontul original și fontul care îl va înlocui. Selectați Întotdeauna pentru a înlocui fontul, chiar dacă fontul original este instalat pe sistem. Selectați Numai ecran pentru a înlocui doar fontul ecranului și nu înlocuiți niciodată fontul pentru tipărire." #. BGoZq #: cui/uiconfig/ui/optfontspage.ui:226 msgctxt "extended_tip | apply" msgid "Applies the selected font replacement." -msgstr "" +msgstr "Aplică înlocuirea fontului selectat." #. sYmaA #: cui/uiconfig/ui/optfontspage.ui:246 msgctxt "extended_tip | delete" msgid "Deletes the selected font replacement." -msgstr "" +msgstr "Șterge fontul de înlocuire selectat." #. gtiJp #: cui/uiconfig/ui/optfontspage.ui:271 msgctxt "extended_tip | font2" msgid "Enter or select the name of the replacement font." -msgstr "" +msgstr "Introduceți sau selectați numele fontului de înlocuire." #. SABse #: cui/uiconfig/ui/optfontspage.ui:296 msgctxt "extended_tip | font1" msgid "Enter or select the name of the font that you want to replace." -msgstr "" +msgstr "Introduceți sau selectați numele fontului pe care vreți să îl înlocuiți." #. k4PCs #: 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 "" +msgstr "Substituie un font cu un font la alegere. Substituirea înlocuiește un font numai atunci când este afișat pe ecran, sau pe ecran și la tipărire. Înlocuirea nu modifică setările fontului care sunt salvate în document." #. 7ECDC #: cui/uiconfig/ui/optfontspage.ui:319 @@ -14875,7 +14875,7 @@ #: cui/uiconfig/ui/optfontspage.ui:327 msgctxt "extended_tip | usetable" msgid "Enables the font replacement settings that you define." -msgstr "" +msgstr "Activează setările de înlocuire a fontului pe care le definiți." #. wDa4A #: cui/uiconfig/ui/optfontspage.ui:343 @@ -14893,7 +14893,7 @@ #: cui/uiconfig/ui/optfontspage.ui:393 msgctxt "optfontspage|label9" msgid "_Size:" -msgstr "_Mărime:" +msgstr "Dimen_siune:" #. KXCQg #: cui/uiconfig/ui/optfontspage.ui:408 @@ -14935,25 +14935,25 @@ #: cui/uiconfig/ui/optgeneralpage.ui:34 msgctxt "optgeneralpage|exthelp" msgid "_Extended tips" -msgstr "_Sfaturi amănunțite" +msgstr "Sfaturi _extinse" #. TyqBV #: 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 "" +msgstr "Afișează un text de ajutor atunci când așezați cursorul mausului pe o pictogramă, o comandă de meniu sau un control pe un dialog." #. yVGcZ #: cui/uiconfig/ui/optgeneralpage.ui:53 msgctxt "optgeneralpage|popupnohelp" msgid "Warn if local help is not installed" -msgstr "" +msgstr "Avertizează dacă ajutorul local nu este instalat" #. YUaEz #: cui/uiconfig/ui/optgeneralpage.ui:66 msgctxt "optgeneralpage|TipOfTheDayCheckbox" msgid "Show \"Tip of the Day\" dialog on start-up" -msgstr "" +msgstr "Arată dialogul „Sfatul zilei” la pornire" #. BR6gf #: cui/uiconfig/ui/optgeneralpage.ui:84 @@ -14965,7 +14965,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:112 msgctxt "optgeneralpage|filedlg" msgid "_Use %PRODUCTNAME dialogs" -msgstr "_Folosește dialogurile %PRODUCTNAME" +msgstr "Folosește dialog_urile %PRODUCTNAME" #. ySSsA #: cui/uiconfig/ui/optgeneralpage.ui:143 @@ -15049,7 +15049,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:394 msgctxt "optgeneralpage|fileassoc" msgid "Windows Default apps" -msgstr "" +msgstr "Aplicații Windows implicite" #. 2EWmE #: cui/uiconfig/ui/optgeneralpage.ui:408 @@ -15217,13 +15217,13 @@ #: cui/uiconfig/ui/opthtmlpage.ui:458 msgctxt "opthtmlpage|printextension" msgid "_Print layout" -msgstr "Aspect de ti_părire" +msgstr "Dispunere de ti_părire" #. 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 "Dacă marcați acest câmp, aspectul de tipărire al documentului curent (de exemplu, cuprins cu numere de pagină justificate și puncte de referință) este de asemenea exportat." +msgstr "Dacă marcați acest câmp, dispunerea de tipărire a documentului curent (de exemplu, cuprins cu numere de pagină justificate și puncte de referință) este de asemenea exportată." #. Wwuvt #: cui/uiconfig/ui/opthtmlpage.ui:478 @@ -15583,7 +15583,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:211 msgctxt "extended_tip|complexlanguage" msgid "Specifies the language for the complex text layout spellcheck." -msgstr "Specifică limba pentru verificarea ortografică a aspectului complex al textului." +msgstr "Specifică limba pentru verificarea ortografică a dispunerii de text complex." #. 3JLVm #: cui/uiconfig/ui/optlanguagespage.ui:222 @@ -15601,13 +15601,13 @@ #: cui/uiconfig/ui/optlanguagespage.ui:242 msgctxt "optlanguagespage|ctlsupport" msgid "Complex _text layout:" -msgstr "Aspect de _text complex:" +msgstr "Dispunere de _text complex:" #. EvD7M #: cui/uiconfig/ui/optlanguagespage.ui:250 msgctxt "extended_tip|ctlsupport" msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout." -msgstr "" +msgstr "Activează suportul pentru dispunerea de text complex. Acum puteți modifica setările corespunzătoare dispunerii de text complex." #. mpLF7 #: cui/uiconfig/ui/optlanguagespage.ui:261 @@ -17678,7 +17678,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:521 msgctxt "pageformatpage|labelPageLayout" msgid "_Page layout:" -msgstr "Aranjament _pagină:" +msgstr "Dispunere _pagină:" #. vnXWF #: cui/uiconfig/ui/pageformatpage.ui:535 @@ -17806,7 +17806,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:753 msgctxt "pageformatpage|label5" msgid "Layout Settings" -msgstr "Setări pentru aranjamentul în pagină" +msgstr "Setări pentru dispunere" #. eBMbb #: cui/uiconfig/ui/pageformatpage.ui:774 @@ -19425,7 +19425,7 @@ #: cui/uiconfig/ui/searchformatdialog.ui:279 msgctxt "searchformatdialog|asianlayout" msgid "Asian Layout" -msgstr "Aranjament asiatic" +msgstr "Dispunere asiatică" #. iWUYD #: cui/uiconfig/ui/searchformatdialog.ui:327 @@ -21705,19 +21705,19 @@ #: 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 "" +msgstr "Afișează cuvântul curent sau termenul înrudit pe care l-ați selectat dând dublu clic pe o linie din lista Alternative. De asemenea, puteți introduce text direct în această casetă pentru a-l căuta." #. FGgNh #: cui/uiconfig/ui/thesaurus.ui:267 msgctxt "thesaurus|extended_tip|alternatives" msgid "Click an entry in the Alternatives list to copy the related term to the \"Replace with\" text box. Double-click an entry to copy the related term to the \"Current word\" text box and to look up that term." -msgstr "" +msgstr "Dați clic pe o intrare din lista Alternative pentru a copia termenul asociat în caseta de text „Înlocuiți cu”. Dați dublu clic pe o intrare pentru a copia termenul asociat în caseta de text „Cuvânt curent” și pentru a căuta termenul respectiv." #. qZ6KM #: cui/uiconfig/ui/thesaurus.ui:285 msgctxt "thesaurus|RID_SVXSTR_ERR_TEXTNOTFOUND" msgid "No alternatives found." -msgstr "" +msgstr "Nu s-au găsit alternative." #. VGEXu #: cui/uiconfig/ui/thesaurus.ui:324 @@ -21735,13 +21735,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 @@ -22299,19 +22299,19 @@ #: 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 "" +msgstr "Introduceți factorul de zoom la care vreți să fie afișat documentul. Introduceți un procent în casetă." #. QGHoo #: cui/uiconfig/ui/zoomdialog.ui:231 msgctxt "zoomdialog|zoomsb-atkobject" msgid "Variable" -msgstr "Variabilă" +msgstr "Variabil" #. tnqjj #: 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 "" +msgstr "Introduceți factorul de zoom la care vreți să fie afișat documentul. Introduceți un procent în casetă." #. 8iPB6 #: cui/uiconfig/ui/zoomdialog.ui:255 @@ -22329,7 +22329,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 "" +msgstr "Dispunerea de vizualizare automată afișează pagini una lângă alta, atât cât permite factorul de zoom." #. DBVGM #: cui/uiconfig/ui/zoomdialog.ui:305 @@ -22341,7 +22341,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 "" +msgstr "Dispunerea de vizualizare cu o singură pagină afișează paginile una sub alta, dar niciodată una lângă alta." #. FdNqb #: cui/uiconfig/ui/zoomdialog.ui:331 @@ -22353,7 +22353,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 "" +msgstr "În dispunerea de vizualizare pe coloane, vedeți paginile într-un anumit număr de coloane una lângă alta. Introduceți numărul de coloane." #. opsyv #: cui/uiconfig/ui/zoomdialog.ui:366 @@ -22365,7 +22365,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 "" +msgstr "În dispunerea de vizualizare pe coloane, vedeți paginile dintr-un anumit număr de coloane una lângă alta. Introduceți numărul de coloane." #. rhLet #: cui/uiconfig/ui/zoomdialog.ui:386 @@ -22377,16 +22377,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 "În aranjamentul de vizualizare în modul carte, vedeți două pagini una lângă alta, ca într-o carte deschisă. Prima pagină este o pagină din dreapta cu un număr de pagină impar." +msgstr "În dispunerea de vizualizare în modul carte, vedeți două pagini una lângă alta, ca într-o carte deschisă. Prima pagină este o pagină din dreapta cu un număr de pagină impar." #. pdZqi #: cui/uiconfig/ui/zoomdialog.ui:414 msgctxt "zoomdialog|label1" msgid "View Layout" -msgstr "Vizualizare pagini" +msgstr "Dispunere de vizualizare" #. DWWgJ #: cui/uiconfig/ui/zoomdialog.ui:446 msgctxt "zoomdialog|extended_tip|ZoomDialog" msgid "Reduces or enlarges the screen display." -msgstr "" +msgstr "Reduce sau mărește afișarea ecranului." diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2614,7 +2614,7 @@ "Label\n" "value.text" msgid "Adjust Scale" -msgstr "Ajustează scala" +msgstr "Ajustează scara" #. SEBZW #: CalcCommands.xcu @@ -2644,7 +2644,7 @@ "Label\n" "value.text" msgid "Reset Scale" -msgstr "Restabilește scala" +msgstr "Restabilește scara" #. DEHZ9 #: CalcCommands.xcu @@ -3474,7 +3474,7 @@ "Label\n" "value.text" msgid "Select ~Range..." -msgstr "" +msgstr "Selectare inte~rval..." #. LGT6z #: CalcCommands.xcu @@ -6664,7 +6664,7 @@ "Label\n" "value.text" msgid "Automatic Layout" -msgstr "Aspect automat" +msgstr "Dispunere automată" #. iNGBX #: ChartCommands.xcu @@ -9344,7 +9344,7 @@ "Label\n" "value.text" msgid "Slide ~Layout" -msgstr "Asp~ect diapozitiv" +msgstr "~Dispunere diapozitiv" #. XAoDe #: DrawImpressCommands.xcu @@ -9504,7 +9504,7 @@ "Label\n" "value.text" msgid "Master Page..." -msgstr "Pagină master..." +msgstr "Pagină principală..." #. RxHFo #: DrawImpressCommands.xcu @@ -9514,7 +9514,7 @@ "Label\n" "value.text" msgid "Slide Layout" -msgstr "Aspect diapozitiv" +msgstr "Dispunere diapozitiv" #. BBXTY #: DrawImpressCommands.xcu @@ -9624,7 +9624,7 @@ "Label\n" "value.text" msgid "Layout" -msgstr "Aranjament" +msgstr "Dispunere" #. BBXg7 #: DrawImpressCommands.xcu @@ -10374,7 +10374,7 @@ "Label\n" "value.text" msgid "Zoom & Pan" -msgstr "" +msgstr "Zoom și panoramare" #. GPG85 #: DrawImpressCommands.xcu @@ -10384,7 +10384,7 @@ "TooltipLabel\n" "value.text" msgid "Zoom & Pan (Ctrl to Zoom Out, Shift to Pan)" -msgstr "" +msgstr "Zoom și panoramare (Ctrl pentru micșorare, Shift pentru panoramare)" #. BRCmr #: DrawImpressCommands.xcu @@ -10534,7 +10534,7 @@ "Label\n" "value.text" msgid "Master Lay~outs" -msgstr "~Aranjamente principale" +msgstr "~Dispuneri principale" #. SqMAZ #: DrawImpressCommands.xcu @@ -10554,7 +10554,7 @@ "Label\n" "value.text" msgid "Master Notes Layout..." -msgstr "Aranjamentul notelor principale..." +msgstr "Dispunerea notelor principale..." #. FzmHt #: DrawImpressCommands.xcu @@ -10564,7 +10564,7 @@ "Label\n" "value.text" msgid "Master Handout Layout..." -msgstr "Aranjamentul prospectului principal..." +msgstr "Dispunerea prospectului principal..." #. n3pZ9 #: DrawImpressCommands.xcu @@ -11454,7 +11454,7 @@ "Label\n" "value.text" msgid "Layout" -msgstr "Aranjament" +msgstr "Dispunere" #. RWwkb #: DrawImpressCommands.xcu @@ -12164,7 +12164,7 @@ "UIName\n" "value.text" msgid "Zoom" -msgstr "Lupă" +msgstr "Zoom" #. AkJdM #: DrawWindowState.xcu @@ -12554,7 +12554,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "Lupă" +msgstr "Zoom" #. aihBG #: Effects.xcu @@ -12804,7 +12804,7 @@ "Label\n" "value.text" msgid "Fade in and Zoom" -msgstr "Apariție progresivă și apropiere" +msgstr "Apariție progresivă și zoom" #. 26GwM #: Effects.xcu @@ -13504,7 +13504,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "Lupă" +msgstr "Zoom" #. ipZZC #: Effects.xcu @@ -18784,7 +18784,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "Lupă" +msgstr "Zoom" #. cG9KB #: GenericCommands.xcu @@ -20856,7 +20856,7 @@ "Label\n" "value.text" msgid "Object Zoom" -msgstr "Panoramare obiect" +msgstr "Zoom asupra obiectelor" #. kpKCn #: GenericCommands.xcu @@ -23626,7 +23626,7 @@ "ContextLabel\n" "value.text" msgid "Show Tip of the Day" -msgstr "" +msgstr "Arată sfatul zilei" #. 6VUAq #: GenericCommands.xcu @@ -23636,7 +23636,7 @@ "TooltipLabel\n" "value.text" msgid "Show the Tip of the Day dialog" -msgstr "" +msgstr "Arată dialogul Sfatul zilei" #. GjCU6 #: GenericCommands.xcu @@ -24996,7 +24996,7 @@ "Label\n" "value.text" msgid "Refresh document layout" -msgstr "Reîmprospătează aranjamentul documentului" +msgstr "Reîmprospătează dispunerea documentului" #. V8JAY #: GenericCommands.xcu @@ -27896,7 +27896,7 @@ "UIName\n" "value.text" msgid "Zoom" -msgstr "Lupă" +msgstr "Zoom" #. pvbBN #: ImpressWindowState.xcu @@ -29306,7 +29306,7 @@ "Title\n" "value.text" msgid "Layouts" -msgstr "Aranjamente" +msgstr "Dispuneri" #. RXZGB #: Sidebar.xcu @@ -30106,7 +30106,7 @@ "Label\n" "value.text" msgid "Preview Zoom" -msgstr "Zoom" +msgstr "Zoom de previzualizare" #. BAjyc #: WriterCommands.xcu @@ -34926,7 +34926,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "" +msgstr "Zoom" #. pmDD4 #: WriterCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.5.2~rc2/translations/source/ro/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.5.1~rc2/translations/source/ro/officecfg/registry/data/org/openoffice/Office.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/officecfg/registry/data/org/openoffice/Office.po 2023-03-24 16:53:38.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-12-08 19:47+0100\n" -"PO-Revision-Date: 2023-02-15 14:24+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,7 +84,7 @@ "Title\n" "value.text" msgid "HOME" -msgstr "HOME" +msgstr "INIȚIAL" #. odHjy #: Addons.xcu @@ -94,7 +94,7 @@ "Title\n" "value.text" msgid "CLEARSCREEN" -msgstr "CLEARSCREEN" +msgstr "CURĂȚARE ECRAN" #. 6BbAU #: Addons.xcu @@ -114,7 +114,7 @@ "Title\n" "value.text" msgid "Set editing layout, format program or translate it into the language of the document" -msgstr "Setare ordonare mod editare, formatare program sau traducere la limba documentului" +msgstr "Stabilește dispunerea editării, formatarea programului sau traducerea în limba documentului" #. uBoUb #: Common.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/sc/messages.po libreoffice-7.5.2~rc2/translations/source/ro/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/ro/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/sc/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32938,13 +32938,13 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:334 msgctxt "extended_tip|synczoom" msgid "If checked, all sheets are shown with the same zoom factor. If not checked, each sheet can have its own zoom factor." -msgstr "" +msgstr "Dacă opțiunea este bifată, toate foile sunt înfățișate cu același factor de zoom. Dacă opțiunea nu este bifată, fiecare foaie poate avea propriul factor de zoom." #. pEFjC #: sc/uiconfig/scalc/ui/tpviewpage.ui:343 msgctxt "tpviewpage|label3" msgid "Zoom" -msgstr "Mărire" +msgstr "Zoom" #. ShHLd #: sc/uiconfig/scalc/ui/tpviewpage.ui:371 diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/sd/messages.po libreoffice-7.5.2~rc2/translations/source/ro/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/ro/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/sd/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:12+0100\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +44,7 @@ #: sd/inc/DocumentRenderer.hrc:36 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES" msgid "According to layout" -msgstr "Conform aspectului" +msgstr "Conform dispunerii" #. FBUYC #: sd/inc/DocumentRenderer.hrc:37 @@ -1007,13 +1007,13 @@ #: sd/inc/strings.hrc:123 msgctxt "STR_UNDO_MODIFY_PAGE" msgid "Slide layout" -msgstr "Aspect diapozitiv" +msgstr "Dispunere diapozitiv" #. SUpXD #: sd/inc/strings.hrc:124 msgctxt "STR_UNDO_MODIFY_PAGE_DRAW" msgid "Page layout" -msgstr "Aspect pagină" +msgstr "Dispunere pagină" #. BFzyf #: sd/inc/strings.hrc:125 @@ -1031,7 +1031,7 @@ #: sd/inc/strings.hrc:127 msgctxt "STR_UNDO_SET_PRESLAYOUT" msgid "Apply presentation layout" -msgstr "Aplică aspectul de prezentare" +msgstr "Aplică dispunerea de prezentare" #. ZMS5R #: sd/inc/strings.hrc:128 @@ -1680,13 +1680,13 @@ #: sd/inc/strings.hrc:238 msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE" msgid "Title Area for AutoLayouts" -msgstr "Zona de titlu pentru aspecte automate" +msgstr "Zona de titlu pentru dispuneri automate" #. i4T9w #: sd/inc/strings.hrc:239 msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE" msgid "Object Area for AutoLayouts" -msgstr "Zona de obiecte pentru aspecte automate" +msgstr "Zona de obiecte pentru dispuneri automate" #. vS6wi #: sd/inc/strings.hrc:240 @@ -1800,7 +1800,7 @@ #: sd/inc/strings.hrc:258 msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE" msgid "Layouts" -msgstr "Aspect" +msgstr "Dispuneri" #. peCQY #: sd/inc/strings.hrc:259 @@ -1842,7 +1842,7 @@ #: sd/inc/strings.hrc:265 msgctxt "STR_RESET_LAYOUT" msgid "Reset Slide Layout" -msgstr "Resetare aspect prezentare" +msgstr "Restabilește dispunerea diapozitivului" #. EB6XY #: sd/inc/strings.hrc:266 @@ -1915,7 +1915,7 @@ #: sd/inc/strings.hrc:278 msgctxt "STR_LAYER_LAYOUT" msgid "Layout" -msgstr "Aspect" +msgstr "Dispunere" #. nU2g2 #: sd/inc/strings.hrc:279 @@ -3637,7 +3637,7 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:8 msgctxt "drawprtldialog|DrawPRTLDialog" msgid "Presentation Layout" -msgstr "Aspect de prezentare" +msgstr "Dispunerea prezentării" #. qhGQW #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:138 @@ -3919,13 +3919,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:6400 msgctxt "drawnotebookbar|PageMenuButton" msgid "_Layout" -msgstr "_Aspect" +msgstr "_Dispunere" #. Rv7x4 #: sd/uiconfig/sdraw/ui/notebookbar.ui:6485 msgctxt "drawnotebookbar|PageLabel" msgid "~Layout" -msgstr "~Aspect" +msgstr "~Dispunere" #. BQcfo #: sd/uiconfig/sdraw/ui/notebookbar.ui:7023 @@ -4137,13 +4137,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6257 msgctxt "notebookbar_draw_compact|LayoutMenuButton" msgid "Layout" -msgstr "Aspect" +msgstr "Dispunere" #. 2wBCF #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6309 msgctxt "notebookbar_draw_compact|LayoutLabel" msgid "~Layout" -msgstr "~Aspect" +msgstr "~Dispunere" #. GG7uL #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6824 @@ -6538,7 +6538,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:8 msgctxt "masterlayoutdlg|MasterLayoutDialog" msgid "Master Elements" -msgstr "Elemente master" +msgstr "Elemente principale" #. 2kiHn #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:92 @@ -6550,7 +6550,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 "Adaugă un substituent de antet la diapozitivul master pentru note." +msgstr "Adaugă un substituent de antet la diapozitivul principal pentru note." #. iccus #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:112 @@ -6562,7 +6562,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:120 msgctxt "masterlayoutdlg|extended_tip|datetime" msgid "Adds a date/time placeholder to the master slide." -msgstr "" +msgstr "Adaugă data și ora substituentului la diapozitivul principal." #. SFrZg #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:132 @@ -6574,7 +6574,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:140 msgctxt "masterlayoutdlg|extended_tip|footer" msgid "Adds a footer placeholder to the master slide." -msgstr "" +msgstr "Adaugă un substituent de subsol la diapozitivul principal pentru note." #. AyWZh #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:152 @@ -6586,7 +6586,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:160 msgctxt "masterlayoutdlg|extended_tip|pagenumber" msgid "Adds a slide number placeholder to the master slide." -msgstr "" +msgstr "Adaugă un substituent pentru numărul de diapozitiv la diapozitivul principal." #. DEikC #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:172 @@ -6604,7 +6604,7 @@ #: 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 "Adaugă sau elimină substituenți pentru antet, subsol, dată și numere de diapozitiv la aspectul diapozitivului master." +msgstr "Adaugă sau elimină substituenți pentru antet, subsol, dată și numere de diapozitiv la dispunerea diapozitivului principal." #. 69Akr #: sd/uiconfig/simpress/ui/mastermenu.ui:12 @@ -6824,13 +6824,13 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:6886 msgctxt "impressnotebookbar|SlideMenuButton" msgid "_Layout" -msgstr "" +msgstr "_Dispunere" #. ArPLp #: sd/uiconfig/simpress/ui/notebookbar.ui:6971 msgctxt "impressnotebookbar|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "~Dispunere" #. vRtjP #: sd/uiconfig/simpress/ui/notebookbar.ui:7435 @@ -7054,13 +7054,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6630 msgctxt "notebookbar_impress_compact|LayoutMenuButton" msgid "Layout" -msgstr "" +msgstr "Dispunere" #. EZeGS #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6682 msgctxt "notebookbar_impress_compact|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "~Dispunere" #. sMsGk #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7197 @@ -7078,13 +7078,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7786 msgctxt "notebookbar_impress_compact|LayoutMenuButton" msgid "_Slide Show" -msgstr "" +msgstr "_Prezentare de diapozitive" #. KAo9c #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7838 msgctxt "notebookbar_impress_compact|LayoutLabel" msgid "~Slide Show" -msgstr "" +msgstr "~Prezentare de diapozitive" #. URjcx #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8670 @@ -7690,7 +7690,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:57 msgctxt "notebookbar_groups|layout02" msgid "Title Slide" -msgstr "Diapozitiv titlu" +msgstr "Diapozitiv de titlu" #. VAnE3 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:65 @@ -7834,7 +7834,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1286 msgctxt "notebookbar_groups|layoutb" msgid "Layout" -msgstr "Aspect" +msgstr "Dispunere" #. mfi7o #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1318 @@ -8218,7 +8218,7 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:290 msgctxt "photoalbum|label7" msgid "Slide layout:" -msgstr "Machetare diapozitive:" +msgstr "Dispunere diapozitiv:" #. AnpSF #: sd/uiconfig/simpress/ui/photoalbum.ui:306 @@ -9891,7 +9891,7 @@ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:141 msgctxt "slidedesigndialog|extended_tip|checkmasters" msgid "Deletes unreferenced background slides and presentation layouts from your document." -msgstr "Șterge diapozitivele de fundal și machetele de prezentare fără referință din document." +msgstr "Șterge diapozitivele de fundal și dispunerile de prezentare fără referință din document." #. zBuXF #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:186 @@ -9903,7 +9903,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 "Afișează dialogul de diapozitive principale disponibile, unde puteți selecta o schemă de aranjament pentru diapozitivul curent. Orice obiecte din design-ul diapozitivului sunt inserate în spatele obiectelor din diapozitivul curent." +msgstr "Afișează dialogul de diapozitive principale disponibile, unde puteți selecta o schemă de dispunere pentru diapozitivul curent. Orice obiecte din design-ul diapozitivului sunt inserate în spatele obiectelor din diapozitivul curent." #. Zr5wz #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:59 diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/svx/messages.po libreoffice-7.5.2~rc2/translations/source/ro/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/ro/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/svx/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-02-18 15:39+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17747,7 +17747,7 @@ #: svx/uiconfig/ui/imapdialog.ui:533 msgctxt "imapdialog|textft" msgid "_Text Alternative:" -msgstr "" +msgstr "Alternativă _textuală:" #. JnaCz #: svx/uiconfig/ui/imapdialog.ui:534 diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/sw/messages.po libreoffice-7.5.2~rc2/translations/source/ro/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/ro/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -7274,7 +7274,7 @@ #: sw/inc/strings.hrc:887 msgctxt "ST_LAYOUT" msgid "Adjust Layout" -msgstr "" +msgstr "Ajustează dispunerea" #. S4p5M #: sw/inc/strings.hrc:888 @@ -8232,19 +8232,19 @@ #: sw/inc/strings.hrc:1092 msgctxt "STR_VIEWLAYOUT_ONE" msgid "Single-page view" -msgstr "Vizualizare o pagină" +msgstr "Vizualizare de o singură pagină" #. 57ju6 #: sw/inc/strings.hrc:1093 msgctxt "STR_VIEWLAYOUT_MULTI" msgid "Multiple-page view" -msgstr "Vizualizare pagini multiple" +msgstr "Vizualizare de pagini multiple" #. tbig8 #: sw/inc/strings.hrc:1094 msgctxt "STR_VIEWLAYOUT_BOOK" msgid "Book view" -msgstr "Previzualizare carte" +msgstr "Vizualizare de carte" #. xBHUG #: sw/inc/strings.hrc:1095 @@ -8572,7 +8572,7 @@ #: sw/inc/strings.hrc:1150 msgctxt "STR_LAYOUT_SPLIT" msgid "Split" -msgstr "Împărțit" +msgstr "Divizat" #. CFmBk #: sw/inc/strings.hrc:1151 @@ -10489,7 +10489,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 "" +msgstr "Afișează o previzualizare a primei înregistrări a bazei de date cu dispunerea curentă de salut." #. HQ7GB #: sw/uiconfig/swriter/ui/addressblockdialog.ui:436 @@ -16071,7 +16071,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:95 msgctxt "frmaddpage|altname_label" msgid "Text _Alternative:" -msgstr "" +msgstr "_Alternativă textuală:" #. WbwXe #: sw/uiconfig/swriter/ui/frmaddpage.ui:96 @@ -16089,13 +16089,13 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:111 msgctxt "frmaddpage|description_label" msgid "Give a longer explanation of the content if it is too complex to be described briefly in “Text Alternative.”" -msgstr "Dați o explicație mai lungă a conținutului dacă este prea complex pentru a fi descris pe scurt în „Alternativă de text”." +msgstr "Dați o explicație mai lungă a conținutului dacă este prea complex pentru a fi descris pe scurt în „Alternativă textuală”." #. rWZei #: sw/uiconfig/swriter/ui/frmaddpage.ui:138 msgctxt "frmaddpage|extended_tip|description" 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.” This text is available for use by assistive technologies. For images, this text is exported with an appropriate tag to HTML and PDF format." -msgstr "Introduceți o descriere mai lungă a obiectului, mai ales dacă obiectul este prea complex sau conține prea multe detalii pentru a fi descris corespunzător cu versiunea scurtă „Alternativă de text”. Acest text este disponibil pentru utilizare de către tehnologiile de asistență. Pentru imagini, acest text este exportat cu o etichetă adecvată în format HTML și PDF." +msgstr "Introduceți o descriere mai lungă a obiectului, mai ales dacă obiectul este prea complex sau conține prea multe detalii pentru a fi descris corespunzător cu versiunea scurtă „Alternativă textuală”. Acest text este disponibil pentru utilizare de către tehnologiile de asistență. Pentru imagini, acest text este exportat cu o etichetă adecvată în format HTML și PDF." #. KwZDj #: sw/uiconfig/swriter/ui/frmaddpage.ui:151 diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/wizards/messages.po libreoffice-7.5.2~rc2/translations/source/ro/wizards/messages.po --- libreoffice-7.5.1~rc2/translations/source/ro/wizards/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/wizards/messages.po 2023-03-24 16:53:38.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-12-12 14:06+0100\n" -"PO-Revision-Date: 2023-02-06 18:33+0000\n" +"PO-Revision-Date: 2023-02-28 22:07+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -434,7 +434,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:102 msgctxt "RID_LETTERWIZARDDIALOG_START_48" msgid "This wizard creates a letter template which enables you to create multiple letters with the same layout and settings." -msgstr "Acest asistent creează un șablon de scrisoare care vă permite să creați mai multe scrisori cu același aspect și aceleași setări." +msgstr "Acest asistent creează un șablon de scrisoare care vă permite să creați mai multe scrisori cu aceeași dispunere și aceleași setări." #. C9EDv #: wizards/com/sun/star/wizards/common/strings.hrc:103 @@ -590,7 +590,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:134 msgctxt "RID_LETTERWIZARDROADMAP_START_2" msgid "Letterhead Layout" -msgstr "Aspectul antetului" +msgstr "Dispunerea antetului scrisorii" #. pbqyP #: wizards/com/sun/star/wizards/common/strings.hrc:135 @@ -752,7 +752,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:163 msgctxt "RID_FAXWIZARDDIALOG_START_23" msgid "This wizard creates a fax template which enables you to create multiple faxes with the same layout and settings." -msgstr "Acest asistent creează un șablon de fax care vă permite să generați mai multe faxuri cu același aspect și aceleași setări." +msgstr "Acest asistent creează un șablon de fax care vă permite să generați mai multe faxuri cu aceeași dispunere și aceleași setări." #. 58yuF #: wizards/com/sun/star/wizards/common/strings.hrc:164 @@ -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 "Acest asistent creează un șablon de agendă care vă permite să creați agende multiple cu același aspect și aceleași setări." +msgstr "Acest asistent creează un șablon de agendă care vă permite să creați agende multiple cu aceeași dispunere și aceleași setări." #. CS6WP #: wizards/com/sun/star/wizards/common/strings.hrc:261 diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/wizards/source/resources.po libreoffice-7.5.2~rc2/translations/source/ro/wizards/source/resources.po --- libreoffice-7.5.1~rc2/translations/source/ro/wizards/source/resources.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/wizards/source/resources.po 2023-03-24 16:53:38.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-12-12 14:06+0100\n" -"PO-Revision-Date: 2023-02-18 15:38+0000\n" +"PO-Revision-Date: 2023-02-28 22:07+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -293,7 +293,7 @@ "RID_REPORT_13\n" "property.text" msgid "Choose layout" -msgstr "Alegeți aspectul" +msgstr "Alegeți dispunerea" #. 45SFZ #: resources_en_US.properties @@ -311,7 +311,7 @@ "RID_REPORT_15\n" "property.text" msgid "Layout of data" -msgstr "Aspectul datelor" +msgstr "Dispunerea datelor" #. HhPzF #: resources_en_US.properties @@ -320,7 +320,7 @@ "RID_REPORT_16\n" "property.text" msgid "Layout of headers and footers" -msgstr "Aspectul anteturilor și subsolurilor" +msgstr "Dispunerea anteturilor și subsolurilor" #. bN2Fw #: resources_en_US.properties @@ -491,7 +491,7 @@ "RID_REPORT_42\n" "property.text" msgid "~Modify report layout" -msgstr "~Modifică aspectul raportului" +msgstr "~Modifică dispunerea raportului" #. BBFba #: resources_en_US.properties diff -Nru libreoffice-7.5.1~rc2/translations/source/ro/writerperfect/messages.po libreoffice-7.5.2~rc2/translations/source/ro/writerperfect/messages.po --- libreoffice-7.5.1~rc2/translations/source/ro/writerperfect/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ro/writerperfect/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,9 +4,9 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-23 11:46+0100\n" -"PO-Revision-Date: 2023-02-06 18:34+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Secară Cristian \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -175,7 +175,7 @@ #: writerperfect/uiconfig/ui/exportepub.ui:174 msgctxt "exportepub|layoutft" msgid "Layout method:" -msgstr "Metodă de aspect:" +msgstr "Metodă de dispunere:" #. Jxiwx #: writerperfect/uiconfig/ui/exportepub.ui:191 diff -Nru libreoffice-7.5.1~rc2/translations/source/ru/cui/messages.po libreoffice-7.5.2~rc2/translations/source/ru/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/ru/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-13 07:33+0000\n" +"PO-Revision-Date: 2023-03-04 13:32+0000\n" "Last-Translator: bormant \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563375554.000000\n" #. GyY9M @@ -12025,7 +12025,7 @@ #: cui/uiconfig/ui/langtoolconfigpage.ui:191 msgctxt "langtoolconfigpage|urldesc" msgid "Please use the base URL, i.e., without “/check” at the end." -msgstr "" +msgstr "Используйте базовый URL, т.е. без «/check» в конце." #. 77oav #: cui/uiconfig/ui/langtoolconfigpage.ui:211 @@ -17430,37 +17430,37 @@ #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "Из системы" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "Светлая" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "Тёмная" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "Задаёт, придерживаться ли системного внешнего вида или заменить на тёмный или светлый." #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "Режим:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "Внешний вид" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 diff -Nru libreoffice-7.5.1~rc2/translations/source/ru/desktop/messages.po libreoffice-7.5.2~rc2/translations/source/ru/desktop/messages.po --- libreoffice-7.5.1~rc2/translations/source/ru/desktop/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/desktop/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2023-02-01 09:32+0000\n" -"Last-Translator: Timon \n" -"Language-Team: Russian \n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" +"Last-Translator: bormant \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.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.5.1~rc2/translations/source/ru/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/ru/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/ru/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/extensions/messages.po 2023-03-24 16:53:38.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-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-02-13 07:33+0000\n" -"Last-Translator: Timon \n" -"Language-Team: Russian \n" +"PO-Revision-Date: 2023-03-04 13:32+0000\n" +"Last-Translator: bormant \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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.5.1~rc2/translations/source/ru/extras/source/autocorr/emoji.po libreoffice-7.5.2~rc2/translations/source/ru/extras/source/autocorr/emoji.po --- libreoffice-7.5.1~rc2/translations/source/ru/extras/source/autocorr/emoji.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/extras/source/autocorr/emoji.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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 11:30+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" "Last-Translator: bormant \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.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.5.1~rc2/translations/source/ru/helpcontent2/source/text/shared/02.po libreoffice-7.5.2~rc2/translations/source/ru/helpcontent2/source/text/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/ru/helpcontent2/source/text/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/helpcontent2/source/text/shared/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-02 12:20+0000\n" +"PO-Revision-Date: 2023-03-04 13:32+0000\n" "Last-Translator: bormant \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.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 "Порядок обхода" #. xGdFi #: 01170600.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ru/helpcontent2/source/text/swriter/01.po libreoffice-7.5.2~rc2/translations/source/ru/helpcontent2/source/text/swriter/01.po --- libreoffice-7.5.1~rc2/translations/source/ru/helpcontent2/source/text/swriter/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/helpcontent2/source/text/swriter/01.po 2023-03-24 16:53:38.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-12-07 19:22+0100\n" -"PO-Revision-Date: 2023-02-12 09:06+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: bormant \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -41,7 +41,7 @@ "par_id1471907\n" "help.text" msgid "Displays a preview of the printed page or closes the preview when in preview mode." -msgstr "" +msgstr "Отображает предварительный просмотр на печатной странице или закрывает режим предварительного просмотра." #. 6qGGk #: 01120000.xhp @@ -50,7 +50,7 @@ "par_id8697470\n" "help.text" msgid "Use the icons on the Print Preview Bar to scroll through the pages of the document or to print the document." -msgstr "" +msgstr "Используйте значки на Панели предварительного просмотра для прокрутки страниц или печати документа." #. 5AeGZ #: 01120000.xhp @@ -104,7 +104,7 @@ "par_id3151187\n" "help.text" msgid "The Mail Merge dialog helps you in printing and saving form letters." -msgstr "" +msgstr "Диалоговое окно Рассылка писем помогает печатать и сохранять письма по форме." #. 28cP8 #: 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 "отправить;структура в буфер обменаструктура;структура в буфер обменабуфер обмена;структура в буфер обмена" #. oqc8G #: 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 @@ -689,7 +689,7 @@ "par_id3149802\n" "help.text" msgid "Shows or hides the Navigator window, where you can quickly jump to different parts of your document. Navigator is also available as a deck of the Sidebar. You can also use the Navigator to insert elements from the current document or other open documents, and to organize master documents. To edit an item in the Navigator, right-click the item, and then choose a command from the context menu. If you want, you can dock the Navigator at the edge of your workspace." -msgstr "" +msgstr "Отображает или скрывает окно Навигатора, в котором можно быстро перейти к различным частям документа. Навигатор также доступен в виде боковой панели. Навигатор также можно использовать для вставки элементов из текущего или других открытых документов, а также для организации мастер-документов. Чтобы изменить элемент в навигаторе, щёлкните его правой кнопкой мыши и выберите команду в контекстном меню. При желании можно закрепить Навигатор на краю рабочей области." #. 3Bt3V #: 02110000.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 @@ -932,7 +932,7 @@ "par_id431603287134620\n" "help.text" msgid "Collapse/Expand All, Send Outline to Clipboard, Outline Folding, Outline Tracking, Outline Level" -msgstr "" +msgstr "Свернуть/Развернуть все, Структуру в буфер обмена, Сворачивание структуры, Отслеживание структуры, Уровень структуры" #. uH7Av #: 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 "Поставить напоминание" #. eDZZh #: 02110000.xhp @@ -1472,7 +1472,7 @@ "par_id3153011\n" "help.text" 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. Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button." -msgstr "Щёлкните здесь, чтобы установить временную закладку в месте нахождения курсора. Можно определить до пяти временных закладкок. Чтобы перейти к закладке, щёлкните значок Навигация, в окне Навигация щёлкните значок Закладка, а затем нажмите кнопку Предыдущая закладка или Следующая закладка.Щёлкните здесь, чтобы установить временную закладку в месте нахождения курсора. Можно определить до пяти временных закладок. Чтобы перейти к закладке, щёлкните значок Навигация, в окне \"Навигация\" щёлкните значок \"Закладка\", а затем нажмите кнопку \"Предыдущая закладка\" или \"Следующая закладка\"." +msgstr "Щёлкните здесь, чтобы поставить напоминание в месте нахождения курсора. Можно задать до пяти напоминаний. Чтобы перейти к напоминанию, щёлкните значок Навигация, в окне Навигация щёлкните значок Напоминание, а затем нажмите кнопку Предыдущий или Следующий. Щёлкните здесь, чтобы поставить напоминание в месте нахождения курсора. Можно задать до пяти напоминаний. Чтобы перейти к напоминанию, щёлкните значок Навигация, в окне «Навигация» щёлкните значок «Напоминание», а затем нажмите кнопку «Предыдущий» или «Следующий»." #. j2jDL #: 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 "Выберите Выключено, чтобы отключить «Отслеживание структуры»." #. HH4Rj #: 02110000.xhp @@ -1922,7 +1922,7 @@ "par_id1001603575103843\n" "help.text" msgid "Using Navigator to Arrange Headings" -msgstr "" +msgstr "Использование Навигатора для упорядочивания заголовков" #. QGQEs #: 02110100.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 "Чтобы изменить представление между именами полей и их содержимым в документе, выберите Вид - Поля." #. HpWj4 #: 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 "Правка сноски/концевой сноски" #. GUKCd #: 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 "Отображает или скрывает затенение полей документа, например неразрывные пробелы, мягкие переносы, указатели и сноски." #. GnaGC #: 03080000.xhp @@ -4244,7 +4244,7 @@ "par_id3153540\n" "help.text" msgid "Formatting Marks On/Off" -msgstr "" +msgstr "Непечатаемые символы" #. 7YNzw #: 03090000.xhp @@ -4253,7 +4253,7 @@ "tit\n" "help.text" msgid "Field Names" -msgstr "Имя поля" +msgstr "Имена полей" #. tu7gA #: 03090000.xhp @@ -4262,7 +4262,7 @@ "hd_id3154505\n" "help.text" msgid "Field Names" -msgstr "" +msgstr "Имена полей" #. j4HCh #: 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 @@ -4343,7 +4343,7 @@ "par_id3147511\n" "help.text" msgid "To specify which formatting marks are displayed, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids, and then select the options that you want in the Display formatting area." -msgstr "" +msgstr "Чтобы задать, какие непечатаемые символы отображать, выберите %PRODUCTNAME - ПараметрыСервис - Параметры - %PRODUCTNAME Writer - Знаки форматирования, а затем выберите нужные параметры в области Показать форматирование." #. k2VJk #: 03120000.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 @@ -4433,7 +4433,7 @@ "par_id3157875\n" "help.text" msgid "To enable this feature, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View, and ensure that the Hidden paragraphs check box in the Display fields area is selected." -msgstr "" +msgstr "Чтобы включить эту функцию, выберите %PRODUCTNAME - ПараметрыСервис - Параметры - %PRODUCTNAME Writer - Вид и убедитесь, что установлен флажок Поля: Скрытые абзацы в области Показать поля." #. X42XM #: 03140000.xhp @@ -4478,7 +4478,7 @@ "hd_id3145827\n" "help.text" msgid "Insert Manual Break" -msgstr "" +msgstr "Вставить разрыв" #. BMEC5 #: 04010000.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 @@ -4766,7 +4766,7 @@ "par_id3155182\n" "help.text" 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 "Вставляет разрыв колонки (при многоколоночной разметке) и перемещает находящийся справа от курсора текст в начало следующей колонки. Разрыв колонки отображается непечатаемой линией в верхней части новой колонки." #. G9g6z #: 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 "Введите новый номер страницы, следующей за разрывом страницы." #. xiSAL #: 04010000.xhp @@ -4874,7 +4874,7 @@ "par_id3150554\n" "help.text" msgid "To display manual breaks, choose View - Nonprinting Characters." -msgstr "" +msgstr "Чтобы отобразить разрывы, выберите Вид - Непечатаемые символы." #. YTDkt #: 04020000.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 "Вставляет текстовый раздел в положение курсора в документе. Можно также выделить блок текста, а затем выбрать эту команду, чтобы создать раздел. Разделы можно использовать для вставки блоков текста из других документов, для применения пользовательской разметки колонок, а также для защиты или скрытия блоков текста при выполнении условия." #. DrsAC #: 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 "Отступы (Разделы)" #. uPQDK #: 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-документе закладки преобразуются в привязки, к которым можно перейти по гиперссылке." #. NHiG3 #: 04040000.xhp @@ -5594,7 +5594,7 @@ "par_id3153677\n" "help.text" msgid "To jump to a specific bookmark, press F5 to open the Navigator, click the plus sign (+) next to the Bookmarks entry, and then double-click the bookmark." -msgstr "" +msgstr "Чтобы перейти к определённой закладке, нажмите F5, чтобы открыть Навигатор, нажмите знак плюс (+) рядом с записью Закладки, а затем дважды щёлкните закладку." #. ATBbv #: 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 @@ -27950,7 +27950,7 @@ "par_idN10559\n" "help.text" msgid "Allows setting various properties on the content control which is under the current cursor." -msgstr "" +msgstr "Позволяет устанавливать различные свойства элемента управления содержимым, находящегося под текущим курсором." #. KgLAd #: contentcontrol00.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,9 +4,9 @@ "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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-02-13 07:33+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" "Last-Translator: bormant \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18494,7 +18494,7 @@ "Label\n" "value.text" msgid "~Find..." -msgstr "Найти" +msgstr "Найти..." #. 3BAcD #: GenericCommands.xcu @@ -22286,7 +22286,7 @@ "Label\n" "value.text" msgid "~Edit Contour..." -msgstr "Правка контуров..." +msgstr "Правка контура..." #. 8NPaD #: GenericCommands.xcu @@ -30326,7 +30326,7 @@ "PopupLabel\n" "value.text" msgid "Reject Change" -msgstr "Отклонить изменение" +msgstr "Отклонить исправление" #. Q84GZ #: WriterCommands.xcu @@ -30366,7 +30366,7 @@ "TooltipLabel\n" "value.text" msgid "Reject All Tracked Changes" -msgstr "Отклонить все изменения" +msgstr "Отклонить все исправления" #. nzLar #: WriterCommands.xcu @@ -30376,7 +30376,7 @@ "PopupLabel\n" "value.text" msgid "Reject All Changes" -msgstr "Отклонить все изменения" +msgstr "Отклонить все исправления" #. 9iqGn #: WriterCommands.xcu @@ -30406,7 +30406,7 @@ "PopupLabel\n" "value.text" msgid "Accept Change" -msgstr "Принять изменение" +msgstr "Принять исправление" #. BMTLL #: WriterCommands.xcu @@ -30446,7 +30446,7 @@ "TooltipLabel\n" "value.text" msgid "Accept All Tracked Changes" -msgstr "Принять все изменения" +msgstr "Принять все исправления" #. VgBB9 #: WriterCommands.xcu @@ -30456,7 +30456,7 @@ "PopupLabel\n" "value.text" msgid "Accept All Changes" -msgstr "Принять все изменения" +msgstr "Принять все исправления" #. kja8B #: WriterCommands.xcu @@ -30586,7 +30586,7 @@ "Label\n" "value.text" msgid "Show Tracked ~Changes" -msgstr "Показать изменения" +msgstr "Показать исправления" #. sMgCx #: WriterCommands.xcu @@ -34796,7 +34796,7 @@ "Label\n" "value.text" msgid "~Field Names" -msgstr "Поля" +msgstr "Имена полей" #. CcnG7 #: WriterCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/ru/readlicense_oo/docs.po libreoffice-7.5.2~rc2/translations/source/ru/readlicense_oo/docs.po --- libreoffice-7.5.1~rc2/translations/source/ru/readlicense_oo/docs.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/readlicense_oo/docs.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "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-01-25 12:36+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" "Last-Translator: bormant \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: 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.5.1~rc2/translations/source/ru/sc/messages.po libreoffice-7.5.2~rc2/translations/source/ru/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/ru/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/sc/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-13 07:33+0000\n" -"Last-Translator: Timon \n" -"Language-Team: Russian \n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" +"Last-Translator: bormant \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29635,7 +29635,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:190 @@ -29665,7 +29665,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 @@ -30139,7 +30139,7 @@ #: sc/uiconfig/scalc/ui/sidebarcellappearance.ui:145 msgctxt "sidebarcellappearance|borderlinestyle-atkobject" msgid "Border Line Style" -msgstr "Стиль обрамления" +msgstr "Стиль линий обрамления" #. CNqCC #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:81 diff -Nru libreoffice-7.5.1~rc2/translations/source/ru/sw/messages.po libreoffice-7.5.2~rc2/translations/source/ru/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/ru/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-13 07:33+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" "Last-Translator: bormant \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2394,7 +2394,7 @@ #: sw/inc/strings.hrc:38 msgctxt "STR_POOLCHR_STANDARD" msgid "No Character Style" -msgstr "Без стиля символа" +msgstr "Без стиля символов" #. iVg2a #: sw/inc/strings.hrc:39 @@ -4188,7 +4188,7 @@ #: sw/inc/strings.hrc:357 msgctxt "STR_EVENT_IMAGE_ABORT" msgid "Image loading terminated" -msgstr "Загрузка изображения остановлена" +msgstr "Загрузка изображения прервана" #. uLNMH #: sw/inc/strings.hrc:358 @@ -11325,13 +11325,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 @@ -12339,7 +12339,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 @@ -14533,7 +14533,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 @@ -14642,7 +14642,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:132 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:150 @@ -14690,7 +14690,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 @@ -14780,7 +14780,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 @@ -15020,7 +15020,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 @@ -29037,7 +29037,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 @@ -29055,13 +29055,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.5.1~rc2/translations/source/ru/swext/mediawiki/help.po libreoffice-7.5.2~rc2/translations/source/ru/swext/mediawiki/help.po --- libreoffice-7.5.1~rc2/translations/source/ru/swext/mediawiki/help.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ru/swext/mediawiki/help.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "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-02-01 09:33+0000\n" -"Last-Translator: Timon \n" -"Language-Team: Russian \n" +"PO-Revision-Date: 2023-03-13 11:32+0000\n" +"Last-Translator: bormant \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.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.5.1~rc2/translations/source/sk/accessibility/messages.po libreoffice-7.5.2~rc2/translations/source/sk/accessibility/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/accessibility/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/accessibility/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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:35+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.5.1~rc2/translations/source/sk/avmedia/messages.po libreoffice-7.5.2~rc2/translations/source/sk/avmedia/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/avmedia/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/avmedia/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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:35+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.5.1~rc2/translations/source/sk/basctl/messages.po libreoffice-7.5.2~rc2/translations/source/sk/basctl/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/basctl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/basctl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-24 12: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" @@ -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.5.1~rc2/translations/source/sk/basic/messages.po libreoffice-7.5.2~rc2/translations/source/sk/basic/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/basic/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/basic/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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:35+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.5.1~rc2/translations/source/sk/chart2/messages.po libreoffice-7.5.2~rc2/translations/source/sk/chart2/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/chart2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/chart2/messages.po 2023-03-24 16:53:38.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-11-22 14:43+0100\n" -"PO-Revision-Date: 2023-01-02 06:38+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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: 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" @@ -469,25 +469,25 @@ #: chart2/inc/strings.hrc:84 msgctxt "STR_OBJECT_CURVE" msgid "Trend Line" -msgstr "Regresná krivka" +msgstr "Trendová čiara" #. 8miGx #: chart2/inc/strings.hrc:85 msgctxt "STR_OBJECT_CURVES" msgid "Trend Lines" -msgstr "Regresné krivky" +msgstr "Trendové čiary" #. 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á čiara %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á čiara kĺzavého priemeru s periódou = %PERIOD" #. mcMQC #: chart2/inc/strings.hrc:88 @@ -857,7 +857,7 @@ #: chart2/inc/strings.hrc:148 msgctxt "STR_DATA_TABLE" msgid "Data Table" -msgstr "Tabuľka dát" +msgstr "Tabuľka s dátami" #. TuRxr #: chart2/inc/strings.hrc:150 @@ -977,7 +977,7 @@ #: chart2/inc/strings.hrc:170 msgctxt "STR_LINES_ONLY" msgid "Lines Only" -msgstr "Iba čiary" +msgstr "Len čiary" #. AAEA2 #: chart2/inc/strings.hrc:171 @@ -1601,7 +1601,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 @@ -1613,7 +1613,7 @@ #: chart2/uiconfig/ui/dlg_InsertDataTable.ui:8 msgctxt "dlg_InsertDataTable|dlg_InsertDataTable" msgid "Data Table" -msgstr "Tabuľka dát" +msgstr "Tabuľka s dátami" #. SBrCL #: chart2/uiconfig/ui/dlg_InsertDataTable.ui:85 @@ -1769,7 +1769,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é čiary." #. 6YgbM #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:336 @@ -1781,7 +1781,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é čiary." #. fkKQH #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:393 @@ -1859,7 +1859,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 @@ -2465,7 +2465,7 @@ #: chart2/uiconfig/ui/sidebarelements.ui:419 msgctxt "sidebarelements|text_title" msgid "Title" -msgstr "Názvy" +msgstr "Názov" #. jXGDE #: chart2/uiconfig/ui/sidebarelements.ui:432 @@ -2621,7 +2621,7 @@ #: chart2/uiconfig/ui/sidebarseries.ui:71 msgctxt "sidebarseries|checkbutton_trendline" msgid "Show trendline" -msgstr "Zobraziť trendovú čiara" +msgstr "Zobraziť trendovú čiaru" #. FFPa2 #: chart2/uiconfig/ui/sidebarseries.ui:92 @@ -4253,7 +4253,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 @@ -4265,7 +4265,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 @@ -4343,7 +4343,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 @@ -4697,7 +4697,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 @@ -5021,43 +5021,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 @@ -5069,7 +5069,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 @@ -5135,7 +5135,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 @@ -5189,7 +5189,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 @@ -5207,7 +5207,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 @@ -5219,7 +5219,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 @@ -5339,7 +5339,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 @@ -5513,7 +5513,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.5.1~rc2/translations/source/sk/connectivity/messages.po libreoffice-7.5.2~rc2/translations/source/sk/connectivity/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/connectivity/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/connectivity/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-24 12: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: 1537729845.000000\n" #. 9KHB8 @@ -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.5.1~rc2/translations/source/sk/cui/messages.po libreoffice-7.5.2~rc2/translations/source/sk/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-22 18:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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" @@ -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" @@ -1147,7 +1147,7 @@ #: cui/inc/strings.hrc:201 msgctxt "RID_SVXSTR_GALLERY_READONLY" msgid "(read-only)" -msgstr "(iba na čítanie)" +msgstr "(len na čítanie)" #. sAwgA #: cui/inc/strings.hrc:202 @@ -1195,7 +1195,7 @@ #: cui/inc/strings.hrc:211 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:212 @@ -2055,7 +2055,7 @@ #: cui/inc/strings.hrc:382 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:383 @@ -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 @@ -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 @@ -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 @@ -3266,7 +3266,7 @@ #: cui/inc/tipoftheday.hrc:230 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:231 @@ -3612,7 +3612,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 @@ -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 @@ -5512,7 +5512,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 @@ -5716,7 +5716,7 @@ #: cui/uiconfig/ui/borderpage.ui:537 msgctxt "borderpage|label22" msgid "_Position:" -msgstr "_Umiestnenie:" +msgstr "_Poloha:" #. 8ojCs #: cui/uiconfig/ui/borderpage.ui:551 @@ -6226,7 +6226,7 @@ #: cui/uiconfig/ui/calloutpage.ui:190 msgctxt "calloutpage|positionft" msgid "_Position:" -msgstr "_Umiestnenie:" +msgstr "_Poloha:" #. EXWoL #: cui/uiconfig/ui/calloutpage.ui:204 @@ -6274,19 +6274,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 @@ -6442,7 +6442,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 @@ -8006,13 +8006,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 @@ -8390,7 +8390,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 @@ -8822,13 +8822,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 @@ -8894,7 +8894,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 @@ -9296,7 +9296,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:486 msgctxt "fmsearchdialog|ftPosition" msgid "_Position:" -msgstr "_Umiestnenie:" +msgstr "_Poloha:" #. BLRj3 #: cui/uiconfig/ui/fmsearchdialog.ui:504 @@ -9524,7 +9524,7 @@ #: cui/uiconfig/ui/formatcellsdialog.ui:172 msgctxt "formatcellsdialog|position" msgid "Position" -msgstr "Umiestnenie" +msgstr "Poloha" #. CxV6A #: cui/uiconfig/ui/formatcellsdialog.ui:196 @@ -9849,7 +9849,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 @@ -10197,7 +10197,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 @@ -10209,7 +10209,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 @@ -10443,7 +10443,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 @@ -10479,7 +10479,7 @@ #: cui/uiconfig/ui/hatchpage.ui:163 msgctxt "hatchpage|distanceft" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. 5Psyb #: cui/uiconfig/ui/hatchpage.ui:182 @@ -10761,7 +10761,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 @@ -10917,7 +10917,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 @@ -11031,7 +11031,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 @@ -11085,7 +11085,7 @@ #: cui/uiconfig/ui/hyperlinkmarkdialog.ui:49 msgctxt "hyperlinkmarkdialog|close" msgid "_Close" -msgstr "_Zatvoriť" +msgstr "_Zavrieť" #. CLEQK #: cui/uiconfig/ui/hyperlinkmarkdialog.ui:56 @@ -11205,7 +11205,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 @@ -11301,13 +11301,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 @@ -11359,7 +11359,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 @@ -11551,7 +11551,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 @@ -12157,7 +12157,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 @@ -12603,13 +12603,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 @@ -12675,7 +12675,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 @@ -13777,7 +13777,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:93 msgctxt "objecttitledescdialog|object_title_label" msgid "_Text Alternative:" -msgstr "Alter_natívny text:" +msgstr "_Alternatívny text:" #. Gqfxb #: cui/uiconfig/ui/objecttitledescdialog.ui:113 @@ -13831,7 +13831,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 @@ -13903,7 +13903,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:198 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:210 @@ -14131,7 +14131,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 @@ -14173,13 +14173,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 @@ -14837,7 +14837,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 @@ -14867,7 +14867,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 @@ -14921,7 +14921,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 @@ -15275,7 +15275,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 @@ -15593,7 +15593,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 @@ -17725,13 +17725,13 @@ #: cui/uiconfig/ui/pageformatpage.ui:573 msgctxt "pageformatpage|liststorePageLayout" msgid "Only right" -msgstr "Iba vpravo" +msgstr "Len vpravo" #. ALSy9 #: cui/uiconfig/ui/pageformatpage.ui:574 msgctxt "pageformatpage|liststorePageLayout" msgid "Only left" -msgstr "Iba vľavo" +msgstr "Len vľavo" #. Fhvzk #: cui/uiconfig/ui/pageformatpage.ui:596 @@ -17804,7 +17804,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:726 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:753 @@ -18231,13 +18231,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 @@ -21247,7 +21247,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.5.1~rc2/translations/source/sk/dbaccess/messages.po libreoffice-7.5.2~rc2/translations/source/sk/dbaccess/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/dbaccess/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/dbaccess/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-25 13:48+0100\n" -"PO-Revision-Date: 2022-12-07 12:12+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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: 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ľúč?" @@ -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 @@ -4044,7 +4044,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 @@ -4716,7 +4716,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 @@ -4740,7 +4740,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.5.1~rc2/translations/source/sk/desktop/messages.po libreoffice-7.5.2~rc2/translations/source/sk/desktop/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/desktop/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/desktop/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2022-11-14 08:16+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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: 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" diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/editeng/messages.po libreoffice-7.5.2~rc2/translations/source/sk/editeng/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/editeng/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/editeng/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-14 14:35+0100\n" -"PO-Revision-Date: 2022-11-25 12:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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 @@ -1750,7 +1750,7 @@ #: include/editeng/editrids.hrc:309 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:311 diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/sk/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/extensions/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-24 12:35+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" @@ -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 @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/filter/messages.po libreoffice-7.5.2~rc2/translations/source/sk/filter/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/filter/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/filter/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 13:11+0100\n" -"PO-Revision-Date: 2022-12-09 18:35+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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 @@ -320,7 +320,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -360,7 +360,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -737,7 +737,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 @@ -809,7 +809,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 @@ -1451,7 +1451,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/forms/messages.po libreoffice-7.5.2~rc2/translations/source/sk/forms/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/forms/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/forms/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: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: 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.5.1~rc2/translations/source/sk/formula/messages.po libreoffice-7.5.2~rc2/translations/source/sk/formula/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/formula/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/formula/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 17:45+0100\n" -"PO-Revision-Date: 2023-01-02 06:38+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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: 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" diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/fpicker/messages.po libreoffice-7.5.2~rc2/translations/source/sk/fpicker/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/fpicker/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/fpicker/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-24 12: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: 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 diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/framework/messages.po libreoffice-7.5.2~rc2/translations/source/sk/framework/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/framework/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/framework/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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:35+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.5.1~rc2/translations/source/sk/helpcontent2/source/auxiliary.po libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/auxiliary.po --- libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/auxiliary.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/auxiliary.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2021-12-29 05:38+0000\n" +"PO-Revision-Date: 2023-03-08 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: 1532005060.000000\n" #. fEEXD @@ -131,7 +131,7 @@ "070203\n" "node.text" msgid "Python Modules" -msgstr "" +msgstr "Moduly Pythonu" #. JCHAg #: sbasic.tree @@ -167,7 +167,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 @@ -221,7 +221,7 @@ "0806\n" "node.text" msgid "Filtering and Sorting" -msgstr "Filtrovanie a radenie" +msgstr "Filtrovanie a zoraďovanie" #. yCyBs #: scalc.tree @@ -392,7 +392,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 @@ -437,7 +437,7 @@ "1105\n" "node.text" msgid "Printing" -msgstr "Tlačenie" +msgstr "Tlač" #. G8GoF #: sdraw.tree @@ -581,7 +581,7 @@ "100510\n" "node.text" msgid "Document Converter Wizard" -msgstr "Sprievodca prevodom dokumentov" +msgstr "Sprievodca konverziou dokumentov" #. zhnAF #: shared.tree @@ -590,7 +590,7 @@ "1006\n" "node.text" msgid "Configuring %PRODUCTNAME" -msgstr "Nastavenie %PRODUCTNAME" +msgstr "Konfigurácia %PRODUCTNAME" #. 2rp8T #: shared.tree @@ -743,7 +743,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 @@ -806,7 +806,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 @@ -869,7 +869,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 @@ -905,7 +905,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/sbasic/shared/01.po libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/sbasic/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/sbasic/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/sbasic/shared/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2020-09-26 19:35+0000\n" +"PO-Revision-Date: 2023-03-08 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: 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.5.1~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-08 19:46+0100\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: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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542031572.000000\n" #. sZfWF @@ -3461,7 +3461,7 @@ "hd_id3150541\n" "help.text" msgid "Insert Rows" -msgstr "Vložiť" +msgstr "Vložiť" #. CMEAW #: 04030000.xhp @@ -3533,7 +3533,7 @@ "hd_id3155628\n" "help.text" msgid "Insert Columns" -msgstr "Riadky" +msgstr "Riadky" #. RMPZG #: 04040000.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/scalc.po libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/scalc.po --- libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/scalc.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/scalc.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2020-11-14 15:35+0000\n" +"PO-Revision-Date: 2023-03-08 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: 1494406132.000000\n" #. ZxQeC @@ -707,7 +707,7 @@ "hd_id3150792\n" "help.text" msgid "Move or Copy Sheet" -msgstr "Zmazať bunky" +msgstr "Presunúť alebo kopírovať hárok" #. 6pEDF #: main0116.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/sdatabase.po libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/sdatabase.po --- libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/sdatabase.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/sdatabase.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-01-10 11:44+0000\n" +"PO-Revision-Date: 2023-03-07 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" #. ugSgG #: 02000000.xhp @@ -10237,7 +10237,7 @@ "par_idN105F8\n" "help.text" msgid "Email Document" -msgstr "" +msgstr "Odoslať e-mailom" #. Qxg2W #: menufile.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po --- libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\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: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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542197408.000000\n" #. 3u8hR @@ -15314,7 +15314,7 @@ "hd_id3152937\n" "help.text" msgid "Special Character" -msgstr "Nový" +msgstr "Nový" #. CBACQ #: 04100000.xhp @@ -32252,7 +32252,7 @@ "hd_id3145068\n" "help.text" msgid "Exit Group" -msgstr "Zoskupiť" +msgstr "Zoskupiť" #. zUUQd #: 05290100.xhp @@ -33368,7 +33368,7 @@ "hd_id3154545\n" "help.text" msgid "Alignment" -msgstr "Formát" +msgstr "Formát" #. XFgHs #: 05340300.xhp @@ -37670,7 +37670,7 @@ "hd_id3156324\n" "help.text" msgid "Color Replacer" -msgstr "Panel farieb" +msgstr "Panel farieb" #. tQEGW #: 06030000.xhp @@ -41171,7 +41171,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 @@ -41324,7 +41324,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 @@ -52907,7 +52907,7 @@ "tit\n" "help.text" msgid "Email as PDF" -msgstr "" +msgstr "Odoslať e-mailom ako PDF" #. jUMVz #: ref_pdf_send_as.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/shared/02.po libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/shared/02.po --- libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/shared/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/shared/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2020-10-16 15:35+0000\n" +"PO-Revision-Date: 2023-03-08 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: 1542031577.000000\n" #. Edm6o @@ -9392,7 +9392,7 @@ "hd_id3143284\n" "help.text" msgid "Form Navigator" -msgstr "Ovládacie prvky formulára" +msgstr "Ovládacie prvky formulára" #. mMGrA #: 01170600.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/swriter/01.po libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/swriter/01.po --- libreoffice-7.5.1~rc2/translations/source/sk/helpcontent2/source/text/swriter/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/helpcontent2/source/text/swriter/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2020-10-26 21:35+0000\n" -"Last-Translator: serval2412 \n" -"Language-Team: Slovak \n" +"PO-Revision-Date: 2023-03-21 06: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: 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.5.1~rc2/translations/source/sk/librelogo/source/pythonpath.po libreoffice-7.5.2~rc2/translations/source/sk/librelogo/source/pythonpath.po --- libreoffice-7.5.1~rc2/translations/source/sk/librelogo/source/pythonpath.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/librelogo/source/pythonpath.po 2023-03-24 16:53:38.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-03-07 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: 1492518918.000000\n" #. tFoAo @@ -1130,7 +1130,7 @@ "VIOLET\n" "property.text" msgid "violet" -msgstr "Fialová" +msgstr "fialová" #. TUvm5 #: LibreLogo_en_US.properties diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:44+0100\n" -"PO-Revision-Date: 2022-12-19 14:09+0000\n" +"PO-Revision-Date: 2023-03-23 20: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: 1565181316.000000\n" #. W5ukN @@ -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 @@ -9504,7 +9504,7 @@ "Label\n" "value.text" msgid "Master Page..." -msgstr "Predloha stránky..." +msgstr "Predloha strany..." #. RxHFo #: DrawImpressCommands.xcu @@ -9574,7 +9574,7 @@ "Label\n" "value.text" msgid "D~elete Page" -msgstr "~Odstrániť stranku" +msgstr "~Odstrániť stranu" #. DtBGJ #: DrawImpressCommands.xcu @@ -10124,7 +10124,7 @@ "Label\n" "value.text" msgid "Line Contour Only" -msgstr "Iba obrys" +msgstr "Len obrys" #. C7GKX #: DrawImpressCommands.xcu @@ -11304,7 +11304,7 @@ "Label\n" "value.text" msgid "Title Only" -msgstr "Iba nadpis" +msgstr "Len nadpis" #. UcRbT #: DrawImpressCommands.xcu @@ -11314,7 +11314,7 @@ "Label\n" "value.text" msgid "Title Slide" -msgstr "Titulná snímka" +msgstr "Úvodná snímka" #. BxPRH #: DrawImpressCommands.xcu @@ -20216,7 +20216,7 @@ "Label\n" "value.text" msgid "Move Up" -msgstr "Presunúť vyššie" +msgstr "Presunúť nahor" #. J83AS #: GenericCommands.xcu @@ -20246,7 +20246,7 @@ "Label\n" "value.text" msgid "Move Down" -msgstr "Presunúť nižšie" +msgstr "Presunúť nadol" #. ZEVXU #: GenericCommands.xcu @@ -20366,7 +20366,7 @@ "Label\n" "value.text" msgid "Show Only First Level" -msgstr "Zobraziť iba prvú úroveň" +msgstr "Zobraziť len prvú úroveň" #. WQgCm #: GenericCommands.xcu @@ -20406,7 +20406,7 @@ "Label\n" "value.text" msgid "Read Only Mode" -msgstr "Režim iba na čítanie" +msgstr "Režim len na čítanie" #. WAXps #: GenericCommands.xcu @@ -21066,7 +21066,7 @@ "Label\n" "value.text" msgid "~XML Filter Settings..." -msgstr "Nastavenia ~XML filtra..." +msgstr "Nastavenie ~XML filtra..." #. mPdwa #: GenericCommands.xcu @@ -21116,7 +21116,7 @@ "Label\n" "value.text" msgid "Combo Box" -msgstr "Rozbaľovacie pole" +msgstr "Pole so zoznamom" #. EMNG9 #: GenericCommands.xcu @@ -23716,7 +23716,7 @@ "ContextLabel\n" "value.text" msgid "~Export as PDF..." -msgstr "Exportovať do P~DF..." +msgstr "Exportovať ako P~DF..." #. FnRm4 #: GenericCommands.xcu @@ -23746,7 +23746,7 @@ "ContextLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "Exportovať priamo do PDF" +msgstr "Exportovať priamo ako PDF" #. JCirv #: GenericCommands.xcu @@ -23756,7 +23756,7 @@ "TooltipLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "Exportovať priamo do PDF" +msgstr "Exportovať priamo ako PDF" #. LrSFu #: GenericCommands.xcu @@ -24366,7 +24366,7 @@ "Label\n" "value.text" msgid "Combo Box" -msgstr "Rozbaľovacie pole" +msgstr "Pole so zoznamom" #. ZAc85 #: GenericCommands.xcu @@ -26306,7 +26306,7 @@ "ContextLabel\n" "value.text" msgid "Anc~hor" -msgstr "U~kotvenie" +msgstr "U~kotviť" #. CLNpa #: GenericCommands.xcu @@ -29156,7 +29156,7 @@ "Title\n" "value.text" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. V5auD #: Sidebar.xcu @@ -30086,7 +30086,7 @@ "Label\n" "value.text" msgid "He~ader" -msgstr "~Záhlavie" +msgstr "~Hlavička" #. GstET #: WriterCommands.xcu @@ -31666,7 +31666,7 @@ "Label\n" "value.text" msgid "Appl~y" -msgstr "Opraviť ~celý dokument" +msgstr "_Použiť" #. EV2yB #: WriterCommands.xcu @@ -32146,7 +32146,7 @@ "Label\n" "value.text" msgid "~Page Style..." -msgstr "Štýly st~rany..." +msgstr "Štýl st~rany..." #. 8aUD6 #: WriterCommands.xcu @@ -32186,7 +32186,7 @@ "Label\n" "value.text" msgid "Drop Caps" -msgstr "Iniciálky" +msgstr "Iniciály" #. 26bn9 #: WriterCommands.xcu @@ -34786,7 +34786,7 @@ "Label\n" "value.text" msgid "Calculat~e" -msgstr "S~počítať" +msgstr "Vy~počítať" #. AjNLg #: WriterCommands.xcu @@ -35816,7 +35816,7 @@ "TooltipLabel\n" "value.text" msgid "Quotation Character Style" -msgstr "Citácia" +msgstr "Znakový štýl Citácia" #. 9LD4r #: WriterCommands.xcu @@ -36666,7 +36666,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. nCSvk #: WriterFormWindowState.xcu @@ -37146,7 +37146,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. v45LV #: WriterGlobalWindowState.xcu @@ -37666,7 +37666,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. 5GFnw #: WriterReportWindowState.xcu @@ -37966,7 +37966,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. gaswH #: WriterWebWindowState.xcu @@ -38626,7 +38626,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. Tgtuj #: WriterWindowState.xcu @@ -39276,7 +39276,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. URXoj #: XFormsWindowState.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/oox/messages.po libreoffice-7.5.2~rc2/translations/source/sk/oox/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/oox/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/oox/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: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" #. 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.5.1~rc2/translations/source/sk/readlicense_oo/docs.po libreoffice-7.5.2~rc2/translations/source/sk/readlicense_oo/docs.po --- libreoffice-7.5.1~rc2/translations/source/sk/readlicense_oo/docs.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/readlicense_oo/docs.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-25 12:36+0100\n" -"PO-Revision-Date: 2021-12-12 19:38+0000\n" +"PO-Revision-Date: 2023-03-07 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: 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.5.1~rc2/translations/source/sk/reportdesign/messages.po libreoffice-7.5.2~rc2/translations/source/sk/reportdesign/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/reportdesign/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/reportdesign/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-24 12:35+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" diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/sc/messages.po libreoffice-7.5.2~rc2/translations/source/sk/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/sc/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-02 06:38+0000\n" +"PO-Revision-Date: 2023-03-24 12: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: 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 @@ -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 @@ -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 @@ -17090,7 +17090,7 @@ #: sc/inc/strings.hrc:113 msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY" msgid "(read-only)" -msgstr "(iba na čítanie)" +msgstr "(len na čítanie)" #. fDxgL #: sc/inc/strings.hrc:114 @@ -18482,7 +18482,7 @@ #: sc/inc/strings.hrc:367 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 @@ -18869,7 +18869,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 @@ -19235,7 +19235,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 @@ -19311,7 +19311,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'." @@ -21101,7 +21101,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 @@ -21239,7 +21239,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 @@ -21449,7 +21449,7 @@ #: sc/uiconfig/scalc/ui/dataform.ui:37 msgctxt "dataform|close" msgid "_Close" -msgstr "_Zatvoriť" +msgstr "_Zavrieť" #. gbAzv #: sc/uiconfig/scalc/ui/dataform.ui:166 @@ -21923,7 +21923,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 @@ -22193,7 +22193,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 @@ -22205,7 +22205,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 @@ -22217,7 +22217,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 @@ -22229,7 +22229,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 @@ -22775,7 +22775,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 @@ -22823,7 +22823,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 @@ -23903,7 +23903,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 @@ -23963,7 +23963,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 @@ -25237,7 +25237,7 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:11646 msgctxt "CalcNotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. EjbzV #: sc/uiconfig/scalc/ui/notebookbar.ui:12827 @@ -25442,7 +25442,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10095 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. 8eQN8 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11465 @@ -25647,7 +25647,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 @@ -25957,7 +25957,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 @@ -26863,7 +26863,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 @@ -27217,7 +27217,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 @@ -27379,7 +27379,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 @@ -27631,7 +27631,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 @@ -27697,7 +27697,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 @@ -27721,7 +27721,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 "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 @@ -27913,7 +27913,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 @@ -29569,7 +29569,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 @@ -30325,7 +30325,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 @@ -30685,7 +30685,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 @@ -30709,7 +30709,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 @@ -31093,7 +31093,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 @@ -31249,7 +31249,7 @@ #: sc/uiconfig/scalc/ui/sparklinedialog.ui:739 msgctxt "SparklineDialog|option_MaxAxis_Group" msgid "Group" -msgstr "Zoskupené" +msgstr "Zoskupiť" #. C2Huq #: sc/uiconfig/scalc/ui/sparklinedialog.ui:740 @@ -31783,7 +31783,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 @@ -32455,7 +32455,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 @@ -32503,7 +32503,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/scaddins/messages.po libreoffice-7.5.2~rc2/translations/source/sk/scaddins/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/scaddins/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/scaddins/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-14 14:36+0100\n" -"PO-Revision-Date: 2022-11-25 12:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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: 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 @@ -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.5.1~rc2/translations/source/sk/sccomp/messages.po libreoffice-7.5.2~rc2/translations/source/sk/sccomp/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/sccomp/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/sccomp/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: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: 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.5.1~rc2/translations/source/sk/scp2/source/ooo.po libreoffice-7.5.2~rc2/translations/source/sk/scp2/source/ooo.po --- libreoffice-7.5.1~rc2/translations/source/sk/scp2/source/ooo.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/scp2/source/ooo.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-11-14 08:17+0000\n" +"PO-Revision-Date: 2023-03-07 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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560237206.000000\n" #. CYBGJ @@ -5369,7 +5369,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 @@ -5423,7 +5423,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.5.1~rc2/translations/source/sk/sd/messages.po libreoffice-7.5.2~rc2/translations/source/sk/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/sd/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:12+0100\n" -"PO-Revision-Date: 2023-01-02 06:38+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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: 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 @@ -1959,7 +1959,7 @@ #: 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 @@ -2573,7 +2573,7 @@ #: sd/inc/strings.hrc:396 msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. CCwKy #: sd/inc/strings.hrc:397 @@ -2591,7 +2591,7 @@ #: sd/inc/strings.hrc:399 msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY" msgid "(read-only)" -msgstr "(iba na čítanie)" +msgstr "(len na čítanie)" #. EV4W5 #: sd/inc/strings.hrc:401 @@ -3815,7 +3815,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:321 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:5700 msgctxt "drawnotebookbar|InsertLabel" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. TVDXM #: sd/uiconfig/sdraw/ui/notebookbar.ui:6400 @@ -3965,7 +3965,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:10646 msgctxt "drawnotebookbar|TableLabel" msgid "~Table" -msgstr "T~abuľka" +msgstr "~Tabuľka" #. ECD4J #: sd/uiconfig/sdraw/ui/notebookbar.ui:11173 @@ -3979,13 +3979,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:11841 msgctxt "drawnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "O_brázok" +msgstr "_Obrázok" #. 7FoFi #: sd/uiconfig/sdraw/ui/notebookbar.ui:11950 msgctxt "drawnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. 6SADm #: sd/uiconfig/sdraw/ui/notebookbar.ui:13701 @@ -4015,7 +4015,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:15248 msgctxt "drawnotebookbar|MediaMenuButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. ed3LH #: sd/uiconfig/sdraw/ui/notebookbar.ui:15352 @@ -4039,13 +4039,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:17031 msgctxt "DrawNotebookbar|FormMenuButton" msgid "3_d" -msgstr "_3D" +msgstr "3_D" #. fEyRX #: sd/uiconfig/sdraw/ui/notebookbar.ui:17138 msgctxt "DrawNotebookbar|FormLabel" msgid "3~d" -msgstr "~3D" +msgstr "3~D" #. 7ZLQw #: sd/uiconfig/sdraw/ui/notebookbar.ui:17662 @@ -4177,13 +4177,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10852 msgctxt "notebookbar_draw_compact|TableMenuButton" msgid "T_able" -msgstr "T_abuľka" +msgstr "_Tabuľka" #. GEmbu #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10903 msgctxt "notebookbar_draw_compact|TableLabel" msgid "~Table" -msgstr "T~abuľka" +msgstr "~Tabuľka" #. EGCcN #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12252 @@ -4195,7 +4195,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12304 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. CezAN #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14138 @@ -4225,13 +4225,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16393 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. dAbX4 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16447 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" -msgstr "~Multimédiá" +msgstr "~Médiá" #. SCSH8 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17684 @@ -4261,13 +4261,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19274 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" -msgstr "_3D" +msgstr "3_D" #. ZCuDe #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19329 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" -msgstr "~3D" +msgstr "3~D" #. YpLRj #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19408 @@ -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 @@ -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:264 @@ -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 @@ -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:243 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:266 @@ -6782,7 +6782,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:6111 msgctxt "impressnotebookbar|InsertLabel" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. 58fjG #: sd/uiconfig/simpress/ui/notebookbar.ui:6886 @@ -6806,7 +6806,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:7519 msgctxt "impressnotebookbar|ReferencesLabel" msgid "~Slide Show" -msgstr "Pr~ezentácia" +msgstr "~Prezentácia" #. sDdGm #: sd/uiconfig/simpress/ui/notebookbar.ui:8055 @@ -6842,7 +6842,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:10420 msgctxt "impressnotebookbar|TableLabel" msgid "~Table" -msgstr "T~abuľka" +msgstr "~Tabuľka" #. Cn8TS #: sd/uiconfig/simpress/ui/notebookbar.ui:10945 @@ -6850,19 +6850,19 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:14011 msgctxt "impressnotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "Previesť" +msgstr "Konvertovať" #. do5DT #: sd/uiconfig/simpress/ui/notebookbar.ui:11615 msgctxt "impressnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "O_brázok" +msgstr "_Obrázok" #. XCSMA #: sd/uiconfig/simpress/ui/notebookbar.ui:11724 msgctxt "impressnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. nTy3C #: sd/uiconfig/simpress/ui/notebookbar.ui:13426 @@ -6892,7 +6892,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:14975 msgctxt "impressnotebookbar|MediaMenuButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. GgHEg #: sd/uiconfig/simpress/ui/notebookbar.ui:15079 @@ -6940,13 +6940,13 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:18531 msgctxt "impressnotebookbar|FormMenuButton" msgid "3_d" -msgstr "3_d" +msgstr "3_D" #. xwrog #: sd/uiconfig/simpress/ui/notebookbar.ui:18638 msgctxt "impressnotebookbar|FormLabel" msgid "3~d" -msgstr "3~d" +msgstr "3~D" #. syaDA #: sd/uiconfig/simpress/ui/notebookbar.ui:18695 @@ -7012,7 +7012,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5844 msgctxt "notebookbar_impress_compact|InsertLabel" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. zEEiz #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6630 @@ -7066,7 +7066,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10406 msgctxt "notebookbar_impress_compact|TableMenuButton" msgid "T_able" -msgstr "T_abuľka" +msgstr "_Tabuľka" #. mnepU #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10457 @@ -7078,13 +7078,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11804 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" -msgstr "Obraz" +msgstr "Obrázok" #. wD2ow #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11859 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" -msgstr "O~bráz" +msgstr "_Obrázok" #. ZqPYr #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13634 @@ -7114,13 +7114,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15878 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. HbptL #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15929 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" -msgstr "~Multimédiá" +msgstr "~Médiá" #. NNqQ2 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17166 @@ -7150,13 +7150,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18982 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" -msgstr "3_d" +msgstr "3_D" #. ntfL7 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19034 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" -msgstr "3~d" +msgstr "3~D" #. ntjaC #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19113 @@ -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 @@ -8282,7 +8282,7 @@ #: sd/uiconfig/simpress/ui/pmintropage.ui:73 msgctxt "pmintropage:STR_REMOVE" msgid "_Delete" -msgstr "_Odstrániť" +msgstr "_Zmazať" #. NPMR9 #: sd/uiconfig/simpress/ui/pmintropage.ui:95 @@ -9374,13 +9374,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 @@ -9656,7 +9656,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 @@ -9710,7 +9710,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 @@ -9920,7 +9920,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.5.1~rc2/translations/source/sk/sfx2/messages.po libreoffice-7.5.2~rc2/translations/source/sk/sfx2/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/sfx2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/sfx2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-09 11:30+0100\n" -"PO-Revision-Date: 2022-12-21 15:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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 @@ -427,7 +427,7 @@ #: 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 @@ -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 @@ -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 @@ -1838,7 +1838,7 @@ #: include/sfx2/strings.hrc:326 msgctxt "STR_TEMPLATE_NAME26" msgid "Default" -msgstr "Prednastavené" +msgstr "Predvolené" #. d7Hyk #: include/sfx2/strings.hrc:327 @@ -1892,7 +1892,7 @@ #: include/sfx2/strings.hrc:336 msgctxt "STR_CLEAR_ALL_CHAR" msgid "Clear All" -msgstr "Všetko zmazať" +msgstr "Odstrániť všetko" #. yC8Gs #: include/sfx2/strings.hrc:338 @@ -2044,7 +2044,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -2084,7 +2084,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -2403,7 +2403,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 @@ -2751,13 +2751,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 @@ -2823,7 +2823,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 @@ -2871,7 +2871,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 @@ -3659,19 +3659,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 @@ -3707,7 +3707,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 @@ -3749,7 +3749,7 @@ msgstr "" "%PRODUCTNAME je k dispozícii za podmienok licencie Mozilla Public License, v. 2.0, ktorej kópiu nájdete na stránke http://mozilla.org/MPL/2.0/.\n" "\n" -"Doplnkové údaje o autorských právach a licenčných podmienkach tretích strán vzťahujúcich sa na časti tohto programu nájdete v súbore LICENSE.html. Ak sa chcete zoznámiť s detailmi, zvoľte možnosť Zobraziť licenciu (informácie iba v angličtine)\n" +"Doplnkové údaje o autorských právach a licenčných podmienkach tretích strán vzťahujúcich sa na časti tohto programu nájdete v súbore LICENSE.html. Ak sa chcete zoznámiť s detailmi, zvoľte možnosť Zobraziť licenciu (informácie len v angličtine)\n" "\n" "Všetky ochranné známky a registrované ochranné známky, ktoré sú tu spomenuté, sú majetkom ich vlastníkov.\n" "\n" @@ -4331,7 +4331,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 @@ -4433,13 +4433,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 @@ -4463,13 +4463,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 @@ -4481,7 +4481,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 @@ -4625,7 +4625,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 @@ -4649,7 +4649,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 diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/shell/messages.po libreoffice-7.5.2~rc2/translations/source/sk/shell/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/shell/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/shell/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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:35+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.5.1~rc2/translations/source/sk/starmath/messages.po libreoffice-7.5.2~rc2/translations/source/sk/starmath/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/starmath/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/starmath/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-11-25 12:34+0000\n" +"PO-Revision-Date: 2023-03-24 12: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: 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" @@ -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 @@ -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 @@ -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 diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/svl/messages.po libreoffice-7.5.2~rc2/translations/source/sk/svl/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/svl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/svl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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:35+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.5.1~rc2/translations/source/sk/svtools/messages.po libreoffice-7.5.2~rc2/translations/source/sk/svtools/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/svtools/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/svtools/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-21 15:35+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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: 1560235430.000000\n" #. fLdeV @@ -1777,7 +1777,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -1817,7 +1817,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -2340,7 +2340,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 @@ -3882,7 +3882,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 @@ -5112,7 +5112,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 @@ -5430,7 +5430,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.5.1~rc2/translations/source/sk/svx/messages.po libreoffice-7.5.2~rc2/translations/source/sk/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/svx/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-01-02 06:38+0000\n" +"PO-Revision-Date: 2023-03-24 12: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: 1560239618.000000\n" #. 3GkZj @@ -3370,7 +3370,7 @@ #: include/svx/strings.hrc:590 msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA" msgid "Light Magenta" -msgstr "Svetlá fialová" +msgstr "Svetlá purpurová" #. y96HS #: include/svx/strings.hrc:591 @@ -5396,7 +5396,7 @@ #: include/svx/strings.hrc:947 msgctxt "RID_SVXSTR_LEND3" msgid "Dimension Lines" -msgstr "Kótovacie čiara" +msgstr "Kótovacie čiary" #. JKxZ6 #. To translators: this is an arrow head style @@ -5431,7 +5431,7 @@ #: include/svx/strings.hrc:957 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 @@ -5529,7 +5529,7 @@ #: include/svx/strings.hrc:985 msgctxt "RID_SVXSTR_LEND22" msgid "Line" -msgstr "Obrys šípky" +msgstr "Čiara" #. im8fN #. To translators: this is an arrow head style @@ -6008,7 +6008,7 @@ #: include/svx/strings.hrc:1081 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:1082 @@ -6772,7 +6772,7 @@ #: include/svx/strings.hrc:1219 msgctxt "RID_STR_PROPTITLE_COMBOBOX" msgid "Combo Box" -msgstr "Rozbaľovacie pole" +msgstr "Pole so zoznamom" #. WiNUf #: include/svx/strings.hrc:1220 @@ -6808,7 +6808,7 @@ #: include/svx/strings.hrc:1225 msgctxt "RID_STR_PROPTITLE_PATTERNFIELD" msgid "Pattern Field" -msgstr "Pole vzorky" +msgstr "Pole vzoru" #. DEn9D #: include/svx/strings.hrc:1226 @@ -7024,7 +7024,7 @@ #: include/svx/strings.hrc:1264 msgctxt "RID_STR_READONLY_VIEW" msgid " (read-only)" -msgstr " (Iba na čítanie)" +msgstr " (Len na čítanie)" #. DgfNh #: include/svx/strings.hrc:1265 @@ -7619,7 +7619,7 @@ #: include/svx/strings.hrc:1367 msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE" msgid "3D Effects" -msgstr "3D Efekty" +msgstr "3D efekty" #. j6dA6 #: include/svx/strings.hrc:1369 @@ -10350,7 +10350,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -10390,7 +10390,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -11462,7 +11462,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 @@ -13238,13 +13238,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 @@ -14582,7 +14582,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 @@ -14852,7 +14852,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 @@ -15206,7 +15206,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1793 msgctxt "docking3deffects|texreplace|tooltip_text" msgid "Only Texture" -msgstr "Iba textúra" +msgstr "Len textúra" #. hMAv6 #: svx/uiconfig/ui/docking3deffects.ui:1801 @@ -15524,7 +15524,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2437 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:2454 @@ -15750,7 +15750,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 @@ -16212,7 +16212,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 @@ -16224,7 +16224,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 @@ -16278,7 +16278,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 @@ -16470,7 +16470,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:245 msgctxt "findreplacedialog|wholewords" msgid "Whole wor_ds only" -msgstr "Iba _celé slová" +msgstr "Len _celé slová" #. FgEuC #: svx/uiconfig/ui/findreplacedialog.ui:253 @@ -16530,7 +16530,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:486 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:498 @@ -16584,13 +16584,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:708 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:716 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:727 @@ -16842,7 +16842,7 @@ #: svx/uiconfig/ui/floatingareastyle.ui:214 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:240 @@ -17382,7 +17382,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 @@ -17418,7 +17418,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 @@ -17472,7 +17472,7 @@ #: svx/uiconfig/ui/headfootformatpage.ui:207 msgctxt "headfootformatpage|labelSpacing" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. xNArq #: svx/uiconfig/ui/headfootformatpage.ui:234 @@ -17508,7 +17508,7 @@ #: svx/uiconfig/ui/headfootformatpage.ui:353 msgctxt "headfootformatpage|labelHeaderFormat" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. KKLaG #: svx/uiconfig/ui/headfootformatpage.ui:369 @@ -17736,7 +17736,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 @@ -17844,7 +17844,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 @@ -17862,7 +17862,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 @@ -18204,7 +18204,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 @@ -18216,7 +18216,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 @@ -18288,7 +18288,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 @@ -19716,7 +19716,7 @@ #: svx/uiconfig/ui/sidebarparagraph.ui:213 msgctxt "sidebarparagraph|spacinglabel" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. FUUE6 #: svx/uiconfig/ui/sidebarparagraph.ui:228 @@ -20029,7 +20029,7 @@ #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:49 msgctxt "sidebartextcolumns|labelColSpacing" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. Es5Bi #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:70 @@ -20041,7 +20041,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.5.1~rc2/translations/source/sk/sw/messages.po libreoffice-7.5.2~rc2/translations/source/sk/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/sw/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-02 06:38+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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: 1562264828.000000\n" #. v3oJv @@ -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" @@ -1430,7 +1430,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 @@ -1628,7 +1628,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 @@ -2418,7 +2418,7 @@ #: sw/inc/strings.hrc:42 msgctxt "STR_POOLCHR_DROPCAPS" msgid "Drop Caps" -msgstr "Stránkovanie veľkými písmenami" +msgstr "Iniciály" #. 5FFNC #: sw/inc/strings.hrc:43 @@ -2979,7 +2979,7 @@ #: sw/inc/strings.hrc:138 msgctxt "STR_POOLCOLL_HEADER" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. uCLQX #: sw/inc/strings.hrc:139 @@ -3672,7 +3672,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 @@ -3745,7 +3745,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 @@ -5883,7 +5883,7 @@ #: sw/inc/strings.hrc:645 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:646 @@ -5937,7 +5937,7 @@ #: sw/inc/strings.hrc:654 msgctxt "STR_PRINTOPTUI_PRINTPAGES" msgid "Pa~ges:" -msgstr "Stra~ny:" +msgstr "~Strany:" #. rajyx #: sw/inc/strings.hrc:655 @@ -6051,7 +6051,7 @@ #: sw/inc/strings.hrc:675 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:676 @@ -8245,7 +8245,7 @@ #: sw/inc/strings.hrc:1101 msgctxt "STR_DROP_OVER" msgid "Drop Caps over" -msgstr "Stránkovanie veľkými písmenami nad" +msgstr "Iniciály nad" #. PLAVt #: sw/inc/strings.hrc:1102 @@ -8257,7 +8257,7 @@ #: sw/inc/strings.hrc:1103 msgctxt "STR_NO_DROP_LINES" msgid "No Drop Caps" -msgstr "Bez iniciálok" +msgstr "Bez iniciál" #. gueRC #: sw/inc/strings.hrc:1104 @@ -8305,7 +8305,7 @@ #: sw/inc/strings.hrc:1111 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:1112 @@ -8323,7 +8323,7 @@ #: sw/inc/strings.hrc:1114 msgctxt "STR_HEADER" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. PcYEB #: sw/inc/strings.hrc:1115 @@ -8371,7 +8371,7 @@ #: sw/inc/strings.hrc:1122 msgctxt "STR_SURROUND_ANCHORONLY" msgid "(Anchor only)" -msgstr "(Iba ukotvenie)" +msgstr "(Len ukotvenie)" #. 9Ywzb #: sw/inc/strings.hrc:1123 @@ -8533,7 +8533,7 @@ #: sw/inc/strings.hrc:1149 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:1150 @@ -9483,7 +9483,7 @@ #: sw/inc/strings.hrc:1314 msgctxt "STR_SWBG_HEADER" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. aDuAY #: sw/inc/strings.hrc:1315 @@ -10245,7 +10245,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 @@ -10515,13 +10515,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 @@ -10581,7 +10581,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 @@ -10623,7 +10623,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 @@ -10635,7 +10635,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 @@ -10965,7 +10965,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 @@ -11085,7 +11085,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 @@ -11187,7 +11187,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 @@ -11223,7 +11223,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 @@ -11325,7 +11325,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 @@ -11571,7 +11571,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:153 msgctxt "businessdatapage|position-atkobject" msgid "Position" -msgstr "Pozícia" +msgstr "Poloha" #. QGc4K #: sw/uiconfig/swriter/ui/businessdatapage.ui:154 @@ -12279,7 +12279,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:269 msgctxt "columnpage|distft" msgid "Spacing:" -msgstr "Riadkový Preklad:" +msgstr "Riadkový preklad:" #. rneea #: sw/uiconfig/swriter/ui/columnpage.ui:302 @@ -12333,7 +12333,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 @@ -12597,7 +12597,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 @@ -12825,13 +12825,13 @@ #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:402 msgctxt "contentcontordlg|moveup" msgid "Move Up" -msgstr "Presunúť vyššie" +msgstr "Presunúť nahor" #. 6BRRB #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:416 msgctxt "contentcontordlg|movedown" msgid "Move Down" -msgstr "Presunúť nižšie" +msgstr "Presunúť nadol" #. hCPKV #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:494 @@ -12957,13 +12957,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 @@ -13275,13 +13275,13 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:58 msgctxt "dropcapspage|checkCB_SWITCH" msgid "_Display drop caps" -msgstr "Zobrazovať _iniciálky" +msgstr "Zobrazovať _iniciály" #. PEHkg #: 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 @@ -13293,7 +13293,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 "Zobrazí prvé písmeno prvého slova odseku ako iniciálku a ostatné písmená slova veľkým písmom." +msgstr "Zobrazí prvé písmeno prvého slova odseku ako iniciálu a ostatné písmená slova veľkým písmom." #. YEaFN #: sw/uiconfig/swriter/ui/dropcapspage.ui:100 @@ -13317,19 +13317,19 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:148 msgctxt "dropcapspage|extended_tip|spinFLD_DROPCAPS" msgid "Enter the number of characters to convert to drop caps." -msgstr "Zadajte počet znakov, ktoré sa zmenia na iniciálky." +msgstr "Zadajte počet znakov, ktoré sa zmenia na iniciály." #. mTJvq #: sw/uiconfig/swriter/ui/dropcapspage.ui:167 msgctxt "dropcapspage|extended_tip|spinFLD_LINES" msgid "Enter the number of lines that you want the drop cap to extend downward from the first line of the paragraph. Shorter paragraphs will not get drop caps." -msgstr "Zadajte počet riadkov, cez ktoré sa má iniciálka roztiahnuť. U kratších odsekov sa iniciálka nezobrazí." +msgstr "Zadajte počet riadkov, cez ktoré sa má iniciála roztiahnuť. U kratších odsekov sa iniciála nezobrazí." #. tZURF #: sw/uiconfig/swriter/ui/dropcapspage.ui:187 msgctxt "dropcapspage|extended_tip|spinFLD_DISTANCE" msgid "Enter the amount of space to leave between the drop caps and the rest of the text in the paragraph." -msgstr "Zadajte vzdialenosť medzi iniciálkami a zvyškom textu v odseku." +msgstr "Zadajte vzdialenosť medzi iniciálami a zvyškom textu v odseku." #. PQ6xG #: sw/uiconfig/swriter/ui/dropcapspage.ui:202 @@ -13353,13 +13353,13 @@ #: 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 "Zadajte text, ktorý chcete zobraziť ako iniciálky namiesto prvých písmen odseku." +msgstr "Zadajte text, ktorý chcete zobraziť ako iniciály namiesto prvých písmen odseku." #. eTLND #: sw/uiconfig/swriter/ui/dropcapspage.ui:281 msgctxt "dropcapspage|extended_tip|comboBOX_TEMPLATE" msgid "Select the formatting style that you want to apply to the drop caps." -msgstr "Zvoľte štýl formátovania, ktorý chcete použiť pre iniciálky." +msgstr "Zvoľte štýl formátovania, ktorý chcete použiť pre iniciály." #. tAmQu #: sw/uiconfig/swriter/ui/dropcapspage.ui:296 @@ -13431,13 +13431,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 @@ -13617,7 +13617,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 @@ -13743,7 +13743,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 @@ -13827,7 +13827,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 @@ -13971,7 +13971,7 @@ #: 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 @@ -14425,7 +14425,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 @@ -14485,7 +14485,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 @@ -14702,7 +14702,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:165 msgctxt "flddocumentpage|extended_tip|select" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "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 @@ -15032,7 +15032,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:189 msgctxt "fldvarpage|extended_tip|select" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "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 @@ -15158,7 +15158,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 @@ -15404,7 +15404,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 @@ -15500,7 +15500,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 @@ -15842,7 +15842,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 @@ -16052,7 +16052,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:159 msgctxt "frmaddpage|extended_tip|decorative" msgid "The item is purely decorative, not part of the document content, and may be ignored by assistive technologies." -msgstr "Prvok je iba dekoratívny, nejedná sa o časť obsahu dokumentu, a asistenčné technológie ho tak môžu ignorovať." +msgstr "Prvok je len dekoratívny, nejedná sa o časť obsahu dokumentu, a asistenčné technológie ho tak môžu ignorovať." #. DWCEc #: sw/uiconfig/swriter/ui/frmaddpage.ui:175 @@ -16148,7 +16148,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:368 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:380 @@ -16808,7 +16808,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 @@ -17522,7 +17522,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 @@ -17624,7 +17624,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 @@ -17786,7 +17786,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 @@ -17798,7 +17798,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 @@ -17810,7 +17810,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 @@ -18098,7 +18098,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 @@ -18206,25 +18206,25 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:290 msgctxt "inserttable|headercb" msgid "Hea_ding" -msgstr "Hlavička" +msgstr "_Záhlavie" #. EZBnS #: sw/uiconfig/swriter/ui/inserttable.ui:298 msgctxt "inserttable|extended_tip|headercb" msgid "Includes a heading row in the table." -msgstr "Zahŕňa v tabuľke riadok nadpisu." +msgstr "Zahŕňa v tabuľke riadok záhlavia." #. 7obXo #: sw/uiconfig/swriter/ui/inserttable.ui:309 msgctxt "inserttable|repeatcb" msgid "Repeat heading rows on new _pages" -msgstr "Opakovať riadky hlavičky na nových stranách" +msgstr "Opakovať riadky záhlavia na nových stranách" #. LdEem #: sw/uiconfig/swriter/ui/inserttable.ui:320 msgctxt "inserttable|extended_tip|repeatcb" msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page." -msgstr "Opakuje nadpis tabuľky v hornej časti nasledujúcej strany, ak tabuľka obsahuje viac ako jednu stranu." +msgstr "Opakuje záhlavie tabuľky v hornej časti nasledujúcej strany, ak tabuľka obsahuje viac ako jednu stranu." #. EkDeF #: sw/uiconfig/swriter/ui/inserttable.ui:331 @@ -18242,13 +18242,13 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:366 msgctxt "inserttable|extended_tip|repeatheaderspin" msgid "Select the number of rows that you want to use for the heading." -msgstr "Vyberte počet riadkov, ktoré chcete použiť pre nadpis." +msgstr "Vyberte počet riadkov, ktoré chcete použiť pre záhlavie." #. kkA32 #: sw/uiconfig/swriter/ui/inserttable.ui:379 msgctxt "inserttable|repeatheaderafter" msgid "Heading ro_ws:" -msgstr "Riadky _hlavičky:" +msgstr "Riadky _záhlavia:" #. D26kf #: sw/uiconfig/swriter/ui/inserttable.ui:400 @@ -18260,7 +18260,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:440 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:482 @@ -18914,7 +18914,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 @@ -20630,7 +20630,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60 msgctxt "navigatorcontextmenu|STR_DELETE_CHAPTER" msgid "Delete Chapter" -msgstr "Zmazať kapitolu" +msgstr "Odstrániť kapitolu" #. axFMf #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69 @@ -20978,7 +20978,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 @@ -21056,7 +21056,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 @@ -21068,7 +21068,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 @@ -21080,7 +21080,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 @@ -21092,7 +21092,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 @@ -21284,13 +21284,13 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:5810 msgctxt "WriterNotebookbar|InsertLabel" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. 4t2ES #: sw/uiconfig/swriter/ui/notebookbar.ui:6876 msgctxt "WriterNotebookbar|LayoutMenuButton" msgid "_Layout" -msgstr "Roz_loženie" +msgstr "_Rozloženie" #. 4sDuv #: sw/uiconfig/swriter/ui/notebookbar.ui:6961 @@ -21344,19 +21344,19 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:10921 msgctxt "WriterNotebookbar|TableLabel" msgid "~Table" -msgstr "T~abuľka" +msgstr "~Tabuľka" #. ePiUn #: sw/uiconfig/swriter/ui/notebookbar.ui:12147 msgctxt "WriterNotebookbar|ImageMenuButton" msgid "Ima_ge" -msgstr "O_brázok" +msgstr "_Obrázok" #. tfZvk #: sw/uiconfig/swriter/ui/notebookbar.ui:12244 msgctxt "WriterNotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. CAFm3 #: sw/uiconfig/swriter/ui/notebookbar.ui:13563 @@ -21386,7 +21386,7 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:15401 msgctxt "WriterNotebookbar|MediaMenuButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. A9AmF #: sw/uiconfig/swriter/ui/notebookbar.ui:15505 @@ -21476,7 +21476,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5801 msgctxt "notebookbar_compact|InsertLabel" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. a5p4d #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6580 @@ -21548,7 +21548,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11768 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. 8eQN8 #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13150 @@ -21578,13 +21578,13 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15035 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. 7HDt3 #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15091 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" -msgstr "~Multimédiá" +msgstr "~Médiá" #. vSDok #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15750 @@ -21756,7 +21756,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 @@ -21806,13 +21806,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 @@ -21836,7 +21836,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 @@ -21987,7 +21987,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 @@ -22029,7 +22029,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 @@ -22065,7 +22065,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 @@ -22743,7 +22743,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 @@ -23459,7 +23459,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 @@ -23531,7 +23531,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 @@ -23543,7 +23543,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 @@ -24005,7 +24005,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 @@ -24897,13 +24897,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 @@ -25011,7 +25011,7 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:450 msgctxt "paradialog|labelTP_DROPCAPS" msgid "Drop Caps" -msgstr "Stránkovanie veľkými písmenami" +msgstr "Iniciály" #. EVCmZ #: sw/uiconfig/swriter/ui/paradialog.ui:498 @@ -25041,7 +25041,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 @@ -25215,7 +25215,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 @@ -25227,7 +25227,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 @@ -25575,7 +25575,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 @@ -26385,7 +26385,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:168 msgctxt "sectionpage|extended_tip|dde" msgid "Creates a DDE link. Select this check box, and then enter the DDE command that you want to use. The DDE option is only available if the Link check box is selected." -msgstr "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 @@ -26511,7 +26511,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 @@ -26727,7 +26727,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 @@ -27261,7 +27261,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 @@ -27321,7 +27321,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 @@ -27333,7 +27333,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 @@ -27345,7 +27345,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 @@ -27357,7 +27357,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 @@ -27825,13 +27825,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 @@ -28119,7 +28119,7 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:695 msgctxt "templatedialog2|dropcaps" msgid "Drop Caps" -msgstr "Stránkovanie veľkými písmenami" +msgstr "Iniciály" #. dbbmR #: sw/uiconfig/swriter/ui/templatedialog2.ui:743 @@ -28257,7 +28257,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 @@ -28521,7 +28521,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 - Voľby - Nastavenia jazyka - Jazyky)." #. aHkWU #: sw/uiconfig/swriter/ui/titlepage.ui:33 @@ -28779,7 +28779,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 @@ -28845,7 +28845,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 @@ -28977,7 +28977,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 @@ -29037,7 +29037,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 @@ -29055,13 +29055,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 @@ -30399,7 +30399,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 @@ -30417,13 +30417,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.5.1~rc2/translations/source/sk/swext/mediawiki/help.po libreoffice-7.5.2~rc2/translations/source/sk/swext/mediawiki/help.po --- libreoffice-7.5.1~rc2/translations/source/sk/swext/mediawiki/help.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/swext/mediawiki/help.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: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: 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.5.1~rc2/translations/source/sk/uui/messages.po libreoffice-7.5.2~rc2/translations/source/sk/uui/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/uui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/uui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-11-14 08:17+0000\n" +"PO-Revision-Date: 2023-03-24 12: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: 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 @@ -797,7 +797,7 @@ #: uui/inc/strings.hrc:57 msgctxt "STR_TRYLATER_TITLE" msgid "Document in Use" -msgstr "Používaný dokument" +msgstr "Dokument sa už používa" #. 4Fimj #: uui/inc/strings.hrc:58 @@ -913,9 +913,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:75 @@ -1123,7 +1123,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 @@ -1141,7 +1141,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.5.1~rc2/translations/source/sk/vcl/messages.po libreoffice-7.5.2~rc2/translations/source/sk/vcl/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/vcl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/vcl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-11-25 12:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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: 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" @@ -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 @@ -1768,7 +1768,7 @@ #: vcl/uiconfig/ui/editmenu.ui:12 msgctxt "editmenu|undo" msgid "_Undo" -msgstr "_Späť" +msgstr "_Vrátiť" #. wVVXn #: vcl/uiconfig/ui/editmenu.ui:26 @@ -1786,7 +1786,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 @@ -1873,7 +1873,7 @@ "You can open it read only and\n" "receive a notification if ready." msgstr "" -"Môžete ho otvoriť iba na čítanie a\n" +"Môžete ho otvoriť len na čítanie a\n" "ak je pripravený, dostanete upozornenie." #. nFBTF @@ -2082,7 +2082,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 @@ -2148,7 +2148,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.5.1~rc2/translations/source/sk/wizards/messages.po libreoffice-7.5.2~rc2/translations/source/sk/wizards/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/wizards/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/wizards/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 14:06+0100\n" -"PO-Revision-Date: 2022-12-21 15:34+0000\n" +"PO-Revision-Date: 2023-03-24 12: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: 1557772924.000000\n" #. gbiMx @@ -26,31 +26,31 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:33 msgctxt "RID_COMMON_START_1" msgid "The text document could not be created.
Please check if the module '%PRODUCTNAME Writer' is installed." -msgstr "Nemohol byť vytvorený textový dokument.
Overte si, či je modul 'PRODUCTNAME Writer' nainštalovaný." +msgstr "Textový dokument nemohol byť vytvorený.
Skontrolujte, či je nainštalovaný „%PRODUCTNAME Writer“." #. m9CbQ #: wizards/com/sun/star/wizards/common/strings.hrc:34 msgctxt "RID_COMMON_START_2" msgid "The spreadsheet could not be created.
Please check if the module '%PRODUCTNAME Calc' is installed." -msgstr "Tabuľkový dokument nemohol byť vytvorený.
Overte si, či je nainštalovaný modul 'PRODUCTNAME Calc'." +msgstr "Tabuľkový dokument nemohol byť vytvorený.
Skontrolujte, či je nainštalovaný „%PRODUCTNAME Calc“." #. ZCzrE #: wizards/com/sun/star/wizards/common/strings.hrc:35 msgctxt "RID_COMMON_START_3" msgid "The presentation could not be created.
Please check if the module '%PRODUCTNAME Impress' is installed." -msgstr "Prezentácia nemohla byť vytvorená.
Overte si, či je nainštalovaný modul 'PRODUCTNAME Impress'." +msgstr "Prezentáciu nebolo možné vytvoriť.
Skontrolujte, či je nainštalovaný modul %PRODUCTNAME Impress." #. s45vT #: wizards/com/sun/star/wizards/common/strings.hrc:36 msgctxt "RID_COMMON_START_4" msgid "The drawing could not be created.
Please check if the module '%PRODUCTNAME Draw' is installed." -msgstr "Kresba nemohla byť vytvorená.
Overte si, či je nainštalovaný modul 'PRODUCTNAME Draw'." +msgstr "Kresba nemohla byť vytvorená.
Skontrolujte, či je nainštalovaný „%PRODUCTNAME Draw“." #. YzHou #: wizards/com/sun/star/wizards/common/strings.hrc:37 msgctxt "RID_COMMON_START_5" msgid "The formula could not be created.
Please check if the module '%PRODUCTNAME Math' is installed." -msgstr "Vzorec nemohol byť vytvorený.
Overte si, či je nainštalovaný modul 'PRODUCTNAME Math'." +msgstr "Vzorec nemohol byť vytvorený.
Skontrolujte, či je nainštalovaný „%PRODUCTNAME Math“." #. EcX4n #: wizards/com/sun/star/wizards/common/strings.hrc:38 @@ -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 @@ -722,7 +722,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:158 msgctxt "RID_FAXWIZARDDIALOG_START_18" msgid "Return address" -msgstr "Spätná adresa" +msgstr "Adresa odosielateľa" #. mNzqb #: wizards/com/sun/star/wizards/common/strings.hrc:159 @@ -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 @@ -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 @@ -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.5.1~rc2/translations/source/sk/wizards/source/resources.po libreoffice-7.5.2~rc2/translations/source/sk/wizards/source/resources.po --- libreoffice-7.5.1~rc2/translations/source/sk/wizards/source/resources.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/wizards/source/resources.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 14:06+0100\n" -"PO-Revision-Date: 2023-01-02 06:38+0000\n" +"PO-Revision-Date: 2023-03-07 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.12.2\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 diff -Nru libreoffice-7.5.1~rc2/translations/source/sk/writerperfect/messages.po libreoffice-7.5.2~rc2/translations/source/sk/writerperfect/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/writerperfect/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/writerperfect/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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:35+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.5.1~rc2/translations/source/sk/xmlsecurity/messages.po libreoffice-7.5.2~rc2/translations/source/sk/xmlsecurity/messages.po --- libreoffice-7.5.1~rc2/translations/source/sk/xmlsecurity/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sk/xmlsecurity/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-24 12: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: 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 @@ -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.5.1~rc2/translations/source/sv/cui/messages.po libreoffice-7.5.2~rc2/translations/source/sv/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/sv/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sv/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-13 07:33+0000\n" +"PO-Revision-Date: 2023-02-25 12:45+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 @@ -17430,37 +17430,37 @@ #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "System" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "Ljust" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "Mörkt" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "Anger om man ska följa systemets utseende eller åsidosätta mörkt eller ljust läge." #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "Läge:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "Utseende" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 diff -Nru libreoffice-7.5.1~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:44+0100\n" -"PO-Revision-Date: 2022-11-25 12:34+0000\n" +"PO-Revision-Date: 2023-03-06 12:32+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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562689978.000000\n" #. W5ukN @@ -34746,7 +34746,7 @@ "Label\n" "value.text" msgid "Hide Whitespac~e" -msgstr "Dölj tomt utrymm~e" +msgstr "~Dölj blanksteg" #. XAsfn #: WriterCommands.xcu @@ -34756,7 +34756,7 @@ "Label\n" "value.text" msgid "Show Whitespac~e" -msgstr "Visa tomt utrymm~e" +msgstr "~Visa blanksteg" #. RHnwE #: WriterCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/th/cui/messages.po libreoffice-7.5.2~rc2/translations/source/th/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/th/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/th/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-01-12 12:04+0000\n" +"PO-Revision-Date: 2023-03-06 12:32+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: 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 @@ -12025,7 +12025,7 @@ #: cui/uiconfig/ui/langtoolconfigpage.ui:191 msgctxt "langtoolconfigpage|urldesc" msgid "Please use the base URL, i.e., without “/check” at the end." -msgstr "" +msgstr "กรุณาใช้ URL ฐาน กล่าวคือ ไม่มี “/check” ที่ท้าย" #. 77oav #: cui/uiconfig/ui/langtoolconfigpage.ui:211 @@ -17430,37 +17430,37 @@ #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "ระบบ" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "สว่าง" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "มืด" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "ระบุว่าจะใช้รูปลักษณ์ตามระบบหรือจะแทนที่ด้วยแบบมืดหรือแบบสว่าง" #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "โหมด:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "รูปลักษณ์" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 diff -Nru libreoffice-7.5.1~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-02-22 14:22+0000\n" +"PO-Revision-Date: 2023-03-06 12:32+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" @@ -3214,7 +3214,7 @@ "ContextLabel\n" "value.text" msgid "~Show" -msgstr "แส~ดง" +msgstr "แ~สดง" #. xvXRj #: CalcCommands.xcu @@ -7725,7 +7725,7 @@ "Label\n" "value.text" msgid "Query (Design View)..." -msgstr "ข้อคำถาม (มุมมองแบบ)..." +msgstr "ข้อคำถาม (มุมมองออกแบบ)..." #. AenSc #: DbuCommands.xcu @@ -7735,7 +7735,7 @@ "PopupLabel\n" "value.text" msgid "New ~Query (Design View)" -msgstr "" +msgstr "ข้อคำ~ถามใหม่ (มุมมองออกแบบ)" #. Njo7R #: DbuCommands.xcu @@ -8626,7 +8626,7 @@ "Label\n" "value.text" msgid "Reset line skew" -msgstr "" +msgstr "ล้างค่าเบี่ยงเบนเส้น" #. avSPK #: DrawImpressCommands.xcu @@ -9486,7 +9486,7 @@ "Label\n" "value.text" msgid "E~xecute Interaction..." -msgstr "" +msgstr "เรียกกระ~ทำปฏิสัมพันธ์..." #. TNj5u #: DrawImpressCommands.xcu @@ -9530,14 +9530,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 @@ -9601,14 +9600,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 @@ -9698,7 +9696,7 @@ "Label\n" "value.text" msgid "~Break" -msgstr "~ตัวแบ่ง" +msgstr "~ตัดการเชื่อมต่อ" #. 9yBgu #: DrawImpressCommands.xcu @@ -11478,18 +11476,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 @@ -11513,14 +11510,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 @@ -14370,7 +14366,7 @@ "Label\n" "value.text" msgid "Fall simulated" -msgstr "" +msgstr "หล่นจำลอง" #. BqK9h #: Effects.xcu @@ -14380,7 +14376,7 @@ "Label\n" "value.text" msgid "Shoot right and return" -msgstr "" +msgstr "ยิงขวาแล้วย้อนกลับ" #. DHrg4 #: Effects.xcu @@ -14390,7 +14386,7 @@ "Label\n" "value.text" msgid "Shoot left and return" -msgstr "" +msgstr "ยิงซ้ายแล้วย้อนกลับ" #. MZBtm #: Effects.xcu @@ -19912,7 +19908,7 @@ "Label\n" "value.text" msgid "Outline Format" -msgstr "" +msgstr "รูปแบบเค้าโครง" #. TSDD9 #: GenericCommands.xcu @@ -19922,7 +19918,7 @@ "ContextLabel\n" "value.text" msgid "~Outline Format" -msgstr "" +msgstr "รูปแบบเ~ค้าโครง" #. RMCDt #: GenericCommands.xcu @@ -19932,7 +19928,7 @@ "TooltipLabel\n" "value.text" msgid "Select Outline Format" -msgstr "" +msgstr "เลือกรูปแบบเค้าโครง" #. uKMCr #: GenericCommands.xcu @@ -19962,7 +19958,7 @@ "Label\n" "value.text" msgid "Dimen~sions..." -msgstr "" +msgstr "เ~ส้นบอกขนาด..." #. TgPVp #: GenericCommands.xcu @@ -26393,7 +26389,7 @@ "Label\n" "value.text" msgid "Table Control" -msgstr "" +msgstr "ตัวควบคุมแบบตาราง" #. 7wECp #: GenericCommands.xcu @@ -26683,7 +26679,7 @@ "Label\n" "value.text" msgid "Basic Macro Organizer..." -msgstr "" +msgstr "ตัวจัดการแมโครภาษาเบสิก..." #. ahLAz #: GenericCommands.xcu @@ -26923,7 +26919,7 @@ "Label\n" "value.text" msgid "~Additions..." -msgstr "" +msgstr "ส่วน~ขยาย..." #. bFKmR #: GenericCommands.xcu @@ -26933,7 +26929,7 @@ "ContextLabel\n" "value.text" msgid "~Additional Extensions..." -msgstr "" +msgstr "ส่วน~ขยายเพิ่มเติม..." #. UqjzD #: GenericCommands.xcu @@ -26943,7 +26939,7 @@ "TooltipLabel\n" "value.text" msgid "Additional Extensions" -msgstr "" +msgstr "ส่วนขยายเพิ่มเติม" #. YpeR4 #: GenericCommands.xcu @@ -28467,7 +28463,6 @@ #. DVRia #: ReportCommands.xcu -#, fuzzy msgctxt "" "ReportCommands.xcu\n" ".ReportCommands.UserInterface.Commands..uno:ShowRuler\n" @@ -28591,14 +28586,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 @@ -28632,14 +28626,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 @@ -28659,7 +28652,7 @@ "Label\n" "value.text" msgid "Spreadsheet Document" -msgstr "" +msgstr "เอกสารตารางคำนวณ" #. eCwdZ #: ReportCommands.xcu @@ -29200,7 +29193,7 @@ "Title\n" "value.text" msgid "Effect" -msgstr "" +msgstr "ลูกเล่น" #. GBNW2 #: Sidebar.xcu @@ -32480,7 +32473,7 @@ "Label\n" "value.text" msgid "F~ields..." -msgstr "เ~ขตข้อมูล..." +msgstr "~ช่องข้อมูล..." #. Myv3t #: WriterCommands.xcu @@ -32490,7 +32483,7 @@ "PopupLabel\n" "value.text" msgid "Edit F~ields..." -msgstr "" +msgstr "แก้ไข~ช่องข้อมูล..." #. U9LvE #: WriterCommands.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/th/sd/messages.po libreoffice-7.5.2~rc2/translations/source/th/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/th/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/th/sd/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:12+0100\n" -"PO-Revision-Date: 2022-03-31 22:30+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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 @@ -2421,13 +2395,13 @@ #: sd/inc/strings.hrc:363 msgctxt "STR_SHRINK_FONT_SIZE" msgid "Shrink font size" -msgstr "" +msgstr "ลดขนาดตัวอักษร" #. 7uDfu #: sd/inc/strings.hrc:364 msgctxt "STR_GROW_FONT_SIZE" msgid "Grow font size" -msgstr "" +msgstr "ขยายขนาดตัวอักษร" #. E9zvq #. Names and descriptions of the Draw/Impress accessibility views @@ -2435,19 +2409,19 @@ #: sd/inc/strings.hrc:369 msgctxt "SID_SD_A11Y_D_DRAWVIEW_N" msgid "Drawing View" -msgstr "มุมมองรูปวาด" +msgstr "มุมมองงานวาด" #. GfnmX #: sd/inc/strings.hrc:370 msgctxt "SID_SD_A11Y_I_DRAWVIEW_N" msgid "Drawing View" -msgstr "มุมมองรูปวาด" +msgstr "มุมมองงานวาด" #. YCVqM #: sd/inc/strings.hrc:371 msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N" msgid "Outline View" -msgstr "มุมมองโครงร่าง" +msgstr "มุมมองเค้าโครง" #. k2hXi #: sd/inc/strings.hrc:372 @@ -2465,79 +2439,79 @@ #: sd/inc/strings.hrc:374 msgctxt "SID_SD_A11Y_I_NOTESVIEW_N" msgid "Notes View" -msgstr "มุมมองบันทึก" +msgstr "มุมมองบันทึกเสริม" #. qr5ov #: sd/inc/strings.hrc:375 msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N" msgid "Handout View" -msgstr "มุมมองเอกสารประกอบคำบรรยาย" +msgstr "มุมมองเอกสารแจก" #. Ycpb4 #: sd/inc/strings.hrc:376 msgctxt "SID_SD_A11Y_P_TITLE_N" msgid "PresentationTitle" -msgstr "PresentationTitle" +msgstr "ชื่อเรื่องงานนำเสนอ" #. 4WCzf #: sd/inc/strings.hrc:377 msgctxt "SID_SD_A11Y_P_OUTLINER_N" msgid "PresentationOutliner" -msgstr "PresentationOutliner" +msgstr "ตัววางเค้าโครงงานนำเสนอ" #. cBoMF #: sd/inc/strings.hrc:378 msgctxt "SID_SD_A11Y_P_SUBTITLE_N" msgid "PresentationSubtitle" -msgstr "PresentationSubtitle" +msgstr "ชื่อเรื่องย่อยงานนำเสนอ" #. 8KV99 #: sd/inc/strings.hrc:379 msgctxt "SID_SD_A11Y_P_PAGE_N" msgid "PresentationPage" -msgstr "PresentationPage" +msgstr "หน้างานนำเสนอ" #. R6kyg #: sd/inc/strings.hrc:380 msgctxt "SID_SD_A11Y_P_NOTES_N" msgid "PresentationNotes" -msgstr "PresentationNotes" +msgstr "บันทึกเสริมงานนำเสนอ" #. X8c9Z #: sd/inc/strings.hrc:381 msgctxt "SID_SD_A11Y_P_HANDOUT_N" msgid "Handout" -msgstr "เอกสารประกอบคำบรรยาย" +msgstr "เอกสารแจก" #. FeAdu #: sd/inc/strings.hrc:382 msgctxt "SID_SD_A11Y_P_UNKNOWN_N" msgid "UnknownAccessiblePresentationShape" -msgstr "UnknownAccessiblePresentationShape" +msgstr "รูปร่างงานนำเสนอที่ไม่รู้จักที่มีสิ่งอำนวยความสะดวก" #. sA8of #: sd/inc/strings.hrc:383 msgctxt "SID_SD_A11Y_P_FOOTER_N" msgid "PresentationFooter" -msgstr "PresentationFooter" +msgstr "ท้ายกระดาษงานนำเสนอ" #. KAC6Z #: sd/inc/strings.hrc:384 msgctxt "SID_SD_A11Y_P_HEADER_N" msgid "PresentationHeader" -msgstr "PresentationHeader" +msgstr "หัวกระดาษงานนำเสนอ" #. EfHeH #: sd/inc/strings.hrc:385 msgctxt "SID_SD_A11Y_P_DATE_N" msgid "PresentationDateAndTime" -msgstr "PresentationDateAndTime" +msgstr "วันที่และเวลางานนำเสนอ" #. WosPZ #: sd/inc/strings.hrc:386 msgctxt "SID_SD_A11Y_P_NUMBER_N" msgid "PresentationPageNumber" -msgstr "PresentationPageNumber" +msgstr "หมายเลขหน้างานนำเสนอ" #. kCGsH #: sd/inc/strings.hrc:387 @@ -2561,31 +2535,31 @@ #: sd/inc/strings.hrc:390 msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE" msgid "Subtitle" -msgstr "หัวเรื่องย่อย" +msgstr "ชื่อเรื่องย่อย" #. eSBEi #: sd/inc/strings.hrc:391 msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE" msgid "Page" -msgstr "Page" +msgstr "หน้า" #. WEaeZ #: sd/inc/strings.hrc:392 msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE" msgid "Notes" -msgstr "บันทึก" +msgstr "บันทึกเสริม" #. buhox #: sd/inc/strings.hrc:393 msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE" msgid "Handout" -msgstr "เอกสารประกอบคำบรรยาย" +msgstr "เอกสารแจก" #. 4xBQg #: sd/inc/strings.hrc:394 msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE" msgid "Unknown Accessible Presentation Shape" -msgstr "ไม่รู้จักรูปร่างงานนำเสนอที่เข้าถึงได้" +msgstr "รูปร่างงานนำเสนอที่ไม่รู้จักที่มีสิ่งอำนวยความสะดวก" #. CGegB #: sd/inc/strings.hrc:395 @@ -2601,17 +2575,15 @@ #. CCwKy #: sd/inc/strings.hrc:397 -#, fuzzy msgctxt "SID_SD_A11Y_P_DATE_N_STYLE" msgid "Date" -msgstr "วัน" +msgstr "วันที่" #. EFmn4 #: sd/inc/strings.hrc:398 -#, fuzzy msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE" msgid "Number" -msgstr "ตัวเลข" +msgstr "หมายเลข" #. wFpMQ #: sd/inc/strings.hrc:399 @@ -2623,7 +2595,7 @@ #: sd/inc/strings.hrc:401 msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE" msgid "none" -msgstr "ไม่มี" +msgstr "ไม่เล่นซ้ำ" #. 9izAz #: sd/inc/strings.hrc:402 @@ -2635,49 +2607,43 @@ #: sd/inc/strings.hrc:403 msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE" msgid "Until end of slide" -msgstr "จนกว่าจะสิ้นสุดภาพนิ่ง" +msgstr "จนกว่าจะจบภาพนิ่ง" #. Lf9gB #: sd/inc/strings.hrc:404 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY" msgid "Direction:" -msgstr "_ทิศทาง:" +msgstr "ทิศทาง:" #. xxDXG #: sd/inc/strings.hrc:405 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY" msgid "Zoom:" -msgstr "ซูม" +msgstr "ซูม:" #. SvBeK #: sd/inc/strings.hrc:406 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY" msgid "Spokes:" -msgstr "Spokes" +msgstr "จำนวนซี่กงล้อ:" #. eJ4qZ #: sd/inc/strings.hrc:407 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY" msgid "First color:" -msgstr "คอลัมน์แรก" +msgstr "สีแรก:" #. CSbCE #: sd/inc/strings.hrc:408 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY" msgid "Second color:" -msgstr "สีที่สอง" +msgstr "สีที่สอง:" #. cZUiD #: sd/inc/strings.hrc:409 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY" msgid "Fill color:" -msgstr "คอลัมน์แรก" +msgstr "สีระบาย:" #. U5ZDL #: sd/inc/strings.hrc:410 @@ -2687,17 +2653,15 @@ #. vKLER #: sd/inc/strings.hrc:411 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY" msgid "Font:" -msgstr "แบบอักษร" +msgstr "แบบอักษร:" #. Fdsks #: sd/inc/strings.hrc:412 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY" msgid "Font color:" -msgstr "คอลัมน์แรก" +msgstr "สีตัวอักษร:" #. nT7dm #: sd/inc/strings.hrc:413 @@ -2707,45 +2671,39 @@ #. q24Fe #: sd/inc/strings.hrc:414 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY" msgid "Typeface:" -msgstr "แบบตัวพิมพ์" +msgstr "แบบตัวพิมพ์:" #. nAqeR #: sd/inc/strings.hrc:415 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY" msgid "Line color:" -msgstr "สีเส้น" +msgstr "สีเส้น:" #. w7G4Q #: sd/inc/strings.hrc:416 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY" msgid "Font size:" -msgstr "ขนาดตัวอักษร" +msgstr "ขนาดตัวอักษร:" #. R3GgU #: sd/inc/strings.hrc:417 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY" msgid "Size:" -msgstr "ขนาด" +msgstr "ขนาด:" #. YEwoz #: sd/inc/strings.hrc:418 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY" msgid "Amount:" -msgstr "Amount" +msgstr "ปริมาณ:" #. wiQPZ #: sd/inc/strings.hrc:419 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY" msgid "Color:" -msgstr "สี" +msgstr "สี:" #. f5u6C #: sd/inc/strings.hrc:420 @@ -2775,44 +2733,43 @@ #: sd/inc/strings.hrc:424 msgctxt "STR_CUSTOMANIMATION_TRIGGER" msgid "Trigger" -msgstr "ตัวกระตุ้น" +msgstr "การกระตุ้น" #. Evkrq #: sd/inc/strings.hrc:425 msgctxt "STR_CUSTOMANIMATION_USERPATH" msgid "User paths" -msgstr "เส้นทางตำแหน่งที่ผู้ใช้ระบุ" +msgstr "เส้นทางที่ผู้ใช้ระบุ" #. EcciE #: sd/inc/strings.hrc:426 msgctxt "STR_CUSTOMANIMATION_ENTRANCE" msgid "Entrance: %1" -msgstr "" +msgstr "เข้า: %1" #. Zydrz #: sd/inc/strings.hrc:427 msgctxt "STR_CUSTOMANIMATION_EMPHASIS" msgid "Emphasis: %1" -msgstr "" +msgstr "เน้น: %1" #. kW2DL #: sd/inc/strings.hrc:428 msgctxt "STR_CUSTOMANIMATION_EXIT" msgid "Exit: %1" -msgstr "" +msgstr "ออก: %1" #. iKFbF #: sd/inc/strings.hrc:429 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS" msgid "Motion Paths: %1" -msgstr "เส้นทางการเคลื่อนที่" +msgstr "เส้นทางการเคลื่อนที่: %1" #. kg9Yv #: sd/inc/strings.hrc:430 msgctxt "STR_CUSTOMANIMATION_MISC" msgid "Misc: %1" -msgstr "" +msgstr "เบ็ดเตล็ด: %1" #. Ep4QY #: sd/inc/strings.hrc:431 @@ -2824,7 +2781,7 @@ #: sd/inc/strings.hrc:433 msgctxt "STR_ANNOTATION_TODAY" msgid "Today," -msgstr "วันนี้" +msgstr "วันนี้," #. DEYnN #: sd/inc/strings.hrc:434 @@ -2842,34 +2799,31 @@ #: sd/inc/strings.hrc:436 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:437 -#, 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:438 -#, 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:439 -#, 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:440 msgctxt "STR_ANNOTATION_UNDO_INSERT" msgid "Insert Comment" -msgstr "ใส่ความคิดเห็น" +msgstr "แทรกความคิดเห็น" #. s4c9W #: sd/inc/strings.hrc:441 @@ -2879,10 +2833,9 @@ #. bxiPE #: sd/inc/strings.hrc:442 -#, fuzzy msgctxt "STR_ANNOTATION_UNDO_MOVE" msgid "Move Comment" -msgstr "ซ่อนความคิดเห็น" +msgstr "ย้ายความคิดเห็น" #. hQbpd #: sd/inc/strings.hrc:443 @@ -2900,7 +2853,7 @@ #: sd/inc/strings.hrc:446 msgctxt "RID_DRAW_MEDIA_TOOLBOX" msgid "Media Playback" -msgstr "Media Playback" +msgstr "เล่นสื่อ" #. Q76cw #: sd/inc/strings.hrc:447 @@ -2910,7 +2863,6 @@ #. xCRmu #: sd/inc/strings.hrc:449 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME" msgid "%PRODUCTNAME %s" msgstr "%PRODUCTNAME %s" @@ -2925,41 +2877,37 @@ #: sd/inc/strings.hrc:451 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE" msgid "Slides per page:" -msgstr "" +msgstr "จำนวนภาพนิ่งต่อหน้า:" #. EPBUK #: sd/inc/strings.hrc:452 msgctxt "STR_IMPRESS_PRINT_UI_ORDER" msgid "Order:" -msgstr "" +msgstr "การเรียงลำดับ:" #. BFEFJ #: sd/inc/strings.hrc:453 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT" msgid "~Contents" -msgstr "เนื้อหา" +msgstr "เ~นื้อหา" #. AdWKp #: sd/inc/strings.hrc:454 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME" msgid "~Slide name" -msgstr "ชื่อภาพนิ่ง" +msgstr "~ชื่อภาพนิ่ง" #. GkLky #: sd/inc/strings.hrc:455 -#, fuzzy msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME" msgid "P~age name" -msgstr "ชื่อห~น้า" +msgstr "ชื่อของห~น้า" #. EFkVE #: sd/inc/strings.hrc:456 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE" msgid "~Date and time" -msgstr "วันที่และเวลา" +msgstr "วัน~ที่และเวลา" #. ZcDFL #: sd/inc/strings.hrc:457 @@ -2975,21 +2923,18 @@ #. WmYKp #: sd/inc/strings.hrc:459 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS" msgid "~Size" -msgstr "ขนาด" +msgstr "~ขนาด" #. qDGVE #: sd/inc/strings.hrc:460 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE" msgid "Brochure" msgstr "แผ่นพับ" #. K7m8L #: sd/inc/strings.hrc:461 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES" msgid "Page sides" msgstr "ด้านของหน้า" @@ -3002,95 +2947,93 @@ #. AEeCf #: sd/inc/strings.hrc:463 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY" msgid "~Use only paper tray from printer preferences" -msgstr "ใ~ช้เฉพาะถาดกระดาษจากที่เลือกไว้ในเครื่องพิมพ์เท่านั้น" +msgstr "ใ~ช้เฉพาะถาดกระดาษจากที่เลือกไว้ในค่าปรับแต่งเครื่องพิมพ์เท่านั้น" #. jBxbU #: sd/inc/strings.hrc:464 msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE" msgid "Pages:" -msgstr "" +msgstr "หน้า:" #. a3tSp #: sd/inc/strings.hrc:465 msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE" msgid "Slides:" -msgstr "" +msgstr "ภาพนิ่ง:" #. pPiWM #: sd/inc/strings.hrc:467 -#, 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:468 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:469 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:470 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:472 msgctxt "STR_ANIMATION_DIALOG_TITLE" msgid "Animation" -msgstr "" +msgstr "การเคลื่อนไหว" #. X9CWA #: sd/inc/strings.hrc:474 msgctxt "RID_SVXSTR_EDIT_GRAPHIC" msgid "Link" -msgstr "" +msgstr "ลิงก์" #. yYhnC #: sd/inc/strings.hrc:476 msgctxt "RID_SVXSTR_MENU_NEXT" msgid "~Next" -msgstr "" +msgstr "~ถัดไป" #. YG7NQ #: sd/inc/strings.hrc:477 msgctxt "RID_SVXSTR_MENU_NEXT" msgid "~Previous" -msgstr "" +msgstr "~ก่อนหน้า" #. A9eJu #: sd/inc/strings.hrc:478 msgctxt "RID_SVXSTR_MENU_FIRST" msgid "~First Slide" -msgstr "" +msgstr "ภาพนิ่งแ~รก" #. CVatA #: sd/inc/strings.hrc:479 msgctxt "RID_SVXSTR_MENU_LAST" msgid "~Last Slide" -msgstr "" +msgstr "ภาพนิ่งสุด~ท้าย" #. Wkvpi #: sd/inc/strings.hrc:481 msgctxt "STR_CLOSE_PANE" msgid "Close Pane" -msgstr "" +msgstr "ปิดช่อง" #. KfamK #: sd/inc/strings.hrc:482 msgctxt "STR_INSERT_TABLESTYLE" msgid "Add a new design" -msgstr "" +msgstr "เพิ่มแบบใหม่" #. a9JBA #: sd/inc/strings.hrc:483 @@ -3100,32 +3043,33 @@ "If you will delete this style, tables using it will revert to the default style.\n" "Do you still wish to delete this style?\n" msgstr "" +"รูปแบบที่เลือกมีการใช้งานในเอกสาร\n" +"ถ้าคุณลบรูปแบบนี้ ตารางต่างๆ ที่ใช้รูปแบบดังกล่าวก็จะย้อนกลับไปใช้รูปแบบปริยาย\n" +"คุณยังยืนยันที่จะลบรูปแบบนี้หรือไม่?\n" #. 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 @@ -3137,7 +3081,7 @@ #: sd/uiconfig/sdraw/ui/bulletsandnumbering.ui:26 msgctxt "bulletsandnumbering|reset" msgid "Reset" -msgstr "ตั้งค่าใหม่" +msgstr "ล้างค่า" #. zVTFe #: sd/uiconfig/sdraw/ui/bulletsandnumbering.ui:139 @@ -3155,45 +3099,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 @@ -3217,99 +3159,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 "สี" @@ -3318,50 +3255,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 @@ -3373,43 +3309,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 @@ -3419,46 +3355,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 "ชนิด" @@ -3467,7 +3399,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 @@ -3497,19 +3429,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 @@ -3527,7 +3459,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 @@ -3539,7 +3471,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 @@ -3557,7 +3489,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 @@ -3569,13 +3501,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 @@ -3587,7 +3519,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 @@ -3599,13 +3531,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 @@ -3617,20 +3549,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 @@ -3648,7 +3579,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 @@ -3660,7 +3591,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:227 msgctxt "drawprinteroptions|extended_tip|fittoprinttable" msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer." -msgstr "" +msgstr "ระบุว่าจะย่อขนาดวัตถุต่างๆ ที่ตกขอบกระดาษเพื่อให้พอดีกับกระดาษในเครื่องพิมพ์หรือไม่" #. snSFu #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:239 @@ -3672,19 +3603,19 @@ #: 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 "เรียงหน้าซ้ำแบบปูกระเบื้องลงบนแผ่นกระดาษ" #. dBYC3 #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:269 msgctxt "drawprinteroptions|extended_tip|tilesheet" msgid "Specifies that pages are to be printed in tiled format. If the pages are smaller than the paper, the page will be repeated multiple times on one sheet of paper." -msgstr "" +msgstr "ระบุให้พิมพ์หน้าต่างๆ แบบปูกระเบื้อง ถ้าหน้ามีขนาดเล้กกว่ากระดาษ ก็จะซ้ำหน้านั้นหลายๆ ชุดในกระดาษแผ่นเดียว" #. qbU9A #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:285 @@ -3738,7 +3669,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 @@ -3774,7 +3705,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 @@ -3792,44 +3723,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:189 msgctxt "insertlayer|extended_tip|textview" msgid "Enter a description of the layer." -msgstr "" +msgstr "ป้อนคำบรรยายของชั้นงาน" #. g2K4k #: sd/uiconfig/sdraw/ui/insertlayer.ui:200 @@ -3839,203 +3769,201 @@ #. DTUy2 #: sd/uiconfig/sdraw/ui/insertlayer.ui:228 -#, fuzzy msgctxt "insertlayer|visible" msgid "_Visible" -msgstr "มองเห็นได้" +msgstr "มองเ_ห็น" #. oXY4U #: sd/uiconfig/sdraw/ui/insertlayer.ui:236 msgctxt "insertlayer|extended_tip|visible" msgid "Show or hide the layer." -msgstr "" +msgstr "แสดงหรือซ่อนชั้นงาน" #. BtGRo #: sd/uiconfig/sdraw/ui/insertlayer.ui:248 msgctxt "insertlayer|printable" msgid "_Printable" -msgstr "" +msgstr "_พิมพ์ได้" #. VASG2 #: sd/uiconfig/sdraw/ui/insertlayer.ui:256 msgctxt "insertlayer|extended_tip|printable" msgid "When printing, print or ignore this particular layer." -msgstr "" +msgstr "เมื่อจัดพิมพ์ จะพิมพ์หรือข้ามชั้นงานนี้" #. E6EKN #: sd/uiconfig/sdraw/ui/insertlayer.ui:268 msgctxt "insertlayer|locked" msgid "_Locked" -msgstr "" +msgstr "_ล็อค" #. uaSTH #: sd/uiconfig/sdraw/ui/insertlayer.ui:276 msgctxt "insertlayer|extended_tip|locked" msgid "Prevent elements on the layer from being edited." -msgstr "" +msgstr "ป้องกันการแก้ไขส่วนประกอบต่างๆ ในชั้นงานนี้" #. WzZxq #: sd/uiconfig/sdraw/ui/insertlayer.ui:292 msgctxt "insertlayer|properties" msgid "Properties" -msgstr "" +msgstr "คุณสมบัติ" #. ogtGC #: sd/uiconfig/sdraw/ui/insertlayer.ui:321 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" #. PGoPa #: sd/uiconfig/sdraw/ui/navigatorcontextmenu.ui:12 msgctxt "navigatorcontextmenu|STR_RENAME" msgid "Rename..." -msgstr "" +msgstr "เปลี่ยนชื่อ..." #. 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:5596 msgctxt "drawnotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "แ_ทรก" #. Z3UCg #: sd/uiconfig/sdraw/ui/notebookbar.ui:5700 msgctxt "drawnotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "แ~ทรก" #. TVDXM #: sd/uiconfig/sdraw/ui/notebookbar.ui:6400 msgctxt "drawnotebookbar|PageMenuButton" msgid "_Layout" -msgstr "" +msgstr "_ผังวาง" #. Rv7x4 #: sd/uiconfig/sdraw/ui/notebookbar.ui:6485 msgctxt "drawnotebookbar|PageLabel" msgid "~Layout" -msgstr "" +msgstr "~ผังวาง" #. BQcfo #: sd/uiconfig/sdraw/ui/notebookbar.ui:7023 msgctxt "drawnotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_ตรวจทาน" #. prpcY #: sd/uiconfig/sdraw/ui/notebookbar.ui:7106 msgctxt "drawnotebookbar|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~ตรวจทาน" #. EiuB6 #: sd/uiconfig/sdraw/ui/notebookbar.ui:8135 msgctxt "drawnotebookbar|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. EF3TH #: sd/uiconfig/sdraw/ui/notebookbar.ui:8220 msgctxt "drawnotebookbar|ViewLabel" msgid "~View" -msgstr "" +msgstr "มุ~มมอง" #. 94L75 #: sd/uiconfig/sdraw/ui/notebookbar.ui:9565 msgctxt "drawnotebookbar|TextMenuButton" msgid "T_ext" -msgstr "" +msgstr "_ข้อความ" #. PQtWE #: sd/uiconfig/sdraw/ui/notebookbar.ui:9660 msgctxt "drawnotebookbar|ReferencesLabel" msgid "T~ext" -msgstr "" +msgstr "~ข้อความ" #. tNq7H #: sd/uiconfig/sdraw/ui/notebookbar.ui:10562 msgctxt "drawnotebookbar|TableMenuButton" msgid "_Table" -msgstr "" +msgstr "ตา_ราง" #. 9pJGh #: sd/uiconfig/sdraw/ui/notebookbar.ui:10646 msgctxt "drawnotebookbar|TableLabel" msgid "~Table" -msgstr "" +msgstr "ตา~ราง" #. ECD4J #: sd/uiconfig/sdraw/ui/notebookbar.ui:11173 @@ -4043,349 +3971,349 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:14284 msgctxt "drawnotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "" +msgstr "แปลง" #. 4Z6aZ #: sd/uiconfig/sdraw/ui/notebookbar.ui:11841 msgctxt "drawnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "" +msgstr "รูป_ภาพ" #. 7FoFi #: sd/uiconfig/sdraw/ui/notebookbar.ui:11950 msgctxt "drawnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "รูป~ภาพ" #. 6SADm #: sd/uiconfig/sdraw/ui/notebookbar.ui:13701 msgctxt "drawnotebookbar|DrawMenuButton" msgid "_Draw" -msgstr "" +msgstr "วา_ด" #. 6S8qN #: sd/uiconfig/sdraw/ui/notebookbar.ui:13807 msgctxt "drawnotebookbar|DrawLabel" msgid "~Draw" -msgstr "" +msgstr "วา~ด" #. QAEDd #: sd/uiconfig/sdraw/ui/notebookbar.ui:14640 msgctxt "drawnotebookbar|ObjectMenuButton" msgid "_Object" -msgstr "" +msgstr "_วัตถุ" #. SL4NA #: sd/uiconfig/sdraw/ui/notebookbar.ui:14747 msgctxt "drawnotebookbar|ObjectLabel" msgid "~Object" -msgstr "" +msgstr "~วัตถุ" #. 4aAxG #: sd/uiconfig/sdraw/ui/notebookbar.ui:15248 msgctxt "drawnotebookbar|MediaMenuButton" msgid "_Media" -msgstr "" +msgstr "_สื่อ" #. ed3LH #: sd/uiconfig/sdraw/ui/notebookbar.ui:15352 msgctxt "drawnotebookbar|MediaLabel" msgid "~Media" -msgstr "" +msgstr "~สื่อ" #. FAL6c #: sd/uiconfig/sdraw/ui/notebookbar.ui:16160 msgctxt "drawnotebookbar|FormMenuButton" msgid "Fo_rm" -msgstr "" +msgstr "แบบฟอ_ร์ม" #. oaAJU #: sd/uiconfig/sdraw/ui/notebookbar.ui:16244 msgctxt "DrawNotebookbar|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "แบบฟอ~ร์ม" #. ZBVGA #: sd/uiconfig/sdraw/ui/notebookbar.ui:17031 msgctxt "DrawNotebookbar|FormMenuButton" msgid "3_d" -msgstr "" +msgstr "_3 มิติ" #. fEyRX #: sd/uiconfig/sdraw/ui/notebookbar.ui:17138 msgctxt "DrawNotebookbar|FormLabel" msgid "3~d" -msgstr "" +msgstr "~3 มิติ" #. 7ZLQw #: sd/uiconfig/sdraw/ui/notebookbar.ui:17662 msgctxt "DrawNotebookbar|FormMenuButton" msgid "_Master" -msgstr "" +msgstr "แ_ม่แบบ" #. oiXVg #: sd/uiconfig/sdraw/ui/notebookbar.ui:17746 msgctxt "DrawNotebookbar|MasterLabel" msgid "~Master" -msgstr "" +msgstr "แ~ม่แบบ" #. yzvja #: sd/uiconfig/sdraw/ui/notebookbar.ui:17803 msgctxt "drawnotebookbar|FormMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ส่วนข_ยาย" #. L3eG5 #: sd/uiconfig/sdraw/ui/notebookbar.ui:17877 msgctxt "drawnotebookbar|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ส่วนข~ยาย" #. dkNUg #: sd/uiconfig/sdraw/ui/notebookbar.ui:18789 msgctxt "drawnotebookbar|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "เ_ครื่องมือ" #. Je8XQ #: sd/uiconfig/sdraw/ui/notebookbar.ui:18873 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:5507 msgctxt "notebookbar_draw_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "แ_ทรก" #. d8cey #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5558 msgctxt "notebookbar_draw_compact|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "แ~ทรก" #. kkPza #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6257 msgctxt "notebookbar_draw_compact|LayoutMenuButton" msgid "Layout" -msgstr "" +msgstr "ผังวาง" #. 2wBCF #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6309 msgctxt "notebookbar_draw_compact|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "~ผังวาง" #. GG7uL #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6824 msgctxt "notebookbar_draw_compact|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_ตรวจทาน" #. twxEq #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6876 msgctxt "notebookbar_draw_compact|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~ตรวจทาน" #. H5eNL #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7571 msgctxt "notebookbar_draw_compact|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. GGEXu #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7623 msgctxt "notebookbar_draw_compact|ViewLabel" msgid "~View" -msgstr "" +msgstr "มุ~มมอง" #. CqEAM #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9105 msgctxt "notebookbar_draw_compact|TextMenuButton" msgid "T_ext" -msgstr "" +msgstr "_ข้อความ" #. LFcJC #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9159 msgctxt "notebookbar_draw_compact|ReferencesLabel" msgid "T~ext" -msgstr "" +msgstr "~ข้อความ" #. sdACh #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10852 msgctxt "notebookbar_draw_compact|TableMenuButton" msgid "T_able" -msgstr "" +msgstr "ตา_ราง" #. GEmbu #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10903 msgctxt "notebookbar_draw_compact|TableLabel" msgid "~Table" -msgstr "" +msgstr "ตา~ราง" #. EGCcN #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12252 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" -msgstr "" +msgstr "รูป_ภาพ" #. 2eQcW #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12304 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "รูป~ภาพ" #. CezAN #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14138 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" -msgstr "" +msgstr "วา_ด" #. tAMd5 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14193 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" -msgstr "" +msgstr "วา~ด" #. A49xv #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15192 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" -msgstr "" +msgstr "วัตถุ" #. 3gubF #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15248 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" -msgstr "" +msgstr "~วัตถุ" #. fDRf9 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16393 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" -msgstr "" +msgstr "_สื่อ" #. dAbX4 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16447 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" -msgstr "" +msgstr "~สื่อ" #. SCSH8 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17684 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" -msgstr "" +msgstr "แบบฟอ_ร์ม" #. vzdXF #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17739 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "แบบฟอ~ร์ม" #. zEK2o #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18260 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" -msgstr "" +msgstr "แ_ม่แบบ" #. S3huE #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18312 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" -msgstr "" +msgstr "แ~ม่แบบ" #. T3Z8R #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19274 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" -msgstr "" +msgstr "_3 มิติ" #. ZCuDe #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19329 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" -msgstr "" +msgstr "~3 มิติ" #. YpLRj #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19408 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ส่วนข_ยาย" #. uRrEt #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19466 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ส่วนข~ยาย" #. L3xmd #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20467 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "เ_ครื่องมือ" #. LhBTk #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20519 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 @@ -4393,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 @@ -4412,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 @@ -4427,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 @@ -4483,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 @@ -4574,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 @@ -4605,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 @@ -4642,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 @@ -4794,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 @@ -4824,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 @@ -5051,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 @@ -5093,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 @@ -5105,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 @@ -5117,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 @@ -5129,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 @@ -5152,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 "ลูกเล่นเบ็ดเตล็ด" @@ -5175,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 @@ -5206,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 @@ -5242,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 @@ -5267,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 "แสดงตัวอย่างอัตโนมัติ" @@ -5280,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 @@ -5430,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:264 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 @@ -5748,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 @@ -5872,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 @@ -5885,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 @@ -5898,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 @@ -5911,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 @@ -5993,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 @@ -6053,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 "เอียง" @@ -6109,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 @@ -6133,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 @@ -6355,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 @@ -6367,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 @@ -6379,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 @@ -6391,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 @@ -6409,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 @@ -6440,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 @@ -6452,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 @@ -6464,19 +6324,19 @@ #: 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 "เรียงภาพนิ่งซ้ำแบบปูกระเบื้องลงบนแผ่นกระดาษ" #. NDyEg #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:411 msgctxt "impressprinteroptions|extended_tip|tilesheet" msgid "Specifies that slides are to be printed in tiled format. If the slides are smaller than the paper, the slide will be repeated multiple times on one sheet of paper." -msgstr "" +msgstr "ระบุให้พิมพ์ภาพนิ่งต่างๆ แบบปูกระเบื้อง ถ้าภาพนิ่งมีขนาดเล้กกว่ากระดาษ ก็จะซ้ำภาพนิ่งนั้นหลายๆ ครั้งในกระดาษแผ่นเดียว" #. xa7tq #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:427 @@ -6486,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 @@ -6520,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 @@ -6563,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:60 msgctxt "layoutwindow|label5" msgid "Horizontal" -msgstr "" +msgstr "แนวนอน" #. usUqJ #: sd/uiconfig/simpress/ui/layoutwindow.ui:112 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 @@ -6662,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 @@ -6775,7 +6622,6 @@ #. wavgT #: sd/uiconfig/simpress/ui/navigatorpanel.ui:68 -#, fuzzy msgctxt "navigatorpanel|documents-atkobject" msgid "Active Window" msgstr "หน้าต่างที่ใช้งานอยู่" @@ -6784,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:119 msgctxt "navigatorpanel|STR_OBJECTS_TREE" msgid "Page Tree" -msgstr "" +msgstr "โครงสร้างต้นไม้ของหน้า" #. e6gMq #: sd/uiconfig/simpress/ui/navigatorpanel.ui:120 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 "ภาพนิ่งแรก" @@ -6809,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:159 msgctxt "navigatorpanel|previous|tooltip_text" msgid "Previous Slide" -msgstr "" +msgstr "ภาพนิ่งที่แล้ว" #. PJUma #: sd/uiconfig/simpress/ui/navigatorpanel.ui:163 msgctxt "navigatorpanel|extended_tip|previous" msgid "Moves back one page." -msgstr "" +msgstr "เลื่อนกลับไปหนึ่งหน้า" #. bkvQE #: sd/uiconfig/simpress/ui/navigatorpanel.ui:176 @@ -6833,11 +6678,10 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:180 msgctxt "navigatorpanel|extended_tip|next" msgid "Move forward one page." -msgstr "" +msgstr "เลื่อนไปข้างหน้าหนึ่งหน้า" #. FVSHF #: sd/uiconfig/simpress/ui/navigatorpanel.ui:193 -#, fuzzy msgctxt "navigatorpanel|last|tooltip_text" msgid "Last Slide" msgstr "ภาพนิ่งสุดท้าย" @@ -6846,11 +6690,10 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:197 msgctxt "navigatorpanel|extended_tip|last" msgid "Jumps to the last page." -msgstr "" +msgstr "กระโดดไปที่หน้าสุดท้าย" #. mHVom #: sd/uiconfig/simpress/ui/navigatorpanel.ui:222 -#, fuzzy msgctxt "navigatorpanel|dragmode|tooltip_text" msgid "Drag Mode" msgstr "โหมดลาก" @@ -6859,145 +6702,145 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:226 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:239 msgctxt "navigatorpanel|shapes|tooltip_text" msgid "Show Shapes" -msgstr "" +msgstr "แสดงรูปร่างต่างๆ" #. EUeae #: sd/uiconfig/simpress/ui/navigatorpanel.ui:243 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:266 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:277 msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_NAMED_SHAPES" msgid "Named shapes" -msgstr "" +msgstr "รูปร่างที่มีชื่อ" #. dLEPF #: sd/uiconfig/simpress/ui/navigatorpanel.ui:286 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:6008 msgctxt "impressnotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "แ_ทรก" #. t3YwN #: sd/uiconfig/simpress/ui/notebookbar.ui:6111 msgctxt "impressnotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "แ~ทรก" #. 58fjG #: sd/uiconfig/simpress/ui/notebookbar.ui:6886 msgctxt "impressnotebookbar|SlideMenuButton" msgid "_Layout" -msgstr "" +msgstr "_ผังวาง" #. ArPLp #: sd/uiconfig/simpress/ui/notebookbar.ui:6971 msgctxt "impressnotebookbar|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "~ผังวาง" #. vRtjP #: sd/uiconfig/simpress/ui/notebookbar.ui:7435 msgctxt "impressnotebookbar|SlideShowMenuButton" msgid "_Slide Show" -msgstr "" +msgstr "_นำเสนอภาพนิ่ง" #. nV5FC #: sd/uiconfig/simpress/ui/notebookbar.ui:7519 msgctxt "impressnotebookbar|ReferencesLabel" msgid "~Slide Show" -msgstr "" +msgstr "~นำเสนอภาพนิ่ง" #. sDdGm #: sd/uiconfig/simpress/ui/notebookbar.ui:8055 msgctxt "impressnotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_ตรวจทาน" #. drk6E #: sd/uiconfig/simpress/ui/notebookbar.ui:8138 msgctxt "impressnotebookbar|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~ตรวจทาน" #. vjE5w #: sd/uiconfig/simpress/ui/notebookbar.ui:9357 msgctxt "impressnotebookbar|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. KJK9J #: sd/uiconfig/simpress/ui/notebookbar.ui:9442 msgctxt "impressnotebookbar|ViewLabel" msgid "~View" -msgstr "" +msgstr "มุ~มมอง" #. bWC2b #: sd/uiconfig/simpress/ui/notebookbar.ui:10336 msgctxt "impressnotebookbar|TableMenuButton" msgid "_Table" -msgstr "" +msgstr "ตา_ราง" #. dmEJG #: sd/uiconfig/simpress/ui/notebookbar.ui:10420 msgctxt "impressnotebookbar|TableLabel" msgid "~Table" -msgstr "" +msgstr "ตา~ราง" #. Cn8TS #: sd/uiconfig/simpress/ui/notebookbar.ui:10945 @@ -7005,377 +6848,375 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:14011 msgctxt "impressnotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "" +msgstr "แปลง" #. do5DT #: sd/uiconfig/simpress/ui/notebookbar.ui:11615 msgctxt "impressnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "" +msgstr "รูป_ภาพ" #. XCSMA #: sd/uiconfig/simpress/ui/notebookbar.ui:11724 msgctxt "impressnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "รูป~ภาพ" #. nTy3C #: sd/uiconfig/simpress/ui/notebookbar.ui:13426 msgctxt "impressnotebookbar|DrawMenuButton" msgid "_Draw" -msgstr "" +msgstr "วา_ด" #. BfNQD #: sd/uiconfig/simpress/ui/notebookbar.ui:13533 msgctxt "impressnotebookbar|DrawLabel" msgid "~Draw" -msgstr "" +msgstr "วา~ด" #. p3Faf #: sd/uiconfig/simpress/ui/notebookbar.ui:14367 msgctxt "impressnotebookbar|ObjectMenuButton" msgid "_Object" -msgstr "" +msgstr "_วัตถุ" #. wL8mu #: sd/uiconfig/simpress/ui/notebookbar.ui:14474 msgctxt "impressnotebookbar|ObjectLabel" msgid "~Object" -msgstr "" +msgstr "~วัตถุ" #. AAosj #: sd/uiconfig/simpress/ui/notebookbar.ui:14975 msgctxt "impressnotebookbar|MediaMenuButton" msgid "_Media" -msgstr "" +msgstr "_สื่อ" #. GgHEg #: sd/uiconfig/simpress/ui/notebookbar.ui:15079 msgctxt "impressnotebookbar|MediaLabel" msgid "~Media" -msgstr "" +msgstr "~สื่อ" #. W9oCC #: sd/uiconfig/simpress/ui/notebookbar.ui:15887 msgctxt "impressnotebookbar|FormMenuButton" msgid "Fo_rm" -msgstr "" +msgstr "แบบฟอ_ร์ม" #. 7sAbT #: sd/uiconfig/simpress/ui/notebookbar.ui:15971 msgctxt "ImpressNotebookbar|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "แบบฟอ~ร์ม" #. aAdZJ #: sd/uiconfig/simpress/ui/notebookbar.ui:16766 msgctxt "impressnotebookbar|FormMenuButton" msgid "_Master" -msgstr "" +msgstr "แ_ม่แบบ" #. XAZEm #: sd/uiconfig/simpress/ui/notebookbar.ui:16850 msgctxt "ImpressNotebookbar|MasterLabel" msgid "~Master" -msgstr "" +msgstr "แ~ม่แบบ" #. DyZAq #: sd/uiconfig/simpress/ui/notebookbar.ui:17660 msgctxt "ImpressNotebookbar|FormMenuButton" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. rUJFu #: sd/uiconfig/simpress/ui/notebookbar.ui:17744 msgctxt "ImpressNotebookbar|View2Label" msgid "~Outline" -msgstr "" +msgstr "เ~ค้าโครง" #. pA8DH #: sd/uiconfig/simpress/ui/notebookbar.ui:18531 msgctxt "impressnotebookbar|FormMenuButton" msgid "3_d" -msgstr "" +msgstr "_3 มิติ" #. xwrog #: sd/uiconfig/simpress/ui/notebookbar.ui:18638 msgctxt "impressnotebookbar|FormLabel" msgid "3~d" -msgstr "" +msgstr "~3 มิติ" #. syaDA #: sd/uiconfig/simpress/ui/notebookbar.ui:18695 msgctxt "impressnotebookbar|FormMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ส่วนข_ยาย" #. Nwrnv #: sd/uiconfig/simpress/ui/notebookbar.ui:18769 msgctxt "impressnotebookbar|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ส่วนข~ยาย" #. rBSXA #: sd/uiconfig/simpress/ui/notebookbar.ui:19732 msgctxt "impressnotebookbar|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "เ_ครื่องมือ" #. DTNDB #: sd/uiconfig/simpress/ui/notebookbar.ui:19816 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:5793 msgctxt "notebookbar_impress_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "แ_ทรก" #. ZPHaB #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5844 msgctxt "notebookbar_impress_compact|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "แ~ทรก" #. zEEiz #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6630 msgctxt "notebookbar_impress_compact|LayoutMenuButton" msgid "Layout" -msgstr "" +msgstr "ผังวาง" #. EZeGS #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6682 msgctxt "notebookbar_impress_compact|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "~ผังวาง" #. sMsGk #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7197 msgctxt "notebookbar_impress_compact|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_ตรวจทาน" #. pZ4A3 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7249 msgctxt "notebookbar_impress_compact|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~ตรวจทาน" #. cRSR3 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7786 msgctxt "notebookbar_impress_compact|LayoutMenuButton" msgid "_Slide Show" -msgstr "" +msgstr "_นำเสนอภาพนิ่ง" #. KAo9c #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7838 msgctxt "notebookbar_impress_compact|LayoutLabel" msgid "~Slide Show" -msgstr "" +msgstr "~นำเสนอภาพนิ่ง" #. URjcx #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8670 msgctxt "notebookbar_impress_compact|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. SScpo #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8722 msgctxt "notebookbar_impress_compact|ViewLabel" msgid "~View" -msgstr "" +msgstr "มุ~มมอง" #. CzCMC #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10406 msgctxt "notebookbar_impress_compact|TableMenuButton" msgid "T_able" -msgstr "" +msgstr "ตา_ราง" #. mnepU #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10457 msgctxt "notebookbar_impress_compact|TableLabel" msgid "~Table" -msgstr "" +msgstr "ตา~ราง" #. BzXPB #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11804 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" -msgstr "" +msgstr "รูปภาพ" #. wD2ow #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11859 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "รูป~ภาพ" #. ZqPYr #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13634 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" -msgstr "" +msgstr "วา_ด" #. 78DU3 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13686 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" -msgstr "" +msgstr "วา~ด" #. uv2FE #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14683 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" -msgstr "" +msgstr "วัตถุ" #. FSjqt #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14735 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" -msgstr "" +msgstr "~วัตถุ" #. t3Fmv #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15878 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" -msgstr "" +msgstr "_สื่อ" #. HbptL #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15929 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" -msgstr "" +msgstr "~สื่อ" #. NNqQ2 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17166 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" -msgstr "" +msgstr "แบบฟอ_ร์ม" #. DpFpM #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17218 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "แบบฟอ~ร์ม" #. MNUFm #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17970 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" -msgstr "" +msgstr "แ_ม่แบบ" #. NUiWE #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18022 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" -msgstr "" +msgstr "แ~ม่แบบ" #. 4f9xG #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18982 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" -msgstr "" +msgstr "_3 มิติ" #. ntfL7 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19034 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" -msgstr "" +msgstr "~3 มิติ" #. ntjaC #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19113 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ส่วนข_ยาย" #. Tu5f8 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19171 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ส่วนข~ยาย" #. abvtG #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20172 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "เ_ครื่องมือ" #. oKhkv #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20224 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 @@ -7387,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 @@ -7463,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 @@ -7620,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 @@ -7835,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 @@ -7857,7 +7661,6 @@ #. JE3bf #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:151 -#, fuzzy msgctxt "notebookbar_groups|crossreference" msgid "Cross-Reference" msgstr "อ้างอิงไขว้" @@ -7866,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 @@ -7882,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" @@ -7915,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 "ลักษณะ" @@ -7931,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 @@ -7947,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 "ภาพนิ่ง" @@ -7994,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 @@ -8007,7 +7799,6 @@ #. Du8Qw #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1621 -#, fuzzy msgctxt "notebookbar_groups|imagestyleb" msgid "Style" msgstr "ลักษณะ" @@ -8016,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 "ตรึง" @@ -8041,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 @@ -8053,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 @@ -8065,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 "เอกสารใหม่" @@ -8110,37 +7897,37 @@ #: 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 ทำงานอยู่หรือไม่" #. dQSDT #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:149 msgctxt "optimpressgeneralpage|enprsntconsfullscreen" msgid "Fullscreen presenter console" -msgstr "" +msgstr "ใช้หน้าจอเฝ้าคุมการนำเสนอแบบเต็มจอ" #. BPu2B #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:157 msgctxt "extended_tip|enprsntconsfullscreen" msgid "Specifies that you want to show the Presenter Console in fullscreen mode." -msgstr "" +msgstr "ระบุว่าคุณต้องการแสดงหน้าจอเฝ้าคุมการนำเสนอในโหมดเต็มจอภาพหรือไม่" #. txHfw #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:172 @@ -8152,17 +7939,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 "ความเข้ากันได้" @@ -8171,68 +7957,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 @@ -8242,32 +8027,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 "วัตถุข้อความ" @@ -8276,26 +8059,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 @@ -8307,7 +8089,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 @@ -8317,7 +8099,6 @@ #. 2PDAX #: sd/uiconfig/simpress/ui/photoalbum.ui:48 -#, fuzzy msgctxt "photoalbum|create_btn" msgid "Insert Slides" msgstr "แทรกภาพนิ่ง" @@ -8326,31 +8107,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 @@ -8360,47 +8141,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 "เต็มจอ" @@ -8409,85 +8185,85 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:372 msgctxt "photoalbum|insert_as_link_check" msgid "Link images" -msgstr "" +msgstr "สร้างลิงก์ไปยังรูปภาพ" #. c5owK #: sd/uiconfig/simpress/ui/pmimagespage.ui:41 msgctxt "pmimagespage|STR_REMOVE_CROP_AREA" msgid "_Delete cropped image areas" -msgstr "" +msgstr "_ลบพื้นที่รูปภาพส่วนที่ครอบตัดออกทิ้ง" #. bw3Ac #: sd/uiconfig/simpress/ui/pmimagespage.ui:55 msgctxt "pmimagespage|STR_EMBED_LINKED_GRAPHICS" msgid "_Embed external images" -msgstr "" +msgstr "_ฝังรูปภาพภายนอก" #. vF2CP #: sd/uiconfig/simpress/ui/pmimagespage.ui:76 msgctxt "pmimagespage|STR_IMAGE_RESOLUTION" msgid "Reduce _image resolution" -msgstr "" +msgstr "ลดความละเ_อียดภาพ" #. aCEmS #: sd/uiconfig/simpress/ui/pmimagespage.ui:92 msgctxt "pmimagespage|LB_RESOLUTION" msgid "" -msgstr "" +msgstr "<ไม่เปลี่ยนแปลง>" #. 7Jqdo #: sd/uiconfig/simpress/ui/pmimagespage.ui:93 msgctxt "pmimagespage|LB_RESOLUTION" msgid "96 DPI (screen resolution)" -msgstr "" +msgstr "96 DPI (ความละเอียดจอภาพ)" #. JXujg #: sd/uiconfig/simpress/ui/pmimagespage.ui:94 msgctxt "pmimagespage|LB_RESOLUTION" msgid "150 DPI (projector resolution)" -msgstr "" +msgstr "150 DPI (ความละเอียดเครื่องฉาย)" #. 76mBF #: sd/uiconfig/simpress/ui/pmimagespage.ui:95 msgctxt "pmimagespage|LB_RESOLUTION" msgid "300 DPI (print resolution)" -msgstr "" +msgstr "300 DPI (ความละเอียดงานพิมพ์)" #. G5zaJ #: sd/uiconfig/simpress/ui/pmimagespage.ui:96 msgctxt "pmimagespage|LB_RESOLUTION" msgid "600 DPI (print resolution)" -msgstr "" +msgstr "600 DPI (ความละเอียดงานพิมพ์)" #. 2hKhk #: sd/uiconfig/simpress/ui/pmimagespage.ui:113 msgctxt "pmimagespage|STR_LOSSLESS_COMPRESSION" msgid "_Lossless compression" -msgstr "" +msgstr "บีบอัดโดยไ_ม่เสียรายละเอียด" #. GLtSt #: sd/uiconfig/simpress/ui/pmimagespage.ui:128 msgctxt "pmimagespage|STR_JPEG_COMPRESSION" msgid "_JPEG compression" -msgstr "" +msgstr "บีบอัดแบบ _JPEG" #. 22Nif #: sd/uiconfig/simpress/ui/pmimagespage.ui:152 msgctxt "pmimagespage|STR_IMAGE_RESOLUTION" msgid "_Quality in %" -msgstr "" +msgstr "คุณภา_พ เป็น %" #. xYnbA #: sd/uiconfig/simpress/ui/pmimagespage.ui:187 msgctxt "pmimagespages|STR_GRAPHIC_OPTIMIZATION" msgid "Choose settings for optimizing images" -msgstr "" +msgstr "เลือกค่าตั้งสำหรับการลดขนาดรูปภาพ" #. w6qX4 #: sd/uiconfig/simpress/ui/pminfodialog.ui:29 msgctxt "pminfodialog|ask" msgid "_Open newly created presentation" -msgstr "" +msgstr "_เปิดงานนำเสนอที่สร้างใหม่" #. 9HUiB #: sd/uiconfig/simpress/ui/pmintropage.ui:40 @@ -8497,177 +8273,177 @@ "\n" " At the last step of the wizard you can choose to apply the changes to the current presentation or to create an optimized new version of the presentation." msgstr "" +"เครื่องมือลดขนาดงานนำเสนอ ใช้สำหรับลดขนาดแฟ้มของงานนำเสนอปัจจุบัน โดยจะบีบอัดรูปภาพ และลบข้อมูลที่ไม่จำเป็นออก\n" +"\n" +" ในขั้นตอนสุดท้ายของเครื่องมือช่วยสร้างนี้ คุณสามารถเลือกได้ว่าจะปรับแก้งานนำเสนอปัจจุบันโดยตรง หรือจะสร้างฉบับลดขนาดต่างหาก" #. WwLQG #: sd/uiconfig/simpress/ui/pmintropage.ui:73 msgctxt "pmintropage:STR_REMOVE" msgid "_Delete" -msgstr "" +msgstr "_ลบ" #. NPMR9 #: sd/uiconfig/simpress/ui/pmintropage.ui:95 msgctxt "pmintropage|STR_CHOSE_SETTINGS" msgid "_Choose settings for Presentation Minimizer" -msgstr "" +msgstr "เลือ_กวิธีทำงานของเครื่องมือลดขนาดงานนำเสนอ" #. FtXuZ #: sd/uiconfig/simpress/ui/pmintropage.ui:120 msgctxt "pmintropage|STR_INTRODUCTION" msgid "Introduction" -msgstr "" +msgstr "เกริ่นนำ" #. kJS2d #: sd/uiconfig/simpress/ui/pmobjectspage.ui:36 msgctxt "pmimagespage|STR_OLE_REPLACE" msgid "Create static replacement images for OLE objects" -msgstr "" +msgstr "สร้างรูปภาพตายตัวเพื่อแทนที่วัตถุ OLE" #. LkYsy #: sd/uiconfig/simpress/ui/pmobjectspage.ui:51 msgctxt "pmobjectspage|STR_ALL_OLE_OBJECTS" msgid "For _all OLE objects" -msgstr "" +msgstr "สำหรับวัตถุ OLE _ทั้งหมด" #. hocJG #: sd/uiconfig/simpress/ui/pmobjectspage.ui:67 msgctxt "pmobjectspage|STR_ALIEN_OLE_OBJECTS_ONLY" msgid "_For OLE objects not based on OpenDocument format" -msgstr "" +msgstr "สำหรับวัตถุ OLE ที่ไ_ม่ได้อิงรูปแบบ OpenDocument" #. CcCfe #: sd/uiconfig/simpress/ui/pmobjectspage.ui:106 msgctxt "pmobjectspages|STR_OLE_OPTIMIZATION" msgid "Choose settings for replacing OLE objects" -msgstr "" +msgstr "เลือกวิธีแทนที่วัตถุ OLE" #. bRB3B #: sd/uiconfig/simpress/ui/pmslidespage.ui:36 msgctxt "pmslidespage|STR_DELETE_MASTER_PAGES" msgid "Delete unused _master slides" -msgstr "" +msgstr "ลบแ_ม่แบบภาพนิ่งที่ไม่ได้ใช้" #. wDvum #: sd/uiconfig/simpress/ui/pmslidespage.ui:50 msgctxt "pmslidespage|STR_DELETE_HIDDEN_SLIDES" msgid "Delete hidden _slides" -msgstr "" +msgstr "ลบภาพนิ่งที่ซ่อ_นไว้" #. EoDRG #: sd/uiconfig/simpress/ui/pmslidespage.ui:64 msgctxt "pmslidespage|STR_CUSTOM_SHOW" msgid "Delete slides that are not used for the _custom slide show" -msgstr "" +msgstr "ลบภาพนิ่งที่ไม่ได้ใช้ในการแ_สดงภาพนิ่งที่กำหนดเอง" #. TEzVE #: sd/uiconfig/simpress/ui/pmslidespage.ui:97 msgctxt "pmslidespage|STR_DELETE_NOTES_PAGES" msgid "_Clear notes" -msgstr "" +msgstr "_ล้างบันทึกเสริม" #. Jsmp2 #: sd/uiconfig/simpress/ui/pmslidespage.ui:115 msgctxt "pmslidespages|STR_CHOOSE_SLIDES" msgid "Choose which slides to delete" -msgstr "" +msgstr "เลือกภาพนิ่งที่จะลบ" #. cBtLF #: sd/uiconfig/simpress/ui/pmsummarypage.ui:47 msgctxt "pmsummarypage|STR_APPLY_TO_CURRENT" msgid "_Apply changes to current presentation" -msgstr "" +msgstr "_ปรับแก้งานนำเสนอปัจจุบันโดยตรง" #. mBhDk #: sd/uiconfig/simpress/ui/pmsummarypage.ui:63 msgctxt "pmsummarypage|STR_SAVE_AS" msgid "_Duplicate presentation before applying changes" -msgstr "" +msgstr "_สำเนางานนำเสนอก่อนปรับแก้" #. PiAHE #: sd/uiconfig/simpress/ui/pmsummarypage.ui:105 msgctxt "pmsummarypage|STR_SAVE_SETTINGS" msgid "_Save settings as" -msgstr "" +msgstr "_บันทึกค่าตั้งเป็น" #. ExrdK #: sd/uiconfig/simpress/ui/pmsummarypage.ui:182 msgctxt "pmsummarypage|STR_CURRENT_FILESIZE" msgid "Current file size:" -msgstr "" +msgstr "ขนาดแฟ้มปัจจุบัน:" #. ZcrFM #: sd/uiconfig/simpress/ui/pmsummarypage.ui:194 msgctxt "pmsummarypage|STR_ESTIMATED_FILESIZE" msgid "Estimated new file size:" -msgstr "" +msgstr "ขนาดแฟ้มใหม่โดยประมาณ:" #. Ubstx #: sd/uiconfig/simpress/ui/pmsummarypage.ui:250 msgctxt "pmsummarypages|STR_SUMMARY_TITLE" msgid "Choose where to apply the following changes" -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 @@ -8679,154 +8455,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 @@ -8838,31 +8611,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 @@ -8874,7 +8647,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 @@ -8886,141 +8659,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 @@ -9038,33 +8803,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 @@ -9082,13 +8845,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 @@ -9106,243 +8869,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 @@ -9354,13 +9115,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 @@ -9372,147 +9133,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 @@ -9524,19 +9283,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 @@ -9546,129 +9305,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 @@ -9678,32 +9431,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 "การเชื่อมต่อ" @@ -9712,35 +9463,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 @@ -9756,28 +9503,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 "ใหญ่พิเศษ" @@ -9796,84 +9539,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 @@ -9891,43 +9631,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 @@ -9939,195 +9679,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 @@ -10139,91 +9871,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 "แสดงตัวอย่างอัตโนมัติ" @@ -10232,32 +9961,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 @@ -10269,126 +9997,121 @@ #: 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 "คอลัมน์ส_ลับสี" #. fKBVs #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:152 msgctxt "tabledesignpanel|menunew" msgid "New" -msgstr "" +msgstr "ใหม่" #. U5Noi #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:160 msgctxt "tabledesignpanel|menuclone" msgid "Clone" -msgstr "" +msgstr "ถอดแบบ" #. ZsSkp #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:168 msgctxt "tabledesignpanel|menudelete" msgid "Delete" -msgstr "" +msgstr "ลบ" #. RWsRb #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:176 msgctxt "tabledesignpanel|menureset" msgid "Reset" -msgstr "" +msgstr "ล้างค่า" #. ZCDY2 #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:184 msgctxt "tabledesignpanel|menuformat" msgid "Format" -msgstr "" +msgstr "รูปแบบ" #. 8myJL #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:194 msgctxt "tabledesignpanel|menufirstrow" msgid "Header row..." -msgstr "" +msgstr "แถวหัวตาราง..." #. ZeuD3 #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:202 msgctxt "tabledesignpanel|menulastrow" msgid "Total row..." -msgstr "" +msgstr "แถวผลรวม..." #. 3yZqr #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:210 msgctxt "tabledesignpanel|menuoddrows" msgid "Banded rows..." -msgstr "" +msgstr "แถวสลับสี..." #. JzTgZ #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:224 msgctxt "tabledesignpanel|menufirstcolumn" msgid "First column..." -msgstr "" +msgstr "คอลัมน์แรก..." #. f5bFZ #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:232 msgctxt "tabledesignpanel|menulastcolumn" msgid "Last column..." -msgstr "" +msgstr "คอลัมน์สุดท้าย..." #. MhPWp #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:240 msgctxt "tabledesignpanel|menuoddcolumns" msgid "Banded columns..." -msgstr "" +msgstr "คอลัมน์สลับสี..." #. fUFnD #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:254 msgctxt "tabledesignpanel|menubody" msgid "Other cells..." -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 @@ -10404,7 +10127,6 @@ #. xeCAp #: sd/uiconfig/simpress/ui/templatedialog.ui:295 -#, fuzzy msgctxt "templatedialog|shadowing" msgid "Shadowing" msgstr "แสงเงา" @@ -10431,7 +10153,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:487 msgctxt "templatedialog|indents" msgid "Indents & Spacing" -msgstr "ระยะเยื้องและระยะห่าง" +msgstr "ระยะร่นและระยะห่าง" #. siGDD #: sd/uiconfig/simpress/ui/templatedialog.ui:535 @@ -10443,25 +10165,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 @@ -10473,11 +10195,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.5.1~rc2/translations/source/tr/basctl/messages.po libreoffice-7.5.2~rc2/translations/source/tr/basctl/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/basctl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/basctl/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-22 14:03+0000\n" +"PO-Revision-Date: 2023-02-28 22:07+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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554879426.000000\n" #. fniWp @@ -1010,7 +1010,7 @@ #: 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 "Seçili kitaplığı salt okunur bir dosya olarak ekler. Ofis paketini her başlattığınızda kitaplık yeniden yüklenir." +msgstr "Seçili kitaplığı salt okunur bir dosya olarak ekler. Ofis paketini her başlattığınızda kitaplık yeniden yüklenir." #. B9N7w #: basctl/uiconfig/basicide/ui/importlibdialog.ui:133 @@ -1208,7 +1208,7 @@ #: basctl/uiconfig/basicide/ui/managelanguages.ui:150 msgctxt "managelanguages|default" msgid "Default" -msgstr "Öntanımlı" +msgstr "Varsayılan" #. aMjkJ #: basctl/uiconfig/basicide/ui/modulepage.ui:41 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/chart2/messages.po libreoffice-7.5.2~rc2/translations/source/tr/chart2/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/chart2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/chart2/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-22 14:43+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" -"Last-Translator: Muhammet Kara \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2023-02-28 22:08+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1550864211.000000\n" #. NCRDD @@ -1301,7 +1301,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:107 msgctxt "dlg_DataLabel|CB_VALUE_AS_NUMBER" msgid "Value as _number" -msgstr "Sayı" +msgstr "_Sayı" #. sDLeD #: chart2/uiconfig/ui/dlg_DataLabel.ui:115 @@ -1313,7 +1313,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:126 msgctxt "dlg_DataLabel|CB_VALUE_AS_PERCENTAGE" msgid "Value as _percentage" -msgstr "Yüzde" +msgstr "_Yüzde" #. 5Hp8E #: chart2/uiconfig/ui/dlg_DataLabel.ui:134 @@ -2195,7 +2195,7 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:322 msgctxt "inserttitledlg|labelSecondaryYAxis" msgid "Y ax_is" -msgstr "Y _eksen_i" +msgstr "Y _ekseni" #. EsHDi #: chart2/uiconfig/ui/inserttitledlg.ui:341 @@ -4955,13 +4955,13 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:291 msgctxt "tp_SeriesToAxis|extended_tip|RB_DONT_PAINT" msgid "For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net." -msgstr "Eksik bir değer için bir veri gösterilmeyecektir. Bu Sütun, Çubuk, Çizgi ve Ağ gibi çizelge türleri için öntanımlıdır." +msgstr "Eksik bir değer için bir veri gösterilmeyecektir. Bu Sütun, Çubuk, Çizgi ve Ağ gibi çizelge türleri için varsayılandır." #. ZvtoD #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:302 msgctxt "tp_SeriesToAxis|RB_ASSUME_ZERO" msgid "_Assume zero" -msgstr "Sıfır say" +msgstr "_Sıfır say" #. y6EGH #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:311 @@ -4979,7 +4979,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:331 msgctxt "tp_SeriesToAxis|extended_tip|RB_CONTINUE_LINE" msgid "For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY." -msgstr "Eksik bir değer için, komşu değerlerden yapılan aradeğerleme değeri gösterilecektir. Bu XY tipi çizelgeler içi öntanımlıdır." +msgstr "Eksik bir değer için, komşu değerlerden yapılan aradeğerleme değeri gösterilecektir. Bu XY tipi çizelgeler için varsayılandır." #. Nw9LX #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:355 @@ -5321,13 +5321,13 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:92 msgctxt "tp_axisLabel|extended_tip|odd" msgid "Staggers numbers on the axis, even numbers lower than odd numbers." -msgstr " Eksende sayıları yayar, çift sayılar tek sayılardan altta olacak şekilde yayılır." +msgstr "Eksende sayıları yayar, çift sayılar tek sayılardan altta olacak şekilde yayılır." #. tByen #: chart2/uiconfig/ui/tp_axisLabel.ui:104 msgctxt "tp_axisLabel|even" msgid "Stagger _even" -msgstr "Aşağı/yukarı hizalama" +msgstr "Aşağı/yukarı _hizalama" #. a6qBM #: chart2/uiconfig/ui/tp_axisLabel.ui:113 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/cui/messages.po libreoffice-7.5.2~rc2/translations/source/tr/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/cui/messages.po 2023-03-24 16:53:38.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: 2023-02-15 14:12+0100\n" -"PO-Revision-Date: 2023-02-21 03:08+0000\n" +"PO-Revision-Date: 2023-03-20 09: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" @@ -358,7 +358,7 @@ #: cui/inc/strings.hrc:62 msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET" msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?" -msgstr "%SAVE IN SELECTION% için menü ayarları, varsayılan ayarlara getirilecektir. Devam etmek istiyor musunuz?" +msgstr "%SAVE IN SELECTION% için menü ayarları, varsayılan ayarlara sıfırlanacaktır. Devam etmek istiyor musunuz?" #. RYeCk #: cui/inc/strings.hrc:63 @@ -2049,7 +2049,7 @@ #: cui/inc/strings.hrc:381 msgctxt "RID_SVXSTR_QRCODEDATALONG" msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level." -msgstr "URL veya metin, geçerli hata düzeltme düzeyi için çok uzun. Metni kısaltın veya düzeltme seviyesini azaltın." +msgstr "URL veya metin, geçerli hata düzeltme düzeyi için çok uzun. Metni kısaltın veya düzeltme seviyesini azaltın." #. AD8QJ #: cui/inc/strings.hrc:382 @@ -2188,7 +2188,7 @@ #: cui/inc/tipoftheday.hrc:53 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To start temporarily with a fresh user profile, or to restore a non-working %PRODUCTNAME, use Help ▸ Restart in Safe Mode." -msgstr "Yeni bir kullanıcı profili ile geçici olarak başlatmak ya da yeni bir %PRODUCTNAME oturumu yüklemek için Yardım > Güvenli Kipte Yeniden Başlat yolunu kullanabilirsiniz." +msgstr "Yeni bir kullanıcı profili ile geçici olarak başlatmak ya da yeni bir %PRODUCTNAME oturumu yüklemek için Yardım > Güvenli Kipte Yeniden Başlat yolunu kullanabilirsiniz." #. Hv5Ff #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/profile_safe_mode.html @@ -2317,7 +2317,7 @@ #: cui/inc/tipoftheday.hrc:74 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Page/Slide ▸ Properties ▸ “Fit object to paper format” in Draw/Impress to resize the objects so that they fit on your chosen paper format." -msgstr "Draw/Impress'de nesneleri seçili sayfaya uydurmak maksadıyla yeniden boyutlandırmak için Sayfa/Slayt ▸ Seçenekler ▸ \"Nesneyi sayfa biçimine uydur\" seçeneğini kullanın." +msgstr "Draw/Impress'de nesneleri seçili sayfaya uydurmak maksadıyla yeniden boyutlandırmak için Sayfa/Slayt ▸ Seçenekler ▸ \"Nesneyi sayfa biçimine uydur\" seçeneğini kullanın." #. hj7H4 #: cui/inc/tipoftheday.hrc:75 @@ -2380,7 +2380,7 @@ #: cui/inc/tipoftheday.hrc:84 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to keep a part of an editable document as read-only? Insert ▸ Section. Add text to the section, then right-click “Edit Section” and check “Protect”." -msgstr "Düzenlenebilir bir belgenin bir kısmını salt okunur olarak mı tutmak istiyorsunuz? Ekle ▸ Bölüm. Bölüme metin ekledikten sonra sağ tıklayın \"Bölümü Düzenle\" ve \"Koru\"yu işaretleyin." +msgstr "Düzenlenebilir bir belgenin bir kısmını salt okunur olarak mı tutmak istiyorsunuz? Ekle ▸ Bölüm. Bölüme metin ekledikten sonra sağ tıklayın \"Bölümü Düzenle\" ve \"Koru\"yu işaretleyin." #. KtRU8 #: cui/inc/tipoftheday.hrc:85 @@ -2471,7 +2471,7 @@ #: cui/inc/tipoftheday.hrc:99 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to count words for just one particular paragraph style? Use Edit ▸ Find and Replace, click Paragraph Styles, select the style in Find, and click Find All. Read the result in the status bar." -msgstr "Özel bir paragraf biçemi için kelimeleri saymak mı istiyorsunuz? Şunu kullanın : Düzenle ▸ Bul ve Değiştir ▸ Paragraf Biçemleri'ne tıklayın, Bul sekmesi içindeki biçemi seçin ve Hepsini Bul'a tıklayın. Sonucu durum çubuğundan okuyabilirsiniz." +msgstr "Özel bir paragraf biçemi için kelimeleri saymak mı istiyorsunuz? Şunu kullanın : Düzenle ▸ Bul ve Değiştir ▸ Paragraf Biçemleri'ne tıklayın, Bul sekmesi içindeki biçemi seçin ve Hepsini Bul'a tıklayın. Sonucu durum çubuğundan okuyabilirsiniz." #. VBCF7 #: cui/inc/tipoftheday.hrc:100 @@ -2489,7 +2489,7 @@ #: cui/inc/tipoftheday.hrc:104 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Construct your own 2D shapes in Draw. Select two or more objects, and explore possibilities with Shape ▸ Combine, Shape ▸ Merge, Shape ▸ Subtract, and Shape ▸ Intersect." -msgstr "Draw'da kendi 2D şekillerinizi oluşturun. İki veya daha fazla nesne seçerek Şekil ▸ Bütünleştir, Şekil ▸ Birleştir, Şekil ▸ Çıkar ve Şekil ▸ Kesiştir ile daha fazla olasılık keşfedin." +msgstr "Draw'da kendi 2D şekillerinizi oluşturun. İki veya daha fazla nesne seçerek Şekil ▸ Bütünleştir, Şekil ▸ Birleştir, Şekil ▸ Çıkar ve Şekil ▸ Kesiştir ile daha fazla olasılık keşfedin." #. f6Lan #: cui/inc/tipoftheday.hrc:105 @@ -2519,13 +2519,13 @@ #: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to insert a placeholder for an image in a Writer template? Use Insert ▸ Fields ▸ More fields, click Functions tab, choose PlaceHolder for Type and Image for Format." -msgstr "Bir Writer şablonunda bir yer tutucu eklemek mi istiyorsunuz? Ekle ▸ Alanlar ▸ Daha fazla alan'ı menüsünü kullanın, İşlevler sekmesini tıklayın, Tür için Yer Tutucu'yu ve Biçim için Resim'i seçin." +msgstr "Bir Writer şablonunda bir yer tutucu eklemek mi istiyorsunuz? Ekle ▸ Alanlar ▸ Daha fazla alan'ı menüsünü kullanın, İşlevler sekmesini tıklayın, Tür için Yer Tutucu'yu ve Biçim için Resim'i seçin." #. sSeTz #: cui/inc/tipoftheday.hrc:110 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." -msgstr "%PRODUCTNAME dört makro güvenlik seviyesini (düşükten çok yükseğe) ve güvenilir kaynakları destekler." +msgstr "%PRODUCTNAME dört makro güvenlik seviyesini (düşükten çok yükseğe) ve güvenilir kaynakları destekler." #. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html @@ -2544,14 +2544,14 @@ #: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." -msgstr "Araçlar ▸ Seçenekler ▸ %PRODUCTNAME Writer ▸ Temel Yazı Tipleri menüsünü kullanarak öntanımlı şablon veya mevcut belge için temel yazı tiplerini değiştirin" +msgstr "Araçlar ▸ Seçenekler ▸ %PRODUCTNAME Writer ▸ Temel Yazı Tipleri menüsünü kullanarak varsayılan şablon veya mevcut belge için temel yazı tiplerini değiştirin" #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html #: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions." -msgstr "10'dan fazla harf içeren kelimeleri bulmak mı istiyorsunuz? Düzenle ▸ Bul ve Değiştir ▸ Ara ▸ [a-z]{10,} ▸ Diğer Seçenekler ▸ Düzenli İfadeler'i seç." +msgstr "10'dan fazla harf içeren kelimeleri bulmak mı istiyorsunuz? Düzenle ▸ Bul ve Değiştir ▸ Ara ▸ [a-z]{10,} ▸ Diğer Seçenekler ▸ Düzenli İfadeler'i seç." #. 7dDjc #: cui/inc/tipoftheday.hrc:115 @@ -2587,7 +2587,7 @@ #: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style." -msgstr "Metnin bir kısmı için yazım denetimini değiştirmek ister misiniz? Durum çubuğunun dil bölgesini tıklayın veya daha iyisi bir biçem uygulayın." +msgstr "Metnin bir kısmı için yazım denetimini değiştirmek ister misiniz? Durum çubuğunun dil bölgesini tıklayın veya daha iyisi bir biçem uygulayın." #. oTX4L #: cui/inc/tipoftheday.hrc:121 @@ -2611,7 +2611,7 @@ #: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." -msgstr "Hassas konumlandırmaya mı ihtiyacınız var? %MOD2+ok tuşları ile nesneleri (şekiller, resimler, formüller) bir piksel kaydırabilirsiniz." +msgstr "Hassas konumlandırmaya mı ihtiyacınız var? %MOD2+ok tuşları ile nesneleri (şekiller, resimler, formüller) bir piksel kaydırabilirsiniz." #. FhocH #: cui/inc/tipoftheday.hrc:125 @@ -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 "Seçili hücre sayısını görüntülemek için %PRODUCTNAME Calc uygulamasında durum çubuğu üzerinde sağ tıklayın ve “Seçim sayısı”nı işaretleyin." +msgstr "Seçili hücre sayısını görüntülemek için %PRODUCTNAME Calc uygulamasında durum çubuğu üzerinde sağ tıklayın ve “Seçim sayısı”nı işaretleyin." #. h7afF #: cui/inc/tipoftheday.hrc:127 @@ -2891,7 +2891,7 @@ #: cui/inc/tipoftheday.hrc:170 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." -msgstr "Bir hesap tablosunda köprü bağlantılarının sunumunu yönetmek ister misiniz? Bunları HYPERLINK işleviyle yerleştirin." +msgstr "Bir hesap tablosunda köprü bağlantılarının sunumunu yönetmek ister misiniz? Bunları HYPERLINK işleviyle yerleştirin." #. qyyJ4 #. local help missing @@ -3068,7 +3068,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 "Bir Writer belgesindeki öğeleri boşluk bırakmak için sekmeler kullanmayın. Ne yapmaya çalıştığınıza bağlı olarak, kenarlıksız bir tablo daha iyi bir seçim olabilir." +msgstr "Bir Writer belgesindeki öğeleri boşluk bırakmak için sekmeler kullanmayın. Ne yapmaya çalıştığınıza bağlı olarak, kenarlıksız bir tablo daha iyi bir seçim olabilir." #. 6GtGH #: cui/inc/tipoftheday.hrc:199 @@ -3106,13 +3106,13 @@ #: 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 "Writer'da kısayol kullanarak paragraf biçemleri uygulayın: %MOD1+1 Başlık 1 uygular, %MOD1+2 Başlık 2 uygular, vb." +msgstr "Writer'da kısayol kullanarak paragraf biçemleri uygulayın: %MOD1+1 Başlık 1 uygular, %MOD1+2 Başlık 2 uygular, vb." #. DA82R #: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." -msgstr "Büyük belgelerde kaybolmayın. İçerikte yolunuzu bulmak için Gezgin'i (F5) kullanın." +msgstr "Büyük belgelerde kaybolmayın. İçerikte yolunuzu bulmak için Gezgin'i (F5) kullanın." #. naXEz #: cui/inc/tipoftheday.hrc:206 @@ -3260,7 +3260,7 @@ #: cui/inc/tipoftheday.hrc:229 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." -msgstr "Bir Writer tablosunu taşımanız mı gerekiyor? Tablo ▸ Seç ▸ Tablo menüsünü ve Ekle ▸ Çerçeve ▸ Çerçeve menüsünü kullanın ve tabloyu istediğiniz yere taşıyın." +msgstr "Bir Writer tablosunu taşımanız mı gerekiyor? Tablo ▸ Seç ▸ Tablo menüsünü ve Ekle ▸ Çerçeve ▸ Çerçeve menüsünü kullanın ve tabloyu istediğiniz yere taşıyın." #. TmaSP #: cui/inc/tipoftheday.hrc:230 @@ -3284,7 +3284,7 @@ #: cui/inc/tipoftheday.hrc:233 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar." -msgstr "Liste biçemini uyguladıktan sonra öntanımlıya geri dönmek mi istiyorsunuz? Biçimlendirme araç çubuğundaki Madde İmleri veya Numaralandırma Aç/Kapat'a tıklayın." +msgstr "Liste biçemini uyguladıktan sonra varsayılana geri dönmek mi istiyorsunuz? Biçimlendirme araç çubuğundaki Madde İmleri veya Numaralandırma Aç/Kapat'a tıklayın." #. wAFRP #: cui/inc/tipoftheday.hrc:234 @@ -3333,7 +3333,7 @@ #: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." -msgstr "Calc'da yazdırılan bir sayfadaki hücreleri ortalamak ister misiniz? Biçim ▸ Sayfa , Sayfa ▸ Düzen Ayarları ▸ Tablo hizalaması'nı ayarlayın." +msgstr "Calc'da yazdırılan bir sayfadaki hücreleri ortalamak ister misiniz? Biçim ▸ Sayfa, Sayfa ▸ Düzen Ayarları ▸ Tablo hizalaması'nı ayarlayın." #. dpyeU #: cui/inc/tipoftheday.hrc:242 @@ -3409,7 +3409,7 @@ #: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do anything!" -msgstr "Calc'ta DÜŞEYARA işleviyle istediğinizi bulamıyor musunuz? INDEX ve MATCH ile her şeyi yapabilirsiniz!" +msgstr "Calc'ta DÜŞEYARA işleviyle istediğinizi bulamıyor musunuz? INDEX ve MATCH ile her şeyi yapabilirsiniz!" #. ARJgA #. local help missing @@ -3454,7 +3454,7 @@ #: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." -msgstr "Özel bir hücre biçemini değiştiremiyor veya silemiyor musunuz? Tüm sayfaları kontrol edin, hiçbiri korunmamalıdır." +msgstr "Özel bir hücre biçemini değiştiremiyor veya silemiyor musunuz? Tüm sayfaları kontrol edin, hiçbiri korunmamalıdır." #. 55Nfb #: cui/inc/tipoftheday.hrc:261 @@ -3497,13 +3497,13 @@ #: cui/inc/tipoftheday.hrc:267 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces." -msgstr "%PRODUCTNAME, Writer'da iki veya daha fazla boşluk girmemenize yardımcı olur. Araçlar ▸ Otomatik Düzelt ▸ Otomatik Düzeltme Seçenekleri ▸ Seçenekler ▸ Çift boşlukları yoksay'ı kontrol edin." +msgstr "%PRODUCTNAME, Writer'da iki veya daha fazla boşluk girmemenize yardımcı olur. Araçlar ▸ Otomatik Düzelt ▸ Otomatik Düzeltme Seçenekleri ▸ Seçenekler ▸ Çift boşlukları yoksay'ı kontrol edin." #. 3Fjtd #: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter." -msgstr "Calc'da bir değer girdikten sonra imlecin sağdaki hücreye gitmesini ister misiniz? Enter yerine Sekme tuşunu kullanın." +msgstr "Calc'da bir değer girdikten sonra imlecin sağdaki hücreye gitmesini ister misiniz? Enter yerine Sekme tuşunu kullanın." #. 5Cvhv #: cui/inc/tipoftheday.hrc:269 @@ -4540,7 +4540,7 @@ #: cui/uiconfig/ui/acorexceptpage.ui:56 msgctxt "acorexceptpage|extended_tip|abbrev" msgid "Type an abbreviation followed by a period, and then click New. This prevents automatic capitalization of the first letter of the word that comes after the period at the end of the abbreviation." -msgstr "Bir kısaltma ve ardından bir nokta yazın ve ardından Yeni'ye tıklayın. Bu, kısaltmanın sonundaki noktadan sonra gelen kelimenin ilk harfinin otomatik olarak büyük harfle yazılmasını engeller." +msgstr "Bir kısaltma ve ardından bir nokta yazın ve ardından Yeni'ye tıklayın. Bu, kısaltmanın sonundaki noktadan sonra gelen kelimenin ilk harfinin otomatik olarak büyük harfle yazılmasını engeller." #. GUtft #: cui/uiconfig/ui/acorexceptpage.ui:67 @@ -4594,7 +4594,7 @@ #: cui/uiconfig/ui/acorexceptpage.ui:247 msgctxt "acorexceptpage|extended_tip|double" msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want automatically changed to one initial capital. For example, enter PC to prevent a change from PC to Pc, or enter eBook to prevent a change to Ebook." -msgstr "Otomatik olarak bir büyük harfle değiştirilmesini istemediğiniz iki büyük harfle veya küçük bir baş harfle başlayan kelimeyi veya kısaltmayı yazın. Örneğin, PC'den PC'ye geçişi önlemek için PC'ye girin veya Ebook'ta bir değişikliği önlemek için eBook'a girin." +msgstr "Otomatik olarak bir büyük harfle değiştirilmesini istemediğiniz iki büyük harfle veya küçük bir baş harfle başlayan kelimeyi veya kısaltmayı yazın. Örneğin, PC'den PC'ye geçişi önlemek için PC'ye girin veya Ebook'ta bir değişikliği önlemek için eBook'a girin." #. kAzxB #: cui/uiconfig/ui/acorexceptpage.ui:258 @@ -4906,7 +4906,7 @@ #: cui/uiconfig/ui/agingdialog.ui:204 msgctxt "agingdialog|extended_tip|AgingDialog" msgid "All pixels are set to their gray values, and then the green and blue color channels are reduced by the amount you specify. The red color channel is not changed." -msgstr "Tüm pikseller gri değerlerine ayarlanır ve ardından yeşil ve mavi renk kanalları, belirttiğiniz miktar kadar azaltılır. Kırmızı renk kanalı değişmez." +msgstr "Tüm pikseller gri değerlerine ayarlanır ve ardından yeşil ve mavi renk kanalları, belirttiğiniz miktar kadar azaltılır. Kırmızı renk kanalı değişmez." #. nxZTH #: cui/uiconfig/ui/applyautofmtpage.ui:55 @@ -4978,7 +4978,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:241 msgctxt "applylocalizedpage|singlereplace" msgid "Repla_ce" -msgstr "Değiştir" +msgstr "_Değiştir" #. ybjKY #: cui/uiconfig/ui/applylocalizedpage.ui:249 @@ -5026,7 +5026,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:327 msgctxt "applylocalizedpage|extended_tip|defaultsingle" msgid "Resets the quotation marks to the default symbols." -msgstr "Alıntılama işaretlerini varsayılan simgelere geri getirir." +msgstr "Alıntılama işaretlerini varsayılan simgelere sıfırlar." #. GRDaT #: cui/uiconfig/ui/applylocalizedpage.ui:341 @@ -5062,7 +5062,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:430 msgctxt "applylocalizedpage|doublereplace" msgid "Repla_ce" -msgstr "Değiştir" +msgstr "_Değiştir" #. AADNo #: cui/uiconfig/ui/applylocalizedpage.ui:438 @@ -5110,7 +5110,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:516 msgctxt "applylocalizedpage|extended_tip|defaultdouble" msgid "Resets the quotation marks to the default symbols." -msgstr "Alıntılama işaretlerini varsayılan simgelere geri getirir." +msgstr "Alıntılama işaretlerini varsayılan simgelere sıfırlar." #. cDwwK #: cui/uiconfig/ui/applylocalizedpage.ui:530 @@ -5338,7 +5338,7 @@ #: cui/uiconfig/ui/autocorrectdialog.ui:31 msgctxt "autocorrectdialog|extended_tip|reset" msgid "Resets modified values back to the tab page previous values." -msgstr "Değiştirilen değerleri bir önceki değerlerine geri döndürür." +msgstr "Değiştirilen değerleri bir önceki değerlerine sıfırlar." #. PbHCG #: cui/uiconfig/ui/autocorrectdialog.ui:52 @@ -5530,7 +5530,7 @@ #: cui/uiconfig/ui/baselinksdialog.ui:425 msgctxt "baselinksdialog|extended_tip|BaseLinksDialog" msgid "Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files." -msgstr "Kaynak dosyanın yolu dahil, geçerli belgedeki her bir bağlantının özelliklerini düzenlemenizi sağlar. Geçerli belge diğer dosyalara bağlantılar içermiyorsa bu komut kullanılamaz." +msgstr "Kaynak dosyanın yolu dahil, geçerli belgedeki her bir bağlantının özelliklerini düzenlemenizi sağlar. Geçerli belge diğer dosyalara bağlantılar içermiyorsa bu komut kullanılamaz." #. AYRA3 #: cui/uiconfig/ui/borderareatransparencydialog.ui:8 @@ -5842,7 +5842,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:280 msgctxt "bulletandposition|extended_tip|numfmtlb" msgid "Select the level(s) that you want to modify. To apply the options to all the levels, select “1-10”." -msgstr "Değiştirmek istediğiniz seviyeleri seçin. Seçenekleri tüm seviyelere uygulamak için “1-10” arasını seçin." +msgstr "Değiştirmek istediğiniz seviyeleri seçin. Seçenekleri tüm seviyelere uygulamak için “1-10” arasını seçin." #. mp5Si #: cui/uiconfig/ui/bulletandposition.ui:293 @@ -5974,7 +5974,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:663 msgctxt "bulletandposition|extended_tip|relsize" msgid "For character unordered and ordered lists, set the relative size of the list character. The relative size applies to the Before and After text as well." -msgstr "Karakter sırasız ve sıralı listeler için liste karakterinin göreceli boyutunu ayarlayın. Göreceli boyut, Önce ve Sonra metni için de geçerlidir." +msgstr "Karakter sırasız ve sıralı listeler için liste karakterinin göreceli boyutunu ayarlayın. Göreceli boyut, Önce ve Sonra metni için de geçerlidir." #. pGXFi #: cui/uiconfig/ui/bulletandposition.ui:676 @@ -6046,7 +6046,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:840 msgctxt "bulletandposition|extended_tip|relative" msgid "Relative to the upper list level. The entered value is added to that of this field in the level before. If “Indent: 20mm” on list level 1 and “Indent: 10mm Relative” on list level 2 will result in an effective indent of 30mm for level 2." -msgstr "Üst liste düzeyine göre. Girilen değer, önceki seviyede bu alanın değerine eklenir. Liste düzey 1'de \"Girinti: 20mm\" ve liste düzey 2'de \"Girinti: 10mm Göreli\" ise, düzey 2 için 30 mm'lik etkin bir girinti ile sonuçlanır." +msgstr "Üst liste düzeyine göre. Girilen değer, önceki seviyede bu alanın değerine eklenir. Liste düzey 1'de \"Girinti: 20mm\" ve liste düzey 2'de \"Girinti: 10mm Göreli\" ise, düzey 2 için 30 mm'lik etkin bir girinti ile sonuçlanır." #. zC5eX #: cui/uiconfig/ui/bulletandposition.ui:864 @@ -6382,7 +6382,7 @@ #: cui/uiconfig/ui/cellalignment.ui:224 msgctxt "cellalignment|checkWrapTextAuto" msgid "_Wrap text automatically" -msgstr "Otomatik metin dağılımı" +msgstr "Otomatik metin _dağılımı" #. warfE #: cui/uiconfig/ui/cellalignment.ui:234 @@ -6406,7 +6406,7 @@ #: cui/uiconfig/ui/cellalignment.ui:265 msgctxt "cellalignment|checkHyphActive" msgid "Hyphenation _active" -msgstr "Heceleme etkin" +msgstr "Heceleme _etkin" #. XLgra #: cui/uiconfig/ui/cellalignment.ui:276 @@ -7438,7 +7438,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:303 msgctxt "extended tip | redRadiobutton" msgid "Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "Dikey renk kaydırıcısında değiştirilebilir Kırmızı bileşeni ve iki boyutlu renk seçici alanında Yeşil ve Mavi bileşenlerini ayarlar. İzin verilen değerler 0 ile 255 arasındadır." +msgstr "Dikey renk kaydırıcısında değiştirilebilir Kırmızı bileşeni ve iki boyutlu renk seçici alanında Yeşil ve Mavi bileşenlerini ayarlar. İzin verilen değerler 0 ile 255 arasındadır." #. TkTSB #: cui/uiconfig/ui/colorpickerdialog.ui:314 @@ -7450,7 +7450,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:323 msgctxt "extended tip | greenRadiobutton" msgid "Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "Dikey renk kaydırıcısında değiştirilebilir Yeşil bileşeni ve iki boyutlu renk seçici alanındaki Kırmızı ve Mavi bileşenleri ayarlar. İzin verilen değerler 0 ile 255 arasındadır." +msgstr "Dikey renk kaydırıcısında değiştirilebilir Yeşil bileşeni ve iki boyutlu renk seçici alanındaki Kırmızı ve Mavi bileşenleri ayarlar. İzin verilen değerler 0 ile 255 arasındadır." #. 5FGfv #: cui/uiconfig/ui/colorpickerdialog.ui:334 @@ -7462,7 +7462,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:343 msgctxt "extended tip | blueRadiobutton" msgid "Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255." -msgstr "Dikey renk kaydırıcısında değiştirilebilir Mavi bileşeni ve iki boyutlu renk seçici alanında Yeşil ve Kırmızı bileşenleri ayarlar. İzin verilen değerler 0 ile 255 arasındadır." +msgstr "Dikey renk kaydırıcısında değiştirilebilir Mavi bileşeni ve iki boyutlu renk seçici alanında Yeşil ve Kırmızı bileşenleri ayarlar. İzin verilen değerler 0 ile 255 arasındadır." #. c5MTh #: cui/uiconfig/ui/colorpickerdialog.ui:362 @@ -7510,7 +7510,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:490 msgctxt "extended tip | hueRadiobutton" msgid "Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two-dimensional color picker field. Values are expressed in degrees from 0 to 359." -msgstr "Dikey renk kaydırıcısında değiştirilebilir Ton bileşenini ve iki boyutlu renk seçici alanında Doygunluk ve Parlaklık bileşenlerini ayarlar. Değerler 0 ile 359 arasındaki derece cinsinden ifade edilir." +msgstr "Dikey renk kaydırıcısında değiştirilebilir Ton bileşenini ve iki boyutlu renk seçici alanında Doygunluk ve Parlaklık bileşenlerini ayarlar. Değerler 0 ile 359 arasındaki derece cinsinden ifade edilir." #. C4GE3 #: cui/uiconfig/ui/colorpickerdialog.ui:501 @@ -7522,7 +7522,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:510 msgctxt "extended tip | satRadiobutton" msgid "Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)." -msgstr "Dikey renk kaydırıcısında değiştirilebilir Doygunluk bileşenini ve iki boyutlu renk seçici alanında Ton ve Parlaklık bileşenlerini ayarlar. Değerler yüzde olarak ifade edilir (0 - 100)." +msgstr "Dikey renk kaydırıcısında değiştirilebilir Doygunluk bileşenini ve iki boyutlu renk seçici alanında Ton ve Parlaklık bileşenlerini ayarlar. Değerler yüzde olarak ifade edilir (0 - 100)." #. NXs9w #: cui/uiconfig/ui/colorpickerdialog.ui:521 @@ -7534,7 +7534,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:530 msgctxt "extended tip | brightRadiobutton" msgid "Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)." -msgstr "Dikey renk kaydırıcısında değiştirilebilir Parlaklık bileşenini ve iki boyutlu renk seçici alanında Ton ve Doygunluk bileşenlerini ayarlar. Değerler yüzde olarak ifade edilir (0 - 100)." +msgstr "Dikey renk kaydırıcısında değiştirilebilir Parlaklık bileşenini ve iki boyutlu renk seçici alanında Ton ve Doygunluk bileşenlerini ayarlar. Değerler yüzde olarak ifade edilir (0 - 100)." #. BCvUX #: cui/uiconfig/ui/colorpickerdialog.ui:549 @@ -7994,7 +7994,7 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:197 msgctxt "cuiimapdlg|label3" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. GcFws #: cui/uiconfig/ui/cuiimapdlg.ui:217 @@ -8006,7 +8006,7 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:245 msgctxt "cuiimapdlg|label4" msgid "_Text Alternative:" -msgstr "Alternatif Me~tin:" +msgstr "Alternatif Me_tin:" #. EP7Gk #: cui/uiconfig/ui/cuiimapdlg.ui:246 @@ -8120,7 +8120,7 @@ #: cui/uiconfig/ui/databaselinkdialog.ui:180 msgctxt "extended_tip|name" msgid "Enter a name for the database. The office suite uses this name to access the database." -msgstr "Veritabanı için bir ad girin. Ofis paketi, veritabanına erişmek için bu adı kullanır." +msgstr "Veritabanı için bir ad girin. Ofis paketi, veritabanına erişmek için bu adı kullanır." #. FrRyU #: cui/uiconfig/ui/databaselinkdialog.ui:199 @@ -8396,7 +8396,7 @@ #: cui/uiconfig/ui/editdictionarydialog.ui:203 msgctxt "word" msgid "You can type a new word for inclusion in the dictionary. In the list below you will see the contents of the current custom dictionary." -msgstr "Sözlüğe eklemek için yeni bir sözcük yazabilirsiniz. Aşağıdaki listede, mevcut özel sözlüğün içeriğini göreceksiniz." +msgstr "Sözlüğe eklemek için yeni bir sözcük yazabilirsiniz. Aşağıdaki listede, mevcut özel sözlüğün içeriğini göreceksiniz." #. WWwmQ #: cui/uiconfig/ui/editdictionarydialog.ui:216 @@ -8420,7 +8420,7 @@ #: cui/uiconfig/ui/editdictionarydialog.ui:364 msgctxt "newreplace" msgid "Adds the word in the Word text field to your current custom dictionary. The word in the Suggestion field is also added when working with exception dictionaries." -msgstr "Sözcük metin alanındaki kelimeyi geçerli özel sözlüğünüze ekler. Öneri alanındaki sözcük, istisna sözlükleriyle çalışırken de eklenir." +msgstr "Sözcük metin alanındaki kelimeyi geçerli özel sözlüğünüze ekler. Öneri alanındaki sözcük, istisna sözlükleriyle çalışırken de eklenir." #. K2Sst #: cui/uiconfig/ui/editdictionarydialog.ui:376 @@ -8588,7 +8588,7 @@ #: cui/uiconfig/ui/effectspage.ui:132 msgctxt "effectspage|extended_tip|relieflb" msgid "Select a relief effect to apply to the selected text. The embossed relief makes the characters appear as if they are raised above the page. The engraved relief makes the characters appear as if they are pressed into the page." -msgstr "Seçili metne uygulamak için bir rölyef efekti seçin. Kabartmalı rölyef, karakterlerin sayfanın üzerinde yükselmiş gibi görünmesini sağlar. Oyulmuş rölyef, karakterlerin sayfaya basılmış gibi görünmesini sağlar." +msgstr "Seçili metne uygulamak için bir rölyef efekti seçin. Kabartmalı rölyef, karakterlerin sayfanın üzerinde yükselmiş gibi görünmesini sağlar. Oyulmuş rölyef, karakterlerin sayfaya basılmış gibi görünmesini sağlar." #. G8SPK #: cui/uiconfig/ui/effectspage.ui:146 @@ -8912,7 +8912,7 @@ #: cui/uiconfig/ui/effectspage.ui:608 msgctxt "effectspage|extended_tip|fontcolorlb" msgid "Sets the color for the selected text. If you select Automatic, the text color is set to black for light backgrounds and to white for dark backgrounds." -msgstr "Seçili metnin rengini ayarlar. Otomatik'i seçerseniz, metin rengi açık renkli arka planlar için siyah ve koyu arka planlar için beyaz olarak ayarlanır." +msgstr "Seçili metnin rengini ayarlar. Otomatik'i seçerseniz, metin rengi açık renkli arka planlar için siyah ve koyu arka planlar için beyaz olarak ayarlanır." #. aAbzm #: cui/uiconfig/ui/effectspage.ui:620 @@ -8996,7 +8996,7 @@ #: cui/uiconfig/ui/entrycontextmenu.ui:52 msgctxt "entrycontextmenu|restoreDefault" msgid "Restore _Default Command" -msgstr "Varsayılan Komutu Geri Yükle" +msgstr "_Varsayılan Komutu Geri Yükle" #. FoFqz #: cui/uiconfig/ui/eventassigndialog.ui:8 @@ -9194,7 +9194,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:52 msgctxt "fmsearchdialog|extended_tip|close" msgid "Closes the dialog. The settings of the last search will be saved until you quit the office suite." -msgstr "İletişim penceresini kapatır. Son aramanın ayarları, siz ofis paketinden çıkana kadar kaydedilecektir." +msgstr "İletişim penceresini kapatır. Son aramanın ayarları, siz ofis paketinden çıkana kadar kaydedilecektir." #. UPeyv #: cui/uiconfig/ui/fmsearchdialog.ui:144 @@ -9308,7 +9308,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:529 msgctxt "fmsearchdialog|HalfFullFormsCJK" msgid "Match character wi_dth" -msgstr "Karakter genişliğini eşleştir" +msgstr "Karakter _genişliğini eşleştir" #. wAKeF #: cui/uiconfig/ui/fmsearchdialog.ui:537 @@ -9326,7 +9326,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:562 msgctxt "fmsearchdialog|extended_tip|SoundsLikeCJK" msgid "Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the Sounds button to specify the search options." -msgstr "Japonca metinlerde arama seçeneklerinde benzer sesler için kontrol imkanı sağlar. Bu onay kutusunu seçin, ve sonra ... düğmesine basarak arama seçeneklerini belirleyin. " +msgstr "Japonca metinlerde arama seçeneklerinde benzer sesler için kontrol imkanı sağlar. Bu onay kutusunu seçin, ve sonra ... düğmesine basarak arama seçeneklerini belirleyin." #. 2Gsbd #: cui/uiconfig/ui/fmsearchdialog.ui:573 @@ -9368,7 +9368,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:648 msgctxt "fmsearchdialog|cbCase" msgid "_Match case" -msgstr "BÜYÜK/küçük harf eşleştir" +msgstr "_BÜYÜK/küçük harf eşleştir" #. Gdo9i #: cui/uiconfig/ui/fmsearchdialog.ui:656 @@ -10029,13 +10029,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 @@ -10197,7 +10197,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597 msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly" msgid "Check to convert only Hangul. Do not convert Hanja." -msgstr "Yalnızca Hangul'u dönüştürmek için işaretleyin. Hanja'yı dönüştürmeyin." +msgstr "Yalnızca Hangul'u dönüştürmek için işaretleyin. Hanja'yı dönüştürmeyin." #. r3HDY #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609 @@ -10209,7 +10209,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617 msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly" msgid "Check to convert only Hanja. Do not convert Hangul." -msgstr "Yalnızca Hanja'yı dönüştürmek için işaretleyin. Hangul'u dönüştürmeyin." +msgstr "Yalnızca Hanja'yı dönüştürmek için işaretleyin. Hangul'u dönüştürmeyin." #. db8Nj #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650 @@ -10221,7 +10221,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659 msgctxt "hangulhanjaconversiondialog|extended_tip|ignore" msgid "No changes will be made to the current selection. The next word or character will be selected for conversion." -msgstr "Mevcut seçimde hiçbir değişiklik yapılmayacak. Bir sonraki kelime veya karakter dönüştürme için seçilecektir." +msgstr "Mevcut seçimde hiçbir değişiklik yapılmayacak. Bir sonraki kelime veya karakter dönüştürme için seçilecektir." #. QTqcN #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671 @@ -10269,7 +10269,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736 msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar" msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced." -msgstr "Seçilen metinde karakter karakter hareket etmek için işaretleyin. İşaretlenmezse, tam sözcükler değiştirilir." +msgstr "Seçilen metinde karakter karakter hareket etmek için işaretleyin. İşaretlenmezse, tam sözcükler değiştirilir." #. t2RXx #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748 @@ -11347,7 +11347,7 @@ #: cui/uiconfig/ui/iconselectordialog.ui:168 msgctxt "iconselectordialog|extended_tip|importButton" msgid "Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of the office suite." -msgstr "Simgeler listesine yeni simgeler ekler. Seçilen simgeyi veya simgeleri ofis paketinin dahili simge dizinine aktaran bir dosya açma iletişim penceresi görürsünüz." +msgstr "Simgeler listesine yeni simgeler ekler. Seçilen simgeyi veya simgeleri ofis paketinin dahili simge dizinine aktaran bir dosya açma iletişim penceresi görürsünüz." #. 46d7Z #: cui/uiconfig/ui/iconselectordialog.ui:180 @@ -11383,7 +11383,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:68 msgctxt "imagetabpage|extended_tip|BTN_IMPORT" msgid "Locate the image that you want to import, and then click Open. The image is added to the end of the list of available images." -msgstr "İçe aktarmak istediğiniz görüntüyü bulun ve ardından Aç'a tıklayın. Resim, mevcut resimler listesinin sonuna eklenir." +msgstr "İçe aktarmak istediğiniz görüntüyü bulun ve ardından Aç'a tıklayın. Resim, mevcut resimler listesinin sonuna eklenir." #. pPEeK #: cui/uiconfig/ui/imagetabpage.ui:84 @@ -11569,7 +11569,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:107 msgctxt "insertfloatingframe|extended_tip|edname" msgid "Enter a name for the floating frame. The name cannot contain spaces, special characters, or begin with an underscore (_)." -msgstr "Kayan çerçeve için bir ad girin. Ad, boşluklar ve özel karakterler içeremez veya alt çizgiyle (_) başlayamaz." +msgstr "Kayan çerçeve için bir ad girin. Ad, boşluklar ve özel karakterler içeremez veya alt çizgiyle (_) başlayamaz." #. dxeqd #: cui/uiconfig/ui/insertfloatingframe.ui:128 @@ -11833,7 +11833,7 @@ #: cui/uiconfig/ui/insertrowcolumn.ui:191 msgctxt "insertrowcolumn|insert_after" msgid "A_fter" -msgstr "Sonra" +msgstr "So_nra" #. Rqgws #: cui/uiconfig/ui/insertrowcolumn.ui:200 @@ -12675,7 +12675,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 "Menünün ekleneceği konumu seçin. Bir ofis paketi modülüne bağlıysa, menü o modülde açılan tüm dosyalar için kullanılabilir. Dosyaya eklenmişse, menü yalnızca o dosya açıldığında ve etkin olduğunda kullanılabilir." +msgstr "Menünün ekleneceği konumu seçin. Bir ofis paketi modülüne bağlıysa, menü o modülde açılan tüm dosyalar için kullanılabilir. Dosyaya eklenmişse, menü yalnızca o dosya açıldığında ve etkin olduğunda kullanılabilir." #. D35vJ #: cui/uiconfig/ui/menuassignpage.ui:456 @@ -12963,7 +12963,7 @@ #: cui/uiconfig/ui/multipathdialog.ui:217 msgctxt "cui/ui/multipathdialog/paths" msgid "Contains a list of the paths that have already been added. Mark the default path for new files." -msgstr "Önceden eklenmiş yolların bir listesini içerir. Yeni dosyalar için varsayılan yolu işaretleyin." +msgstr "Önceden eklenmiş yolların bir listesini içerir. Yeni dosyalar için varsayılan yolu işaretleyin." #. AsnM3 #: cui/uiconfig/ui/multipathdialog.ui:240 @@ -13149,7 +13149,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:346 msgctxt "numberingformatpage|negnumred" msgid "_Negative numbers red" -msgstr "Negatif sayılar kırmızı" +msgstr "_Negatif sayılar kırmızı" #. 8SFwc #: cui/uiconfig/ui/numberingformatpage.ui:354 @@ -13641,7 +13641,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:311 msgctxt "numberingpositionpage|extended_tip|indentmf" msgid "Enter the amount of space to leave between the left page margin (or the left edge of the text object) and the left edge of the numbering area. If the current paragraph style uses an indent, the amount you enter here is added to the indent." -msgstr "Sol sayfa kenar boşluğu (veya metin nesnesinin sol kenarı) ile numaralandırma alanının sol kenarı arasında bırakılacak boşluk miktarını girin. Geçerli paragraf biçemi bir girinti kullanıyorsa, buraya girdiğiniz miktar girintiye eklenir." +msgstr "Sol sayfa kenar boşluğu (veya metin nesnesinin sol kenarı) ile numaralandırma alanının sol kenarı arasında bırakılacak boşluk miktarını girin. Geçerli paragraf biçemi bir girinti kullanıyorsa, buraya girdiğiniz miktar girintiye eklenir." #. YCZDg #: cui/uiconfig/ui/numberingpositionpage.ui:322 @@ -13665,13 +13665,13 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:365 msgctxt "numberingpositionpage|extended_tip|numberingwidthmf" msgid "Enter the width of the numbering area. The numbering symbol can be left, center or right in this area." -msgstr "Numaralandırma alanının genişliğini girin. Numaralandırma sembolü bu alanda sola, ortaya veya sağa olabilir." +msgstr "Numaralandırma alanının genişliğini girin. Numaralandırma sembolü bu alanda sola, ortaya veya sağa olabilir." #. zuD8v #: cui/uiconfig/ui/numberingpositionpage.ui:384 msgctxt "numberingpositionpage|extended_tip|numdistmf" msgid "The alignment of the numbering symbol is adjusted to get the desired minimum space. If it is not possible because the numbering area is not wide enough, then the start of the text is adjusted." -msgstr "Numaralandırma sembolünün hizası, gerekli minimum alanı elde etmek için ayarlanır. Numaralandırma alanı yeterince geniş değilse metnin başlangıcı ayarlanır." +msgstr "Numaralandırma sembolünün hizası, gerekli minimum alanı elde etmek için ayarlanır. Numaralandırma alanı yeterince geniş değilse metnin başlangıcı ayarlanır." #. EJUm3 #: cui/uiconfig/ui/numberingpositionpage.ui:397 @@ -13735,7 +13735,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:502 msgctxt "numberingpositionpage|extended_tip|standard" msgid "Resets the indent and the spacing values to the default values." -msgstr "Girinti ve aralama değerlerini varsayılan değerlere döndürür." +msgstr "Girinti ve aralama değerlerini varsayılan değerlere sıfırlar." #. eLFGG #: cui/uiconfig/ui/numberingpositionpage.ui:548 @@ -13777,7 +13777,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:93 msgctxt "objecttitledescdialog|object_title_label" msgid "_Text Alternative:" -msgstr "Alternatif Me~tin:" +msgstr "Alternatif Me_tin:" #. Gqfxb #: cui/uiconfig/ui/objecttitledescdialog.ui:113 @@ -13849,7 +13849,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:87 msgctxt "optaccessibilitypage|animatedtext" msgid "Allow animated _text" -msgstr "Canlandırmalı metne izin ver" +msgstr "Canlandırmalı _metne izin ver" #. Gc9fG #: cui/uiconfig/ui/optaccessibilitypage.ui:95 @@ -13903,7 +13903,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:198 msgctxt "extended_tip|autofontcolor" msgid "Displays fonts in the office suite using the system color settings. This option only affects the screen display." -msgstr "Sistem renk ayarlarını kullanarak ofis paketindeki yazı tiplerini görüntüler. Bu seçenek yalnızca ekran görüntüsünü etkiler." +msgstr "Sistem renk ayarlarını kullanarak ofis paketindeki yazı tiplerini görüntüler. Bu seçenek yalnızca ekran görüntüsünü etkiler." #. n24Cd #: cui/uiconfig/ui/optaccessibilitypage.ui:210 @@ -13945,7 +13945,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:90 msgctxt "optadvancedpage|label2" msgid "_Java runtime environments (JRE) already installed:" -msgstr "Önceden yüklenmiş Java çalıştırma ortamları (JRE):" +msgstr "Önceden yüklenmiş _Java çalıştırma ortamları (JRE):" #. mBYfC #: cui/uiconfig/ui/optadvancedpage.ui:116 @@ -13963,7 +13963,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:135 msgctxt "optadvancedpage|parameters" msgid "_Parameters..." -msgstr "Parametreler..." +msgstr "_Parametreler..." #. DJxvJ #: cui/uiconfig/ui/optadvancedpage.ui:142 @@ -13975,7 +13975,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:154 msgctxt "optadvancedpage|classpath" msgid "_Class Path..." -msgstr "Sınıf Yolu..." +msgstr "_Sınıf Yolu..." #. qDrtT #: cui/uiconfig/ui/optadvancedpage.ui:161 @@ -13999,7 +13999,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:257 msgctxt "extended_tip|javas" msgid "Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart the office suite to use your changed setting." -msgstr "Kullanmak istediğiniz JRE'yi seçin. Bazı sistemlerde, liste doldurulana kadar bir dakika beklemeniz gerekir. Bazı sistemlerde, değiştirdiğiniz ayarı kullanmak için ofis paketini yeniden başlatmanız gerekir." +msgstr "Kullanmak istediğiniz JRE'yi seçin. Bazı sistemlerde, liste doldurulana kadar bir dakika beklemeniz gerekir. Bazı sistemlerde, değiştirdiğiniz ayarı kullanmak için ofis paketini yeniden başlatmanız gerekir." #. erNBk #: cui/uiconfig/ui/optadvancedpage.ui:285 @@ -14215,7 +14215,7 @@ #: cui/uiconfig/ui/optasianpage.ui:238 msgctxt "extended_tip|standard" msgid "When you mark Default, the following two text boxes are filled with the default characters for the selected language:" -msgstr " Varsayılan'ı seçtiğinizde, takip eden iki metin kutusu seçilen dil için varsayılan karakterler ile doldurulacaktır:" +msgstr "Varsayılan'ı seçtiğinizde, takip eden iki metin kutusu seçilen dil için varsayılan karakterler ile doldurulacaktır:" #. WmjE9 #: cui/uiconfig/ui/optasianpage.ui:258 @@ -14245,7 +14245,7 @@ #: cui/uiconfig/ui/optasianpage.ui:323 msgctxt "extended_tip|end" msgid "Specifies the characters that should not appear alone at the end of a line." -msgstr "Bir satırın sonunda tek başına yer almaması gereken karakterleri belirler. " +msgstr "Bir satırın sonunda tek başına yer almaması gereken karakterleri belirler." #. dSvmP #: cui/uiconfig/ui/optasianpage.ui:343 @@ -14491,7 +14491,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 "Tüm ofis paketi modüllerinde metin, nesnelerdeki metin, alanlar ve kontrollerde kullanılan sayıların türünü seçer. Yalnızca Calc hücre içeriği etkilenmez." +msgstr "Tüm ofis paketi modüllerinde metin, nesnelerdeki metin, alanlar ve kontrollerde kullanılan sayıların türünü seçer. Yalnızca Calc hücre içeriği etkilenmez." #. kWczF #: cui/uiconfig/ui/optctlpage.ui:254 @@ -14633,7 +14633,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:245 msgctxt "extended_tip|highlighting" msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats." -msgstr "Microsoft Office, Writer karakter arka planına benzer iki karakter özelliğine sahiptir. Microsoft Office dosya biçimlerine dışa aktarma sırasında kullanmak istediğiniz uygun özniteliği (vurgulama veya gölgeleme) seçin." +msgstr "Microsoft Office, Writer karakter arka planına benzer iki karakter özelliğine sahiptir. Microsoft Office dosya biçimlerine dışa aktarma sırasında kullanmak istediğiniz uygun özniteliği (vurgulama veya gölgeleme) seçin." #. Dnrx7 #: cui/uiconfig/ui/optfltrembedpage.ui:257 @@ -14645,7 +14645,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:266 msgctxt "extended_tip|shading" msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats." -msgstr "Microsoft Office, Writer karakter arka planına benzer iki karakter özelliğine sahiptir. Microsoft Office dosya biçimlerine dışa aktarma sırasında kullanmak istediğiniz uygun özniteliği (vurgulama veya gölgeleme) seçin." +msgstr "Microsoft Office, Writer karakter arka planına benzer iki karakter özelliğine sahiptir. Microsoft Office dosya biçimlerine dışa aktarma sırasında kullanmak istediğiniz uygun özniteliği (vurgulama veya gölgeleme) seçin." #. gKwdG #: cui/uiconfig/ui/optfltrembedpage.ui:289 @@ -14687,7 +14687,7 @@ #: cui/uiconfig/ui/optfltrpage.ui:35 msgctxt "extended_tip|wo_basic" msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub." -msgstr "Bir Microsoft belgesinden Basic kodu, belgeyle birlikte özel bir Basic modül olarak yükler ve kaydeder. Devre dışı bırakılan Microsoft Basic kodu, Basic IDE'de Sub ve End Sub arasında görünür." +msgstr "Bir Microsoft belgesinden Basic kodu, belgeyle birlikte özel bir Basic modül olarak yükler ve kaydeder. Devre dışı bırakılan Microsoft Basic kodu, Basic IDE'de Sub ve End Sub arasında görünür." #. AChYC #: cui/uiconfig/ui/optfltrpage.ui:46 @@ -15023,7 +15023,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:284 msgctxt "optgeneralpage|crashreport" msgid "Sen_d crash reports to The Document Foundation" -msgstr "Çökme raporlarını Belge Vakfına gönder" +msgstr "Çökme raporlarını Belge Vakfına gön_der" #. rS3dG #: cui/uiconfig/ui/optgeneralpage.ui:307 @@ -15599,7 +15599,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:231 msgctxt "extended_tip|currentdoc" msgid "Specifies that the settings for default languages are valid only for the current document." -msgstr "Öntanımlı dillerin ayarlarının sadece geçerli belge için geçerli olduğunu belirtir." +msgstr "Varsayılan dillerin ayarlarının sadece geçerli belge için geçerli olduğunu belirtir." #. zeaKX #: cui/uiconfig/ui/optlanguagespage.ui:242 @@ -15863,7 +15863,7 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:115 msgctxt "optnewdictionarydialog|name_label" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. ypeEr #: cui/uiconfig/ui/optnewdictionarydialog.ui:129 @@ -16019,7 +16019,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:347 msgctxt "optonlineupdatepage|extrabits" msgid "_Send OS version and basic hardware information" -msgstr "İşletim Sistemi sürümü ve temel donanım bilgilerini gönder" +msgstr "İşletim Sistemi sürümü ve temel donanım bilgilerini _gönder" #. b95Sc #: cui/uiconfig/ui/optonlineupdatepage.ui:351 @@ -16109,7 +16109,7 @@ #: cui/uiconfig/ui/optpathspage.ui:126 msgctxt "paths" msgid "To modify an entry in this list, click the entry and click Edit. You can also double click the entry." -msgstr "Bu listedeki bir girdiyi değiştirmek için, girdiyi tıklayın ve Düzenle'yi tıklayın. Ayrıca girdyi çift tıklayabilirsiniz." +msgstr "Bu listedeki bir girdiyi değiştirmek için, girdiyi tıklayın ve Düzenle'yi tıklayın. Ayrıca girdyi çift tıklayabilirsiniz." #. rfDum #: cui/uiconfig/ui/optpathspage.ui:144 @@ -16289,7 +16289,7 @@ #: cui/uiconfig/ui/optsavepage.ui:42 msgctxt "load_docprinter" msgid "If enabled, the printer settings will be loaded with the document. This can cause a document to be printed on a distant printer, if you do not change the printer manually in the Print dialog. If disabled, your standard printer will be used to print this document. The current printer settings will be stored with the document whether or not this option is checked." -msgstr "Etkinleştirilirse, yazıcı ayarları belgeyle birlikte yüklenecektir. Yazıcıyı, Yazdır iletişim penceresinden elle değiştirmezseniz, bir belgenin uzaktaki bir yazıcıda yazdırılmasına neden olabilir. Devre dışı bırakılırsa, bu belgeyi yazdırmak için standart yazıcınız kullanılacaktır. Geçerli yazıcı ayarları, bu seçeneğin işaretli olup olmadığına bakılmaksızın belgeyle birlikte saklanacaktır." +msgstr "Etkinleştirilirse, yazıcı ayarları belgeyle birlikte yüklenecektir. Yazıcıyı, Yazdır iletişim penceresinden elle değiştirmezseniz, bir belgenin uzaktaki bir yazıcıda yazdırılmasına neden olabilir. Devre dışı bırakılırsa, bu belgeyi yazdırmak için standart yazıcınız kullanılacaktır. Geçerli yazıcı ayarları, bu seçeneğin işaretli olup olmadığına bakılmaksızın belgeyle birlikte saklanacaktır." #. VdFnA #: cui/uiconfig/ui/optsavepage.ui:53 @@ -16313,7 +16313,7 @@ #: cui/uiconfig/ui/optsavepage.ui:111 msgctxt "optsavepage|autosave" msgid "Save _AutoRecovery information every:" -msgstr "Otomatik kaydetme sıklığı:" +msgstr "_Otomatik kaydetme sıklığı:" #. a9xDP #: cui/uiconfig/ui/optsavepage.ui:119 @@ -16385,7 +16385,7 @@ #: cui/uiconfig/ui/optsavepage.ui:241 msgctxt "optsavepage|backup" msgid "Al_ways create backup copy" -msgstr "Her zaman yedek kopya oluştur" +msgstr "Her _zaman yedek kopya oluştur" #. vhCe5 #: cui/uiconfig/ui/optsavepage.ui:249 @@ -16458,7 +16458,7 @@ #: cui/uiconfig/ui/optsavepage.ui:361 msgctxt "odfversion" msgid "Some companies or organizations may require ODF documents in the ODF 1.0/1.1, or ODF 1.2 format. You can select these format to save in the listbox. These older formats cannot store all new features, so the new format ODF 1.3 (Extended) is recommended where possible." -msgstr "Bazı şirketler veya kuruluşlar ODF 1.0/1.1 veya ODF 1.2 biçiminde ODF belgeleri isteyebilir. Liste kutusuna kaydetmek için bu formatı seçebilirsiniz. Bu eski biçimler tüm yeni özellikleri depolayamaz, bu nedenle mümkün olduğunda yeni ODF 1.3 (Genişletilmiş) biçimi önerilir." +msgstr "Bazı şirketler veya kuruluşlar ODF 1.0/1.1 veya ODF 1.2 biçiminde ODF belgeleri isteyebilir. Liste kutusuna kaydetmek için bu formatı seçebilirsiniz. Bu eski biçimler tüm yeni özellikleri depolayamaz, bu nedenle mümkün olduğunda yeni ODF 1.3 (Genişletilmiş) biçimi önerilir." #. cxPqV #: cui/uiconfig/ui/optsavepage.ui:374 @@ -16524,7 +16524,7 @@ #: cui/uiconfig/ui/optsavepage.ui:428 msgctxt "saveas" msgid "Specifies how documents of the type selected on the left will always be saved as this file type. You may select another file type for the current document in the Save as dialog." -msgstr "Solda seçilen türdeki belgelerin her zaman bu dosya türü olarak nasıl kaydedileceğini belirtir. Farklı Kaydet iletişim penceresinde mevcut belge için başka bir dosya türü seçebilirsiniz." +msgstr "Solda seçilen türdeki belgelerin her zaman bu dosya türü olarak nasıl kaydedileceğini belirtir. Farklı Kaydet iletişim penceresinde mevcut belge için başka bir dosya türü seçebilirsiniz." #. 29FUf #: cui/uiconfig/ui/optsavepage.ui:441 @@ -16620,7 +16620,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:243 msgctxt "optsecuritypage|savepassword" msgid "Persistently _save passwords for web connections" -msgstr "Ağ bağlantıları için parolaları kalıcı olak kaydet" +msgstr "Ağ bağlantıları için parolaları _kalıcı olarak kaydet" #. pcu6X #: cui/uiconfig/ui/optsecuritypage.ui:251 @@ -16722,7 +16722,7 @@ #: cui/uiconfig/ui/optuserpage.ui:46 msgctxt "optuserpage|nameft" msgid "First/last _name/initials:" -msgstr "Ad/soyad/ilk harfler:" +msgstr "Ad/soya_d/ilk harfler:" #. Rgktm #: cui/uiconfig/ui/optuserpage.ui:61 @@ -17484,7 +17484,7 @@ #: cui/uiconfig/ui/optviewpage.ui:599 msgctxt "optviewpage|useaa" msgid "Use anti-a_liasing" -msgstr "Yumuşatma kullan" +msgstr "_Yumuşatma kullan" #. fUKV9 #: cui/uiconfig/ui/optviewpage.ui:608 @@ -17532,7 +17532,7 @@ #: cui/uiconfig/ui/optviewpage.ui:705 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" -msgstr "Yazı tipleri önizlemesini göster" +msgstr "Yazı tipleri _önizlemesini göster" #. 7Qidy #: cui/uiconfig/ui/optviewpage.ui:714 @@ -17544,7 +17544,7 @@ #: cui/uiconfig/ui/optviewpage.ui:725 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" -msgstr "Ekran yazı tipi yumuşatma" +msgstr "Ekran _yazı tipi yumuşatma" #. 5QEjG #: cui/uiconfig/ui/optviewpage.ui:734 @@ -17743,19 +17743,19 @@ #: cui/uiconfig/ui/pageformatpage.ui:608 msgctxt "pageformatpage|checkbuttonHorz" msgid "Hori_zontal" -msgstr "Yatay" +msgstr "_Yatay" #. krxQZ #: cui/uiconfig/ui/pageformatpage.ui:622 msgctxt "pageformatpage|checkbuttonVert" msgid "_Vertical" -msgstr "Dikey" +msgstr "_Dikey" #. FPLFK #: cui/uiconfig/ui/pageformatpage.ui:636 msgctxt "pageformatpage|checkAdaptBox" msgid "_Fit object to paper format" -msgstr "Sayfa biçimine göre nesneyi uydur" +msgstr "Sayfa biçimine göre nesneyi _uydur" #. bqcXW #: cui/uiconfig/ui/pageformatpage.ui:653 @@ -17834,7 +17834,7 @@ #: cui/uiconfig/ui/paragalignpage.ui:76 msgctxt "paragalignpage|radioBTN_LEFTALIGN" msgid "_Left" -msgstr "Sol" +msgstr "_Sol" #. uuHyT #: cui/uiconfig/ui/paragalignpage.ui:91 @@ -18092,7 +18092,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:460 msgctxt "paraindentspacing|checkCB_REGISTER" msgid "Activate page li_ne-spacing" -msgstr "Sayfa satır aralığını etkinleştir" +msgstr "S_ayfa satır aralığını etkinleştir" #. uesRM #. xdds @@ -18315,7 +18315,7 @@ #: cui/uiconfig/ui/pastespecial.ui:175 msgctxt "pastespecial|extended_tip|list" msgid "Select a format for the clipboard contents that you want to paste. The available format depends on the copied or cut source format." -msgstr "Yapıştırmak istediğiniz pano içeriği için bir biçim seçin. Kullanılabilir biçim, kopyalanan veya kesilen kaynak biçimine bağlıdır." +msgstr "Yapıştırmak istediğiniz pano içeriği için bir biçim seçin. Kullanılabilir biçim, kopyalanan veya kesilen kaynak biçimine bağlıdır." #. gjnwU #: cui/uiconfig/ui/pastespecial.ui:186 @@ -18333,7 +18333,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 "Geçerli listeye özel bir desen ekler. Deseninizin özelliklerini belirtin ve ardından bu düğmeye tıklayın." +msgstr "Geçerli listeye özel bir desen ekler. Deseninizin özelliklerini belirtin ve ardından bu düğmeye tıklayın." #. 68KjX #: cui/uiconfig/ui/patterntabpage.ui:83 @@ -18345,7 +18345,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 "Mevcut desen özelliklerini seçili desene uygular. İsterseniz deseni farklı bir isimle kaydedebilirsiniz." +msgstr "Mevcut desen özelliklerini seçili desene uygular. İsterseniz deseni farklı bir isimle kaydedebilirsiniz." #. SnESZ #: cui/uiconfig/ui/patterntabpage.ui:113 @@ -18369,7 +18369,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 "Deseni 8 x 8 piksel panoda çizin. Etkinleştirmek için bir desen pikseline tıklayın, devre dışı bırakmak için tekrar tıklayın." +msgstr "Deseni 8 x 8 piksel panoda çizin. Etkinleştirmek için bir desen pikseline tıklayın, devre dışı bırakmak için tekrar tıklayın." #. BvHTn #: cui/uiconfig/ui/patterntabpage.ui:218 @@ -19399,7 +19399,7 @@ #: cui/uiconfig/ui/searchattrdialog.ui:155 msgctxt "searchattrdialog|extended_tip|SearchAttrDialog" msgid "Choose the text attributes that you want to search for. For example, if you search for the Font attribute, all instances of text that do not use the default font are found. All text that has a directly coded font attribute, and all text where a style switches the font attribute, are found." -msgstr "Aramak istediğiniz metin niteliklerini seçin. Örneğin Yazı Tipi özniteliğini ararsanız, varsayılan yazı tipini kullanmayan tüm metin örnekleri bulunur. Doğrudan kodlanmış bir yazı tipi niteliğine sahip tüm metinler ve bir biçemin yazı tipi niteliğini değiştirdiği tüm metinler bulunur." +msgstr "Aramak istediğiniz metin niteliklerini seçin. Örneğin Yazı Tipi özniteliğini ararsanız, varsayılan yazı tipini kullanmayan tüm metin örnekleri bulunur. Doğrudan kodlanmış bir yazı tipi niteliğine sahip tüm metinler ve bir biçemin yazı tipi niteliğini değiştirdiği tüm metinler bulunur." #. 2nKNE #: cui/uiconfig/ui/searchformatdialog.ui:8 @@ -19627,7 +19627,7 @@ #: cui/uiconfig/ui/selectpathdialog.ui:196 msgctxt "cui/ui/selectpathdialog/paths" msgid "Contains a list of the paths that have already been added. Mark the default path for new files." -msgstr "Önceden eklenmiş yolların bir listesini içerir. Yeni dosyalar için varsayılan yolu işaretleyin." +msgstr "Önceden eklenmiş yolların bir listesini içerir. Yeni dosyalar için varsayılan yolu işaretleyin." #. oADTt #: cui/uiconfig/ui/selectpathdialog.ui:213 @@ -19747,7 +19747,7 @@ #: cui/uiconfig/ui/signatureline.ui:113 msgctxt "signatureline|extended_tip|edit_name" msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line." -msgstr "Adınızı belgeyi imzalayan olarak girin. Adınız, imza yatay çizgisinin üzerine eklenecektir." +msgstr "Adınızı belgeyi imzalayan olarak girin. Adınız, imza yatay çizgisinin üzerine eklenecektir." #. bMy9F #: cui/uiconfig/ui/signatureline.ui:128 @@ -19759,7 +19759,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 "İmzalayanın unvanını girin. Başlık, imza satırı grafik kutusunda görüntülenir." +msgstr "İmzalayanın unvanını girin. Başlık, imza satırı grafik kutusunda görüntülenir." #. 3SKcg #: cui/uiconfig/ui/signatureline.ui:147 @@ -19771,7 +19771,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 @@ -19864,7 +19864,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:112 msgctxt "signsignatureline|extended_tip|edit_name" msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line." -msgstr "Adınızı belgeyi imzalayan olarak girin. Adınız, imza yatay çizgisinin üzerine eklenecektir." +msgstr "Adınızı belgeyi imzalayan olarak girin. Adınız, imza yatay çizgisinin üzerine eklenecektir." #. dgTR9 #. Name of the signer @@ -19890,7 +19890,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 @@ -19933,7 +19933,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 "İmza hakkındaki açıklamaları girin. Açıklamalar, sertifikanın Açıklama alanında görüntülenir." +msgstr "İmza hakkındaki açıklamaları girin. Açıklamalar, sertifikanın Açıklama alanında görüntülenir." #. k4PqT #: cui/uiconfig/ui/signsignatureline.ui:316 @@ -20215,7 +20215,7 @@ #: cui/uiconfig/ui/solarizedialog.ui:221 msgctxt "solarizedialog|extended_tip|SolarizeDialog" msgid "Opens a dialog for defining solarization. Solarization refers to an effect that looks like what can happen when there is too much light during photo development. The colors become partly inverted." -msgstr "Solarizasyonu tanımlamak için bir iletişim penceresi açar. Solarizasyon, fotoğraf geliştirme sırasında çok fazla ışık olduğunda olabileceklere benzeyen bir etkiyi ifade eder. Renkler kısmen ters çevrilir." +msgstr "Solarizasyonu tanımlamak için bir iletişim penceresi açar. Solarizasyon, fotoğraf geliştirme sırasında çok fazla ışık olduğunda olabileceklere benzeyen bir etkiyi ifade eder. Renkler kısmen ters çevrilir." #. JpXVy #: cui/uiconfig/ui/specialcharacters.ui:8 @@ -20347,7 +20347,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:190 msgctxt "spellingdialog|suggestionsft" msgid "_Suggestions" -msgstr "Öneriler" +msgstr "_Öneriler" #. MZdqY #: cui/uiconfig/ui/spellingdialog.ui:233 @@ -20461,7 +20461,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:517 msgctxt "spellingdialog|ignore" msgid "_Ignore Once" -msgstr "Bir kere yoksay" +msgstr "Bir Kere Yoksay" #. M5qZF #: cui/uiconfig/ui/spellingdialog.ui:526 @@ -20473,7 +20473,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:537 msgctxt "spellingdialog|ignoreall" msgid "I_gnore All" -msgstr "Hepsini Yoksay" +msgstr "H_epsini Yoksay" #. zS3Wm #: cui/uiconfig/ui/spellingdialog.ui:546 @@ -20485,7 +20485,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:557 msgctxt "spellingdialog|ignorerule" msgid "I_gnore Rule" -msgstr "_Hepsini Yoksay" +msgstr "Kuralı Y_oksay" #. E63nm #: cui/uiconfig/ui/spellingdialog.ui:566 @@ -20557,13 +20557,13 @@ #: cui/uiconfig/ui/splitcellsdialog.ui:180 msgctxt "splitcellsdialog|vert" msgid "_Vertically" -msgstr "Dikey Olarak" +msgstr "_Dikey" #. Qev7K #: cui/uiconfig/ui/splitcellsdialog.ui:195 msgctxt "splitcellsdialog|prop" msgid "_Into equal proportions" -msgstr "Eşit oranlara" +msgstr "_Eşit oranlara" #. wtDLA #: cui/uiconfig/ui/splitcellsdialog.ui:239 @@ -20803,7 +20803,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:568 msgctxt "swpossizepage|followtextflow" msgid "Keep inside te_xt boundaries" -msgstr "Metin sınırları içinde tut" +msgstr "M_etin sınırları içinde tut" #. zfpt5 #: cui/uiconfig/ui/swpossizepage.ui:577 @@ -22255,7 +22255,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 " Belgedeki metnin genişliğini uydurmak için görüntüyü yeniden boyutlandırır." +msgstr "Belgedeki metnin genişliğini uydurmak için görüntüyü yeniden boyutlandırır." #. RfuDU #: cui/uiconfig/ui/zoomdialog.ui:129 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/dbaccess/messages.po libreoffice-7.5.2~rc2/translations/source/tr/dbaccess/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/dbaccess/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/dbaccess/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-25 13:48+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" -"Last-Translator: Muhammet Kara \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2023-03-20 09:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547626398.000000\n" #. BiN6g @@ -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 @@ -3265,7 +3265,7 @@ #: dbaccess/uiconfig/ui/fielddescpage.ui:115 msgctxt "fielddescpage|STR_DEFAULT_VALUE" msgid "_Default value" -msgstr "_Öntanımlı değer" +msgstr "_Varsayılan değer" #. niTFN #: dbaccess/uiconfig/ui/fielddescpage.ui:141 @@ -3308,7 +3308,7 @@ #: dbaccess/uiconfig/ui/fielddescpage.ui:325 msgctxt "fielddescpage|STR_FIELD_REQUIRED" msgid "_Default value" -msgstr "_Öntanımlı değer" +msgstr "_Varsayılan değer" #. XYtyx #: dbaccess/uiconfig/ui/fielddescpage.ui:350 @@ -3482,7 +3482,7 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:180 msgctxt "generalpagewizard|extended_tip|docListBox" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." -msgstr "Son kullanılan dosyalar listesinden açılacak bir veritabanı dosyası seçin. Dosyayı hemen açmak ve sihirbazdan çıkmak için Bitir'e tıklayın." +msgstr "Son kullanılan dosyalar listesinden açılacak bir veritabanı dosyası seçin. Dosyayı hemen açmak ve sihirbazdan çıkmak için Bitir'e tıklayın." #. dVAEy #: dbaccess/uiconfig/ui/generalpagewizard.ui:191 @@ -3494,7 +3494,7 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:202 msgctxt "generalpagewizard|extended_tip|openDatabase" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." -msgstr "Bir veritabanı dosyası seçebileceğiniz bir dosya seçim penceresi açar. Dosyayı hemen açmak ve sihirbazdan çıkmak için dosya seçimi iletişim penceresinde Aç veya Tamam'a tıklayın." +msgstr "Bir veritabanı dosyası seçebileceğiniz bir dosya seçim penceresi açar. Dosyayı hemen açmak ve sihirbazdan çıkmak için dosya seçimi iletişim penceresinde Aç veya Tamam'a tıklayın." #. cKpTp #: dbaccess/uiconfig/ui/generalpagewizard.ui:213 @@ -3634,7 +3634,7 @@ #: dbaccess/uiconfig/ui/indexdesigndialog.ui:141 msgctxt "indexdesigndialog|ID_INDEX_RESET" msgid "Reset Current Index" -msgstr "Geçerli Dizini İlk Haline Getir" +msgstr "Geçerli Dizini Sıfırla" #. RqkCS #: dbaccess/uiconfig/ui/indexdesigndialog.ui:239 @@ -4714,7 +4714,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 "Bir veri kaynağındaki bir ad içinde yalnızca SQL92 adlandırma kuralına uyan karakterlere izin verilir. Diğer tüm karakterler reddedilir. Her isim bir küçük harf, bir büyük harf veya bir alt çizgi ( _ ) ile başlamalıdır. Kalan karakterler ASCII harfleri, sayıları ve alt çizgileri olabilir." +msgstr "Bir veri kaynağındaki bir ad içinde yalnızca SQL92 adlandırma kuralına uyan karakterlere izin verilir. Diğer tüm karakterler reddedilir. Her isim bir küçük harf, bir büyük harf veya bir alt çizgi ( _ ) ile başlamalıdır. Kalan karakterler ASCII harfleri, sayıları ve alt çizgileri olabilir." #. Gwn9n #: dbaccess/uiconfig/ui/specialsettingspage.ui:43 @@ -4750,7 +4750,7 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:89 msgctxt "specialsettingsoage|extended_tip|useoj" msgid "Use escape sequences for outer joins. The syntax for this escape sequence is {oj outer-join}" -msgstr "Dış birleşimler için kaçış dizilerini kullanın. Bu kaçış dizisinin sözdizimi {oj external-join} şeklindedir." +msgstr "Dış birleşimler için kaçış dizilerini kullanın. Bu kaçış dizisinin sözdizimi {oj external-join} şeklindedir." #. T8TKQ #: dbaccess/uiconfig/ui/specialsettingspage.ui:100 @@ -4798,7 +4798,7 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:165 msgctxt "specialsettingspage|extended_tip|usecatalogname" 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 "Kataloğun güncel veri kaynağını kullanır. Bu seçenek, ODBC veri kaynağı bir veritabanı sunucusu olduğunda kullanışlıdır. ODBC veri kaynağı bir dBASE sürücüsüyse bu seçeneği seçmeyin." +msgstr "Kataloğun güncel veri kaynağını kullanır. Bu seçenek, ODBC veri kaynağı bir veritabanı sunucusu olduğunda kullanışlıdır. ODBC veri kaynağı bir dBASE sürücüsüyse bu seçeneği seçmeyin." #. yFGxG #: dbaccess/uiconfig/ui/specialsettingspage.ui:176 @@ -4846,7 +4846,7 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:241 msgctxt "specialsettingspage|extended_tip|ignorecurrency" msgid "Only for Oracle JDBC connections. When enabled it specifies that no column is treated as a currency field. The field type returned from the database driver is discarded." -msgstr "Yalnızca Oracle JDBC bağlantıları için. Etkinleştirildiğinde, hiçbir sütunun para birimi alanı olarak değerlendirilmediğini belirtir. Veritabanı sürücüsünden döndürülen alan türü atılır." +msgstr "Yalnızca Oracle JDBC bağlantıları için. Etkinleştirildiğinde, hiçbir sütunun para birimi alanı olarak değerlendirilmediğini belirtir. Veritabanı sürücüsünden döndürülen alan türü atılır." #. 2tRzG #: dbaccess/uiconfig/ui/specialsettingspage.ui:252 @@ -4906,7 +4906,7 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:352 msgctxt "specialsettingspage|comparison" msgid "Default" -msgstr "Öntanımlı" +msgstr "Varsayılan" #. D7LWx #: dbaccess/uiconfig/ui/specialsettingspage.ui:353 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/tr/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/extensions/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-11 14:15+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: 1554879901.000000\n" #. cBx8W @@ -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 "Yeni oluşturulan veritabanı dosyasını ofis paketine kaydeder. Veritabanı daha sonra Veri kaynakları bölmesinde listelenecektir (Ctrl+Shift+F4). Bu onay kutusunun işareti kaldırılırsa, veritabanı yalnızca veritabanı dosyası açılarak kullanılabilir olacaktır." +msgstr "Yeni oluşturulan veritabanı dosyasını ofis paketine kaydeder. Veritabanı daha sonra Veri kaynakları bölmesinde listelenecektir (Ctrl+Shift+F4). Bu onay kutusunun işareti kaldırılırsa, veritabanı yalnızca veritabanı dosyası açılarak kullanılabilir olacaktır." #. jbrum #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:162 @@ -4264,7 +4264,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:366 msgctxt "sanedialog|extended_tip|preview" msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box." -msgstr "Taranan resmin bir önizlemesini görüntüler. Önizleme alanı sekiz tutamaç içerir. Tarama alanını ayarlamak için tutamaçları sürükleyin veya karşılık gelen kenar boşluğu kutusuna bir değer girin." +msgstr "Taranan resmin bir önizlemesini görüntüler. Önizleme alanı sekiz tutamaç içerir. Tarama alanını ayarlamak için tutamaçları sürükleyin veya karşılık gelen kenar boşluğu kutusuna bir değer girin." #. FZ7Vw #: extensions/uiconfig/scanner/ui/sanedialog.ui:379 @@ -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 "Kullanılabilir tarayıcı sürücüsü gelişmiş seçenekler listesini görüntüler. İçeriğini hemen aşağıda görüntülemek için bir seçeneğe çift tıklayın." +msgstr "Kullanılabilir tarayıcı sürücüsü gelişmiş seçenekler listesini görüntüler. İçeriğini hemen aşağıda görüntülemek için bir seçeneğe çift tıklayın." #. VDQay #: extensions/uiconfig/scanner/ui/sanedialog.ui:607 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/extras/source/autocorr/emoji.po libreoffice-7.5.2~rc2/translations/source/tr/extras/source/autocorr/emoji.po --- libreoffice-7.5.1~rc2/translations/source/tr/extras/source/autocorr/emoji.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/extras/source/autocorr/emoji.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04 09:02+0000\n" +"PO-Revision-Date: 2023-02-28 22:07+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: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1513906359.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -5434,7 +5434,7 @@ "CINEMA\n" "LngText.text" msgid "cinema" -msgstr "cinema" +msgstr "sinema" #. 🎧 (U+1F3A7), see http://wiki.documentfoundation.org/Emoji #. 2tBD3 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/filter/messages.po libreoffice-7.5.2~rc2/translations/source/tr/filter/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/filter/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/filter/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 13:11+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554880045.000000\n" #. 5AQgJ @@ -455,7 +455,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:233 msgctxt "pdfgeneralpage|reduceresolution" msgid "Reduce ima_ge resolution to:" -msgstr "Görüntü çözünürlüğünü şu şekilde azalt:" +msgstr "_Görüntü çözünürlüğünü şu şekilde azalt:" #. bAtCV #: filter/uiconfig/ui/pdfgeneralpage.ui:245 @@ -1607,7 +1607,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:421 msgctxt "pdfviewpage|contfacinglayout" msgid "Co_ntinuous facing" -msgstr "İki sütunlu" +msgstr "İ_ki sütunlu" #. YyCT7 #: filter/uiconfig/ui/pdfviewpage.ui:430 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/formula/messages.po libreoffice-7.5.2~rc2/translations/source/tr/formula/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/formula/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/formula/messages.po 2023-03-24 16:53:38.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-12-21 17:45+0100\n" -"PO-Revision-Date: 2023-01-23 13:09+0100\n" -"Last-Translator: Muhammet Kara \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2023-03-09 13:22+0100\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" @@ -2713,7 +2713,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 "Seçilmiş olan kategoride bulunan işlevleri görüntüler. Bir işlev seçmek için çift tıklayın. " +msgstr "Seçilmiş olan kategoride bulunan işlevleri görüntüler. Bir işlev seçmek için çift tıklayın." #. jY887 #: formula/uiconfig/ui/functionpage.ui:155 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/framework/messages.po libreoffice-7.5.2~rc2/translations/source/tr/framework/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/framework/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/framework/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,9 +4,9 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-06-11 17:08+0200\n" -"PO-Revision-Date: 2023-02-13 07:32+0000\n" -"Last-Translator: sabri ünal \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2023-02-28 22:08+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" @@ -50,7 +50,7 @@ #: framework/inc/strings.hrc:29 msgctxt "STR_TOOLBAR_UNDOCK_TOOLBAR" msgid "U~ndock Toolbar" -msgstr "Araç Çubuğunun Kilidini Kaldır" +msgstr "~Araç Çubuğunun Kilidini Kaldır" #. 7GcGg #: framework/inc/strings.hrc:30 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/auxiliary.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/auxiliary.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/auxiliary.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/auxiliary.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2021-12-07 05:38+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: 1558796004.000000\n" #. fEEXD @@ -131,7 +131,7 @@ "070203\n" "node.text" msgid "Python Modules" -msgstr "" +msgstr "Python Modülleri" #. JCHAg #: sbasic.tree diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/sbasic/shared/03.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/sbasic/shared/03.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-09 11:30+0100\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 @@ -194,7 +194,7 @@ "par_id1001623412767893\n" "help.text" msgid "To learn more about how to create and execute Python scripts using the ScriptForge library, read the help page Creating Python Scripts with ScriptForge." -msgstr "" +msgstr "ScriptForge kütüphanesini kullanarak Python betiklerini oluşturmak ve çalıştırmak hakkında daha fazla bilgiye sahip olmak için ScriptForge ile Python betiklerini oluşturmak yardım sayfasını okuyunuz." #. 2Fr3S #: 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 @@ -401,7 +401,7 @@ "par_id1001593520257636\n" "help.text" msgid "ImportWizard and Tools Basic libraries" -msgstr "" +msgstr "ImportWizard ve Araçlar Basic Kütüphaneleri" #. DT897 #: lib_euro.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.5.1~rc2/translations/source/tr/helpcontent2/source/text/scalc/02.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/scalc/02.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/scalc/02.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/scalc/02.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\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:34+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: 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.5.1~rc2/translations/source/tr/helpcontent2/source/text/scalc.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/scalc.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/scalc.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/scalc.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2021-11-18 15: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: 1540154263.000000\n" #. ZxQeC @@ -113,7 +113,7 @@ "par_id3151112\n" "help.text" msgid "These commands apply to the current document, create a document, open an existing document, or close the application." -msgstr "" +msgstr "Bu komutlar geçerli belgeye uygulanır, bir belge oluşturur, mevcut bir belgeyi açar veya uygulamayı kapatır." #. 6hchv #: main0102.xhp @@ -185,7 +185,7 @@ "par_id3149456\n" "help.text" msgid "This menu contains commands to control the on-screen display of the document, change the user interface and access the sidebar panels." -msgstr "" +msgstr "Bu menü belgenin ekran görüntüsünü kontrol etmek, kullanıcı arayüzünü değiştirmek ve kenar çubuğu bölmelerine erişmek için komutlar içerir." #. X7bcB #: main0103.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/sdraw/guide.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/sdraw/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/sdraw/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\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-23 12:34+0000\n" +"Last-Translator: Zeki Bildirici \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.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.5.1~rc2/translations/source/tr/helpcontent2/source/text/shared/00.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/shared/00.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/shared/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/shared/00.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\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 @@ -41,7 +41,7 @@ "hd_id211668777619062\n" "help.text" msgid "Help" -msgstr "" +msgstr "Yardım" #. ruaTG #: 00000001.xhp @@ -455,7 +455,7 @@ "par_id3145070\n" "help.text" msgid "Cancel" -msgstr "İptal et" +msgstr "İptal" #. DRgMc #: 00000001.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/shared/autopi.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/shared/autopi.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/shared/autopi.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+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 @@ -50,7 +50,7 @@ "par_id3153527\n" "help.text" msgid "Guides you through creating business and personal letters, faxes, agendas, and more." -msgstr "" +msgstr "İş ve kişisel mektuplar, fakslar, ajandalar ve daha fazlasını oluştururken size rehberlik eder." #. dAcHA #: 01000000.xhp @@ -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.5.1~rc2/translations/source/tr/helpcontent2/source/text/shared/guide.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/shared/guide.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/shared/guide.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/shared/guide.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\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.5.1~rc2/translations/source/tr/helpcontent2/source/text/simpress.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/simpress.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/simpress.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/simpress.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2022-09-09 14:36+0000\n" -"Last-Translator: Zeki Bildirici \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: 1549374682.000000\n" #. GdQGG @@ -131,7 +131,7 @@ "par_id3154321\n" "help.text" msgid "These commands apply to the current document, create a document, open an existing document, or close the application." -msgstr "" +msgstr "Bu komutlar geçerli belgeye uygulanır, bir belge oluşturur, mevcut bir belgeyi açar veya uygulamayı kapatır." #. zRW8E #: main0103.xhp @@ -158,7 +158,7 @@ "par_id3149378\n" "help.text" msgid "This menu contains commands to control the on-screen display of the document, change the user interface and access the sidebar panels." -msgstr "" +msgstr "Bu menü belgenin ekran görüntüsünü kontrol etmek, kullanıcı arayüzünü değiştirmek ve kenar çubuğu bölmelerine erişmek için komutlar içerir." #. sbbhw #: main0103.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/smath/00.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/smath/00.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/smath/00.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/smath/00.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: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: 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.5.1~rc2/translations/source/tr/helpcontent2/source/text/smath.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/smath.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/smath.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/smath.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+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: 1549374653.000000\n" #. yKBT5 @@ -122,7 +122,7 @@ "par_id3155959\n" "help.text" msgid "This menu contains the general commands for working with formula documents, such as create, open, save and print." -msgstr "" +msgstr "Bu menü, formül belgeleriyle çalışmak için oluşturma, açma, kaydetme ve yazdırma gibi genel komutları içerir." #. 6hchv #: main0102.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/swriter/librelogo.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/swriter/librelogo.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\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 @@ -41,7 +41,7 @@ "hd_170\n" "help.text" msgid "LibreLogo" -msgstr "" +msgstr "LibreLogo" #. HvLY3 #: LibreLogo.xhp @@ -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.5.1~rc2/translations/source/tr/helpcontent2/source/text/swriter.po libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/swriter.po --- libreoffice-7.5.1~rc2/translations/source/tr/helpcontent2/source/text/swriter.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/helpcontent2/source/text/swriter.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2021-11-14 09: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: 1549390779.000000\n" #. x2qZ6 @@ -212,7 +212,7 @@ "par_id3147352\n" "help.text" msgid "These commands apply to the current document, create a document, open an existing document, or close the application." -msgstr "" +msgstr "Bu komutlar geçerli belgeye uygulanır, bir belge oluşturur, mevcut bir belgeyi açar veya uygulamayı kapatır." #. 6hchv #: main0102.xhp @@ -356,7 +356,7 @@ "par_id3147249\n" "help.text" msgid "This menu contains commands to control the on-screen display of the document, change the user interface and access the sidebar panels." -msgstr "" +msgstr "Bu menü belgenin ekran görüntüsünü kontrol etmek, kullanıcı arayüzünü değiştirmek ve kenar çubuğu bölmelerine erişmek için komutlar içerir." #. VDkey #: main0103.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.5.2~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.5.1~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-24 16:53:38.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-11-22 14:44+0100\n" -"PO-Revision-Date: 2023-02-13 16:31+0000\n" +"PO-Revision-Date: 2023-03-20 09: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" @@ -434,7 +434,7 @@ "Label\n" "value.text" msgid "Reset Filter" -msgstr "Filtreyi Sil" +msgstr "Süzgeci Sıfırla" #. YF5sR #: CalcCommands.xcu @@ -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 @@ -2644,7 +2644,7 @@ "Label\n" "value.text" msgid "Reset Scale" -msgstr "Ölçeklendirmeyi Kaldır" +msgstr "Ölçeklendirmeyi Sıfırla" #. DEHZ9 #: CalcCommands.xcu @@ -4184,7 +4184,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Excel..." -msgstr "Microsoft Excel olarak gönder..." +msgstr "~Microsoft Excel olarak gönder..." #. ZiTq5 #: CalcCommands.xcu @@ -8224,7 +8224,7 @@ "Label\n" "value.text" msgid "Te~xt Attributes..." -msgstr "Metin Öznitelikleri..." +msgstr "Me~tin Öznitelikleri..." #. GR6Sf #: DrawImpressCommands.xcu @@ -9544,7 +9544,7 @@ "Label\n" "value.text" msgid "Views Tab ~Bar" -msgstr "Görünümler Sekmesi Çubuğu" +msgstr "~Görünümler Sekmesi Çubuğu" #. wmwio #: DrawImpressCommands.xcu @@ -10624,7 +10624,7 @@ "Label\n" "value.text" msgid "Sli~de Sorter" -msgstr "Sla~yt Sıralayıcı" +msgstr "Slay~t Sıralayıcı" #. mSBB5 #: DrawImpressCommands.xcu @@ -10634,7 +10634,7 @@ "Label\n" "value.text" msgid "Slide ~Pane" -msgstr "Slayt ~Panosu" +msgstr "Slayt ~Bölmesi" #. SLFEA #: DrawImpressCommands.xcu @@ -10644,7 +10644,7 @@ "Label\n" "value.text" msgid "~Page Pane" -msgstr "Sayfa ~Penceresi" +msgstr "~Sayfa Bölmesi" #. 9W9yh #: DrawImpressCommands.xcu @@ -10654,7 +10654,7 @@ "Label\n" "value.text" msgid "Tas~k Pane" -msgstr "Gö~rev Penceresi" +msgstr "Gö~rev Bölmesi" #. Bvk8Q #: DrawImpressCommands.xcu @@ -24596,7 +24596,7 @@ "Label\n" "value.text" msgid "Redraw" -msgstr "Yeniden çiz" +msgstr "Yeniden Çiz" #. NFKrC #: GenericCommands.xcu @@ -27216,7 +27216,7 @@ "Label\n" "value.text" msgid "Open the Styles Deck" -msgstr "Biçemler Penceresini Aç" +msgstr "Biçemler Penceresini Aç" #. X4FoZ #: GenericCommands.xcu @@ -28066,7 +28066,7 @@ "Label\n" "value.text" msgid "~AutoUpdate Display" -msgstr "Görüntüyü Otomatik Güncelle" +msgstr "Görüntüyü ~Otomatik Güncelle" #. VafA5 #: MathCommands.xcu @@ -30800,7 +30800,7 @@ "Label\n" "value.text" msgid "Bookmar~k..." -msgstr "~Yer imi..." +msgstr "~Yer İmi..." #. BBqAd #: WriterCommands.xcu @@ -35790,7 +35790,7 @@ "Label\n" "value.text" msgid "~Strong Emphasis" -msgstr "~Kuvvetli Vurgulama" +msgstr "~Kuvvetli Vurgu" #. 7Xm9y #: WriterCommands.xcu @@ -35800,7 +35800,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.5.1~rc2/translations/source/tr/readlicense_oo/docs.po libreoffice-7.5.2~rc2/translations/source/tr/readlicense_oo/docs.po --- libreoffice-7.5.1~rc2/translations/source/tr/readlicense_oo/docs.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/readlicense_oo/docs.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-01-25 12:36+0100\n" -"PO-Revision-Date: 2021-10-25 16:51+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: 1545368012.000000\n" #. q6Gg3 @@ -167,7 +167,7 @@ "MSOReg2\n" "readmeitem.text" msgid "REGISTER_ALL_MSO_TYPES=1 will force registration of ${PRODUCTNAME} as default application for Microsoft Office formats." -msgstr "REGISTER_ALL_MSO_TYPES=1 bütün Microsoft Office dosya biçimleri için ${PRODUCTNAME}'i öntanımlı uygulama olarak kaydedecektir." +msgstr "REGISTER_ALL_MSO_TYPES=1 bütün Microsoft Office dosya biçimleri için ${PRODUCTNAME}'i varsayılan uygulama olarak kaydedecektir." #. BrBwT #: readme.xrm @@ -176,7 +176,7 @@ "MSOReg3\n" "readmeitem.text" msgid "REGISTER_NO_MSO_TYPES=1 will suppress registration of ${PRODUCTNAME} as default application for Microsoft Office formats." -msgstr "REGISTER_NO_MSO_TYPES=1 bütün Microsoft Office dosya biçimleri için ${PRODUCTNAME}'in öntanımlı uygulama olmasını kaldıracaktır." +msgstr "REGISTER_NO_MSO_TYPES=1 bütün Microsoft Office dosya biçimleri için ${PRODUCTNAME}'in varsayılan uygulama olmasını kaldıracaktır." #. GGBmC #: readme.xrm @@ -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 "Genel kural olarak, ${PRODUCTNAME}'in kurulumunu kullandığınız Linux dağıtımı tarafından tavsiye edilen şekilde yapmanız önerilir (örneğin Ubuntu kullanıyorsanız Ubuntu Yazılım Merkezi, Pardus kullanıyorsanız Paket Yöneticisi aracılığı ile). Bu sisteminize en uygun şekilde kurulum ve optimizasyonu sağlayacaktır. Bunun yanı sıra ${PRODUCTNAME} Linux dağıtımını sisteminize kurduğunuz zaman bununla öntanımlı olarak da gelebilir." +msgstr "Genel kural olarak, ${PRODUCTNAME}'in kurulumunu kullandığınız Linux dağıtımı tarafından tavsiye edilen şekilde yapmanız önerilir (örneğin Ubuntu kullanıyorsanız Ubuntu Yazılım Merkezi, Pardus kullanıyorsanız Paket Yöneticisi aracılığı ile). Bu sisteminize en uygun şekilde kurulum ve optimizasyonu sağlayacaktır. Bunun yanı sıra ${PRODUCTNAME} Linux dağıtımını sisteminize kurduğunuz zaman bununla varsayılan olarak da gelebilir." #. 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 "${PRODUCTNAME} ürününü başlatma güçlükleri (ör. uygulamalar kilitleniyor) ve ekran görüntüsüyle ilgili sorunlar genellikle grafik kartı sürücüsünden kaynaklanır. Bu sorunlar meydana gelirse, lütfen grafik kartı sürücünüzü güncelleyin veya işletim sisteminizle birlikte verilen grafik sürücüsünü kullanmayı deneyin." +msgstr "${PRODUCTNAME} ürününü başlatma güçlükleri (ör. uygulamalar kilitleniyor) ve ekran görüntüsüyle ilgili sorunlar genellikle grafik kartı sürücüsünden kaynaklanır. Bu sorunlar meydana gelirse, lütfen grafik kartı sürücünüzü güncelleyin veya işletim sisteminizle birlikte verilen grafik sürücüsünü kullanmayı deneyin." #. inrAd #: readme.xrm diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/sc/messages.po libreoffice-7.5.2~rc2/translations/source/tr/sc/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/sc/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/sc/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-13 16:31+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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" @@ -2598,7 +2598,7 @@ #: sc/inc/globstr.hrc:438 msgctxt "STR_OPTIONS_WARN_SEPARATORS" msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values." -msgstr "Şu anki formül ayırıcı ayarları yerel ile çatıştığından, formül ayıraçları öntanımlı değerlerine geri dönmüştür." +msgstr "Şu anki formül ayırıcı ayarları yerel ile çatıştığından, formül ayıraçları varsayılan değerlerine geri dönmüştür." #. QMTkA #: sc/inc/globstr.hrc:439 @@ -2652,7 +2652,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 "Geçersiz isim. Bir harfle başlayın, yalnızca harf, sayı ve alt çizgi kullanın." +msgstr "Geçersiz isim. Bir harfle başlayın, yalnızca harf, sayı ve alt çizgi kullanın." #. owW4Y #: sc/inc/globstr.hrc:448 @@ -8661,7 +8661,7 @@ #: sc/inc/scfuncs.hrc:1711 msgctxt "SC_OPCODE_MAX" msgid "Number " -msgstr "Sayı" +msgstr "Sayı " #. XowNY #: sc/inc/scfuncs.hrc:1712 @@ -8823,7 +8823,7 @@ #: sc/inc/scfuncs.hrc:1783 msgctxt "SC_OPCODE_VAR_P_A" msgid "Value " -msgstr "Değer" +msgstr "Değer " #. yZFuZ #: sc/inc/scfuncs.hrc:1784 @@ -14583,7 +14583,7 @@ #: sc/inc/scfuncs.hrc:3527 msgctxt "SC_OPCODE_ASC" msgid "Converts full-width ASCII and katakana characters to half-width." -msgstr "Tam-geniş ASCII ve katakana karakterlerini yarı-genişliğe dönüştür." +msgstr "Tam-geniş ASCII ve katakana karakterlerini yarı-genişliğe dönüştür." #. FKMAj #: sc/inc/scfuncs.hrc:3528 @@ -15519,7 +15519,7 @@ #: sc/inc/scfuncs.hrc:3831 msgctxt "SC_OPCODE_REGEX" msgid "Text specifying option flags, \"g\" for global replacement. Or number of occurrence to match or replace." -msgstr "Seçenek bayraklarını belirten metin, genel değiştirme için \"g\". Veya eşleşecek veya değiştirilecek oluşum sayısı." +msgstr "Seçenek bayraklarını belirten metin, genel değiştirme için \"g\". Veya eşleşecek veya değiştirilecek oluşum sayısı." #. Gp7Ph #: sc/inc/scfuncs.hrc:3837 @@ -16462,7 +16462,7 @@ #: sc/inc/scfuncs.hrc:4127 msgctxt "SC_OPCODE_FOURIER" msgid "The array whose DFT needs to be computed. The dimensions of this array can be Nx1 or Nx2 or 1xN or 2xN." -msgstr "DFT'sinin hesaplanması gereken dizi. Bu dizinin boyutları Nx1 veya Nx2 veya 1xN veya 2xN olabilir." +msgstr "DFT'sinin hesaplanması gereken dizi. Bu dizinin boyutları Nx1 veya Nx2 veya 1xN veya 2xN olabilir." #. M7L6L #: sc/inc/scfuncs.hrc:4128 @@ -17184,7 +17184,7 @@ #: sc/inc/strings.hrc:130 msgctxt "SCSTR_COL_LABEL" msgid "Range contains column la~bels" -msgstr "Kenarlar sütun etiketlerinden oluşuyor" +msgstr "Kenarlar sütun ~etiketlerinden oluşuyor" #. mJyFP #: sc/inc/strings.hrc:131 @@ -18735,7 +18735,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:119 msgctxt "advancedfilterdialog|extended_tip|rbfilterarea" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. yFS2F #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:134 @@ -18825,7 +18825,7 @@ #: 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 " Sonuçları Kopyala onay kutusunu işaretleyerek, süzülmüş verinin kopyalanacağı hedef aralığını belirleyin. Bu onay kutusu işaretli ise hedef aralığı kaynak aralığına bağlı kalır. Veri - Aralık tanımla yoluyla kaynak aralığını bir veritabanı alanı olarak belirlemelisiniz." +msgstr "Sonuçları Kopyala onay kutusunu işaretleyerek, süzülmüş verinin kopyalanacağı hedef aralığını belirleyin. Bu onay kutusu işaretli ise hedef aralığı kaynak aralığına bağlı kalır. Veri - Aralık tanımla yoluyla kaynak aralığını bir veritabanı alanı olarak belirlemelisiniz." #. NLz5G #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:355 @@ -18855,7 +18855,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:398 msgctxt "advancedfilterdialog|extended_tip|rbcopyarea" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. RGXM4 #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:423 @@ -19137,7 +19137,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:333 msgctxt "autoformattable|fontcb" msgid "Font" -msgstr "Yazıtipi" +msgstr "Yazı tipi" #. GjAFM #: sc/uiconfig/scalc/ui/autoformattable.ui:341 @@ -19263,7 +19263,7 @@ #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:32 msgctxt "cellprotectionpage|checkProtected" msgid "_Protected" -msgstr "Korumalı" +msgstr "_Korumalı" #. jkUCZ #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:43 @@ -19527,7 +19527,7 @@ #: sc/uiconfig/scalc/ui/colwidthdialog.ui:121 msgctxt "colwidthdialog|default" msgid "_Default value" -msgstr "_Öntanımlı değer" +msgstr "_Varsayılan değer" #. rov8K #: sc/uiconfig/scalc/ui/colwidthdialog.ui:129 @@ -20259,7 +20259,7 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:331 msgctxt "conditionalformatdialog|extended_tip|rbassign" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. BH5wk #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:347 @@ -20487,7 +20487,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:276 msgctxt "consolidatedialog|extended_tip|rbdataarea" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. ziYLq #: sc/uiconfig/scalc/ui/consolidatedialog.ui:306 @@ -20505,7 +20505,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:344 msgctxt "consolidatedialog|extended_tip|rbdestarea" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. zrSv3 #: sc/uiconfig/scalc/ui/consolidatedialog.ui:376 @@ -21441,7 +21441,7 @@ #: sc/uiconfig/scalc/ui/dataform.ui:37 msgctxt "dataform|close" msgid "_Close" -msgstr "Kapat" +msgstr "_Kapat" #. gbAzv #: sc/uiconfig/scalc/ui/dataform.ui:166 @@ -21453,7 +21453,7 @@ #: sc/uiconfig/scalc/ui/dataform.ui:177 msgctxt "dataform|new" msgid "_New" -msgstr "Yeni" +msgstr "_Yeni" #. Epdm6 #: sc/uiconfig/scalc/ui/dataform.ui:193 @@ -21831,13 +21831,13 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:223 msgctxt "definedatabaserangedialog|extended_tip|assign" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. ySCS4 #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:240 msgctxt "definedatabaserangedialog|extended_tip|assignrb" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. FUAH2 #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:256 @@ -22023,7 +22023,7 @@ #: sc/uiconfig/scalc/ui/definename.ui:264 msgctxt "definename|filter" msgid "_Filter" -msgstr "Süzgeç" +msgstr "_Süzgeç" #. KPv69 #: sc/uiconfig/scalc/ui/definename.ui:272 @@ -22077,7 +22077,7 @@ #: sc/uiconfig/scalc/ui/deletecells.ui:8 msgctxt "deletecells|DeleteCellsDialog" msgid "Delete Cells" -msgstr "Hücreleri sil" +msgstr "Hücreleri Sil" #. UXfkG #: sc/uiconfig/scalc/ui/deletecells.ui:92 @@ -22635,7 +22635,7 @@ #: sc/uiconfig/scalc/ui/externaldata.ui:178 msgctxt "externaldata|label1" msgid "URL of _External Data Source" -msgstr "Harici Veri Kaynağı Adresi" +msgstr "_Harici Veri Kaynağı Adresi" #. x9ENQ #: sc/uiconfig/scalc/ui/externaldata.ui:242 @@ -23451,13 +23451,13 @@ #: sc/uiconfig/scalc/ui/goalseekdlg.ui:204 msgctxt "goalseekdlg|extended_tip|formulabutton" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. phzQE #: sc/uiconfig/scalc/ui/goalseekdlg.ui:220 msgctxt "goalseekdlg|extended_tip|varbutton" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. mHUzW #: sc/uiconfig/scalc/ui/goalseekdlg.ui:238 @@ -24051,7 +24051,7 @@ #: sc/uiconfig/scalc/ui/insertcells.ui:143 msgctxt "insertcells|extended_tip|rows" msgid "Inserts an entire row. The position of the row is determined by the selection on the sheet." -msgstr "Bütün bir satır ekler. Eklenecek satır sayısı seçilmiş olan satır sayısı kadar olur. " +msgstr "Bütün bir satır ekler. Eklenecek satır sayısı seçilmiş olan satır sayısı kadar olur." #. 6UZ5M #: sc/uiconfig/scalc/ui/insertcells.ui:155 @@ -24075,7 +24075,7 @@ #: sc/uiconfig/scalc/ui/insertcells.ui:205 msgctxt "insertcells|extended_tip|InsertCellsDialog" msgid "Opens the Insert Cells dialog, in which you can insert new cells according to the options that you specify." -msgstr " hücre eklepenceresini açar, bu diyalog ile ayarlanan seçeneklere göre yeni hücreler eklenir." +msgstr "Hücre eklepenceresini açar, bu diyalog ile ayarlanan seçeneklere göre yeni hücreler eklenir." #. Ex63x #: sc/uiconfig/scalc/ui/insertname.ui:20 @@ -24189,13 +24189,13 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:231 msgctxt "insertsheet|countft" msgid "N_o. of sheets:" -msgstr "Sayfa Sayısı:" +msgstr "_Sayfa sayısı:" #. xnBgf #: sc/uiconfig/scalc/ui/insertsheet.ui:245 msgctxt "insertsheet|nameft" msgid "Na_me:" -msgstr "İsi_m:" +msgstr "_Ad:" #. JqDES #: sc/uiconfig/scalc/ui/insertsheet.ui:265 @@ -24237,7 +24237,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 " Araştır düğmesini kullanarak bir dosya seçerseniz, belgedeki sayfalar listede görüntülenir. Dosya yolu bu kutunun altında görüntülenir. Liste kutusundan eklenecek sayfayı seçin." +msgstr "Araştır düğmesini kullanarak bir dosya seçerseniz, belgedeki sayfalar listede görüntülenir. Dosya yolu bu kutunun altında görüntülenir. Liste kutusundan eklenecek sayfayı seçin." #. mGqDq #: sc/uiconfig/scalc/ui/insertsheet.ui:412 @@ -24363,7 +24363,7 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:215 msgctxt "managenamesdialog|label2" msgid "Name:" -msgstr "İsim:" +msgstr "Ad:" #. XY33d #: sc/uiconfig/scalc/ui/managenamesdialog.ui:229 @@ -24387,7 +24387,7 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:288 msgctxt "managenamesdialog|extended_tip|assign" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. ddGRB #: sc/uiconfig/scalc/ui/managenamesdialog.ui:309 @@ -24417,7 +24417,7 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:380 msgctxt "managenamesdialog|filter" msgid "_Filter" -msgstr "Süzgeç" +msgstr "_Süzgeç" #. DoQMz #: sc/uiconfig/scalc/ui/managenamesdialog.ui:388 @@ -24453,7 +24453,7 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:441 msgctxt "managenamesdialog|label1" msgid "Range _Options" -msgstr "Aralık Seçenekleri" +msgstr "Aralık _Seçenekleri" #. MFz5S #: sc/uiconfig/scalc/ui/managenamesdialog.ui:447 @@ -24771,19 +24771,19 @@ #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:208 msgctxt "multipleoperationsdialog|extended_tip|formulasref" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. qdF79 #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:224 msgctxt "multipleoperationsdialog|extended_tip|rowref" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. pzEjo #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:240 msgctxt "multipleoperationsdialog|extended_tip|colref" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. LqDCg #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:255 @@ -24825,7 +24825,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:150 msgctxt "namerangesdialog|extended_tip|rbassign" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. RHkHY #: sc/uiconfig/scalc/ui/namerangesdialog.ui:174 @@ -24867,7 +24867,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:269 msgctxt "namerangesdialog|extended_tip|rbassign2" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. UQwuv #: sc/uiconfig/scalc/ui/namerangesdialog.ui:300 @@ -26489,13 +26489,13 @@ #: 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 "Hesaplamaların sayfada gözüken yuvarlanmış değerlerle mi yapılacağını tanımlar. Çizelgeler gözüken değerlerle gösterilecektir. Eğer Gösterildiği gibi hassasiyet seçeneği işaretli değilse, gösterilen sayılar yuvarlanır, fakat içerideki işlemlerde yuvarlanmamış sayılar kullanılarak hesaplamalar yapılır." +msgstr "Hesaplamaların sayfada gözüken yuvarlanmış değerlerle mi yapılacağını tanımlar. Çizelgeler gözüken değerlerle gösterilecektir. Eğer Gösterildiği gibi hassasiyet seçeneği işaretli değilse, gösterilen sayılar yuvarlanır, fakat içerideki işlemlerde yuvarlanmamış sayılar kullanılarak hesaplamalar yapılır." #. BiDg6 #: sc/uiconfig/scalc/ui/optcalculatepage.ui:130 msgctxt "optcalculatepage|match" msgid "Search criteria = and <> must apply to _whole cells" -msgstr "Arama ölçütleri = ve <> tüm hücrelere uygulanmalıdır." +msgstr "Arama ölçütleri = ve <> _tüm hücrelere uygulanmalıdır." #. deGGB #: sc/uiconfig/scalc/ui/optcalculatepage.ui:134 @@ -26555,7 +26555,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:266 msgctxt "optcalculatepage|iterate" msgid "_Iterations" -msgstr "Yinelemeler" +msgstr "_Yinelemeler" #. pBKcn #: sc/uiconfig/scalc/ui/optcalculatepage.ui:274 @@ -26987,7 +26987,7 @@ #: sc/uiconfig/scalc/ui/optformula.ui:383 msgctxt "optformula|reset" msgid "Rese_t Separators Settings" -msgstr "Ayraç Ayarlarını Sıfırla" +msgstr "Ayraç Ayarlarını _Sıfırla" #. 9oMMw #: sc/uiconfig/scalc/ui/optformula.ui:407 @@ -27023,7 +27023,7 @@ #: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:122 msgctxt "optimalcolwidthdialog|default" msgid "_Default value" -msgstr "_Öntanımlı değer" +msgstr "_Varsayılan değer" #. RMGd4 #: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:130 @@ -27125,7 +27125,7 @@ #: sc/uiconfig/scalc/ui/optsortlists.ui:213 msgctxt "optsortlists|new" msgid "_New" -msgstr "Yeni" +msgstr "_Yeni" #. uH79F #: sc/uiconfig/scalc/ui/optsortlists.ui:220 @@ -27401,7 +27401,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:238 msgctxt "pastespecial|extended_tip|cbImmediately" msgid "Check this option to run the preset immediately. Uncheck it to manipulate the options before clicking OK." -msgstr "Ön ayarı hemen çalıştırmak için bu seçeneği işaretleyin. Tamam'a tıklamadan önce seçenekleri değiştirmek için işaretini kaldırın." +msgstr "Ön ayarı hemen çalıştırmak için bu seçeneği işaretleyin. Tamam'a tıklamadan önce seçenekleri değiştirmek için işaretini kaldırın." #. YD43i #: sc/uiconfig/scalc/ui/pastespecial.ui:254 @@ -27689,7 +27689,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 "Veri Alanı Seçenekleri iletişim penceresini açar. Seçenekler düğmesi, yalnızca filtreler ve sütun veya satır alanları için görünür." +msgstr "Veri Alanı Seçenekleri iletişim penceresini açar. Seçenekler düğmesi, yalnızca filtreler ve sütun veya satır alanları için görünür." #. KBmND #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:133 @@ -28109,7 +28109,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:845 msgctxt "pivottablelayoutdialog|extended_tip|destination-button" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. LBRZw #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:860 @@ -28169,7 +28169,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 "Özet tablo için ek seçenekleri görüntüler veya gizler." +msgstr "Özet tablo için ek seçenekleri görüntüler veya gizler." #. rSsEg #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1054 @@ -28199,7 +28199,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:119 msgctxt "printareasdialog|extended_tip|rbprintarea" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. 6nt5h #: sc/uiconfig/scalc/ui/printareasdialog.ui:138 @@ -28289,7 +28289,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:326 msgctxt "printareasdialog|extended_tip|rbrepeatcol" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. bKSEJ #: sc/uiconfig/scalc/ui/printareasdialog.ui:340 @@ -29429,7 +29429,7 @@ #: sc/uiconfig/scalc/ui/selectrange.ui:162 msgctxt "selectrange|extended_tip|SelectRangeDialog" msgid "Selects a database range that you defined under Data - Define Range." -msgstr " Veri - Aralık Tanımla yoluyla tanımlamış olduğunuz veritabanlarından bir veritabanı aralığı seçer." +msgstr "Veri - Aralık Tanımla yoluyla tanımlamış olduğunuz veritabanlarından bir veritabanı aralığı seçer." #. EzRBz #: sc/uiconfig/scalc/ui/selectsource.ui:8 @@ -29729,7 +29729,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:255 msgctxt "sheetprintpage|checkBTN_GRID" msgid "_Grid" -msgstr "Izgara" +msgstr "_Izgara" #. V7t5z #: sc/uiconfig/scalc/ui/sheetprintpage.ui:263 @@ -30269,7 +30269,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:236 msgctxt "sidebarnumberformat|negativenumbersred|tooltip_text" msgid "Changes the font color of negative numbers to red." -msgstr "Negatif sayıların yazıtipi rengini kırmızı ile değiştirir." +msgstr "Negatif sayıların yazı tipi rengini kırmızı ile değiştirir." #. BJ9Gy #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:249 @@ -30323,7 +30323,7 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:39 msgctxt "solverdlg|resetall" msgid "_Reset All" -msgstr "Temi_zle" +msgstr "Tümünü _Sıfırla" #. bz78K #: sc/uiconfig/scalc/ui/solverdlg.ui:53 @@ -31739,7 +31739,7 @@ #: 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 " Sonuçları Kopyala onay kutusunu işaretleyerek, süzülmüş verinin kopyalanacağı hedef aralığını belirleyin. Bu onay kutusu işaretli ise hedef aralığı kaynak aralığına bağlı kalır. Veri - Aralık tanımla yoluyla kaynak aralığını bir veritabanı alanı olarak belirlemelisiniz." +msgstr "Sonuçları Kopyala onay kutusunu işaretleyerek, süzülmüş verinin kopyalanacağı hedef aralığını belirleyin. Bu onay kutusu işaretli ise hedef aralığı kaynak aralığına bağlı kalır. Veri - Aralık tanımla yoluyla kaynak aralığını bir veritabanı alanı olarak belirlemelisiniz." #. StG9B #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1099 @@ -31769,7 +31769,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1142 msgctxt "standardfilterdialog|extended_tip|rbcopyarea" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." +msgstr "İletişim penceresini giriş alanı boyutuna küçültmek için Küçült simgesine tıklayın. Bu durumda, gerekli referansı sayfada işaretlemek daha kolaydır. Simgeler daha sonra otomatik olarak Ekranı Kapla simgesine dönüşür. İletişim penceresini özgün boyutuna geri yüklemek için tıklayın." #. 4PyDb #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1167 @@ -31961,7 +31961,7 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:137 msgctxt "subtotaloptionspage|extended_tip|ascending" msgid "Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options." -msgstr "En düşük değerden başlayarak sıralar. Sıralama kurallarını Veri - Sırala - Seçenekler'den tanımlayabilirsiniz." +msgstr "En düşük değerden başlayarak sıralar. Sıralama kurallarını Veri - Sırala - Seçenekler'den tanımlayabilirsiniz." #. maa6m #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:148 @@ -31973,7 +31973,7 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:158 msgctxt "subtotaloptionspage|extended_tip|descending" msgid "Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options." -msgstr "En yüksek değerden başlayarak sıralar. Sıralama kurallarını Veri - Sırala - Seçenekler'den tanımlayabilirsiniz." +msgstr "En yüksek değerden başlayarak sıralar. Sıralama kurallarını Veri - Sırala - Seçenekler'den tanımlayabilirsiniz." #. EGqiq #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:169 @@ -32987,7 +32987,7 @@ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:205 msgctxt "validationcriteriapage|allowempty" msgid "Allow _empty cells" -msgstr "Boş hücrelere izin ver" +msgstr "_Boş hücrelere izin ver" #. gMyAs #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:213 @@ -33029,7 +33029,7 @@ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:289 msgctxt "validationcriteriapage|extended_tip|max" msgid "Enter the maximum value for the data validation option that you selected in the Allow box." -msgstr "İzin ver kutusunda veri geçerliliği için seçmiş olduğunuz seçeneğe göre, azami değeri girin." +msgstr "İzin ver kutusunda veri geçerliliği için seçmiş olduğunuz seçeneğe göre, azami değeri girin." #. 3HjmP #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:312 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/scaddins/messages.po libreoffice-7.5.2~rc2/translations/source/tr/scaddins/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/scaddins/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/scaddins/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-14 14:36+0100\n" -"PO-Revision-Date: 2022-11-22 13:49+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507247784.000000\n" #. i8Y7Z @@ -4727,7 +4727,7 @@ #: scaddins/inc/pricing.hrc:104 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Probability that an asset will at maturity end up between two barrier levels, assuming it follows dS/S = mu dt + vol dW (if the last two optional parameters (Strike, PutCall) are specified, the probability of S_T in [Strike, UpperBarrier] for a Call and S_T in [LowerBarrier, Strike] for a Put will be returned)" -msgstr "Bir varlığın vade sonunda dS/S = mu dt + vol dW (son iki isteğe bağlı parametre (Kullanım, SatAl) tanımlanmışsa, bir Al için [Kullanım, ÜstSınır] ifadesinde S_T ve bir Sat için [AltSınır, Kullanım] ifadesinde S_T dödürme olasılığı) şeklinde ilerlediği kabul edilerek iki sınır seviyesi arasında kalma olasılığı" +msgstr "Bir varlığın vade sonunda dS/S = mu dt + vol dW (son iki isteğe bağlı parametre (Kullanım, SatAl) tanımlanmışsa, bir Al için [Kullanım, ÜstSınır] ifadesinde S_T ve bir Sat için [AltSınır, Kullanım] ifadesinde S_T dödürme olasılığı) şeklinde ilerlediği kabul edilerek iki sınır seviyesi arasında kalma olasılığı" #. jFDzR #: scaddins/inc/pricing.hrc:105 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/sd/messages.po libreoffice-7.5.2~rc2/translations/source/tr/sd/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/sd/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/sd/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:12+0100\n" -"PO-Revision-Date: 2023-02-13 16:31+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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" @@ -1141,7 +1141,7 @@ #: sd/inc/strings.hrc:145 msgctxt "STR_EFFECTDLG_ACTION" msgid "Act~ion" -msgstr "Eylem" +msgstr "E~ylem" #. KJhf2 #: sd/inc/strings.hrc:146 @@ -1639,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 "Ana Slayt adı. Liste için sağ tıklayın veya iletişim penceresi için tıklayın." +msgstr "Ana Slayt adı. Liste için sağ tıklayın veya iletişim penceresi için tıklayın." #. HcDvJ #: sd/inc/strings.hrc:233 @@ -3357,7 +3357,7 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:246 msgctxt "dlgsnap|point" msgid "_Point" -msgstr "Nokta" +msgstr "_Nokta" #. jQ34q #: sd/uiconfig/sdraw/ui/dlgsnap.ui:255 @@ -3369,7 +3369,7 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:266 msgctxt "dlgsnap|vert" msgid "_Vertical" -msgstr "Dikey" +msgstr "_Dikey" #. 7bAB7 #: sd/uiconfig/sdraw/ui/dlgsnap.ui:275 @@ -3381,7 +3381,7 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:286 msgctxt "dlgsnap|horz" msgid "Hori_zontal" -msgstr "Yatay" +msgstr "_Yatay" #. GMavs #: sd/uiconfig/sdraw/ui/dlgsnap.ui:295 @@ -3771,7 +3771,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:228 msgctxt "insertlayer|visible" msgid "_Visible" -msgstr "Görünür" +msgstr "_Görünür" #. oXY4U #: sd/uiconfig/sdraw/ui/insertlayer.ui:236 @@ -3783,7 +3783,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:248 msgctxt "insertlayer|printable" msgid "_Printable" -msgstr "Yazdırılabilir" +msgstr "_Yazdırılabilir" #. VASG2 #: sd/uiconfig/sdraw/ui/insertlayer.ui:256 @@ -3795,7 +3795,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:268 msgctxt "insertlayer|locked" msgid "_Locked" -msgstr "Kilitli" +msgstr "_Kilitli" #. uaSTH #: sd/uiconfig/sdraw/ui/insertlayer.ui:276 @@ -4436,7 +4436,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8512 msgctxt "draw_notebookbar_groupedbar_compact|GridButton" msgid "_Fontwork" -msgstr "Yazı Sanatı" +msgstr "_Yazı Sanatı" #. Q6ELJ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8623 @@ -4544,7 +4544,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 "Dönüştürülen görüntüde görüntülenecek renk sayısını girin. Görüntüdeki bir rengin her oluşumu için bir çokgen oluşturulur." +msgstr "Dönüştürülen görüntüde görüntülenecek renk sayısını girin. Görüntüdeki bir rengin her oluşumu için bir çokgen oluşturulur." #. Fzf9L #: sd/uiconfig/sdraw/ui/vectorize.ui:158 @@ -5088,7 +5088,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:370 msgctxt "customanimationspanel|effectlabel" msgid "Effect:" -msgstr "_Efekt:" +msgstr "Efekt:" #. MEJrn #: sd/uiconfig/simpress/ui/customanimationspanel.ui:419 @@ -5406,7 +5406,7 @@ #: sd/uiconfig/simpress/ui/customslideshows.ui:47 msgctxt "customslideshows|startshow" msgid "_Start" -msgstr "Başlat" +msgstr "_Başlat" #. JZ8B7 #: sd/uiconfig/simpress/ui/customslideshows.ui:54 @@ -5442,7 +5442,7 @@ #: sd/uiconfig/simpress/ui/customslideshows.ui:205 msgctxt "customslideshows|copy" msgid "Cop_y" -msgstr "Kopyala" +msgstr "Kop_yala" #. Vv8GG #: sd/uiconfig/simpress/ui/customslideshows.ui:212 @@ -6462,7 +6462,7 @@ #: 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 "Başlatmak istediğiniz program için bir yok girin veya programı konumlandırmak için Gözatı tıklayın." +msgstr "Başlatmak istediğiniz program için bir yok girin veya programı konumlandırmak için Gözatı tıklayın." #. Mocvx #: sd/uiconfig/simpress/ui/interactionpage.ui:438 @@ -7325,7 +7325,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8474 msgctxt "notebookbar_groupedbar_compact|GridButton" msgid "_Fontwork" -msgstr "Yazı Sanatı" +msgstr "_Yazı Sanatı" #. PLqyG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8585 @@ -7963,7 +7963,7 @@ #: 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 "Etkinleştirilirse, Ctrl tuşunu basılı tutarak bir nesneyi taşıdığınızda bir kopya oluşturulur." +msgstr "Etkinleştirilirse, Ctrl tuşunu basılı tutarak bir nesneyi taşıdığınızda bir kopya oluşturulur." #. QdHNF #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:286 @@ -7999,7 +7999,7 @@ #: 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 "Döndürme aracı etkinken bir nesneyi taşımak istediğinizi belirtir. Nesneler her zaman taşınabilir olarak işaretlenmemişse, Döndür aracı yalnızca bir nesneyi döndürmek için kullanılabilir." +msgstr "Döndürme aracı etkinken bir nesneyi taşımak istediğinizi belirtir. Nesneler her zaman taşınabilir olarak işaretlenmemişse, Döndür aracı yalnızca bir nesneyi döndürmek için kullanılabilir." #. 8cyDE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:387 @@ -8395,7 +8395,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:114 msgctxt "presentationdialog|from" msgid "_From:" -msgstr "Başlangıç:" +msgstr "_Başlangıç:" #. yfqmc #: sd/uiconfig/simpress/ui/presentationdialog.ui:126 @@ -8533,7 +8533,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:471 msgctxt "presentationdialog|showlogo" msgid "Show _logo" -msgstr "Logoyu göster" +msgstr "_Logoyu göster" #. jCenX #: sd/uiconfig/simpress/ui/presentationdialog.ui:480 @@ -8581,7 +8581,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:571 msgctxt "presentationdialog|pointervisible" msgid "Mouse pointer _visible" -msgstr "Fare okunu görüntüle" +msgstr "Fare okunu _görüntüle" #. pDBLN #: sd/uiconfig/simpress/ui/presentationdialog.ui:579 @@ -8593,7 +8593,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:590 msgctxt "presentationdialog|pointeraspen" msgid "Mouse pointer as _pen" -msgstr "Kalem biçiminde fare oku" +msgstr "_Kalem biçiminde fare oku" #. QLvoH #: sd/uiconfig/simpress/ui/presentationdialog.ui:598 @@ -8605,7 +8605,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:609 msgctxt "presentationdialog|animationsallowed" msgid "_Animations allowed" -msgstr "Canlandırmaya izin ver" +msgstr "_Canlandırmaya izin ver" #. EUe99 #: sd/uiconfig/simpress/ui/presentationdialog.ui:617 @@ -8617,7 +8617,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:628 msgctxt "presentationdialog|changeslidesbyclick" msgid "Change slides by clic_king on background" -msgstr "Arkaplana tıklayınca slaytı değiştir" +msgstr "Arkaplana tı_klayınca slaytı değiştir" #. tzMEC #: sd/uiconfig/simpress/ui/presentationdialog.ui:636 @@ -8629,7 +8629,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:647 msgctxt "presentationdialog|alwaysontop" msgid "Presentation always _on top" -msgstr "Sunumu hep önde göster" +msgstr "Sunumu hep _önde göster" #. 49nwd #: sd/uiconfig/simpress/ui/presentationdialog.ui:655 @@ -9001,7 +9001,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:421 msgctxt "publishingdialog|URLTxtLabel" msgid "URL for _presentation:" -msgstr "Sunum için adres:" +msgstr "_Sunum için adres:" #. V5ADs #: sd/uiconfig/simpress/ui/publishingdialog.ui:439 @@ -9319,7 +9319,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1362 msgctxt "publishingdialog|emailTxtLabel" msgid "E-_mail address:" -msgstr "E-posta adresi:" +msgstr "E-_posta adresi:" #. wvFSd #: sd/uiconfig/simpress/ui/publishingdialog.ui:1376 @@ -9433,7 +9433,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1759 msgctxt "publishingdialog|backButton" msgid "Bac_kground" -msgstr "Arkaplan" +msgstr "Ar_kaplan" #. 3mrfM #: sd/uiconfig/simpress/ui/publishingdialog.ui:1785 @@ -9685,7 +9685,7 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:38 msgctxt "slidecontextmenu|pen" msgid "Mouse Pointer as _Pen" -msgstr "Kalem Olarak Fare İşaretçisi" +msgstr "_Kalem Olarak Fare İşaretçisi" #. TXPqW #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:46 @@ -10141,7 +10141,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:391 msgctxt "templatedialog|font" msgid "Font" -msgstr "Yazıtipi" +msgstr "Yazı tipi" #. tuaZJ #: sd/uiconfig/simpress/ui/templatedialog.ui:439 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/sfx2/classification.po libreoffice-7.5.2~rc2/translations/source/tr/sfx2/classification.po --- libreoffice-7.5.1~rc2/translations/source/tr/sfx2/classification.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/sfx2/classification.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-08-08 17:14+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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=2; plural=n != 1;\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 "Bu içerik Gizli olarak işaretlenmiştir. İsletme onayı olmadan harici olarak dağıtmayın." +msgstr "Bu içerik Gizli olarak işaretlenmiştir. İsletme onayı olmadan harici olarak dağıtmayın." #. 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 "Bu içerik Yalnızca Dahili olarak işaretlenmiştir. İşletmenin dışına dağıtmayın." +msgstr "Bu içerik Yalnızca Dahili olarak işaretlenmiştir. İşletmenin dışına dağıtmayın." #. 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 "Bu içerik Yalnızca Dahili olarak işaretlenmiştir. İşletmenin dışına dağıtmayın." +msgstr "Bu içerik Yalnızca Dahili olarak işaretlenmiştir. İşletmenin dışına dağıtmayın." diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/sfx2/messages.po libreoffice-7.5.2~rc2/translations/source/tr/sfx2/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/sfx2/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/sfx2/messages.po 2023-03-24 16:53:38.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: 2023-01-09 11:30+0100\n" -"PO-Revision-Date: 2023-02-13 07:32+0000\n" -"Last-Translator: sabri ünal \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2023-03-13 11:32+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" @@ -3275,7 +3275,7 @@ #: sfx2/uiconfig/ui/documentfontspage.ui:144 msgctxt "documentfontspage|fontScriptFrameLabel" msgid "Font scripts to embed" -msgstr "Gömülecek yazıtipi betikleri" +msgstr "Gömülecek yazı tipi betikleri" #. izc2Y #: sfx2/uiconfig/ui/documentfontspage.ui:158 @@ -3311,13 +3311,13 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:75 msgctxt "documentinfopage|label17" msgid "Total _editing time:" -msgstr "Toplam düzenleme süresi:" +msgstr "Toplam _düzenleme süresi:" #. MEzSr #: sfx2/uiconfig/ui/documentinfopage.ui:89 msgctxt "documentinfopage|label18" msgid "Re_vision number:" -msgstr "Revizyon numarası:" +msgstr "Re_vizyon numarası:" #. BgTqU #: sfx2/uiconfig/ui/documentinfopage.ui:131 @@ -3809,7 +3809,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 "Kaynak dosyayı en son kaydeden uygulamayı listeler. Ofis paketi uygulamalarının sunucu adı soffice'dir." +msgstr "Kaynak dosyayı en son kaydeden uygulamayı listeler. Ofis paketi uygulamalarının sunucu adı soffice'dir." #. cj9do #: sfx2/uiconfig/ui/linkeditdialog.ui:166 @@ -4001,7 +4001,7 @@ #: sfx2/uiconfig/ui/managestylepage.ui:33 msgctxt "managestylepage|nameft" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. VroAG #: sfx2/uiconfig/ui/managestylepage.ui:47 @@ -4361,7 +4361,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:614 msgctxt "optprintpage|converttogray" msgid "Con_vert colors to grayscale" -msgstr "Renkleri gri tonlara dönüştür" +msgstr "Renkleri gri tonlara _dönüştür" #. UNSqH #: sfx2/uiconfig/ui/optprintpage.ui:622 @@ -5141,7 +5141,7 @@ #: sfx2/uiconfig/ui/versionscmis.ui:64 msgctxt "versionscmis|show" msgid "_Show..." -msgstr "-Göster..." +msgstr "_Göster..." #. A8Eqt #: sfx2/uiconfig/ui/versionscmis.ui:92 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/starmath/messages.po libreoffice-7.5.2~rc2/translations/source/tr/starmath/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/starmath/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/starmath/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-11-14 08:17+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1525787735.000000\n" #. GrDhX @@ -2702,7 +2702,7 @@ #: starmath/uiconfig/smath/ui/alignmentdialog.ui:23 msgctxt "alignmentdialog|default" msgid "_Default" -msgstr "_Öntanımlı" +msgstr "_Varsayılan" #. RK3fb #: starmath/uiconfig/smath/ui/alignmentdialog.ui:30 @@ -2834,7 +2834,7 @@ #: starmath/uiconfig/smath/ui/fontdialog.ui:170 msgctxt "fontdialog|formulaL" msgid "Font" -msgstr "Yazıtipi" +msgstr "Yazı Tipi" #. rEsKd #: starmath/uiconfig/smath/ui/fontdialog.ui:203 @@ -2882,7 +2882,7 @@ #: starmath/uiconfig/smath/ui/fontsizedialog.ui:61 msgctxt "fontsizedialog|default" msgid "_Default" -msgstr "_Öntanımlı" +msgstr "_Varsayılan" #. BywFC #: starmath/uiconfig/smath/ui/fontsizedialog.ui:68 @@ -3038,7 +3038,7 @@ #: starmath/uiconfig/smath/ui/fonttypedialog.ui:123 msgctxt "fonttypedialog|default" msgid "_Default" -msgstr "_Öntanımlı" +msgstr "_Varsayılan" #. gAvNx #: starmath/uiconfig/smath/ui/fonttypedialog.ui:130 @@ -3471,7 +3471,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:145 msgctxt "spacingdialog|default" msgid "_Default" -msgstr "_Öntanımlı" +msgstr "_Varsayılan" #. sGXwv #: starmath/uiconfig/smath/ui/spacingdialog.ui:159 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/svtools/messages.po libreoffice-7.5.2~rc2/translations/source/tr/svtools/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/svtools/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/svtools/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2023-01-23 11:30+0000\n" +"PO-Revision-Date: 2023-03-20 09: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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1550557104.000000\n" #. fLdeV @@ -202,7 +202,7 @@ #: include/svtools/strings.hrc:57 msgctxt "STR_FORMAT_ID_STARCALC_40" msgid "StarCalc 4.0 object" -msgstr "StarCalc 4.0 nesnesi" +msgstr "StarCalc 4.0 nesnesi" #. zzGDB #: include/svtools/strings.hrc:58 @@ -5304,7 +5304,7 @@ #: 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 "Dışa aktarma için kaliteyi ayarlar. Asgari dosya boyutuyla düşük kaliteden yüksek kaliteye ve büyük dosya boyutuna kadar seçim yapın." +msgstr "Dışa aktarma için kaliteyi ayarlar. Asgari dosya boyutuyla düşük kaliteden yüksek kaliteye ve büyük dosya boyutuna kadar seçim yapın." #. Tk5y2 #: svtools/uiconfig/ui/graphicexport.ui:442 @@ -5772,7 +5772,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.5.1~rc2/translations/source/tr/svx/messages.po libreoffice-7.5.2~rc2/translations/source/tr/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/svx/messages.po 2023-03-24 16:53:38.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: 2023-02-09 12:11+0100\n" -"PO-Revision-Date: 2023-02-13 16:31+0000\n" +"PO-Revision-Date: 2023-03-20 09: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" @@ -3163,7 +3163,7 @@ #: include/svx/strings.hrc:553 msgctxt "RID_SVXSTR_TRANSPARENCE" msgid "Transparency" -msgstr "Ş~effaflık" +msgstr "Şeffaflık" #. X4EFw #: include/svx/strings.hrc:554 @@ -4376,13 +4376,13 @@ #: include/svx/strings.hrc:771 msgctxt "RID_SVXSTR_GRDT60" msgid "Yellow Gradient" -msgstr "Sarı Geçişi" +msgstr "Sarı Geçişli" #. amMze #: include/svx/strings.hrc:772 msgctxt "RID_SVXSTR_GRDT61" msgid "Orange Gradient" -msgstr "Turuncu Geçişi" +msgstr "Turuncu Geçişli" #. bodAW #: include/svx/strings.hrc:773 @@ -4455,7 +4455,7 @@ #: include/svx/strings.hrc:785 msgctxt "RID_SVXSTR_GRDT73" msgid "Blank with Gray" -msgstr "Gri ile boş" +msgstr "Gri ile Boş" #. CJqu3 #: include/svx/strings.hrc:786 @@ -4467,7 +4467,7 @@ #: include/svx/strings.hrc:787 msgctxt "RID_SVXSTR_GRDT75" msgid "London Mist" -msgstr "Londra Misti" +msgstr "Londra Sisi" #. nk99S #: include/svx/strings.hrc:788 @@ -4521,7 +4521,7 @@ #: include/svx/strings.hrc:796 msgctxt "RID_SVXSTR_GRDT84" msgid "Mahogany" -msgstr "Kızıl kahverengi" +msgstr "Kızıl Kahverengi" #. Z8RH9 #. /gradients @@ -4684,31 +4684,31 @@ #: include/svx/strings.hrc:824 msgctxt "RID_SVXSTR_BMP10" msgid "Colorful Pebbles" -msgstr "Renkli çakıl taşları" +msgstr "Renkli Çakıl Taşları" #. nqBbP #: include/svx/strings.hrc:825 msgctxt "RID_SVXSTR_BMP11" msgid "Coffee Beans" -msgstr "Kahve çekirdekleri" +msgstr "Kahve Çekirdekleri" #. CQS6y #: include/svx/strings.hrc:826 msgctxt "RID_SVXSTR_BMP12" msgid "Little Clouds" -msgstr "Küçük bulutlar" +msgstr "Küçük Bulutlar" #. 2hE6A #: include/svx/strings.hrc:827 msgctxt "RID_SVXSTR_BMP13" msgid "Bathroom Tiles" -msgstr "Banyo karoları" +msgstr "Banyo Karoları" #. KZeGr #: include/svx/strings.hrc:828 msgctxt "RID_SVXSTR_BMP14" msgid "Wall of Rock" -msgstr "Taş duvar" +msgstr "Taş Duvar" #. wAELs #: include/svx/strings.hrc:829 @@ -4738,7 +4738,7 @@ #: include/svx/strings.hrc:833 msgctxt "RID_SVXSTR_BMP19" msgid "Night Sky" -msgstr "Gece gökyüzü" +msgstr "Gece Gökyüzü" #. NkYV3 #: include/svx/strings.hrc:834 @@ -5403,7 +5403,7 @@ #: include/svx/strings.hrc:949 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 @@ -5508,7 +5508,7 @@ #: include/svx/strings.hrc:979 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 @@ -5536,7 +5536,7 @@ #: include/svx/strings.hrc:987 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 @@ -5550,7 +5550,7 @@ #: include/svx/strings.hrc:991 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 @@ -5604,7 +5604,7 @@ #: include/svx/strings.hrc:1005 msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1" msgid "Green 1 (%PRODUCTNAME Main Color)" -msgstr "Yeşil 1 (%PRODUCTNAME Ana Renk)" +msgstr "Yeşil 1 (%PRODUCTNAME Ana Renk)" #. Msh88 #: include/svx/strings.hrc:1006 @@ -7361,7 +7361,7 @@ #: include/svx/strings.hrc:1321 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:1322 @@ -10176,7 +10176,7 @@ #: include/svx/strings.hrc:1812 msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY" msgid "Digitally signed by:" -msgstr "Dijital olarak imzalayan:" +msgstr "Sayısal olarak imzalayan:" #. NyP2E #: include/svx/strings.hrc:1813 @@ -11043,7 +11043,7 @@ #: svx/inc/formnavi.hrc:44 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl" msgid "Ima~ge Control" -msgstr "Resim Kontrolü" +msgstr "Resi~m Kontrolü" #. WDsBh #: svx/inc/formnavi.hrc:45 @@ -11224,7 +11224,7 @@ #: svx/inc/numberingtype.hrc:32 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "Bullet" -msgstr "Bullet" +msgstr "Madde İmi" #. GfQQK #. SVX_NUM_BITMAP @@ -13130,13 +13130,13 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:114 msgctxt "adddataitemdialog|nameft" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. C2HJB #: svx/uiconfig/ui/adddataitemdialog.ui:128 msgctxt "adddataitemdialog|valueft" msgid "_Default value:" -msgstr "_Öntanımlı değer:" +msgstr "_Varsayılan değer:" #. 6XN5s #: svx/uiconfig/ui/adddataitemdialog.ui:140 @@ -13310,7 +13310,7 @@ #: svx/uiconfig/ui/addinstancedialog.ui:104 msgctxt "addinstancedialog|label2" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. SyBuY #: svx/uiconfig/ui/addinstancedialog.ui:118 @@ -13364,7 +13364,7 @@ #: svx/uiconfig/ui/addmodeldialog.ui:125 msgctxt "addmodeldialog|label2" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. BCjAN #: svx/uiconfig/ui/addmodeldialog.ui:139 @@ -13406,7 +13406,7 @@ #: svx/uiconfig/ui/addsubmissiondialog.ui:105 msgctxt "addsubmissiondialog|label2" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. uHEpR #: svx/uiconfig/ui/addsubmissiondialog.ui:119 @@ -14042,7 +14042,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 @@ -14492,7 +14492,7 @@ #: svx/uiconfig/ui/datanavigator.ui:162 msgctxt "datanavigator|extended_tip|modelsbutton" msgid "Adds, renames, and removes XForms models." -msgstr " XForms örneklerini ekler, yeniden adlandırır ve kaldırır." +msgstr "XForms örneklerini ekler, yeniden adlandırır ve kaldırır." #. BF3zW #: svx/uiconfig/ui/datanavigator.ui:200 @@ -15726,7 +15726,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:467 msgctxt "dockingcolorreplace|replace" msgid "_Replace" -msgstr "Değiştir" +msgstr "_Değiştir" #. 8uHoS #: svx/uiconfig/ui/dockingcolorreplace.ui:477 @@ -15948,7 +15948,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:425 msgctxt "dockingfontwork|extended_tip|vertical" msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes." -msgstr "Seçili nesne içindeki metne gölge ekler. Bu düğmeye basın ve daha sonra X Uzaklığı ve Y Uzaklığı kutularına gölgenin boyutlarını girin." +msgstr "Seçili nesne içindeki metne gölge ekler. Bu düğmeye basın ve daha sonra X Uzaklığı ve Y Uzaklığı kutularına gölgenin boyutlarını girin." #. g3kqr #: svx/uiconfig/ui/dockingfontwork.ui:437 @@ -16446,7 +16446,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:201 msgctxt "findreplacedialog|matchcase" msgid "Ma_tch case" -msgstr "Büyük/küçük harf duyarlı" +msgstr "Büyük/küçük _harf duyarlı" #. mMSX7 #: svx/uiconfig/ui/findreplacedialog.ui:209 @@ -16482,7 +16482,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:267 msgctxt "findreplacedialog|entirecells" msgid "_Entire cells" -msgstr "Yalnızca tam hücreler" +msgstr "_Bütün hücreler" #. EG6Fy #: svx/uiconfig/ui/findreplacedialog.ui:285 @@ -16560,7 +16560,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:541 msgctxt "findreplacedialog|replace" msgid "_Replace" -msgstr "Değiştir" +msgstr "_Değiştir" #. WEsqD #: svx/uiconfig/ui/findreplacedialog.ui:548 @@ -16662,7 +16662,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:873 msgctxt "findreplacedialog|similarity" msgid "S_imilarity search" -msgstr "Benzerlik araması yap" +msgstr "Benzerl_ik araması" #. 9Div9 #: svx/uiconfig/ui/findreplacedialog.ui:881 @@ -16692,7 +16692,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:933 msgctxt "findreplacedialog|extended_tip|soundslike" 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 "Japonca metinlerde arama seçeneklerinde benzer sesler için kontrol imkanı sağlar. Bu onay kutusunu seçin, ve sonra ... düğmesine basarak arama seçeneklerini belirleyin. " +msgstr "Japonca metinlerde arama seçeneklerinde benzer sesler için kontrol imkanı sağlar. Bu onay kutusunu seçin, ve sonra ... düğmesine basarak arama seçeneklerini belirleyin." #. ak55F #: svx/uiconfig/ui/findreplacedialog.ui:945 @@ -16770,7 +16770,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:1123 msgctxt "findreplacedialog|rows" msgid "Ro_ws" -msgstr "Satır" +msgstr "Sa_tırlar" #. uib5F #: svx/uiconfig/ui/findreplacedialog.ui:1142 @@ -17082,7 +17082,7 @@ #: svx/uiconfig/ui/floatingcontour.ui:528 msgctxt "floatingcontour|extended_tip|FloatingContour" msgid "Changes the contour of the selected object. The contour is used when determining the text wrap options for the object." -msgstr "Seçili nesnenin konturunu değiştirir. Kontur, nesne için metin sarma seçeneklerini belirlerken kullanılır." +msgstr "Seçili nesnenin konturunu değiştirir. Kontur, nesne için metin sarma seçeneklerini belirlerken kullanılır." #. zn8AW #: svx/uiconfig/ui/floatinglineproperty.ui:58 @@ -17436,13 +17436,13 @@ #: svx/uiconfig/ui/headfootformatpage.ui:63 msgctxt "headfootformatpage|checkHeaderOn" msgid "Hea_der on" -msgstr "Üst bilgi açık" +msgstr "_Üst bilgi açık" #. MXxAd #: svx/uiconfig/ui/headfootformatpage.ui:79 msgctxt "headfootformatpage|checkFooterOn" msgid "_Footer on" -msgstr "Alt bilgi açık" +msgstr "_Alt bilgi açık" #. WGp8n #: svx/uiconfig/ui/headfootformatpage.ui:112 @@ -17490,7 +17490,7 @@ #: svx/uiconfig/ui/headfootformatpage.ui:280 msgctxt "headfootformatpage|checkAutofit" msgid "_AutoFit height" -msgstr "Yüksekliği otomatik olarak ayarla" +msgstr "Yüksekliği _otomatik olarak ayarla" #. kEnEh #: svx/uiconfig/ui/headfootformatpage.ui:302 @@ -17736,7 +17736,7 @@ #: svx/uiconfig/ui/imapdialog.ui:533 msgctxt "imapdialog|textft" msgid "_Text Alternative:" -msgstr "Alternatif Me~tin:" +msgstr "Alternatif Me_tin:" #. JnaCz #: svx/uiconfig/ui/imapdialog.ui:534 @@ -18162,7 +18162,7 @@ #: svx/uiconfig/ui/optgridpage.ui:519 msgctxt "extended_tip|mtrfldsnaparea" msgid "Defines the snap distance between the mouse pointer and the object contour. Impress snaps to a snap point if the mouse pointer is nearer than the distance selected in the Snap range control." -msgstr "Fare işaretçisi ile nesne konturu arasındaki yakalama mesafesini tanımlar. İmpress, fare işaretçisi, Yakalama aralığı kontrolünde seçilen mesafeden daha yakınsa, bir yakalama noktasını yakalar." +msgstr "Fare işaretçisi ile nesne konturu arasındaki yakalama mesafesini tanımlar. İmpress, fare işaretçisi, Yakalama aralığı kontrolünde seçilen mesafeden daha yakınsa, bir yakalama noktasını yakalar." #. FekAR #: svx/uiconfig/ui/optgridpage.ui:532 @@ -18198,7 +18198,7 @@ #: svx/uiconfig/ui/optgridpage.ui:612 msgctxt "extended_tip|bigortho" msgid "Specifies that a square is created based on the longer side of a rectangle when the Shift key is pressed before you release the mouse button. This also applies to an ellipse (a circle will be created based on the longest diameter of the ellipse). When the Extend edges box is not marked, a square or a circle will be created based on the shorter side or diameter." -msgstr "Fare düğmesini bırakmadan önce Shift tuşuna bastığınızda dikdörtgenin uzun kenarına bağlı olarak bir kare oluşturulacağını belirtir. Bu aynı zamanda elips (elipsin uzun çapına bağlı olarak bir çember oluşturulacaktır) için de uygulanır. Kenarları uzat kutusu işaretlenmediğinde, bir kare veya çember kısa kenara veya çapa bağlı olarak oluşturulacaktır." +msgstr "Fare düğmesini bırakmadan önce Shift tuşuna bastığınızda dikdörtgenin uzun kenarına bağlı olarak bir kare oluşturulacağını belirtir. Bu aynı zamanda elips (elipsin uzun çapına bağlı olarak bir çember oluşturulacaktır) için de uygulanır. Kenarları uzat kutusu işaretlenmediğinde, bir kare veya çember kısa kenara veya çapa bağlı olarak oluşturulacaktır." #. UmDxR #: svx/uiconfig/ui/optgridpage.ui:640 @@ -18858,7 +18858,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 @@ -18882,13 +18882,13 @@ #: svx/uiconfig/ui/redlineviewpage.ui:298 msgctxt "acceptrejectchangesdialog|acceptall" msgid "A_ccept All" -msgstr "Tümünü Kabul Et" +msgstr "Tümünü K_abul Et" #. At7GQ #: svx/uiconfig/ui/redlineviewpage.ui:305 msgctxt "acceptrejectchangesdialog|extended_tip|acceptall" msgid "Accepts all of the changes and removes the highlighting from the document." -msgstr "Tüm değişiklikleri kabul eder ve belgedeki vurguyu kaldırır." +msgstr "Tüm değişiklikleri kabul eder ve belgedeki vurguyu kaldırır." #. debjw #: svx/uiconfig/ui/redlineviewpage.ui:317 @@ -18906,7 +18906,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 @@ -18936,7 +18936,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 @@ -19104,7 +19104,7 @@ #: svx/uiconfig/ui/safemodedialog.ui:302 msgctxt "safemodedialog|radio_reset" msgid "Reset to factory settings" -msgstr "Kurulum ayarlarına geri dön" +msgstr "Kurulum ayarlarına sıfırla" #. eLD3z #: svx/uiconfig/ui/safemodedialog.ui:323 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/sw/messages.po libreoffice-7.5.2~rc2/translations/source/tr/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-13 16:31+0000\n" +"PO-Revision-Date: 2023-03-13 11:32+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" @@ -956,13 +956,13 @@ #: sw/inc/inspectorproperties.hrc:72 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Family" -msgstr "Karakter Yazıtipi Ailesi" +msgstr "Karakter Yazı Tipi Ailesi" #. bYGhE #: sw/inc/inspectorproperties.hrc:73 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Family Asian" -msgstr "Karakter Yazıtipi Ailesi Asya" +msgstr "Karakter Yazı Tipi Ailesi Asya" #. 72RGq #: sw/inc/inspectorproperties.hrc:74 @@ -974,13 +974,13 @@ #: sw/inc/inspectorproperties.hrc:75 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Name" -msgstr "Karakter Yazıtipi Adı" +msgstr "Karakter Yazı Tipi Adı" #. EcTvq #: sw/inc/inspectorproperties.hrc:76 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Name Asian" -msgstr "Karakter Yazıtipi Adı Asya" +msgstr "Karakter Yazı Tipi Adı Asya" #. jrLqT #: sw/inc/inspectorproperties.hrc:77 @@ -1010,13 +1010,13 @@ #: sw/inc/inspectorproperties.hrc:81 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Style Name" -msgstr "Karakter Yazıtipi Biçem Adı" +msgstr "Karakter Yazı Tipi Biçem Adı" #. h6gAC #: sw/inc/inspectorproperties.hrc:82 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Style Name Asian" -msgstr "Karakter Yazıtipi Biçemi Asya" +msgstr "Karakter Yazı Tipi Biçemi Adı Asya" #. Tm4Rb #: sw/inc/inspectorproperties.hrc:83 @@ -3993,7 +3993,7 @@ #: sw/inc/strings.hrc:325 msgctxt "STR_BTN_AUTOFORMAT_CLOSE" msgid "~Close" -msgstr "Kapat" +msgstr "~Kapat" #. DAuNm #: sw/inc/strings.hrc:326 @@ -4498,7 +4498,7 @@ #: sw/inc/strings.hrc:410 msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP" msgid "Footnotes are listed above this line and Endnotes are listed below" -msgstr "Dipnot'lar bu çizginin üstünde ve Sonnot'lar altında listelenir" +msgstr "Dipnot'lar bu çizginin üstünde ve Sonnot'lar altında listelenir" #. jThGW #: sw/inc/strings.hrc:411 @@ -4635,7 +4635,7 @@ #: sw/inc/strings.hrc:434 msgctxt "STR_RESET_ATTR_UNDO" msgid "Reset attributes" -msgstr "Öznitelikleri ilk haline getir" +msgstr "Öznitelikleri sıfırla" #. mDgEJ #: sw/inc/strings.hrc:435 @@ -5875,7 +5875,7 @@ #: sw/inc/strings.hrc:646 msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY" msgid "Comments only" -msgstr "Sadece ~açıklamalar" +msgstr "Sadece açıklamalar" #. sVnbD #: sw/inc/strings.hrc:647 @@ -7239,7 +7239,7 @@ #: sw/inc/strings.hrc:889 msgctxt "ST_FINISH" msgid "~Finish" -msgstr "Bitir" +msgstr "~Bitir" #. L5FEG #: sw/inc/strings.hrc:890 @@ -8058,7 +8058,7 @@ #: sw/inc/strings.hrc:1068 msgctxt "STR_COND" msgid "~Condition" -msgstr "Koşul" +msgstr "~Koşul" #. X9cqJ #: sw/inc/strings.hrc:1069 @@ -8088,7 +8088,7 @@ #: sw/inc/strings.hrc:1073 msgctxt "STR_PROMPT" msgid "~Reference" -msgstr "Başvuru" +msgstr "~Başvuru" #. bfRPa #: sw/inc/strings.hrc:1074 @@ -8100,13 +8100,13 @@ #: sw/inc/strings.hrc:1075 msgctxt "STR_OFFSET" msgid "O~ffset" -msgstr "Denkleştir" +msgstr "~Denkleştir" #. vEgGo #: sw/inc/strings.hrc:1076 msgctxt "STR_VALUE" msgid "Value" -msgstr "De~ğer" +msgstr "Değer" #. YQesU #: sw/inc/strings.hrc:1077 @@ -9773,7 +9773,7 @@ #: sw/inc/strings.hrc:1375 msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE" msgid "Reset to Default Language" -msgstr "Varsayılan Dile Geri Dön" +msgstr "Varsayılan Dile Sıfırla" #. YEXdS #: sw/inc/strings.hrc:1376 @@ -11059,13 +11059,13 @@ #: sw/uiconfig/swriter/ui/autotext.ui:12 msgctxt "autotext|new" msgid "_New" -msgstr "Yeni" +msgstr "_Yeni" #. 58pFi #: sw/uiconfig/swriter/ui/autotext.ui:16 msgctxt "autotext|extended_tip|new" msgid "Creates a new AutoText category using the name that you entered in the Name box." -msgstr " Ad kutusuna girdiğiniz adı kullanarak yeni bir otomatik metin kategorisi oluşturur." +msgstr "Ad kutusuna girdiğiniz adı kullanarak yeni bir otomatik metin kategorisi oluşturur." #. 25P7a #: sw/uiconfig/swriter/ui/autotext.ui:25 @@ -11107,7 +11107,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:64 msgctxt "autotext|replacetext" msgid "Rep_lace (text only)" -msgstr "Değiştir (sadece metin)" +msgstr "D_eğiştir (sadece metin)" #. 9d3fF #: sw/uiconfig/swriter/ui/autotext.ui:72 @@ -11119,7 +11119,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:76 msgctxt "autotext|extended_tip|rename" msgid "Changes the name of the selected AutoText category to the name that you enter in the Name box." -msgstr "Seçilen otomatik metin kategorisinin adını Ad kutusuna girdiğiniz ad olarak değiştirir." +msgstr "Seçilen otomatik metin kategorisinin adını Ad kutusuna girdiğiniz ad olarak değiştirir." #. 2g8DF #: sw/uiconfig/swriter/ui/autotext.ui:85 @@ -11173,7 +11173,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:174 msgctxt "autotext|autotext" msgid "AutoTe_xt" -msgstr "Otomatik Metin" +msgstr "Otomatik _Metin" #. kDwAj #: sw/uiconfig/swriter/ui/autotext.ui:186 @@ -11317,7 +11317,7 @@ #: 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 "Seçilen kaynakça kaydını düzenleyebileceğiniz Kaynakça Girdisi Tanımla iletişim penceresini açar. " +msgstr "Seçilen kaynakça kaydını düzenleyebileceğiniz Kaynakça Girdisi Tanımla iletişim penceresini açar." #. zo8CS #: sw/uiconfig/swriter/ui/bibliographyentry.ui:81 @@ -11821,13 +11821,13 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:230 msgctxt "captionoptions|border_and_shadow" msgid "_Apply border and shadow" -msgstr "Kenarlık ve gölgelendirme uygula" +msgstr "Kenarlık ve gölgelendirme _uygula" #. 6tDNR #: 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 @@ -12355,7 +12355,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:542 msgctxt "columnpage|extended_tip|lineheightmf" msgid "Enter the length of the separator line as a percentage of the height of the column area." -msgstr "Ayırıcı çizgi uzunluğunu sütun alanı yüksekliğinin yüzdesi olarak giriniz. " +msgstr "Ayırıcı çizgi uzunluğunu sütun alanı yüksekliğinin yüzdesi olarak giriniz." #. kkGNR #: sw/uiconfig/swriter/ui/columnpage.ui:586 @@ -12391,7 +12391,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:719 msgctxt "columnpage|extended_tip|balance" msgid "Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically." -msgstr "Çok-sütunlu bölümlerde metni dağıtır. Metin tüm sütunlara aynı yükselikte dağıtılır. Bölümün yüksekliği otomatik olarak ayarlanır. " +msgstr "Çok-sütunlu bölümlerde metni dağıtır. Metin tüm sütunlara aynı yükselikte dağıtılır. Bölümün yüksekliği otomatik olarak ayarlanır." #. bV6Pg #: sw/uiconfig/swriter/ui/columnpage.ui:739 @@ -13093,7 +13093,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:349 msgctxt "createaddresslist|NEW" msgid "_New" -msgstr "Yeni" +msgstr "_Yeni" #. dUNG3 #: sw/uiconfig/swriter/ui/createaddresslist.ui:356 @@ -13309,7 +13309,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:167 msgctxt "dropcapspage|extended_tip|spinFLD_LINES" msgid "Enter the number of lines that you want the drop cap to extend downward from the first line of the paragraph. Shorter paragraphs will not get drop caps." -msgstr "Paragrafın ilk satırından aşağıya doğru iri başlangıç karakterinin genişlemesini istediğiniz satır numarasını giriniz. " +msgstr "Paragrafın ilk satırından aşağıya doğru iri başlangıç karakterinin genişlemesini istediğiniz satır numarasını giriniz." #. tZURF #: sw/uiconfig/swriter/ui/dropcapspage.ui:187 @@ -13435,7 +13435,7 @@ #: sw/uiconfig/swriter/ui/editcategories.ui:42 msgctxt "editcategories|extended_tip|new" msgid "Creates a new AutoText category using the name that you entered in the Name box." -msgstr " Ad kutusuna girdiğiniz adı kullanarak yeni bir otomatik metin kategorisi oluşturur." +msgstr "Ad kutusuna girdiğiniz adı kullanarak yeni bir otomatik metin kategorisi oluşturur." #. ckaZS #: sw/uiconfig/swriter/ui/editcategories.ui:69 @@ -13447,7 +13447,7 @@ #: sw/uiconfig/swriter/ui/editcategories.ui:77 msgctxt "editcategories|extended_tip|rename" msgid "Changes the name of the selected AutoText category to the name that you enter in the Name box." -msgstr "Seçilen otomatik metin kategorisinin adını Ad kutusuna girdiğiniz ad olarak değiştirir." +msgstr "Seçilen otomatik metin kategorisinin adını Ad kutusuna girdiğiniz ad olarak değiştirir." #. 29qRx #: sw/uiconfig/swriter/ui/editcategories.ui:154 @@ -13585,7 +13585,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:258 msgctxt "editsectiondialog|link" msgid "_Link" -msgstr "Bağlantı" +msgstr "_Bağlantı" #. hDHGK #: sw/uiconfig/swriter/ui/editsectiondialog.ui:268 @@ -13627,7 +13627,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:347 msgctxt "editsectiondialog|sectionft" msgid "_Section" -msgstr "Bölüm" +msgstr "_Bölüm" #. SpkZg #: sw/uiconfig/swriter/ui/editsectiondialog.ui:372 @@ -13669,7 +13669,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:496 msgctxt "editsectiondialog|withpassword" msgid "Wit_h password" -msgstr "Parola ile" +msgstr "_Parola ile" #. hAHNw #: sw/uiconfig/swriter/ui/editsectiondialog.ui:508 @@ -13729,7 +13729,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:687 msgctxt "editsectiondialog|editinro" msgid "E_ditable in read-only document" -msgstr "Salt-okunur belgeler düzenlenebilir" +msgstr "Salt-okunur belgeler _düzenlenebilir" #. ndfNc #: sw/uiconfig/swriter/ui/editsectiondialog.ui:707 @@ -13813,7 +13813,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 "Sonnot metni için paragraf biçemini seçin. Yalnızca özel biçemler seçilebilir." +msgstr "Sonnot metni için paragraf biçemini seçin. Yalnızca özel biçemler seçilebilir." #. 3CM3n #: sw/uiconfig/swriter/ui/endnotepage.ui:228 @@ -14023,7 +14023,7 @@ #: sw/uiconfig/swriter/ui/envformatpage.ui:163 msgctxt "envformatpage|label5" msgid "from left" -msgstr "_Soldan" +msgstr "soldan" #. 8N9EG #: sw/uiconfig/swriter/ui/envformatpage.ui:190 @@ -14077,7 +14077,7 @@ #: sw/uiconfig/swriter/ui/envformatpage.ui:369 msgctxt "envformatpage|label8" msgid "from left" -msgstr "_Soldan" +msgstr "soldan" #. BkPGQ #: sw/uiconfig/swriter/ui/envformatpage.ui:396 @@ -14125,7 +14125,7 @@ #: sw/uiconfig/swriter/ui/envformatpage.ui:538 msgctxt "envformatpage|label13" msgid "_Width" -msgstr "Genişlik" +msgstr "_Genişlik" #. juYHj #: sw/uiconfig/swriter/ui/envformatpage.ui:552 @@ -14820,7 +14820,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:327 msgctxt "fldfuncpage|nameft" msgid "Na_me" -msgstr "Ad" +msgstr "_Ad" #. KyA2D #: sw/uiconfig/swriter/ui/fldfuncpage.ui:367 @@ -14910,7 +14910,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:660 msgctxt "fldfuncpage|listnameft" msgid "Na_me" -msgstr "Ad" +msgstr "_Ad" #. QGMno #: sw/uiconfig/swriter/ui/fldfuncpage.ui:679 @@ -14958,7 +14958,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:311 msgctxt "fldrefpage|extended_tip|selecttip" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Refer using\" list, and then click Insert." -msgstr "Tür listesinde seçilen alan türü için kullanılabilir alanları listeler. Bir alan eklemek için alana tıklayın, \"Kullanarak başvur\" listesinden bir biçim seçin ve ardından Ekle'ye tıklayın." +msgstr "Tür listesinde seçilen alan türü için kullanılabilir alanları listeler. Bir alan eklemek için alana tıklayın, \"Kullanarak başvur\" listesinden bir biçim seçin ve ardından Ekle'ye tıklayın." #. BFEfh #: sw/uiconfig/swriter/ui/fldrefpage.ui:356 @@ -14988,7 +14988,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:434 msgctxt "fldrefpage|nameft" msgid "Na_me" -msgstr "Ad" +msgstr "_Ad" #. oQ5CV #: sw/uiconfig/swriter/ui/fldrefpage.ui:453 @@ -15066,7 +15066,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:418 msgctxt "fldvarpage|separatorft" msgid "Se_parator" -msgstr "Ayırıcı" +msgstr "A_yırıcı" #. wrAG3 #: sw/uiconfig/swriter/ui/fldvarpage.ui:433 @@ -15102,7 +15102,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:511 msgctxt "fldvarpage|nameft" msgid "Na_me" -msgstr "Ad" +msgstr "_Ad" #. JdsEc #: sw/uiconfig/swriter/ui/fldvarpage.ui:530 @@ -15144,7 +15144,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 "Kullanıcı tanımlı alanı seçim listesinden kaldırır. Yalnızca geçerli belgede kullanılmayan alanları kaldırabilirsiniz." +msgstr "Kullanıcı tanımlı alanı seçim listesinden kaldırır. Yalnızca geçerli belgede kullanılmayan alanları kaldırabilirsiniz." #. b5iXT #: sw/uiconfig/swriter/ui/floatingsync.ui:7 @@ -15300,7 +15300,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:353 msgctxt "footnoteareapage|extended_tip|length" msgid "Enter the length of the separator line as a percentage of the page width area." -msgstr "Ayırıcı çizgi uzunluğunu sayfa genişliğinin yüksekliğinin yüzdesi olarak girin. " +msgstr "Ayırıcı çizgi uzunluğunu sayfa genişliğinin yüksekliğinin yüzdesi olarak girin." #. FBKJE #: sw/uiconfig/swriter/ui/footnoteareapage.ui:373 @@ -15486,7 +15486,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 "Dipnot metni için paragraf biçemini seçin. Yalnızca özel biçemler seçilebilir." +msgstr "Dipnot metni için paragraf biçemini seçin. Yalnızca özel biçemler seçilebilir." #. bhosj #: sw/uiconfig/swriter/ui/footnotepage.ui:425 @@ -15498,7 +15498,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:441 msgctxt "footnotepage|extended_tip|charanchorstylelb" msgid "Select the character style that you want to use for footnote anchors in the text area of your document." -msgstr "Belgenizin metin alanındaki dipnot sabitleyicileri için kullanmak istediğiniz karakter biçemini seçin. " +msgstr "Belgenizin metin alanındaki dipnot sabitleyicileri için kullanmak istediğiniz karakter biçemini seçin." #. EfWvJ #: sw/uiconfig/swriter/ui/footnotepage.ui:457 @@ -15792,7 +15792,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:248 msgctxt "formattablepage|belowft" msgid "_Below" -msgstr "Alt" +msgstr "_Alt" #. YngSM #: sw/uiconfig/swriter/ui/formattablepage.ui:268 @@ -15840,7 +15840,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:394 msgctxt "formattablepage|left" msgid "_Left" -msgstr "Sol" +msgstr "_Sol" #. dmVkC #: sw/uiconfig/swriter/ui/formattablepage.ui:403 @@ -15858,13 +15858,13 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:423 msgctxt "formattablepage|extended_tip|fromleft" msgid "Aligns the left edge of the table to the indent that you enter in the Left box in the Spacing area." -msgstr "Tablonun sol kenarını Boşluk alanı içinde tanımladığınız Sol girinti kadar yaslar." +msgstr "Tablonun sol kenarını Boşluk alanı içinde tanımladığınız Sol girinti kadar yaslar." #. 83zCa #: sw/uiconfig/swriter/ui/formattablepage.ui:434 msgctxt "formattablepage|right" msgid "R_ight" -msgstr "Sağ" +msgstr "Sa_ğ" #. ezLvi #: sw/uiconfig/swriter/ui/formattablepage.ui:443 @@ -16002,7 +16002,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:95 msgctxt "frmaddpage|altname_label" msgid "Text _Alternative:" -msgstr "Alternatif Metin:" +msgstr "_Alternatif Metin:" #. WbwXe #: sw/uiconfig/swriter/ui/frmaddpage.ui:96 @@ -16236,7 +16236,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:73 msgctxt "frmtypepage|widthft" msgid "_Width" -msgstr "Genişlik" +msgstr "_Genişlik" #. FApNw #: sw/uiconfig/swriter/ui/frmtypepage.ui:87 @@ -16284,7 +16284,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:190 msgctxt "frmtypepage|heightft" msgid "H_eight" -msgstr "Yükseklik" +msgstr "_Yükseklik" #. Rvr7b #: sw/uiconfig/swriter/ui/frmtypepage.ui:204 @@ -16914,7 +16914,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 "Bu kutu, Alanlar iletişim kutusunun İşlevler veya Değişkenler sekmesindeki Referans kutusuna girdiğiniz adı görüntüler. Alttaki kutu, alanın içeriğini görüntüler." +msgstr "Bu kutu, Alanlar iletişim kutusunun İşlevler veya Değişkenler sekmesindeki Referans kutusuna girdiğiniz adı görüntüler. Alttaki kutu, alanın içeriğini görüntüler." #. KcGwQ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:207 @@ -17310,7 +17310,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 "Oluşturmak istediğiniz yer iminin adını yazın. Ardından Ekle'ye basın." +msgstr "Oluşturmak istediğiniz yer iminin adını yazın. Ardından Ekle'ye basın." #. zocpL #: sw/uiconfig/swriter/ui/insertbookmark.ui:118 @@ -17388,7 +17388,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:357 msgctxt "insertbookmark|extended_tip|delete" msgid "To delete a bookmark, select the bookmark and click the Delete button. No confirmation dialog will follow." -msgstr "Bir yer imini silmek için yer imini seçin ve Sil düğmesini tıklayın. Hiçbir onay iletişim kutusu açılmayacak." +msgstr "Bir yer imini silmek için yer imini seçin ve Sil düğmesini tıklayın. Hiçbir onay iletişim kutusu açılmayacak." #. o7sDd #: sw/uiconfig/swriter/ui/insertbookmark.ui:370 @@ -17622,7 +17622,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 "Başlık kategorisini seçin veya yeni bir kategori oluşturmak için bir ad yazın. Kategori metni, başlık etiketindeki başlık numarasından önce görünür. Önceden tanımlanmış her başlık kategorisi aynı ada sahip bir paragraf biçemiyle biçimlendirilir." +msgstr "Başlık kategorisini seçin veya yeni bir kategori oluşturmak için bir ad yazın. Kategori metni, başlık etiketindeki başlık numarasından önce görünür. Önceden tanımlanmış her başlık kategorisi aynı ada sahip bir paragraf biçemiyle biçimlendirilir." #. rJDNR #: sw/uiconfig/swriter/ui/insertcaption.ui:330 @@ -17772,7 +17772,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 "Metin tablosundaki sütunlara başlık satırı eklenip eklenmeyeceğini belirler." +msgstr "Metin tablosundaki sütunlara başlık satırı eklenip eklenmeyeceğini belirler." #. wEgCa #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:642 @@ -18318,7 +18318,7 @@ #: sw/uiconfig/swriter/ui/labeldialog.ui:363 msgctxt "labeldialog|extended_tip|LabelDialog" msgid "Allows you to create labels. Labels are created in a text document." -msgstr "Etiket oluşturmanıza izin verir. Etiketler bir metin belgesinde oluşturulur." +msgstr "Etiket oluşturmanıza izin verir. Etiketler bir metin belgesinde oluşturulur." #. ZNbvM #: sw/uiconfig/swriter/ui/labelformatpage.ui:36 @@ -18720,7 +18720,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:515 msgctxt "linenumbering|extended_tip|linesintextframes" msgid "Adds line numbers to text in frames. The numbering restarts in each frame, and is excluded from the line count in the main text area of the document." -msgstr "Çerçevelerdeki metne satır numaraları ekler. Numaralandırma her çerçevede yeniden başlar ve belgenin ana metin alanındaki satır sayısının dışında bırakılır." +msgstr "Çerçevelerdeki metne satır numaraları ekler. Numaralandırma her çerçevede yeniden başlar ve belgenin ana metin alanındaki satır sayısının dışında bırakılır." #. tAaU6 #: sw/uiconfig/swriter/ui/linenumbering.ui:527 @@ -18774,13 +18774,13 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:110 msgctxt "mailconfigpage|address_label" msgid "_Email address:" -msgstr "E-posta adresi:" +msgstr "_E-posta adresi:" #. 9rEdp #: sw/uiconfig/swriter/ui/mailconfigpage.ui:122 msgctxt "mailconfigpage|replytocb" msgid "Send replies to _different email address" -msgstr "Yanıtları farklı bir e-posta adresine gönder" +msgstr "Yanıtları _farklı bir e-posta adresine gönder" #. jAywn #: sw/uiconfig/swriter/ui/mailconfigpage.ui:130 @@ -18906,7 +18906,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:178 msgctxt "mailmerge|rbfrom" msgid "_From:" -msgstr "_Gönderen:" +msgstr "_Başlangıç:" #. AEMgx #: sw/uiconfig/swriter/ui/mailmerge.ui:187 @@ -18948,7 +18948,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:309 msgctxt "mailmerge|extended_tip|printer" msgid "Prints the form letters." -msgstr " Mektup formlarını yazdırır." +msgstr "Mektup formlarını yazdırır." #. UeS6C #: sw/uiconfig/swriter/ui/mailmerge.ui:321 @@ -18966,7 +18966,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:346 msgctxt "mailmerge|extended_tip|file" msgid "Saves the form letters in files." -msgstr " Mektup formlarını dosyalara kaydeder." +msgstr "Mektup formlarını dosyalara kaydeder." #. o3LR6 #: sw/uiconfig/swriter/ui/mailmerge.ui:365 @@ -19338,7 +19338,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:76 msgctxt "mmaddressblockpage|differentlist" msgid "Select Different A_ddress List..." -msgstr "Başka Adres Listesi Seç..." +msgstr "Başka A_dres Listesi Seç..." #. Sb7nE #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:97 @@ -19818,7 +19818,7 @@ #: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:96 msgctxt "mmoutputtypepage|email" msgid "_Email message" -msgstr "E-Posta İletisi" +msgstr "_E-Posta iletisi" #. Sr8EB #: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:105 @@ -20172,7 +20172,7 @@ #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:142 msgctxt "mmresultsavedialog|extended_tip|individualrb" msgid "Saves the merged document as a separate file for each recipient. The file names of the documents are constructed from the name that you enter, followed by an underscore, and the number of the current record." -msgstr "Birleştirilmiş belgeleri her alıcı için ayrı bir dosya olarak kaydeder. Belgelerin dosya isimleri geçerli kayıt numarası ve alt çizgiyi takip eden girdiğiniz isimden oluşturulur. " +msgstr "Birleştirilmiş belgeleri her alıcı için ayrı bir dosya olarak kaydeder. Belgelerin dosya isimleri geçerli kayıt numarası ve alt çizgiyi takip eden girdiğiniz isimden oluşturulur." #. g3Knf #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:157 @@ -20946,7 +20946,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:384 msgctxt "navigatorpanel|extended_tip|spinbutton" msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward." -msgstr "Sayfa numarasını girin ve Enter tuşuna basın. Sonraki sayfaya veya geri gitmek için okları kullanın." +msgstr "Sayfa numarasını girin ve Enter tuşuna basın. Sonraki sayfaya veya geri gitmek için okları kullanın." #. DgvFE #: sw/uiconfig/swriter/ui/navigatorpanel.ui:416 @@ -21126,7 +21126,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:797 msgctxt "navigatorpanel|extended_tip|edit" msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened." -msgstr "Gezgin listesinde seçilen bileşenin içeriğini düzenleyin. Seçim bir dosyaysa, dosya düzenlenmek üzere açılır. Seçim bir dizindeyse, Dizin iletişim penceresi açılır." +msgstr "Gezgin listesinde seçilen bileşenin içeriğini düzenleyin. Seçim bir dosyaysa, dosya düzenlenmek üzere açılır. Seçim bir dizindeyse, Dizin iletişim penceresi açılır." #. svmCG #: sw/uiconfig/swriter/ui/navigatorpanel.ui:809 @@ -21649,7 +21649,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5190 msgctxt "notebookbar_groupedbar_compact|StyleButton" msgid "St_yles" -msgstr "Biçemler" +msgstr "_Biçemler" #. T2jYU #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4067 @@ -21754,7 +21754,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7896 msgctxt "notebookbar_groupedbar_compact|GridButton" msgid "_Fontwork" -msgstr "Yazı Sanatı" +msgstr "_Yazı Sanatı" #. PLqyG #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8007 @@ -22681,7 +22681,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:322 msgctxt "numparapage|checkCB_COUNT_PARA" msgid "_Include this paragraph in line numbering" -msgstr "Bu paragrafın da satırlarını numarala" +msgstr "_Bu paragrafın da satırlarını numarala" #. mhtFH #: sw/uiconfig/swriter/ui/numparapage.ui:332 @@ -22693,7 +22693,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:344 msgctxt "numparapage|checkCB_RESTART_PARACOUNT" msgid "Rest_art at this paragraph" -msgstr "Bu satırda tekrar başla" +msgstr "Bu s_atırda tekrar başla" #. YhNoE #: sw/uiconfig/swriter/ui/numparapage.ui:354 @@ -23333,7 +23333,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 " Görünüm - Biçimlendirme İşaretleri etkinken, \"gizli\" karakter biçimini kullanan metni görüntüler." +msgstr "Görünüm - Biçimlendirme İşaretleri etkinken, \"gizli\" karakter biçimini kullanan metni görüntüler." #. ubosK #: sw/uiconfig/swriter/ui/optformataidspage.ui:167 @@ -25111,7 +25111,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 "Bağlantı yapılmış grafik dosyasının yolunu görüntüler. Bağlantıyı değiştirmek için Gözat düğmesine tıklayın ve bağlantı yapmak istediğiniz dosya konumunu belirleyin. " +msgstr "Bağlantı yapılmış grafik dosyasının yolunu görüntüler. Bağlantıyı değiştirmek için Gözat düğmesine tıklayın ve bağlantı yapmak istediğiniz dosya konumunu belirleyin." #. PqFMY #: sw/uiconfig/swriter/ui/picturepage.ui:72 @@ -25489,7 +25489,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:180 msgctxt "printoptionspage|leftpages" msgid "_Left pages" -msgstr "Sol sayfalar" +msgstr "_Sol sayfalar" #. AQNdC #: sw/uiconfig/swriter/ui/printoptionspage.ui:188 @@ -25501,7 +25501,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:199 msgctxt "printoptionspage|rightpages" msgid "_Right pages" -msgstr "Sağ sayfalar" +msgstr "Sa_ğ sayfalar" #. YNAik #: sw/uiconfig/swriter/ui/printoptionspage.ui:207 @@ -25513,7 +25513,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:218 msgctxt "printoptionspage|brochure" msgid "Broch_ure" -msgstr "Broşür" +msgstr "Broş_ür" #. BHXQ2 #: sw/uiconfig/swriter/ui/printoptionspage.ui:226 @@ -25639,7 +25639,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:495 msgctxt "printoptionspage|papertray" msgid "_Paper tray from printer settings" -msgstr "Yazıcı kağıt tepsisi ayarlarını kullan" +msgstr "Yazıcı _kağıt tepsisi ayarlarını kullan" #. xGp3V #: sw/uiconfig/swriter/ui/printoptionspage.ui:503 @@ -25987,7 +25987,7 @@ #: sw/uiconfig/swriter/ui/querydefaultcompatdialog.ui:7 msgctxt "querydefaultcompatdialog|QueryDefaultCompatDialog" msgid "Use as default?" -msgstr "Öntanımlı olarak kullanılsın mı?" +msgstr "Varsayılan olarak kullanılsın mı?" #. hrgKv #: sw/uiconfig/swriter/ui/querydefaultcompatdialog.ui:14 @@ -26155,13 +26155,13 @@ #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:80 msgctxt "renameautotextdialog|label2" msgid "Na_me" -msgstr "Ad" +msgstr "_Ad" #. FPBan #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:94 msgctxt "renameautotextdialog|label3" msgid "_New" -msgstr "Yeni" +msgstr "_Yeni" #. j3LTU #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:115 @@ -26179,7 +26179,7 @@ #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:161 msgctxt "renameautotextdialog|label4" msgid "Short_cut" -msgstr "Kısayol" +msgstr "Kı_sayol" #. h2ovi #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:175 @@ -26353,7 +26353,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:140 msgctxt "sectionpage|link" msgid "_Link" -msgstr "Bağlantı" +msgstr "_Bağlantı" #. FAzSY #: sw/uiconfig/swriter/ui/sectionpage.ui:148 @@ -26389,7 +26389,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:232 msgctxt "sectionpage|sectionlabel" msgid "_Section" -msgstr "Bölüm" +msgstr "_Bölüm" #. UEpHN #: sw/uiconfig/swriter/ui/sectionpage.ui:244 @@ -26437,7 +26437,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:378 msgctxt "sectionpage|withpassword" msgid "Wit_h password" -msgstr "Parola ile" +msgstr "P_arola ile" #. 8igby #: sw/uiconfig/swriter/ui/sectionpage.ui:390 @@ -26497,7 +26497,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:557 msgctxt "sectionpage|editable" msgid "E_ditable in read-only document" -msgstr "Salt-okunur belgeler düzenlenebilir" +msgstr "Salt-okunur belgeler _düzenlenebilir" #. hoFVv #: sw/uiconfig/swriter/ui/sectionpage.ui:572 @@ -26797,7 +26797,7 @@ #: sw/uiconfig/swriter/ui/selecttabledialog.ui:188 msgctxt "selecttabledialog|extended_tip|preview" msgid "Opens the Mail Merge Recipients dialog." -msgstr " Posta Birleştirme Alıcıları dialoğunu açar." +msgstr "Posta Birleştirme Alıcıları iletişim penceresni açar." #. HvjeJ #: sw/uiconfig/swriter/ui/selecttabledialog.ui:224 @@ -27469,7 +27469,7 @@ #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:67 msgctxt "tablecolumnpage|adaptwidth" msgid "Adapt table _width" -msgstr "Tablo genişliğini ayarla" +msgstr "Tablo _genişliğini ayarla" #. fR9FX #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:75 @@ -27481,7 +27481,7 @@ #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:86 msgctxt "tablecolumnpage|adaptcolumns" msgid "Ad_just columns proportionally" -msgstr "Sütunları orantılı ayarla" +msgstr "Sütunları orantılı a_yarla" #. Pmoga #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:94 @@ -27739,7 +27739,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:266 msgctxt "tabletextflowpage|split" msgid "Allow _table to split across pages and columns" -msgstr "Tabloya sütunları ve sayfaları çapraz bölmesi için izin ver" +msgstr "_Tabloya sütunları ve sayfaları çapraz bölmesi için izin ver" #. QXXZK #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274 @@ -27751,7 +27751,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:285 msgctxt "tabletextflowpage|splitrow" msgid "Allow row to break a_cross pages and columns" -msgstr "Satırın sayfayı ve sütunu çapraz kesmesine izin ver" +msgstr "Satırın sayfayı ve sütunu ç_apraz kesmesine izin ver" #. HYN9t #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:295 @@ -29371,7 +29371,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 "Dizin girdileri olarak Biçem Ata iletişim kutusunda belirttiğiniz paragraf biçemlerini içerir. Dizine dahil etmek istediğiniz paragraf biçemlerini seçmek için, bu kutunun sağındaki Biçemleri Ata (...) düğmesini tıklayın." +msgstr "Dizin girdileri olarak Biçem Ata iletişim kutusunda belirttiğiniz paragraf biçemlerini içerir. Dizine dahil etmek istediğiniz paragraf biçemlerini seçmek için, bu kutunun sağındaki Biçemleri Ata (...) düğmesini tıklayın." #. 46GwB #: sw/uiconfig/swriter/ui/tocindexpage.ui:518 @@ -29389,7 +29389,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:551 msgctxt "tocindexpage|extended_tip|styles" msgid "Opens the Assign Styles dialog, where you can select the paragraph styles to include in the index. Choose the proper heading level on which the style will be included in the index." -msgstr "Dizine dahil edilecek paragraf biçemlerini seçebileceğiniz Biçem Ata iletişim penceresini açar. Dizine dahil edilecek biçemin uygun başlık düzeyini seçin." +msgstr "Dizine dahil edilecek paragraf biçemlerini seçebileceğiniz Biçem Ata iletişim penceresini açar. Dizine dahil edilecek biçemin uygun başlık düzeyini seçin." #. KvQH4 #: sw/uiconfig/swriter/ui/tocindexpage.ui:592 @@ -29689,7 +29689,7 @@ #: sw/uiconfig/swriter/ui/tocstylespage.ui:158 msgctxt "tocstylespage|extended_tip|styles" msgid "Select the paragraph style that you want to apply to the selected index level, and then click the Assign (<) button." -msgstr "Seçili dizin seviyesine uygulamak istediğiniz paragraf biöemini seçin ve daha sonra atama düğmesine (<) düğmesine basın." +msgstr "Seçili dizin seviyesine uygulamak istediğiniz paragraf biçemini seçin ve daha sonra atama düğmesine (<) düğmesine basın." #. LGrjt #: sw/uiconfig/swriter/ui/tocstylespage.ui:171 @@ -29743,13 +29743,13 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:42 msgctxt "viewoptionspage|helplines" msgid "Helplines _While Moving" -msgstr "Taşırken Yardım Çizgileri" +msgstr "_Taşırken Yardım Çizgileri" #. ChPAo #: 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 "Çerçeveler hareket ettirildiğinde çerçeve etrafında anlık çizgileri görüntüler. Çizgisel değerler kullanarak nesnenin tam yerini göstermek için Hareket Esnasında Yardım Çizgileri seçeneğini seçebilirsiniz." +msgstr "Çerçeveler hareket ettirildiğinde çerçeve etrafında anlık çizgileri görüntüler. Çizgisel değerler kullanarak nesnenin tam yerini göstermek için Hareket Esnasında Yardım Çizgileri seçeneğini seçebilirsiniz." #. m8nZM #: sw/uiconfig/swriter/ui/viewoptionspage.ui:65 @@ -29881,7 +29881,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:377 msgctxt "extended_tip|smoothscroll" msgid "Activates the smooth page scrolling function. " -msgstr "Akıcı sayfa kaydırma fonkssiyonunu etkinleştirir." +msgstr "Akıcı sayfa kaydırma fonksiyonunu etkinleştirir. " #. ThYRV #: sw/uiconfig/swriter/ui/viewoptionspage.ui:396 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/uui/messages.po libreoffice-7.5.2~rc2/translations/source/tr/uui/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/uui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/uui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-11-14 08:17+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1549230638.000000\n" #. DLY8p @@ -380,7 +380,7 @@ #: uui/inc/ids.hrc:141 msgctxt "RID_UUI_ERRHDL" msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened." -msgstr "'$(ARG1)' dosyası onarılamadı ve bu yüzden açılamıyor." +msgstr "'$(ARG1)' dosyası onarılamadı ve bu yüzden açılamıyor." #. JCpTn #: uui/inc/ids.hrc:143 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/vcl/messages.po libreoffice-7.5.2~rc2/translations/source/tr/vcl/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/vcl/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/vcl/messages.po 2023-03-24 16:53:38.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-10-10 13:36+0200\n" -"PO-Revision-Date: 2023-02-19 19:03+0000\n" -"Last-Translator: sabri ünal \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2023-03-20 09:34+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" @@ -906,7 +906,7 @@ #: vcl/inc/strings.hrc:82 msgctxt "SV_APP_OSVERSION" msgid "OS: " -msgstr "İşletim Sistemi:" +msgstr "İşletim Sistemi: " #. Yqrwo #: vcl/inc/strings.hrc:83 @@ -1768,7 +1768,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 @@ -2172,7 +2172,7 @@ #: vcl/uiconfig/ui/printdialog.ui:781 msgctxt "printdialog|reverseorder" msgid "Print in _reverse order" -msgstr "Yazdırmayı ters sayfa sırasında yap" +msgstr "Yazdırmayı _ters sayfa sırasında yap" #. svd2Q #: vcl/uiconfig/ui/printdialog.ui:790 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/wizards/messages.po libreoffice-7.5.2~rc2/translations/source/tr/wizards/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/wizards/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/wizards/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-12 14:06+0100\n" -"PO-Revision-Date: 2022-12-29 14:28+0000\n" +"PO-Revision-Date: 2023-02-28 22:07+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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1552412482.000000\n" #. gbiMx @@ -188,7 +188,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:61 msgctxt "RID_LETTERWIZARDDIALOG_START_6" msgid "~Use letterhead paper with pre-printed elements" -msgstr "-Önceden yazdırılmış ögeleri bulunan antetli kağıt kullan" +msgstr "~Önceden yazdırılmış ögeleri bulunan antetli kağıt kullan" #. VCpSG #: wizards/com/sun/star/wizards/common/strings.hrc:62 @@ -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 "Sadece ikinci ve sonraki sayfalara ekle" +msgstr "~Sadece ikinci ve sonraki sayfalara ekle" #. uwLyZ #: wizards/com/sun/star/wizards/common/strings.hrc:79 @@ -1058,7 +1058,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:224 msgctxt "RID_AGENDAWIZARDDIALOG_START_2" msgid "Make ~manual changes to this agenda template" -msgstr "Bu ajanda şablonunda elle değişiklikler yapın" +msgstr "Bu ajanda şablonunda ~elle değişiklikler yapın" #. LoA9c #: wizards/com/sun/star/wizards/common/strings.hrc:225 diff -Nru libreoffice-7.5.1~rc2/translations/source/tr/xmlsecurity/messages.po libreoffice-7.5.2~rc2/translations/source/tr/xmlsecurity/messages.po --- libreoffice-7.5.1~rc2/translations/source/tr/xmlsecurity/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/tr/xmlsecurity/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-07-14 18:31+0000\n" +"PO-Revision-Date: 2023-02-28 22:07+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: 1554881050.000000\n" #. EyJrF @@ -613,7 +613,7 @@ #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:52 msgctxt "extended_tip|med" msgid "Trusted sources can be set on the Trusted Sources tab page. Signed macros from a trusted source are allowed to run. In addition, any macro from a trusted file location is allowed to run. All other macros require your confirmation." -msgstr "Güvenilen kaynaklar Güvenilen Kaynaklar sekmesinden ayarlanabilir. Güvenilir bir kaynaktan gelen ve imzalanmış makroların çalışma izni vardır. Ayrıca, güvenilen dosya konumundaki tüm makrolar da çalıştırılır. Diğer tüm makrolar sizin onayınıza ihtiyaç duyar." +msgstr "Güvenilen kaynaklar Güvenilen Kaynaklar sekmesinden ayarlanabilir. Güvenilir bir kaynaktan gelen ve imzalanmış makroların çalışma izni vardır. Ayrıca, güvenilen dosya konumundaki tüm makrolar da çalıştırılır. Diğer tüm makrolar sizin onayınıza ihtiyaç duyar." #. 2DyAP #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:63 diff -Nru libreoffice-7.5.1~rc2/translations/source/ug/filter/messages.po libreoffice-7.5.2~rc2/translations/source/ug/filter/messages.po --- libreoffice-7.5.1~rc2/translations/source/ug/filter/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/ug/filter/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 13:11+0100\n" -"PO-Revision-Date: 2023-02-01 09:32+0000\n" +"PO-Revision-Date: 2023-02-28 22:08+0000\n" "Last-Translator: Abduqadir Abliz \n" -"Language-Team: Uyghur \n" +"Language-Team: Uyghur \n" "Language: ug\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: 1516032098.000000\n" #. 5AQgJ @@ -225,7 +225,6 @@ #. FTpr4 #: filter/inc/strings.hrc:67 -#, fuzzy msgctxt "STR_WARN_PASSWORD_PDFA" msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected." msgstr "PDF/A شىفىرلاشقا يول قويمايدۇ. چىقارغان PDF ھۆججەت ئىم بىلەن قوغدالمايدۇ." @@ -234,74 +233,74 @@ #: filter/inc/strings.hrc:68 msgctxt "STR_WARN_TRANSP_PDFA_SHORT" msgid "PDF/A transparency" -msgstr "" +msgstr "PDF/A سۈزۈكلۈكى" #. VGvbg #: filter/inc/strings.hrc:69 msgctxt "STR_WARN_TRANSP_PDFA" msgid "PDF/A forbids transparency. A transparent object was painted opaque instead." -msgstr "" +msgstr "PDF/A سۈزۈكلۈكنى چەكلەيدۇ. سۈزۈك ئوبيېكتلار تۇتۇق سىزىلىدۇ." #. siDaM #: filter/inc/strings.hrc:70 msgctxt "STR_WARN_TRANSP_VERSION_SHORT" msgid "PDF version conflict" -msgstr "" +msgstr "PDF نەشر توقۇنۇشى" #. VSCwD #: filter/inc/strings.hrc:71 msgctxt "STR_WARN_TRANSP_VERSION" msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead" -msgstr "" +msgstr "سۈزۈكلۈك PDF 1.4. A نەشرىدىن ئىلگىرى بولسا قوللىمايدۇ. سۈزۈك جىسىم تۇتۇق سىزىلىدۇ" #. CyosP #: filter/inc/strings.hrc:72 msgctxt "STR_WARN_FORMACTION_PDFA_SHORT" msgid "PDF/A form action" -msgstr "" +msgstr "PDF/A جەدۋەل مەشغۇلاتى" #. N9Vug #: filter/inc/strings.hrc:73 msgctxt "STR_WARN_FORMACTION_PDFA" msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped" -msgstr "" +msgstr "بىر جەدۋەل كونترولى PDF/A ئۆلچىمى قوللىمايدىغان مەشغۇلاتنى ئۆز ئىچىگە ئالغان. مەشغۇلاتتىن ئاتلاپ كېتىدۇ." #. d2ndY #: filter/inc/strings.hrc:74 msgctxt "STR_WARN_TRANSP_CONVERTED" msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting." -msgstr "" +msgstr "سۈزۈكلۈكىنى چىقىرىۋېتىش ئۈچۈن بەزى جىسىملار سۈرەتكە ئايلاندۇرۇلدى، چۈنكى نىشان PDF پىچىمى سۈزۈكلۈكنى قوللىمايدۇ. ئەگەر چىقىرىشتىن ئىلگىرى سۈزۈك جىسىمنى چىقىرىۋەتسىڭىز، تېخىمۇ ياخشى نەتىجىگە ئېرىشەلىشىڭىز مۇمكىن." #. qtCcB #: filter/inc/strings.hrc:75 msgctxt "STR_WARN_TRANSP_CONVERTED_SHORT" msgid "Transparencies removed" -msgstr "" +msgstr "سۈزۈكلۈكى چىقىرىۋېتىلدى" #. UHmjA #: filter/inc/strings.hrc:76 msgctxt "STR_ERR_SIGNATURE_FAILED" msgid "Signature generation failed" -msgstr "" +msgstr "ئىمزا ھاسىللىيالمىدى" #. wjBBo #: filter/inc/strings.hrc:77 msgctxt "STR_ERR_PDF_EXPORT_ABORTED" msgid "PDF export aborted" -msgstr "" +msgstr "PDF چىقىرىش توختىتىلدى" #. eNaMA #. Progress bar status indicator when importing or exporting #: filter/inc/strings.hrc:80 msgctxt "STR_FILTER_DOC_LOADING" msgid "Loading: " -msgstr "" +msgstr "يۈكلەۋاتىدۇ: " #. 4YFQR #: filter/inc/strings.hrc:81 msgctxt "STR_FILTER_DOC_SAVING" msgid "Saving: " -msgstr "" +msgstr "ساقلاۋاتىدۇ: " #. wH3TZ msgctxt "stock" @@ -370,72 +369,69 @@ #. AwX66 #: filter/uiconfig/ui/pdfgeneralpage.ui:42 -#, fuzzy msgctxt "pdfgeneralpage|all" msgid "_All" -msgstr "ھەممە" +msgstr "ھەممىسى(_A)" #. QMgsn #: filter/uiconfig/ui/pdfgeneralpage.ui:52 msgctxt "pdfgeneralpage|extended_tip|all" msgid "Exports all defined print ranges. If no print range is defined, exports the entire document." -msgstr "" +msgstr "بەلگىلەنگەن بارلىق بېسىش دائىرىسىنى چىقىرىدۇ. ئەگەر ھېچقانداق بېسىش دائىرىسى بەلگىلەنمىسە، پۈتكۈل پۈتۈكنى چىقىرىدۇ." #. NXztB #: filter/uiconfig/ui/pdfgeneralpage.ui:64 msgctxt "pdfgeneralpage|range" msgid "_Pages:" -msgstr "" +msgstr "بەت(_P):" #. ZdAZ9 #: filter/uiconfig/ui/pdfgeneralpage.ui:78 msgctxt "pdfgeneralpage|extended_tip|range" msgid "Exports the pages you type in the box." -msgstr "" +msgstr "قۇتىغا كىرگۈزگەن بەتلەرنى چىقىرىدۇ." #. WTSeS #: filter/uiconfig/ui/pdfgeneralpage.ui:89 -#, fuzzy msgctxt "pdfgeneralpage|selection" msgid "_Selection" -msgstr "تاللا" +msgstr "تاللاش(_S)" #. RQeDb #: filter/uiconfig/ui/pdfgeneralpage.ui:99 msgctxt "pdfgeneralpage|extended_tip|selection" msgid "Exports the current selection." -msgstr "" +msgstr "نۆۋەتتىكى تاللىغاننى چىقىرىدۇ." #. qQrdx #: filter/uiconfig/ui/pdfgeneralpage.ui:121 msgctxt "pdfgeneralpage|extended_tip|pages" msgid "Exports the pages you type in the box." -msgstr "" +msgstr "قۇتىغا كىرگۈزگەن بەتلەرنى چىقىرىدۇ." #. tFeCH #: filter/uiconfig/ui/pdfgeneralpage.ui:135 -#, fuzzy msgctxt "pdfgeneralpage|slides" msgid "Slides:" -msgstr "تام تەسۋىرلەر" +msgstr "تام تەسۋىرلەر:" #. 9Cyn8 #: filter/uiconfig/ui/pdfgeneralpage.ui:144 msgctxt "pdfgeneralpage|viewpdf" msgid "_View PDF after export" -msgstr "" +msgstr "چىقارغاندىن كېيىن PDF نى كۆرسەت‌ (_V)" #. mwuGG #: 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 msgctxt "pdfgeneralpage|selectedsheets" msgid "_Selection/Selected sheet(s)" -msgstr "" +msgstr "تاللاش/تاللانغان ۋاراق(_S)" #. MXtmZ #: filter/uiconfig/ui/pdfgeneralpage.ui:181 @@ -445,41 +441,39 @@ #. WbQ5j #: filter/uiconfig/ui/pdfgeneralpage.ui:211 -#, fuzzy msgctxt "pdfgeneralpage|losslesscompress" msgid "_Lossless compression" -msgstr "زەخىمسىز پىرىسلاش(~L)" +msgstr "زەخىمسىز پىرىسلاش(_L)" #. 9ut6Q #: filter/uiconfig/ui/pdfgeneralpage.ui:221 msgctxt "pdfgeneralpage|extended_tip|losslesscompress" msgid "Selects a lossless compression of images. All pixels are preserved." -msgstr "" +msgstr "سۈرەتنى زاخىمسىز پىرىسلاش ئۇسۇلىنى تاللاش. ھەممە پېكسىلنى ساقلاپ قالىدۇ." #. ccCL4 #: filter/uiconfig/ui/pdfgeneralpage.ui:233 msgctxt "pdfgeneralpage|reduceresolution" msgid "Reduce ima_ge resolution to:" -msgstr "" +msgstr "سۈرەت پەرق ئېتىش نىسبىتىنى تۆۋەنلىتىش(_G):" #. bAtCV #: filter/uiconfig/ui/pdfgeneralpage.ui:245 msgctxt "pdfgeneralpage|extended_tip|reduceresolution" msgid "Select to resample or down-size the images to a lower number of pixels per inch." -msgstr "" +msgstr "تاللانسا سۈرەتنى ھەر پېكسىل ئىنگلىز چىسى بويىچە قايتىدىن نۇسخا ئالىدۇ ياكى سۈرەت چوڭلۇقىنى تارايتىدۇ." #. XHeTx #: filter/uiconfig/ui/pdfgeneralpage.ui:260 -#, fuzzy msgctxt "pdfgeneralpage|resolution" msgid "75 DPI" -msgstr "72 DPI" +msgstr "75 DPI" #. CXj4e #: filter/uiconfig/ui/pdfgeneralpage.ui:261 msgctxt "pdfgeneralpage|resolution" msgid "150 DPI" -msgstr "" +msgstr "150 DPI" #. jZKqd #: filter/uiconfig/ui/pdfgeneralpage.ui:262 @@ -495,36 +489,33 @@ #. 5yTAM #: filter/uiconfig/ui/pdfgeneralpage.ui:264 -#, fuzzy msgctxt "pdfgeneralpage|resolution" msgid "1200 DPI" -msgstr "300 DPI" +msgstr "1200 DPI" #. r6npH #: filter/uiconfig/ui/pdfgeneralpage.ui:270 -#, fuzzy msgctxt "pdfgeneralpage|comboboxtext-entry" msgid "75 DPI" -msgstr "72 DPI" +msgstr "75 DPI" #. SkTeA #: filter/uiconfig/ui/pdfgeneralpage.ui:279 msgctxt "pdfgeneralpage|extended_tip|resolution" msgid "Select the target resolution for the images." -msgstr "" +msgstr "سۈرەتنىڭ نىشاندىكى پەرق ئېتىش نىسبىتىنى تاللاڭ." #. mEbKx #: filter/uiconfig/ui/pdfgeneralpage.ui:303 msgctxt "pdfgeneralpage|extended_tip|quality" msgid "Enter the quality level for JPEG compression." -msgstr "" +msgstr "JPEG پىرىسىنىڭ سۈرەت سۈپەت دەرىجىسىنى كىرگۈزۈڭ." #. FP56V #: filter/uiconfig/ui/pdfgeneralpage.ui:325 -#, fuzzy msgctxt "pdfgeneralpage|jpegcompress" msgid "_JPEG compression" -msgstr "~JPEG پىرىسلاش" +msgstr "_JPEG پىرىسلاش" #. PZCPi #: filter/uiconfig/ui/pdfgeneralpage.ui:335 diff -Nru libreoffice-7.5.1~rc2/translations/source/uk/cui/messages.po libreoffice-7.5.2~rc2/translations/source/uk/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/uk/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/uk/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2022-10-24 10:39+0000\n" +"PO-Revision-Date: 2023-03-24 12:35+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: 1566384412.000000\n" #. GyY9M @@ -2163,7 +2163,7 @@ #: cui/inc/strings.hrc:405 msgctxt "RID_LANGUAGETOOL_LEAVE_EMPTY" msgid "Leave this field empty to use the free version" -msgstr "" +msgstr "Залиште це поле порожнім, щоб використовувати безкоштовну версію" #. mpS3V #: cui/inc/tipoftheday.hrc:50 @@ -2563,7 +2563,7 @@ #: cui/inc/tipoftheday.hrc:116 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X." -msgstr "" +msgstr "Ви можете продовжувати писати з атрибутами типового форматування після ручного застосування жирного шрифту, курсиву або підкреслення, натиснувши %MOD1+Shift+X." #. iXjDF #: cui/inc/tipoftheday.hrc:117 @@ -2810,7 +2810,7 @@ #: cui/inc/tipoftheday.hrc:157 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to do citation? You can use third-party citation managers such as Zotero." -msgstr "" +msgstr "Потрібно зробити цитування? Ви можете використовувати сторонні менеджери цитування, такі як Zotero." #. ALczh #: cui/inc/tipoftheday.hrc:158 @@ -6868,7 +6868,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:355 msgctxt "colorconfigwin|autospellcheck" msgid "Spelling mistakes" -msgstr "" +msgstr "Орфографічні помилки" #. CpXy5 #: cui/uiconfig/ui/colorconfigwin.ui:388 @@ -6964,7 +6964,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:797 msgctxt "colorconfigwin|autospellcheck" msgid "Grammar mistakes" -msgstr "" +msgstr "Граматичні помилки" #. ZZcPY #: cui/uiconfig/ui/colorconfigwin.ui:830 @@ -9116,7 +9116,7 @@ #: cui/uiconfig/ui/eventsconfigpage.ui:100 msgctxt "eventsconfigpage|deleteall" msgid "Remove _All" -msgstr "" +msgstr "_Вилучити все" #. Ebcvv #: cui/uiconfig/ui/eventsconfigpage.ui:144 @@ -9476,13 +9476,13 @@ #: cui/uiconfig/ui/fontfeaturesdialog.ui:141 msgctxt "fontfeaturesdialog" msgid "Stylistic Sets" -msgstr "" +msgstr "Стилістичні засоби" #. PJ2PF #: cui/uiconfig/ui/fontfeaturesdialog.ui:193 msgctxt "fontfeaturesdialog" msgid "Character Variants" -msgstr "" +msgstr "Варіанти символів" #. 696Sw #: cui/uiconfig/ui/fontfeaturesdialog.ui:266 @@ -9506,7 +9506,7 @@ #: cui/uiconfig/ui/formatcellsdialog.ui:38 msgctxt "formatcellsdialog|standard" msgid "_Standard" -msgstr "" +msgstr "_Стандарт" #. aCkau #: cui/uiconfig/ui/formatcellsdialog.ui:125 @@ -9524,31 +9524,31 @@ #: cui/uiconfig/ui/formatcellsdialog.ui:172 msgctxt "formatcellsdialog|position" msgid "Position" -msgstr "" +msgstr "Положення" #. CxV6A #: cui/uiconfig/ui/formatcellsdialog.ui:196 msgctxt "formatcellsdialog|highlight" msgid "Highlighting" -msgstr "" +msgstr "Виділення" #. TM6fA #: cui/uiconfig/ui/formatcellsdialog.ui:220 msgctxt "formatcellsdialog|indentspacing" msgid "Indents & Spacing" -msgstr "" +msgstr "Відступи та інтервали" #. gfAJa #: cui/uiconfig/ui/formatcellsdialog.ui:244 msgctxt "formatcellsdialog|asian" msgid "Asian Typography" -msgstr "" +msgstr "Азійські правила набору" #. iuvXW #: cui/uiconfig/ui/formatcellsdialog.ui:268 msgctxt "formatcellsdialog|alignment" msgid "Alignment" -msgstr "" +msgstr "Вирівнювання" #. Pz8yJ #: cui/uiconfig/ui/formatcellsdialog.ui:292 @@ -12025,7 +12025,7 @@ #: cui/uiconfig/ui/langtoolconfigpage.ui:191 msgctxt "langtoolconfigpage|urldesc" msgid "Please use the base URL, i.e., without “/check” at the end." -msgstr "" +msgstr "Використовуйте базовий URL, тобто без «/check» наприкінці." #. 77oav #: cui/uiconfig/ui/langtoolconfigpage.ui:211 @@ -12489,7 +12489,7 @@ #: cui/uiconfig/ui/macroassignpage.ui:186 msgctxt "macroassignpage|deleteall" msgid "Remove _All" -msgstr "" +msgstr "_Вилучити все" #. CqT9E #: cui/uiconfig/ui/macroassignpage.ui:204 @@ -13783,7 +13783,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:113 msgctxt "objecttitledescdialog|extended_tip|object_title_entry" msgid "Enter a title text. This short name is visible as an \"alt\" tag in HTML format. Accessibility tools can read this text." -msgstr "" +msgstr "Введіть текст заголовка. Ця коротка назва відображається як тег \"alt\" у форматі HTML. Засоби спеціальних можливостей можуть прочитати цей текст." #. EFUyD #: cui/uiconfig/ui/objecttitledescdialog.ui:127 @@ -13867,7 +13867,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:149 msgctxt "optaccessibilitypage|label13" msgid "High contrast:" -msgstr "" +msgstr "Контраст:" #. KHEv8 #: cui/uiconfig/ui/optaccessibilitypage.ui:166 @@ -13891,7 +13891,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:172 msgctxt "extended_tip|highcontrast" msgid "Controls if high contrast mode is used. Select from “Automatic”, “Disable” and “Enable”. “Automatic” uses high contrast according to system settings." -msgstr "" +msgstr "Вказує, чи використовувати режим високої контрастності. Виберіть між «Автоматично», «Вимкнути» та «Увімкнути». «Автоматично» використовує високу контрастність відповідно до налаштувань системи." #. Sc8Cq #: cui/uiconfig/ui/optaccessibilitypage.ui:190 @@ -14509,13 +14509,13 @@ #: cui/uiconfig/ui/optdeeplpage.ui:29 msgctxt "optdeeplpage|privacy" msgid "Please read the privacy policy" -msgstr "" +msgstr "Будь ласка, прочитайте політику конфіденційності" #. F4GTM #: cui/uiconfig/ui/optdeeplpage.ui:54 msgctxt "optdeeplpage|privacy" msgid "API URL:" -msgstr "" +msgstr "API URL:" #. HHJta #: cui/uiconfig/ui/optdeeplpage.ui:68 diff -Nru libreoffice-7.5.1~rc2/translations/source/uk/helpcontent2/source/auxiliary.po libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/auxiliary.po --- libreoffice-7.5.1~rc2/translations/source/uk/helpcontent2/source/auxiliary.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/auxiliary.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:35+0200\n" -"PO-Revision-Date: 2021-10-23 00:37+0000\n" +"PO-Revision-Date: 2023-03-12 04: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: 1565131651.000000\n" #. fEEXD @@ -131,7 +131,7 @@ "070203\n" "node.text" msgid "Python Modules" -msgstr "" +msgstr "Модулi Python" #. JCHAg #: sbasic.tree diff -Nru libreoffice-7.5.1~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po --- libreoffice-7.5.1~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-08 19:46+0100\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:34+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.5.1~rc2/translations/source/uk/helpcontent2/source/text/sdraw.po libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/text/sdraw.po --- libreoffice-7.5.1~rc2/translations/source/uk/helpcontent2/source/text/sdraw.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/text/sdraw.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2021-09-23 19:36+0000\n" +"PO-Revision-Date: 2023-03-17 19: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: 1558376376.000000\n" #. dHbww @@ -104,7 +104,7 @@ "par_id3150868\n" "help.text" msgid "This menu contains general commands for working with Draw documents, such as create, open, close and print. To close $[officename] Draw, click Exit." -msgstr "" +msgstr "Це меню містить загальні команди для роботи з документами Draw, такі як створення, відкриття, закриття і друк. щоб закрити $[officename] Draw, клацніть Вихід." #. uGyaP #: main0103.xhp @@ -131,7 +131,7 @@ "par_id3159155\n" "help.text" msgid "This menu contains commands to control the on-screen display of the document, change the user interface and access the sidebar panels." -msgstr "" +msgstr "Це меню містить команди для керування відображенням документа на екрані, зміни інтерфейсу користувача і доступу до бічних панелей." #. X7bcB #: main0103.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/uk/helpcontent2/source/text/shared/04.po libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/text/shared/04.po --- libreoffice-7.5.1~rc2/translations/source/uk/helpcontent2/source/text/shared/04.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/text/shared/04.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2021-10-21 16:36+0000\n" +"PO-Revision-Date: 2023-03-18 05:54+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.5.1~rc2/translations/source/uk/helpcontent2/source/text/shared/06.po libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/text/shared/06.po --- libreoffice-7.5.1~rc2/translations/source/uk/helpcontent2/source/text/shared/06.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/text/shared/06.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-14 14:36+0100\n" -"PO-Revision-Date: 2023-01-08 10:42+0000\n" -"Last-Translator: Roman Petrickovic \n" -"Language-Team: Ukrainian \n" +"PO-Revision-Date: 2023-03-12 04:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1536497608.000000\n" #. EUcrc @@ -221,7 +221,7 @@ "tit\n" "help.text" msgid "Draw Screenshots" -msgstr "" +msgstr "Створення знімків екрана" #. eQyVj #: sd_screenshots.xhp @@ -230,7 +230,7 @@ "par_id841667137968665\n" "help.text" msgid "Insert layer dialog" -msgstr "" +msgstr "Діалогове вікно вставки шару" #. DfLQp #: sd_screenshots.xhp @@ -239,7 +239,7 @@ "par_id261667158794565\n" "help.text" msgid "Snap Object Dialog" -msgstr "" +msgstr "Діалогове вікно прив'язки об'єктів" #. oyDYP #: sd_screenshots.xhp @@ -248,7 +248,7 @@ "par_id71667308065175\n" "help.text" msgid "To Polygon dialog" -msgstr "" +msgstr "Діалог \"На багатокутник\"" #. U5qq8 #: sd_screenshots.xhp @@ -257,7 +257,7 @@ "par_id731667322149681\n" "help.text" msgid "Duplicate dialog" -msgstr "" +msgstr "Діалогове вікно \"Дублювати\"" #. CQFRB #: sd_screenshots.xhp @@ -266,7 +266,7 @@ "par_id661667325268264\n" "help.text" msgid "Insert from File dialog" -msgstr "" +msgstr "Діалогове вікно \"Вставити з файлу\"" #. Ak6ph #: shared_cui_screenshots.xhp @@ -293,7 +293,7 @@ "par_id91572261220492\n" "help.text" msgid "Hyperlink Doc Page Dialog Image" -msgstr "" +msgstr "Зображення діалогового вікна сторінки документа з гіперпосиланням" #. q52zT #: shared_cui_screenshots.xhp @@ -302,7 +302,7 @@ "par_id321572273256466\n" "help.text" msgid "Hyperlink Internet Dialog Image" -msgstr "" +msgstr "Гіперпосилання в Інтернет" #. 7gbR6 #: shared_cui_screenshots.xhp @@ -311,7 +311,7 @@ "par_id681572278003926\n" "help.text" msgid "Hyperlink Mail Dialog Image" -msgstr "" +msgstr "Зображення діалогового вікна \"Гіперпосилання на e-mail\"" #. UZndE #: shared_cui_screenshots.xhp @@ -320,7 +320,7 @@ "par_id911572279106813\n" "help.text" msgid "Hyperlink New Document Dialog Image" -msgstr "" +msgstr "Гіперпосилання на новий документ" #. j7M36 #: shared_cui_screenshots.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/uk/helpcontent2/source/text/shared/menu.po libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/text/shared/menu.po --- libreoffice-7.5.1~rc2/translations/source/uk/helpcontent2/source/text/shared/menu.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/uk/helpcontent2/source/text/shared/menu.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 19:22+0100\n" -"PO-Revision-Date: 2020-09-12 09:35+0000\n" +"PO-Revision-Date: 2023-03-24 13: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: 1468606418.000000\n" #. rxCQJ @@ -23,7 +23,7 @@ "tit\n" "help.text" msgid "Forms submenu" -msgstr "" +msgstr "Підменю Форми" #. zwjCw #: forms.xhp @@ -32,7 +32,7 @@ "hd_id491647289210348\n" "help.text" msgid "Forms Submenu" -msgstr "" +msgstr "Підменю Форми" #. EEMss #: insert_chart.xhp diff -Nru libreoffice-7.5.1~rc2/translations/source/uk/starmath/messages.po libreoffice-7.5.2~rc2/translations/source/uk/starmath/messages.po --- libreoffice-7.5.1~rc2/translations/source/uk/starmath/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/uk/starmath/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-10-10 13:36+0200\n" -"PO-Revision-Date: 2022-09-26 19:50+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: 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.5.1~rc2/translations/source/uk/sw/messages.po libreoffice-7.5.2~rc2/translations/source/uk/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/uk/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/uk/sw/messages.po 2023-03-24 16:53:38.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-12-19 15:00+0100\n" -"PO-Revision-Date: 2023-02-19 19:03+0000\n" +"PO-Revision-Date: 2023-03-23 20: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" @@ -11569,7 +11569,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:153 msgctxt "businessdatapage|position-atkobject" msgid "Position" -msgstr "" +msgstr "Посада" #. QGc4K #: sw/uiconfig/swriter/ui/businessdatapage.ui:154 @@ -24983,7 +24983,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.5.1~rc2/translations/source/vec/dictionaries/be_BY.po libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/be_BY.po --- libreoffice-7.5.1~rc2/translations/source/vec/dictionaries/be_BY.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/be_BY.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-22 11:33+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.5.1~rc2/translations/source/vec/dictionaries/ckb.po libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/ckb.po --- libreoffice-7.5.1~rc2/translations/source/vec/dictionaries/ckb.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/ckb.po 2023-03-24 16:53:38.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-22 11:33+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.5.1~rc2/translations/source/vec/dictionaries/eo.po libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/eo.po --- libreoffice-7.5.1~rc2/translations/source/vec/dictionaries/eo.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/eo.po 2023-03-24 16:53:38.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-22 11:33+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.5.1~rc2/translations/source/vec/dictionaries/fa_IR.po libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/fa_IR.po --- libreoffice-7.5.1~rc2/translations/source/vec/dictionaries/fa_IR.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/fa_IR.po 2023-03-24 16:53:38.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-10-22 14:12+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-22 11:33+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" #. aZkZV #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Lilak, Persian Spell Checking Dictionary" -msgstr "" +msgstr "Coretor ortogràfego de'l Persian (Lilak)" diff -Nru libreoffice-7.5.1~rc2/translations/source/vec/dictionaries/mn_MN.po libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/mn_MN.po --- libreoffice-7.5.1~rc2/translations/source/vec/dictionaries/mn_MN.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/mn_MN.po 2023-03-24 16:53:38.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-22 11:33+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.5.1~rc2/translations/source/vec/dictionaries/pt_BR.po libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/pt_BR.po --- libreoffice-7.5.1~rc2/translations/source/vec/dictionaries/pt_BR.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/vec/dictionaries/pt_BR.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://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-22 11:33+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.5.1~rc2/translations/source/zh-CN/cui/messages.po libreoffice-7.5.2~rc2/translations/source/zh-CN/cui/messages.po --- libreoffice-7.5.1~rc2/translations/source/zh-CN/cui/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/zh-CN/cui/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-15 14:12+0100\n" -"PO-Revision-Date: 2022-12-19 14:09+0000\n" +"PO-Revision-Date: 2023-03-03 12:22+0000\n" "Last-Translator: Ming Hua \n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565307144.000000\n" #. GyY9M @@ -17430,37 +17430,37 @@ #: cui/uiconfig/ui/optviewpage.ui:503 msgctxt "optviewpage|appearance" msgid "System" -msgstr "" +msgstr "系统" #. S3ogK #: cui/uiconfig/ui/optviewpage.ui:504 msgctxt "optviewpage|appearance" msgid "Light" -msgstr "" +msgstr "浅色" #. qYSap #: cui/uiconfig/ui/optviewpage.ui:505 msgctxt "optviewpage|appearance" msgid "Dark" -msgstr "" +msgstr "深色" #. qfbPT #: cui/uiconfig/ui/optviewpage.ui:509 msgctxt "extended_tip | appearance" msgid "Specifies whether to follow the system appearance mode or override Dark or Light." -msgstr "" +msgstr "指定是跟随系统外观模式,还是忽视系统设定并一直使用「深色」或「浅色」主题。" #. nzLbn #: cui/uiconfig/ui/optviewpage.ui:522 msgctxt "optviewpage|label7" msgid "Mode:" -msgstr "" +msgstr "模式:" #. Nrc4k #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "optviewpage|label16" msgid "Appearance" -msgstr "" +msgstr "外观" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:573 diff -Nru libreoffice-7.5.1~rc2/translations/source/zh-CN/dbaccess/messages.po libreoffice-7.5.2~rc2/translations/source/zh-CN/dbaccess/messages.po --- libreoffice-7.5.1~rc2/translations/source/zh-CN/dbaccess/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/zh-CN/dbaccess/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-11-25 13:48+0100\n" -"PO-Revision-Date: 2022-10-21 14:19+0000\n" -"Last-Translator: 锁琨珑 \n" -"Language-Team: Chinese (Simplified) \n" +"PO-Revision-Date: 2023-03-03 12:22+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: 1562192836.000000\n" #. BiN6g @@ -1899,7 +1899,7 @@ #: dbaccess/inc/strings.hrc:333 msgctxt "STR_NAME_OF_ODBC_DATASOURCE" msgid "Name of the ODBC data source" -msgstr "" +msgstr "ODBC 数据源的名称" #. mGJE9 #: dbaccess/inc/strings.hrc:334 @@ -2231,7 +2231,7 @@ #: dbaccess/inc/strings.hrc:388 msgctxt "STR_ODBC_HEADERTEXT" msgid "Set up a connection to an ODBC data source" -msgstr "" +msgstr "建立一个到 ODBC 数据源的连接" #. BELnF #: dbaccess/inc/strings.hrc:389 @@ -4831,7 +4831,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.5.1~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.5.2~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.5.1~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-08 19:47+0100\n" -"PO-Revision-Date: 2022-07-06 16:25+0000\n" +"PO-Revision-Date: 2023-03-06 12: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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559118501.000000\n" #. HhMVS @@ -1134,7 +1134,7 @@ "STR_INFO_PRIMARY\n" "value.text" msgid "Successfully updated the presentation “%TITLE”." -msgstr "" +msgstr "已成功更新演示文档「%TITLE」。" #. Ud5BA #: PresentationMinimizer.xcu @@ -1144,7 +1144,7 @@ "STR_INFO_SECONDARY_1\n" "value.text" msgid "The file size has changed from %OLDFILESIZE MB to %NEWFILESIZE MB." -msgstr "" +msgstr "文件大小从 %OLDFILESIZE MB 变为 %NEWFILESIZE MB。" #. 3jxzg #: PresentationMinimizer.xcu @@ -1154,7 +1154,7 @@ "STR_INFO_SECONDARY_2\n" "value.text" msgid "The file size has changed from %OLDFILESIZE MB to approximately %NEWFILESIZE MB." -msgstr "" +msgstr "文件大小从 %OLDFILESIZE MB 变为大约 %NEWFILESIZE MB。" #. GshEd #: PresentationMinimizer.xcu @@ -1164,7 +1164,7 @@ "STR_INFO_SECONDARY_3\n" "value.text" msgid "The file size has changed to %NEWFILESIZE MB." -msgstr "" +msgstr "文件大小变为 %NEWFILESIZE MB。" #. Eks8J #: PresentationMinimizer.xcu @@ -1174,7 +1174,7 @@ "STR_INFO_SECONDARY_4\n" "value.text" msgid "The file size has changed to approximately %NEWFILESIZE MB." -msgstr "" +msgstr "文件大小变为大约 %NEWFILESIZE MB。" #. CSfqQ #: PresentationMinimizer.xcu diff -Nru libreoffice-7.5.1~rc2/translations/source/zh-TW/extensions/messages.po libreoffice-7.5.2~rc2/translations/source/zh-TW/extensions/messages.po --- libreoffice-7.5.1~rc2/translations/source/zh-TW/extensions/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/zh-TW/extensions/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-07 18:39+0000\n" +"PO-Revision-Date: 2023-03-03 12:22+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: 1554784490.000000\n" #. cBx8W @@ -967,7 +967,7 @@ #: extensions/inc/strings.hrc:52 msgctxt "RID_STR_LABEL" msgid "Label" -msgstr "標題" +msgstr "標籤" #. zBrzN #: extensions/inc/strings.hrc:53 @@ -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.5.1~rc2/translations/source/zh-TW/svx/messages.po libreoffice-7.5.2~rc2/translations/source/zh-TW/svx/messages.po --- libreoffice-7.5.1~rc2/translations/source/zh-TW/svx/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/zh-TW/svx/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-02-09 12:11+0100\n" -"PO-Revision-Date: 2022-12-21 15:35+0000\n" +"PO-Revision-Date: 2023-03-03 12:22+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 @@ -6772,7 +6772,7 @@ #: include/svx/strings.hrc:1219 msgctxt "RID_STR_PROPTITLE_COMBOBOX" msgid "Combo Box" -msgstr "群組方塊" +msgstr "複合方塊" #. WiNUf #: include/svx/strings.hrc:1220 diff -Nru libreoffice-7.5.1~rc2/translations/source/zh-TW/sw/messages.po libreoffice-7.5.2~rc2/translations/source/zh-TW/sw/messages.po --- libreoffice-7.5.1~rc2/translations/source/zh-TW/sw/messages.po 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/translations/source/zh-TW/sw/messages.po 2023-03-24 16:53:38.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 15:00+0100\n" -"PO-Revision-Date: 2022-12-21 15:34+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: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1557418140.000000\n" #. v3oJv @@ -6049,7 +6049,7 @@ #: sw/inc/strings.hrc:677 msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "右鍵點擊以包含子層級" +msgstr "右鍵點按以包含子層級" #. oBH6y #: sw/inc/strings.hrc:678 @@ -10085,7 +10085,7 @@ #: sw/inc/strings.hrc:1445 msgctxt "STR_CONTENT_CONTROL_PLACEHOLDER" msgid "Click here to enter text" -msgstr "點擊此處以輸入文字" +msgstr "點按此處以輸入文字" #. N3ocz #: sw/inc/strings.hrc:1446 @@ -10693,7 +10693,7 @@ #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:92 msgctxt "assignstylesdialog|AssignStylesDialog" msgid "Assign Styles" -msgstr "指派樣式" +msgstr "指定樣式" #. ADyBs #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:197 @@ -11917,7 +11917,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 @@ -11929,7 +11929,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 @@ -11977,7 +11977,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:448 msgctxt "cardmediumpage|extended_tip|type" msgid "Select the size format that you want to use. The available formats depend on the brand you selected in the Brand list. If you want to use a custom label format, select [User], and then click the Format tab to define the format." -msgstr "選取您想要使用的大小格式。可用的格式取決於您在「品牌」清單中選取的品牌。若您想要使用自訂標籤格式,請選取「使用者」,然後點擊「格式」分頁以定義格式。" +msgstr "選取您想要使用的大小格式。可用的格式取決於您在「品牌」清單中選取的品牌。若您想要使用自訂標籤格式,請選取「使用者」,然後點按「格式」分頁以定義格式。" #. DCFRk #: sw/uiconfig/swriter/ui/cardmediumpage.ui:476 @@ -12133,7 +12133,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 @@ -12163,7 +12163,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 @@ -12193,13 +12193,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 @@ -12529,7 +12529,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 @@ -12955,7 +12955,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 @@ -13615,13 +13615,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 @@ -17388,7 +17388,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:357 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 "要刪除書籤,請選取書籤並點按「刪除」按鈕。不會出現確認對話方塊。" #. o7sDd #: sw/uiconfig/swriter/ui/insertbookmark.ui:370 @@ -18264,7 +18264,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:531 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 @@ -18510,7 +18510,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 @@ -19854,7 +19854,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 @@ -20478,7 +20478,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 @@ -20508,7 +20508,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 @@ -21042,7 +21042,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 @@ -21054,7 +21054,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 @@ -21066,7 +21066,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 @@ -21078,7 +21078,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 @@ -21090,7 +21090,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 @@ -23117,7 +23117,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:257 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:272 @@ -26401,13 +26401,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 @@ -26617,7 +26617,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 @@ -27439,7 +27439,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 @@ -27499,7 +27499,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 @@ -28975,7 +28975,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 @@ -29371,7 +29371,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.5.1~rc2/ucb/source/ucp/webdav-curl/DAVTypes.cxx libreoffice-7.5.2~rc2/ucb/source/ucp/webdav-curl/DAVTypes.cxx --- libreoffice-7.5.1~rc2/ucb/source/ucp/webdav-curl/DAVTypes.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/ucb/source/ucp/webdav-curl/DAVTypes.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -164,6 +164,11 @@ { // 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() + rDAVOptions.setClass1( (*it).second.isClass1() ); } // not in cache, add it TimeValue t1; diff -Nru libreoffice-7.5.1~rc2/unotest/source/cpp/macros_test.cxx libreoffice-7.5.2~rc2/unotest/source/cpp/macros_test.cxx --- libreoffice-7.5.1~rc2/unotest/source/cpp/macros_test.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/unotest/source/cpp/macros_test.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -75,9 +75,10 @@ return xComponent; } -void MacrosTest::dispatchCommand(const uno::Reference& xComponent, - const OUString& rCommand, - const uno::Sequence& rPropertyValues) +css::uno::Any +MacrosTest::dispatchCommand(const uno::Reference& xComponent, + const OUString& rCommand, + const uno::Sequence& rPropertyValues) { uno::Reference xController = uno::Reference(xComponent, uno::UNO_QUERY_THROW)->getCurrentController(); @@ -89,7 +90,7 @@ uno::Reference xDispatchHelper(frame::DispatchHelper::create(xContext)); CPPUNIT_ASSERT(xDispatchHelper.is()); - xDispatchHelper->executeDispatch(xFrame, rCommand, OUString(), 0, rPropertyValues); + return xDispatchHelper->executeDispatch(xFrame, rCommand, OUString(), 0, rPropertyValues); } std::unique_ptr MacrosTest::parseExportStream(const OUString& url, diff -Nru libreoffice-7.5.1~rc2/vcl/inc/listbox.hxx libreoffice-7.5.2~rc2/vcl/inc/listbox.hxx --- libreoffice-7.5.1~rc2/vcl/inc/listbox.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/inc/listbox.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -559,7 +559,6 @@ virtual void Resize() override; virtual void GetFocus() override; virtual void LoseFocus() override; - virtual bool PreNotify( NotifyEvent& rNEvt ) override; sal_Int32 GetItemPos() const { return mnItemPos; } void SetItemPos( sal_Int32 n ) { mnItemPos = n; } diff -Nru libreoffice-7.5.1~rc2/vcl/inc/qt5/QtGraphics_Controls.hxx libreoffice-7.5.2~rc2/vcl/inc/qt5/QtGraphics_Controls.hxx --- libreoffice-7.5.1~rc2/vcl/inc/qt5/QtGraphics_Controls.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/inc/qt5/QtGraphics_Controls.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -59,7 +59,8 @@ tools::Rectangle& rNativeContentRegion) override; private: - static int pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option = nullptr); + static int pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option = nullptr, + const QWidget* pWidget = nullptr); static QSize sizeFromContents(QStyle::ContentsType type, const QStyleOption* option, const QSize& contentsSize); static QRect subControlRect(QStyle::ComplexControl control, const QStyleOptionComplex* option, diff -Nru libreoffice-7.5.1~rc2/vcl/osx/salframeview.mm libreoffice-7.5.2~rc2/vcl/osx/salframeview.mm --- libreoffice-7.5.1~rc2/vcl/osx/salframeview.mm 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/osx/salframeview.mm 2023-03-24 16:53:38.000000000 +0000 @@ -277,6 +277,12 @@ SalFrameStyleFlags::SIZEABLE| SalFrameStyleFlags::CLOSEABLE; + // Reset dark mode colors in HITheme controls after printing + // In dark mode, after an NSPrintOperation has completed, macOS draws + // HITheme controls with light mode colors so reset all dark mode + // colors when an NSWindow gains focus. + mpFrame->UpdateDarkMode(); + if( mpFrame->mpMenu ) mpFrame->mpMenu->setMainMenu(); else if( ! mpFrame->mpParent && diff -Nru libreoffice-7.5.1~rc2/vcl/qa/cppunit/filter/ipdf/data/array-mixed-numbers-and-elements.pdf libreoffice-7.5.2~rc2/vcl/qa/cppunit/filter/ipdf/data/array-mixed-numbers-and-elements.pdf --- libreoffice-7.5.1~rc2/vcl/qa/cppunit/filter/ipdf/data/array-mixed-numbers-and-elements.pdf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/qa/cppunit/filter/ipdf/data/array-mixed-numbers-and-elements.pdf 2023-03-24 16:53:38.000000000 +0000 @@ -0,0 +1,55 @@ +%PDF-1.7 +% +1 0 obj << + /Type /Catalog + /Pages 2 0 R +>> +endobj +2 0 obj << + /Type /Pages + /MediaBox [0 0 200 300] + /Count 1 + /Kids [3 0 R] +>> +endobj +3 0 obj << + /Type /Page + /Parent 2 0 R + /Contents 4 0 R + /Test [1 4 0 R 3 false 5 (Lieral) 7 <90>] +>> +endobj +4 0 obj << + /Length 188 +>> +stream +q +0 0 0 rg +0 290 10 10 re B* +10 150 50 30 re B* +0 0 1 rg +190 290 10 10 re B* +70 232 50 30 re B* +0 1 0 rg +190 0 10 10 re B* +130 150 50 30 re B* +1 0 0 rg +0 0 10 10 re B* +70 67 50 30 re B* +Q +endstream +endobj +xref +0 5 +0000000000 65535 f +0000000015 00000 n +0000000068 00000 n +0000000157 00000 n +0000000270 00000 n +trailer << + /Root 1 0 R + /Size 5 +>> +startxref +510 +%%EOF diff -Nru libreoffice-7.5.1~rc2/vcl/qa/cppunit/filter/ipdf/ipdf.cxx libreoffice-7.5.2~rc2/vcl/qa/cppunit/filter/ipdf/ipdf.cxx --- libreoffice-7.5.1~rc2/vcl/qa/cppunit/filter/ipdf/ipdf.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/qa/cppunit/filter/ipdf/ipdf.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -186,6 +186,31 @@ CPPUNIT_ASSERT(aDocument.Read(aFile)); } +CPPUNIT_TEST_FIXTURE(VclFilterIpdfTest, testMixedArrayWithNumbers) +{ + // Load a file that has markup like this: + // 3 0 obj << + // /Test [1 4 0 R 3 false 5 (Lieral) 7 <90>] + // >> + OUString aSourceURL = createFileURL(u"array-mixed-numbers-and-elements.pdf"); + SvFileStream aFile(aSourceURL, StreamMode::READ); + vcl::filter::PDFDocument aDocument; + CPPUNIT_ASSERT(aDocument.Read(aFile)); + std::vector aPages = aDocument.GetPages(); + CPPUNIT_ASSERT(!aPages.empty()); + vcl::filter::PDFObjectElement* pPage = aPages[0]; + auto pTest = dynamic_cast(pPage->Lookup("Test")); + std::vector aElements = pTest->GetElements(); + + // Without the accompanying fix in place, this test would have failed with + // the array containing the wrong number of elements and in the incorrect order + CPPUNIT_ASSERT_EQUAL(8, static_cast(aElements.size())); + CPPUNIT_ASSERT(dynamic_cast(aElements[0])); + CPPUNIT_ASSERT(dynamic_cast(aElements[2])); + CPPUNIT_ASSERT(dynamic_cast(aElements[4])); + CPPUNIT_ASSERT(dynamic_cast(aElements[6])); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.5.1~rc2/vcl/qt5/QtData.cxx libreoffice-7.5.2~rc2/vcl/qt5/QtData.cxx --- libreoffice-7.5.1~rc2/vcl/qt5/QtData.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/qt5/QtData.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -24,135 +24,13 @@ #include #include +#include #include +#include +#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - +#include +#include #include QtData::QtData() @@ -176,17 +54,29 @@ // outline dtor b/c of FreetypeManager incomplete type QtData::~QtData() {} -static QCursor* getQCursorFromXBM(const unsigned char* pBitmap, const unsigned char* pMask, - int nWidth, int nHeight, int nXHot, int nYHot) +static QCursor* getQCursorFromIconTheme(const OUString& rIconName, int nXHot, int nYHot) { - QBitmap aPixmap = QBitmap::fromData(QSize(nWidth, nHeight), pBitmap); - QBitmap aMask = QBitmap::fromData(QSize(nWidth, nHeight), pMask); - return new QCursor(aPixmap, aMask, nXHot, nYHot); + const OUString sIconTheme = Application::GetSettings().GetStyleSettings().DetermineIconTheme(); + const OUString sUILang = Application::GetSettings().GetUILanguageTag().getBcp47(); + auto xMemStream = ImageTree::get().getImageStream(rIconName, sIconTheme, sUILang); + if (!xMemStream) + return nullptr; + auto nLength = xMemStream->TellEnd(); + if (!nLength) + { + SAL_WARN("vcl.qt", "Cannot load cursor pixmap from empty stream."); + return nullptr; + } + + const unsigned char* pData = static_cast(xMemStream->GetData()); + QPixmap aPixmap; + aPixmap.loadFromData(pData, nLength); + return new QCursor(aPixmap, nXHot, nYHot); } -#define MAKE_CURSOR(vcl_name, name) \ + +#define MAKE_CURSOR(vcl_name, name, icon_name) \ case vcl_name: \ - pCursor = getQCursorFromXBM(name##curs##_bits, name##mask##_bits, name##curs_width, \ - name##curs_height, name##curs_x_hot, name##curs_y_hot); \ + pCursor = getQCursorFromIconTheme(icon_name, name##curs_x_hot, name##curs_y_hot); \ break #define MAP_BUILTIN(vcl_name, qt_enum) \ @@ -239,72 +129,73 @@ MAP_BUILTIN(PointerStyle::Move, Qt::SizeAllCursor); MAP_BUILTIN(PointerStyle::Null, Qt::BlankCursor); - MAKE_CURSOR(PointerStyle::Magnify, magnify_); - MAKE_CURSOR(PointerStyle::Fill, fill_); - MAKE_CURSOR(PointerStyle::MoveData, movedata_); - MAKE_CURSOR(PointerStyle::CopyData, copydata_); - MAKE_CURSOR(PointerStyle::MoveFile, movefile_); - MAKE_CURSOR(PointerStyle::CopyFile, copyfile_); - MAKE_CURSOR(PointerStyle::MoveFiles, movefiles_); - MAKE_CURSOR(PointerStyle::CopyFiles, copyfiles_); - MAKE_CURSOR(PointerStyle::NotAllowed, nodrop_); - MAKE_CURSOR(PointerStyle::Rotate, rotate_); - MAKE_CURSOR(PointerStyle::HShear, hshear_); - MAKE_CURSOR(PointerStyle::VShear, vshear_); - MAKE_CURSOR(PointerStyle::DrawLine, drawline_); - MAKE_CURSOR(PointerStyle::DrawRect, drawrect_); - MAKE_CURSOR(PointerStyle::DrawPolygon, drawpolygon_); - MAKE_CURSOR(PointerStyle::DrawBezier, drawbezier_); - MAKE_CURSOR(PointerStyle::DrawArc, drawarc_); - MAKE_CURSOR(PointerStyle::DrawPie, drawpie_); - MAKE_CURSOR(PointerStyle::DrawCircleCut, drawcirclecut_); - MAKE_CURSOR(PointerStyle::DrawEllipse, drawellipse_); - MAKE_CURSOR(PointerStyle::DrawConnect, drawconnect_); - MAKE_CURSOR(PointerStyle::DrawText, drawtext_); - MAKE_CURSOR(PointerStyle::Mirror, mirror_); - MAKE_CURSOR(PointerStyle::Crook, crook_); - MAKE_CURSOR(PointerStyle::Crop, crop_); - MAKE_CURSOR(PointerStyle::MovePoint, movepoint_); - MAKE_CURSOR(PointerStyle::MoveBezierWeight, movebezierweight_); - MAKE_CURSOR(PointerStyle::DrawFreehand, drawfreehand_); - MAKE_CURSOR(PointerStyle::DrawCaption, drawcaption_); - MAKE_CURSOR(PointerStyle::LinkData, linkdata_); - MAKE_CURSOR(PointerStyle::MoveDataLink, movedlnk_); - MAKE_CURSOR(PointerStyle::CopyDataLink, copydlnk_); - MAKE_CURSOR(PointerStyle::LinkFile, linkfile_); - MAKE_CURSOR(PointerStyle::MoveFileLink, moveflnk_); - MAKE_CURSOR(PointerStyle::CopyFileLink, copyflnk_); - MAKE_CURSOR(PointerStyle::Chart, chart_); - MAKE_CURSOR(PointerStyle::Detective, detective_); - MAKE_CURSOR(PointerStyle::PivotCol, pivotcol_); - MAKE_CURSOR(PointerStyle::PivotRow, pivotrow_); - MAKE_CURSOR(PointerStyle::PivotField, pivotfld_); - MAKE_CURSOR(PointerStyle::PivotDelete, pivotdel_); - MAKE_CURSOR(PointerStyle::Chain, chain_); - MAKE_CURSOR(PointerStyle::ChainNotAllowed, chainnot_); - MAKE_CURSOR(PointerStyle::AutoScrollN, asn_); - MAKE_CURSOR(PointerStyle::AutoScrollS, ass_); - MAKE_CURSOR(PointerStyle::AutoScrollW, asw_); - MAKE_CURSOR(PointerStyle::AutoScrollE, ase_); - MAKE_CURSOR(PointerStyle::AutoScrollNW, asnw_); - MAKE_CURSOR(PointerStyle::AutoScrollNE, asne_); - MAKE_CURSOR(PointerStyle::AutoScrollSW, assw_); - MAKE_CURSOR(PointerStyle::AutoScrollSE, asse_); - MAKE_CURSOR(PointerStyle::AutoScrollNS, asns_); - MAKE_CURSOR(PointerStyle::AutoScrollWE, aswe_); - MAKE_CURSOR(PointerStyle::AutoScrollNSWE, asnswe_); - MAKE_CURSOR(PointerStyle::TextVertical, vertcurs_); - - MAKE_CURSOR(PointerStyle::TabSelectS, tblsels_); - MAKE_CURSOR(PointerStyle::TabSelectE, tblsele_); - MAKE_CURSOR(PointerStyle::TabSelectSE, tblselse_); - MAKE_CURSOR(PointerStyle::TabSelectW, tblselw_); - MAKE_CURSOR(PointerStyle::TabSelectSW, tblselsw_); + MAKE_CURSOR(PointerStyle::Magnify, magnify_, RID_CURSOR_MAGNIFY); + MAKE_CURSOR(PointerStyle::Fill, fill_, RID_CURSOR_FILL); + MAKE_CURSOR(PointerStyle::MoveData, movedata_, RID_CURSOR_MOVE_DATA); + MAKE_CURSOR(PointerStyle::CopyData, copydata_, RID_CURSOR_COPY_DATA); + MAKE_CURSOR(PointerStyle::MoveFile, movefile_, RID_CURSOR_MOVE_FILE); + MAKE_CURSOR(PointerStyle::CopyFile, copyfile_, RID_CURSOR_COPY_FILE); + MAKE_CURSOR(PointerStyle::MoveFiles, movefiles_, RID_CURSOR_MOVE_FILES); + MAKE_CURSOR(PointerStyle::CopyFiles, copyfiles_, RID_CURSOR_COPY_FILES); + MAKE_CURSOR(PointerStyle::NotAllowed, nodrop_, RID_CURSOR_NOT_ALLOWED); + MAKE_CURSOR(PointerStyle::Rotate, rotate_, RID_CURSOR_ROTATE); + MAKE_CURSOR(PointerStyle::HShear, hshear_, RID_CURSOR_H_SHEAR); + MAKE_CURSOR(PointerStyle::VShear, vshear_, RID_CURSOR_V_SHEAR); + MAKE_CURSOR(PointerStyle::DrawLine, drawline_, RID_CURSOR_DRAW_LINE); + MAKE_CURSOR(PointerStyle::DrawRect, drawrect_, RID_CURSOR_DRAW_RECT); + MAKE_CURSOR(PointerStyle::DrawPolygon, drawpolygon_, RID_CURSOR_DRAW_POLYGON); + MAKE_CURSOR(PointerStyle::DrawBezier, drawbezier_, RID_CURSOR_DRAW_BEZIER); + MAKE_CURSOR(PointerStyle::DrawArc, drawarc_, RID_CURSOR_DRAW_ARC); + MAKE_CURSOR(PointerStyle::DrawPie, drawpie_, RID_CURSOR_DRAW_PIE); + MAKE_CURSOR(PointerStyle::DrawCircleCut, drawcirclecut_, RID_CURSOR_DRAW_CIRCLE_CUT); + MAKE_CURSOR(PointerStyle::DrawEllipse, drawellipse_, RID_CURSOR_DRAW_ELLIPSE); + MAKE_CURSOR(PointerStyle::DrawConnect, drawconnect_, RID_CURSOR_DRAW_CONNECT); + MAKE_CURSOR(PointerStyle::DrawText, drawtext_, RID_CURSOR_DRAW_TEXT); + MAKE_CURSOR(PointerStyle::Mirror, mirror_, RID_CURSOR_MIRROR); + MAKE_CURSOR(PointerStyle::Crook, crook_, RID_CURSOR_CROOK); + MAKE_CURSOR(PointerStyle::Crop, crop_, RID_CURSOR_CROP); + MAKE_CURSOR(PointerStyle::MovePoint, movepoint_, RID_CURSOR_MOVE_POINT); + MAKE_CURSOR(PointerStyle::MoveBezierWeight, movebezierweight_, + RID_CURSOR_MOVE_BEZIER_WEIGHT); + MAKE_CURSOR(PointerStyle::DrawFreehand, drawfreehand_, RID_CURSOR_DRAW_FREEHAND); + MAKE_CURSOR(PointerStyle::DrawCaption, drawcaption_, RID_CURSOR_DRAW_CAPTION); + MAKE_CURSOR(PointerStyle::LinkData, linkdata_, RID_CURSOR_LINK_DATA); + MAKE_CURSOR(PointerStyle::MoveDataLink, movedlnk_, RID_CURSOR_MOVE_DATA_LINK); + MAKE_CURSOR(PointerStyle::CopyDataLink, copydlnk_, RID_CURSOR_COPY_DATA_LINK); + MAKE_CURSOR(PointerStyle::LinkFile, linkfile_, RID_CURSOR_LINK_FILE); + MAKE_CURSOR(PointerStyle::MoveFileLink, moveflnk_, RID_CURSOR_MOVE_FILE_LINK); + MAKE_CURSOR(PointerStyle::CopyFileLink, copyflnk_, RID_CURSOR_COPY_FILE_LINK); + MAKE_CURSOR(PointerStyle::Chart, chart_, RID_CURSOR_CHART); + MAKE_CURSOR(PointerStyle::Detective, detective_, RID_CURSOR_DETECTIVE); + MAKE_CURSOR(PointerStyle::PivotCol, pivotcol_, RID_CURSOR_PIVOT_COLUMN); + MAKE_CURSOR(PointerStyle::PivotRow, pivotrow_, RID_CURSOR_PIVOT_ROW); + MAKE_CURSOR(PointerStyle::PivotField, pivotfld_, RID_CURSOR_PIVOT_FIELD); + MAKE_CURSOR(PointerStyle::PivotDelete, pivotdel_, RID_CURSOR_PIVOT_DELETE); + MAKE_CURSOR(PointerStyle::Chain, chain_, RID_CURSOR_CHAIN); + MAKE_CURSOR(PointerStyle::ChainNotAllowed, chainnot_, RID_CURSOR_CHAIN_NOT_ALLOWED); + MAKE_CURSOR(PointerStyle::AutoScrollN, asn_, RID_CURSOR_AUTOSCROLL_N); + MAKE_CURSOR(PointerStyle::AutoScrollS, ass_, RID_CURSOR_AUTOSCROLL_S); + MAKE_CURSOR(PointerStyle::AutoScrollW, asw_, RID_CURSOR_AUTOSCROLL_W); + MAKE_CURSOR(PointerStyle::AutoScrollE, ase_, RID_CURSOR_AUTOSCROLL_E); + MAKE_CURSOR(PointerStyle::AutoScrollNW, asnw_, RID_CURSOR_AUTOSCROLL_NW); + MAKE_CURSOR(PointerStyle::AutoScrollNE, asne_, RID_CURSOR_AUTOSCROLL_NE); + MAKE_CURSOR(PointerStyle::AutoScrollSW, assw_, RID_CURSOR_AUTOSCROLL_SW); + MAKE_CURSOR(PointerStyle::AutoScrollSE, asse_, RID_CURSOR_AUTOSCROLL_SE); + MAKE_CURSOR(PointerStyle::AutoScrollNS, asns_, RID_CURSOR_AUTOSCROLL_NS); + MAKE_CURSOR(PointerStyle::AutoScrollWE, aswe_, RID_CURSOR_AUTOSCROLL_WE); + MAKE_CURSOR(PointerStyle::AutoScrollNSWE, asnswe_, RID_CURSOR_AUTOSCROLL_NSWE); + MAKE_CURSOR(PointerStyle::TextVertical, vertcurs_, RID_CURSOR_TEXT_VERTICAL); + + MAKE_CURSOR(PointerStyle::TabSelectS, tblsels_, RID_CURSOR_TAB_SELECT_S); + MAKE_CURSOR(PointerStyle::TabSelectE, tblsele_, RID_CURSOR_TAB_SELECT_E); + MAKE_CURSOR(PointerStyle::TabSelectSE, tblselse_, RID_CURSOR_TAB_SELECT_SE); + MAKE_CURSOR(PointerStyle::TabSelectW, tblselw_, RID_CURSOR_TAB_SELECT_W); + MAKE_CURSOR(PointerStyle::TabSelectSW, tblselsw_, RID_CURSOR_TAB_SELECT_SW); - MAKE_CURSOR(PointerStyle::HideWhitespace, hidewhitespace_); - MAKE_CURSOR(PointerStyle::ShowWhitespace, showwhitespace_); + MAKE_CURSOR(PointerStyle::HideWhitespace, hidewhitespace_, RID_CURSOR_HIDE_WHITESPACE); + MAKE_CURSOR(PointerStyle::ShowWhitespace, showwhitespace_, RID_CURSOR_SHOW_WHITESPACE); - MAKE_CURSOR(PointerStyle::FatCross, fatcross_); + MAKE_CURSOR(PointerStyle::FatCross, fatcross_, RID_CURSOR_FATCROSS); default: break; } diff -Nru libreoffice-7.5.1~rc2/vcl/qt5/QtFrame.cxx libreoffice-7.5.2~rc2/vcl/qt5/QtFrame.cxx --- libreoffice-7.5.1~rc2/vcl/qt5/QtFrame.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/qt5/QtFrame.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -768,7 +768,11 @@ if (isWindow() && !(nFlags & SalFrameToTop::GrabFocusOnly)) pWidget->raise(); if ((nFlags & SalFrameToTop::RestoreWhenMin) || (nFlags & SalFrameToTop::ForegroundTask)) + { + if (nFlags & SalFrameToTop::RestoreWhenMin) + pWidget->setWindowState(pWidget->windowState() & ~Qt::WindowMinimized); pWidget->activateWindow(); + } else if ((nFlags & SalFrameToTop::GrabFocus) || (nFlags & SalFrameToTop::GrabFocusOnly)) { if (!(nFlags & SalFrameToTop::GrabFocusOnly)) diff -Nru libreoffice-7.5.1~rc2/vcl/qt5/QtGraphics_Controls.cxx libreoffice-7.5.2~rc2/vcl/qt5/QtGraphics_Controls.cxx --- libreoffice-7.5.1~rc2/vcl/qt5/QtGraphics_Controls.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/qt5/QtGraphics_Controls.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -23,6 +23,7 @@ #include #include #include +#include #include #include @@ -39,7 +40,9 @@ { QStyle::State nState = ((nControlState & ControlState::ENABLED) ? QStyle::State_Enabled : QStyle::State_None) - | ((nControlState & ControlState::FOCUSED) ? QStyle::State_HasFocus : QStyle::State_None) + | ((nControlState & ControlState::FOCUSED) + ? QStyle::State_HasFocus | QStyle::State_KeyboardFocusChange + : QStyle::State_None) | ((nControlState & ControlState::PRESSED) ? QStyle::State_Sunken : QStyle::State_None) | ((nControlState & ControlState::SELECTED) ? QStyle::State_Selected : QStyle::State_None) | ((nControlState & ControlState::ROLLOVER) ? QStyle::State_MouseOver @@ -129,9 +132,10 @@ return false; } -inline int QtGraphics_Controls::pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option) +inline int QtGraphics_Controls::pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option, + const QWidget* pWidget) { - return QApplication::style()->pixelMetric(metric, option); + return QApplication::style()->pixelMetric(metric, option, pWidget); } inline QSize QtGraphics_Controls::sizeFromContents(QStyle::ContentsType type, @@ -283,7 +287,6 @@ break; } [[fallthrough]]; // QPalette::Window - case ControlType::Frame: case ControlType::Menubar: case ControlType::WindowBackground: m_image->fill(QApplication::palette().color(QPalette::Window).rgb()); @@ -759,6 +762,30 @@ int nRight = qMax(nLine, upscale(fo.rect.right() - aSubRect.right(), Round::Ceil)); int nBottom = qMax(nLine, upscale(fo.rect.bottom() - aSubRect.bottom(), Round::Ceil)); boundingRect.adjust(nLeft, nTop, nRight, nBottom); + + // tdf#150451: ensure a minimium size that fits text content + frame at top and bottom. + // Themes may use the widget type for determining the actual frame width to use, + // so pass a dummy QLineEdit + // + // NOTE: This is currently only done here for the minimum size calculation and + // not above because the handling for edit boxes here and in the calling code + // currently does all kinds of "interesting" things like doing extra size adjustments + // or passing the content rect where the bounding rect would be expected,... + // Ideally this should be cleaned up in the callers and all platform integrations + // to adhere to what the doc in vcl/inc/WidgetDrawInterface.hxx says, but this + // here keeps it working with existing code for now. + // (s.a. discussion in https://gerrit.libreoffice.org/c/core/+/146516 for more details) + QLineEdit aDummyEdit; + const int nFrameWidth = pixelMetric(QStyle::PM_DefaultFrameWidth, nullptr, &aDummyEdit); + QFontMetrics aFontMetrics(QApplication::font()); + const int minHeight = upscale(aFontMetrics.height() + 2 * nFrameWidth, Round::Floor); + if (boundingRect.height() < minHeight) + { + const int nDiff = minHeight - boundingRect.height(); + boundingRect.setHeight(boundingRect.height() + nDiff); + contentRect.setHeight(contentRect.height() + nDiff); + } + retVal = true; break; } diff -Nru libreoffice-7.5.1~rc2/vcl/skia/skia_denylist_vulkan.xml libreoffice-7.5.2~rc2/vcl/skia/skia_denylist_vulkan.xml --- libreoffice-7.5.1~rc2/vcl/skia/skia_denylist_vulkan.xml 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/skia/skia_denylist_vulkan.xml 2023-03-24 16:53:38.000000000 +0000 @@ -45,6 +45,9 @@ + + + diff -Nru libreoffice-7.5.1~rc2/vcl/source/animate/Animation.cxx libreoffice-7.5.2~rc2/vcl/source/animate/Animation.cxx --- libreoffice-7.5.1~rc2/vcl/source/animate/Animation.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/animate/Animation.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -328,7 +328,7 @@ { Stop(); mbLoopTerminated = true; - mnFrameIndex = mnAnimCount - 1; + mnFrameIndex = maFrames.size() - 1; maBitmapEx = maFrames[mnFrameIndex]->maBitmapEx; return; } diff -Nru libreoffice-7.5.1~rc2/vcl/source/app/salvtables.cxx libreoffice-7.5.2~rc2/vcl/source/app/salvtables.cxx --- libreoffice-7.5.1~rc2/vcl/source/app/salvtables.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/app/salvtables.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -473,7 +473,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(); } @@ -481,7 +481,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) { diff -Nru libreoffice-7.5.1~rc2/vcl/source/app/settings.cxx libreoffice-7.5.2~rc2/vcl/source/app/settings.cxx --- libreoffice-7.5.1~rc2/vcl/source/app/settings.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/app/settings.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -2257,12 +2257,23 @@ mxData->maDarkShadowColor = COL_BLACK; if ( rColor != COL_LIGHTGRAY ) { - mxData->maLightColor = rColor; - mxData->maShadowColor = rColor; - mxData->maDarkShadowColor=rColor; - mxData->maLightColor.IncreaseLuminance( 64 ); - mxData->maShadowColor.DecreaseLuminance( 64 ); - mxData->maDarkShadowColor.DecreaseLuminance( 100 ); + mxData->maLightColor = rColor; + mxData->maShadowColor = rColor; + mxData->maDarkShadowColor = rColor; + + if (!rColor.IsDark()) + { + mxData->maLightColor.IncreaseLuminance(64); + mxData->maShadowColor.DecreaseLuminance(64); + mxData->maDarkShadowColor.DecreaseLuminance(100); + } + else + { + mxData->maLightColor.DecreaseLuminance(64); + mxData->maShadowColor.IncreaseLuminance(64); + mxData->maDarkShadowColor.IncreaseLuminance(100); + } + sal_uLong nRed = mxData->maLightColor.GetRed(); sal_uLong nGreen = mxData->maLightColor.GetGreen(); sal_uLong nBlue = mxData->maLightColor.GetBlue(); diff -Nru libreoffice-7.5.1~rc2/vcl/source/bitmap/BitmapFastScaleFilter.cxx libreoffice-7.5.2~rc2/vcl/source/bitmap/BitmapFastScaleFilter.cxx --- libreoffice-7.5.1~rc2/vcl/source/bitmap/BitmapFastScaleFilter.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/bitmap/BitmapFastScaleFilter.cxx 2023-03-24 16:53:38.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.5.1~rc2/vcl/source/control/calendar.cxx libreoffice-7.5.2~rc2/vcl/source/control/calendar.cxx --- libreoffice-7.5.1~rc2/vcl/source/control/calendar.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/control/calendar.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1724,4 +1724,11 @@ } } +// tdf#142783 consider the Edit and its DropDown as one compound control for the purpose of +// notification of loss of focus from the control +bool CalendarField::FocusWindowBelongsToControl(const vcl::Window* pFocusWin) const +{ + return DateField::FocusWindowBelongsToControl(pFocusWin) || (mpFloatWin && mpFloatWin->ImplIsWindowOrChild(pFocusWin)); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.5.1~rc2/vcl/source/control/ctrl.cxx libreoffice-7.5.2~rc2/vcl/source/control/ctrl.cxx --- libreoffice-7.5.1~rc2/vcl/source/control/ctrl.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/control/ctrl.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -223,6 +223,11 @@ return mxLayoutData ? mxLayoutData->m_aDisplayText : GetText(); } +bool Control::FocusWindowBelongsToControl(const vcl::Window* pFocusWin) const +{ + return ImplIsWindowOrChild(pFocusWin); +} + bool Control::EventNotify( NotifyEvent& rNEvt ) { if ( rNEvt.GetType() == NotifyEventType::GETFOCUS ) @@ -241,7 +246,7 @@ if ( rNEvt.GetType() == NotifyEventType::LOSEFOCUS ) { vcl::Window* pFocusWin = Application::GetFocusWindow(); - if ( !pFocusWin || !ImplIsWindowOrChild( pFocusWin ) ) + if ( !pFocusWin || !FocusWindowBelongsToControl(pFocusWin) ) { mbHasControlFocus = false; CompatStateChanged( StateChangedType::ControlFocus ); diff -Nru libreoffice-7.5.1~rc2/vcl/source/control/field2.cxx libreoffice-7.5.2~rc2/vcl/source/control/field2.cxx --- libreoffice-7.5.1~rc2/vcl/source/control/field2.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/control/field2.cxx 2023-03-24 16:53:38.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.5.1~rc2/vcl/source/control/imp_listbox.cxx libreoffice-7.5.2~rc2/vcl/source/control/imp_listbox.cxx --- libreoffice-7.5.1~rc2/vcl/source/control/imp_listbox.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/control/imp_listbox.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -2537,25 +2537,6 @@ pThis->ImplDraw(*pThis->GetOutDev(), true); } -bool ImplWin::PreNotify( NotifyEvent& rNEvt ) -{ - if( rNEvt.GetType() == NotifyEventType::MOUSEMOVE ) - { - const MouseEvent* pMouseEvt = rNEvt.GetMouseEvent(); - if( pMouseEvt && (pMouseEvt->IsEnterWindow() || pMouseEvt->IsLeaveWindow()) ) - { - // trigger redraw as mouse over state has changed - if ( IsNativeControlSupported(ControlType::Listbox, ControlPart::Entire) - && ! IsNativeControlSupported(ControlType::Listbox, ControlPart::ButtonDown) ) - { - GetParent()->GetWindow( GetWindowType::Border )->Invalidate( InvalidateFlags::NoErase ); - } - } - } - - return Control::PreNotify(rNEvt); -} - void ImplWin::ImplDraw(vcl::RenderContext& rRenderContext, bool bLayout) { const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); @@ -2591,14 +2572,17 @@ Point aPoint( -nLeft, -nTop ); tools::Rectangle aCtrlRegion( aPoint - GetPosPixel(), pWin->GetSizePixel() ); - bool bMouseOver = false; - vcl::Window *pChild = pWin->GetWindow( GetWindowType::FirstChild ); - while( pChild ) + bool bMouseOver = pWin->IsMouseOver(); + if (!bMouseOver) { - bMouseOver = pChild->IsMouseOver(); - if (bMouseOver) - break; - pChild = pChild->GetWindow( GetWindowType::Next ); + vcl::Window *pChild = pWin->GetWindow( GetWindowType::FirstChild ); + while( pChild ) + { + bMouseOver = pChild->IsMouseOver(); + if (bMouseOver) + break; + pChild = pChild->GetWindow( GetWindowType::Next ); + } } if( bMouseOver ) nState |= ControlState::ROLLOVER; diff -Nru libreoffice-7.5.1~rc2/vcl/source/control/listbox.cxx libreoffice-7.5.2~rc2/vcl/source/control/listbox.cxx --- libreoffice-7.5.1~rc2/vcl/source/control/listbox.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/control/listbox.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -891,6 +891,20 @@ } } + if (rNEvt.GetType() == NotifyEventType::MOUSEMOVE) + { + const MouseEvent* pMouseEvt = rNEvt.GetMouseEvent(); + if (pMouseEvt && (pMouseEvt->IsEnterWindow() || pMouseEvt->IsLeaveWindow())) + { + // trigger redraw as mouse over state has changed + if (IsNativeControlSupported(ControlType::Listbox, ControlPart::Entire) + && !IsNativeControlSupported(ControlType::Listbox, ControlPart::ButtonDown)) + { + GetWindow(GetWindowType::Border)->Invalidate(InvalidateFlags::NoErase); + } + } + } + return bDone || Control::PreNotify( rNEvt ); } diff -Nru libreoffice-7.5.1~rc2/vcl/source/control/roadmapwizard.cxx libreoffice-7.5.2~rc2/vcl/source/control/roadmapwizard.cxx --- libreoffice-7.5.1~rc2/vcl/source/control/roadmapwizard.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/control/roadmapwizard.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -470,7 +470,7 @@ GetOrCreatePage(nState); } - OString sIdent(OString::number(nState)); + OString sIdent(getPageIdentForState(nState)); m_xAssistant->set_page_index(sIdent, nItemIndex); m_xAssistant->set_page_title(sIdent, getStateDisplayName(nState)); @@ -639,9 +639,9 @@ IMPL_LINK(RoadmapWizardMachine, OnRoadmapItemSelected, const OString&, rCurItemId, bool) { - int nCurItemId = rCurItemId.toInt32(); + WizardTypes::WizardState nSelectedState = getStateFromPageIdent(rCurItemId); - if ( nCurItemId == getCurrentState() ) + if (nSelectedState == getCurrentState()) // nothing to do return false; @@ -651,7 +651,7 @@ WizardTravelSuspension aTravelGuard( *this ); sal_Int32 nCurrentIndex = m_pImpl->getStateIndexInPath( getCurrentState(), m_pImpl->nActivePath ); - sal_Int32 nNewIndex = m_pImpl->getStateIndexInPath( nCurItemId, m_pImpl->nActivePath ); + sal_Int32 nNewIndex = m_pImpl->getStateIndexInPath( nSelectedState, m_pImpl->nActivePath ); DBG_ASSERT( ( nCurrentIndex != -1 ) && ( nNewIndex != -1 ), "RoadmapWizard::OnRoadmapItemSelected: something's wrong here!" ); @@ -663,8 +663,8 @@ bool bResult = true; if ( nNewIndex > nCurrentIndex ) { - bResult = skipUntil( static_cast(nCurItemId) ); - WizardTypes::WizardState nTemp = static_cast(nCurItemId); + bResult = skipUntil(nSelectedState); + WizardTypes::WizardState nTemp = nSelectedState; while( nTemp ) { if( m_pImpl->aDisabledStates.find( --nTemp ) != m_pImpl->aDisabledStates.end() ) @@ -672,7 +672,7 @@ } } else - bResult = skipBackwardUntil( static_cast(nCurItemId) ); + bResult = skipBackwardUntil(nSelectedState); return bResult; } @@ -746,7 +746,7 @@ } // if the state is currently in the roadmap, reflect it's new status - m_xAssistant->set_page_sensitive(OString::number(_nState), _bEnable); + m_xAssistant->set_page_sensitive(getPageIdentForState(_nState), _bEnable); } bool RoadmapWizardMachine::knowsState( WizardTypes::WizardState i_nState ) const diff -Nru libreoffice-7.5.1~rc2/vcl/source/control/wizardmachine.cxx libreoffice-7.5.2~rc2/vcl/source/control/wizardmachine.cxx --- libreoffice-7.5.1~rc2/vcl/source/control/wizardmachine.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/control/wizardmachine.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -893,6 +893,16 @@ implUpdateTitle(); } + OString WizardMachine::getPageIdentForState(WizardTypes::WizardState nState) const + { + return OString::number(nState); + } + + WizardTypes::WizardState WizardMachine::getStateFromPageIdent(const OString& rIdent) const + { + return rIdent.toInt32(); + } + BuilderPage* WizardMachine::GetOrCreatePage( const WizardTypes::WizardState i_nState ) { if ( nullptr == GetPage( i_nState ) ) @@ -1174,7 +1184,7 @@ if (pOldTabPage) pOldTabPage->Deactivate(); - m_xAssistant->set_current_page(OString::number(nState)); + m_xAssistant->set_current_page(getPageIdentForState(nState)); m_pCurTabPage = GetPage(m_nCurState); m_pCurTabPage->Activate(); diff -Nru libreoffice-7.5.1~rc2/vcl/source/filter/ipdf/pdfdocument.cxx libreoffice-7.5.2~rc2/vcl/source/filter/ipdf/pdfdocument.cxx --- libreoffice-7.5.1~rc2/vcl/source/filter/ipdf/pdfdocument.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/filter/ipdf/pdfdocument.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -3248,6 +3248,18 @@ } else if (auto pReference = dynamic_cast(pCurrentElement)) { + // Handle previously stored number + if (aNumbers.size() > 2) + { + aNumbers.resize(aNumbers.size() - 2); + if (pParsingArray) + { + for (auto& pNumber : aNumbers) + pParsingArray->PushBack(pNumber); + } + aNumbers.clear(); + } + if (pParsingArray) { pParsingArray->PushBack(pReference); @@ -3268,6 +3280,17 @@ } else if (auto pLiteralString = dynamic_cast(pCurrentElement)) { + // Handle previously stored number + if (!aNumbers.empty()) + { + if (pParsingArray) + { + for (auto& pNumber : aNumbers) + pParsingArray->PushBack(pNumber); + } + aNumbers.clear(); + } + if (pParsingArray) { pParsingArray->PushBack(pLiteralString); @@ -3285,6 +3308,17 @@ } else if (auto pBoolean = dynamic_cast(pCurrentElement)) { + // Handle previously stored number + if (!aNumbers.empty()) + { + if (pParsingArray) + { + for (auto& pNumber : aNumbers) + pParsingArray->PushBack(pNumber); + } + aNumbers.clear(); + } + if (pParsingArray) { pParsingArray->PushBack(pBoolean); @@ -3302,6 +3336,17 @@ } else if (auto pHexString = dynamic_cast(pCurrentElement)) { + // Handle previously stored number + if (!aNumbers.empty()) + { + if (pParsingArray) + { + for (auto& pNumber : aNumbers) + pParsingArray->PushBack(pNumber); + } + aNumbers.clear(); + } + if (pParsingArray) { pParsingArray->PushBack(pHexString); diff -Nru libreoffice-7.5.1~rc2/vcl/source/filter/itiff/itiff.cxx libreoffice-7.5.2~rc2/vcl/source/filter/itiff/itiff.cxx --- libreoffice-7.5.1~rc2/vcl/source/filter/itiff/itiff.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/filter/itiff/itiff.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -38,11 +38,13 @@ struct Context { SvStream& rStream; + tsize_t nStart; tsize_t nSize; bool bAllowOneShortRead; - Context(SvStream& rInStream, tsize_t nInSize) + Context(SvStream& rInStream) : rStream(rInStream) - , nSize(nInSize) + , nStart(rInStream.Tell()) + , nSize(rInStream.remainingSize()) , bAllowOneShortRead(false) { } @@ -76,9 +78,10 @@ switch (whence) { case SEEK_SET: + offset = pContext->nStart + offset; break; case SEEK_CUR: - offset = pContext->rStream.Tell() + offset;; + offset = pContext->rStream.Tell() + offset; break; case SEEK_END: offset = pContext->rStream.TellEnd() + offset; @@ -90,7 +93,7 @@ pContext->rStream.Seek(offset); - return offset; + return offset - pContext->nStart; } static int tiff_close(thandle_t) @@ -113,7 +116,7 @@ TIFFSetWarningHandler(origWarningHandler); }); - Context aContext(rTIFF, rTIFF.remainingSize()); + Context aContext(rTIFF); TIFF* tif = TIFFClientOpen("libtiff-svstream", "r", &aContext, tiff_read, tiff_write, tiff_seek, tiff_close, diff -Nru libreoffice-7.5.1~rc2/vcl/source/gdi/TypeSerializer.cxx libreoffice-7.5.2~rc2/vcl/source/gdi/TypeSerializer.cxx --- libreoffice-7.5.1~rc2/vcl/source/gdi/TypeSerializer.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/gdi/TypeSerializer.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -440,8 +440,6 @@ { if (!rScale.IsValid()) return true; - if (TooLargeScaleForMapMode(rScale, 96)) - return true; if (static_cast(rScale) < 0.0) return true; return false; diff -Nru libreoffice-7.5.1~rc2/vcl/source/outdev/textline.cxx libreoffice-7.5.2~rc2/vcl/source/outdev/textline.cxx --- libreoffice-7.5.1~rc2/vcl/source/outdev/textline.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/outdev/textline.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -996,14 +996,13 @@ tools::Long nStartY = aStartPt.Y(); tools::Long nEndX = aEndPt.X(); tools::Long nEndY = aEndPt.Y(); - double fOrientation = 0.0; + auto nOrientation = mpFontInstance->mnOrientation; // handle rotation - if (nStartY != nEndY || nStartX > nEndX) + if (nOrientation) { - fOrientation = basegfx::rad2deg(std::atan2(nStartY - nEndY, nEndX - nStartX)); // un-rotate the end point - aStartPt.RotateAround(nEndX, nEndY, Degree10(static_cast(-fOrientation * 10.0))); + aStartPt.RotateAround(nEndX, nEndY, nOrientation); } // Handle HiDPI @@ -1030,7 +1029,9 @@ nLineWidth = 0; } - if ( fOrientation == 0.0 ) + // The code below does not work for RTL text, that is what nEndX > nStartX + // check is for. + if ( nOrientation == 0_deg10 && nEndX > nStartX ) { static vcl::DeleteOnDeinit< WavyLineCache > snLineCache {}; if ( !snLineCache.get() ) @@ -1049,7 +1050,7 @@ pVirtDev->SetBackground( Wallpaper( COL_TRANSPARENT ) ); pVirtDev->Erase(); pVirtDev->SetAntialiasing( AntialiasingFlags::Enable ); - pVirtDev->ImplDrawWaveLineBezier( 0, 0, nWordLength, 0, nWaveHeight, fOrientation, nLineWidth ); + pVirtDev->ImplDrawWaveLineBezier( 0, 0, nWordLength, 0, nWaveHeight, nOrientation, nLineWidth ); BitmapEx aBitmapEx(pVirtDev->GetBitmapEx(Point(0, 0), pVirtDev->GetOutputSize())); // Ideally we don't need this block, but in the split rgb surface + separate alpha surface @@ -1070,10 +1071,10 @@ return; } - ImplDrawWaveLineBezier( nStartX, nStartY, nEndX, nEndY, nWaveHeight, fOrientation, nLineWidth ); + ImplDrawWaveLineBezier( nStartX, nStartY, nEndX, nEndY, nWaveHeight, nOrientation, nLineWidth ); } -void OutputDevice::ImplDrawWaveLineBezier(tools::Long nStartX, tools::Long nStartY, tools::Long nEndX, tools::Long nEndY, tools::Long nWaveHeight, double fOrientation, tools::Long nLineWidth) +void OutputDevice::ImplDrawWaveLineBezier(tools::Long nStartX, tools::Long nStartY, tools::Long nEndX, tools::Long nEndY, tools::Long nWaveHeight, Degree10 nOrientation, tools::Long nLineWidth) { // we need a graphics if( !mpGraphics && !AcquireGraphics() ) @@ -1091,7 +1092,7 @@ const basegfx::B2DRectangle aWaveLineRectangle(nStartX, nStartY, nEndX, nEndY + nWaveHeight); const basegfx::B2DPolygon aWaveLinePolygon = basegfx::createWaveLinePolygon(aWaveLineRectangle); - const basegfx::B2DHomMatrix aRotationMatrix = basegfx::utils::createRotateAroundPoint(nStartX, nStartY, basegfx::deg2rad(-fOrientation)); + const basegfx::B2DHomMatrix aRotationMatrix = basegfx::utils::createRotateAroundPoint(nStartX, nStartY, toRadians(nOrientation)); const bool bPixelSnapHairline(mnAntialiasing & AntialiasingFlags::PixelSnapHairline); mpGraphics->SetLineColor(GetLineColor()); @@ -1108,7 +1109,7 @@ *this); if( mpAlphaVDev ) - mpAlphaVDev->ImplDrawWaveLineBezier(nStartX, nStartY, nEndX, nEndY, nWaveHeight, fOrientation, nLineWidth); + mpAlphaVDev->ImplDrawWaveLineBezier(nStartX, nStartY, nEndX, nEndY, nWaveHeight, nOrientation, nLineWidth); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.5.1~rc2/vcl/source/window/settings.cxx libreoffice-7.5.2~rc2/vcl/source/window/settings.cxx --- libreoffice-7.5.1~rc2/vcl/source/window/settings.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/window/settings.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -85,9 +85,14 @@ if ( mpWindowImpl->mpBorderWindow ) { mpWindowImpl->mpBorderWindow->UpdateSettings( rSettings ); - if ( (mpWindowImpl->mpBorderWindow->GetType() == WindowType::BORDERWINDOW) && - static_cast(mpWindowImpl->mpBorderWindow.get())->mpMenuBarWindow ) - static_cast(mpWindowImpl->mpBorderWindow.get())->mpMenuBarWindow->UpdateSettings( rSettings, true ); + if (mpWindowImpl->mpBorderWindow->GetType() == WindowType::BORDERWINDOW) + { + ImplBorderWindow* pImpl = static_cast(mpWindowImpl->mpBorderWindow.get()); + if (pImpl->mpMenuBarWindow) + pImpl->mpMenuBarWindow->UpdateSettings(rSettings, true); + if (pImpl->mpNotebookBar) + pImpl->mpNotebookBar->UpdateSettings(rSettings, true); + } } AllSettings aOldSettings(*mpWindowImpl->mxOutDev->moSettings); diff -Nru libreoffice-7.5.1~rc2/vcl/source/window/window2.cxx libreoffice-7.5.2~rc2/vcl/source/window/window2.cxx --- libreoffice-7.5.1~rc2/vcl/source/window/window2.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/source/window/window2.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -341,9 +341,15 @@ { if (!mpWindowImpl) return false; - return (mpWindowImpl->mbUseFrameData ? - mpWindowImpl->mpFrameData->mpTrackWin == this : - ImplGetSVData()->mpWinData->mpTrackWin == this); + if (mpWindowImpl->mbUseFrameData && mpWindowImpl->mpFrameData) + { + return mpWindowImpl->mpFrameData->mpTrackWin == this; + } + if (!mpWindowImpl->mbUseFrameData && ImplGetSVData()->mpWinData) + { + return ImplGetSVData()->mpWinData->mpTrackWin == this; + } + return false; } void Window::StartAutoScroll( StartAutoScrollFlags nFlags ) diff -Nru libreoffice-7.5.1~rc2/vcl/unx/generic/fontmanager/fontmanager.cxx libreoffice-7.5.2~rc2/vcl/unx/generic/fontmanager/fontmanager.cxx --- libreoffice-7.5.1~rc2/vcl/unx/generic/fontmanager/fontmanager.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/unx/generic/fontmanager/fontmanager.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -419,8 +419,11 @@ eEncoding = RTL_TEXTENCODING_UTF8; break; default: - if (o3tl::starts_with(aName, "Khmer OS")) + if (o3tl::starts_with(aName, "Khmer OS") || + o3tl::starts_with(aName, "YoavKtav Black")) // tdf#152278 + { eEncoding = RTL_TEXTENCODING_UTF8; + } SAL_WARN_IF(eEncoding == RTL_TEXTENCODING_DONTKNOW, "vcl.fonts", "Unimplemented mac encoding " << rNameRecord.encodingID << " to unicode conversion for fontname " << aName); break; } diff -Nru libreoffice-7.5.1~rc2/vcl/unx/generic/gdi/cairotextrender.cxx libreoffice-7.5.2~rc2/vcl/unx/generic/gdi/cairotextrender.cxx --- libreoffice-7.5.1~rc2/vcl/unx/generic/gdi/cairotextrender.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/unx/generic/gdi/cairotextrender.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -294,7 +294,10 @@ if (bResolutionIndependentLayoutEnabled) { cairo_font_options_merge(pOptions, mpRoundGlyphPosOffOptions); - cairo_font_options_set_hint_metrics(pOptions, CAIRO_HINT_METRICS_OFF); + // tdf#153699 skip this with cairo 1.17.8 as it has a problem + // See: https://gitlab.freedesktop.org/cairo/cairo/-/issues/643 + if (cairo_version() != CAIRO_VERSION_ENCODE(1,17,8)) + cairo_font_options_set_hint_metrics(pOptions, CAIRO_HINT_METRICS_OFF); } cairo_set_font_options(cr, pOptions); cairo_font_options_destroy(pOptions); diff -Nru libreoffice-7.5.1~rc2/vcl/unx/gtk3/gtkinst.cxx libreoffice-7.5.2~rc2/vcl/unx/gtk3/gtkinst.cxx --- libreoffice-7.5.1~rc2/vcl/unx/gtk3/gtkinst.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/vcl/unx/gtk3/gtkinst.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -3122,12 +3122,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)), @@ -11722,6 +11722,38 @@ #endif return eRet; } + + // tdf#153885 for wayland if the popover window is the application + // window, contrain it within the application window so it won't + // be cut off off screen. Leave dialog hosted ones alone, like + // format, watermark, which are likely presented in the middle + // of the screen and are too small to constrain the popover inside. + void ConstrainApplicationWindowPopovers(GtkToggleButton* pItem) + { +#if defined(GDK_WINDOWING_WAYLAND) + GdkDisplay *pDisplay = gtk_widget_get_display(GTK_WIDGET(pItem)); + if (DLSYM_GDK_IS_WAYLAND_DISPLAY(pDisplay) && GTK_IS_MENU_BUTTON(pItem)) + { + GtkMenuButton* pMenuButton = GTK_MENU_BUTTON(pItem); + if (GtkPopover* pPopover = gtk_menu_button_get_popover(pMenuButton)) + { + if (gtk_popover_get_constrain_to(pPopover) == GTK_POPOVER_CONSTRAINT_NONE) + { + GtkWidget* pTopLevel = widget_get_toplevel(GTK_WIDGET(pItem)); + GtkSalFrame* pFrame = pTopLevel ? GtkSalFrame::getFromWindow(pTopLevel) : nullptr; + if (pFrame) + { + // the toplevel is an application window + gtk_popover_set_constrain_to(pPopover, GTK_POPOVER_CONSTRAINT_WINDOW); + } + } + } + } +#else + (void)pItem; +#endif + } + #endif } @@ -11880,6 +11912,9 @@ static void signalItemToggled(GtkToggleButton* pItem, gpointer widget) { +#if !GTK_CHECK_VERSION(4, 0, 0) + ConstrainApplicationWindowPopovers(pItem); +#endif GtkInstanceToolbar* pThis = static_cast(widget); SolarMutexGuard aGuard; pThis->signal_item_toggled(pItem); diff -Nru libreoffice-7.5.1~rc2/winaccessibility/inc/AccObjectWinManager.hxx libreoffice-7.5.2~rc2/winaccessibility/inc/AccObjectWinManager.hxx --- libreoffice-7.5.1~rc2/winaccessibility/inc/AccObjectWinManager.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/winaccessibility/inc/AccObjectWinManager.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -102,8 +102,8 @@ LRESULT Get_ToATInterface(HWND hWnd, long lParam, WPARAM wParam); - void DecreaseState( css::accessibility::XAccessible* pXAcc,unsigned short pState ); - void IncreaseState( css::accessibility::XAccessible* pXAcc,unsigned short pState ); + void DecreaseState(css::accessibility::XAccessible* pXAcc, sal_Int64 nState); + void IncreaseState(css::accessibility::XAccessible* pXAcc, sal_Int64 nState); void UpdateState( css::accessibility::XAccessible* pXAcc ); void SetValue( css::accessibility::XAccessible* pXAcc, css::uno::Any pAny ); diff -Nru libreoffice-7.5.1~rc2/winaccessibility/source/service/AccObjectWinManager.cxx libreoffice-7.5.2~rc2/winaccessibility/source/service/AccObjectWinManager.cxx --- libreoffice-7.5.1~rc2/winaccessibility/source/service/AccObjectWinManager.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/winaccessibility/source/service/AccObjectWinManager.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -796,11 +796,11 @@ * @param pState Changed state. * @return */ -void AccObjectWinManager::DecreaseState( XAccessible* pXAcc,unsigned short pState ) +void AccObjectWinManager::DecreaseState(XAccessible* pXAcc, sal_Int64 nState) { AccObject* pAccObj = GetAccObjByXAcc( pXAcc ); if( pAccObj ) - pAccObj->DecreaseState( pState ); + pAccObj->DecreaseState(nState); } /** @@ -811,11 +811,11 @@ * @param pState Changed state. * @return */ -void AccObjectWinManager::IncreaseState( XAccessible* pXAcc,unsigned short pState ) +void AccObjectWinManager::IncreaseState(XAccessible* pXAcc, sal_Int64 nState) { AccObject* pAccObj = GetAccObjByXAcc( pXAcc ); if( pAccObj ) - pAccObj->IncreaseState( pState ); + pAccObj->IncreaseState(nState); } void AccObjectWinManager::UpdateState( css::accessibility::XAccessible* pXAcc ) diff -Nru libreoffice-7.5.1~rc2/winaccessibility/source/UAccCOM/MAccessible.cxx libreoffice-7.5.2~rc2/winaccessibility/source/UAccCOM/MAccessible.cxx --- libreoffice-7.5.1~rc2/winaccessibility/source/UAccCOM/MAccessible.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/winaccessibility/source/UAccCOM/MAccessible.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -848,6 +848,7 @@ return S_FALSE; pvarChildren->vt = VT_DISPATCH; pvarChildren->pdispVal = varTmp[0].pdispVal; + pvarChildren->pdispVal->AddRef(); VariantClear(&varTmp[0]); m_pEnumVar->Reset(); break; Binary files /tmp/tmpkv9rolpt/e8weQOVFmU/libreoffice-7.5.1~rc2/writerfilter/qa/cppunittests/dmapper/data/content-control-data-binding-color.docx and /tmp/tmpkv9rolpt/JGQQGCVPiD/libreoffice-7.5.2~rc2/writerfilter/qa/cppunittests/dmapper/data/content-control-data-binding-color.docx differ diff -Nru libreoffice-7.5.1~rc2/writerfilter/qa/cppunittests/dmapper/DomainMapper_Impl.cxx libreoffice-7.5.2~rc2/writerfilter/qa/cppunittests/dmapper/DomainMapper_Impl.cxx --- libreoffice-7.5.1~rc2/writerfilter/qa/cppunittests/dmapper/DomainMapper_Impl.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/writerfilter/qa/cppunittests/dmapper/DomainMapper_Impl.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -301,6 +301,29 @@ // i.e. the date was from document.xml, which is considered outdated. CPPUNIT_ASSERT_EQUAL(OUString("4/26/2012"), xParagraph->getString()); } + +CPPUNIT_TEST_FIXTURE(Test, testContentControlDataBindingColor) +{ + // Given a document with an inline content control with data binding, placeholder char color is + // set to red, when loading that document: + loadFromURL(u"content-control-data-binding-color.docx"); + + // Then make sure that the placeholder char color is not in the document, since data binding is + // active: + uno::Reference xTextDocument(mxComponent, uno::UNO_QUERY); + uno::Reference xText = xTextDocument->getText(); + uno::Reference xCursor = xText->createTextCursor(); + xCursor->gotoEnd(/*bExpand=*/false); + xCursor->goLeft(/*nCount=*/1, /*bExpand=*/false); + uno::Reference xCursorProps(xCursor, uno::UNO_QUERY); + Color nColor; + CPPUNIT_ASSERT(xCursorProps->getPropertyValue("CharColor") >>= nColor); + // Without the accompanying fix in place, this test would have failed with: + // - Expected: rgba[ffffff00] + // - Actual : rgba[ff0000ff] + // i.e. the char color was red, not the default / automatic. + CPPUNIT_ASSERT_EQUAL(COL_AUTO, nColor); +} } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.5.1~rc2/writerfilter/source/dmapper/DomainMapper.cxx libreoffice-7.5.2~rc2/writerfilter/source/dmapper/DomainMapper.cxx --- libreoffice-7.5.1~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -779,8 +779,9 @@ { //looks a bit like a hack - and it is. The graphic import is split into the inline_inline part and //afterwards the adding of the binary data. - m_pImpl->GetGraphicImport( IMPORT_AS_DETECTED_INLINE )->attribute(nName, val); - m_pImpl->ImportGraphic( val.getProperties(), IMPORT_AS_DETECTED_INLINE ); + m_pImpl->m_eGraphicImportType = IMPORT_AS_DETECTED_INLINE; // really ??? + m_pImpl->GetGraphicImport()->attribute(nName, val); + m_pImpl->ImportGraphic(val.getProperties()); } break; case NS_ooxml::LN_Value_math_ST_Jc_centerGroup: @@ -1345,7 +1346,7 @@ } break; case NS_ooxml::LN_OfficeArtExtension_Decorative_val: - m_pImpl->GetGraphicImport(IMPORT_AS_DETECTED_ANCHOR)->attribute(nName, val); + m_pImpl->GetGraphicImport()->attribute(nName, val); break; default: SAL_WARN("writerfilter", "DomainMapper::lcl_attribute: unhandled token: " << nName); @@ -2497,15 +2498,14 @@ writerfilter::Reference::Pointer_t pProperties = rSprm.getProps(); if( pProperties ) { - GraphicImportType eGraphicType = + m_pImpl->m_eGraphicImportType = (NS_ooxml::LN_anchor_anchor == sal::static_int_cast(nSprmId)) ? IMPORT_AS_DETECTED_ANCHOR : IMPORT_AS_DETECTED_INLINE; - GraphicImportPtr pGraphicImport = - m_pImpl->GetGraphicImport(eGraphicType); + GraphicImportPtr pGraphicImport = m_pImpl->GetGraphicImport(); pProperties->resolve(*pGraphicImport); - m_pImpl->ImportGraphic(pProperties, eGraphicType); + m_pImpl->ImportGraphic(pProperties); if( !pGraphicImport->IsGraphic() ) { m_pImpl->ResetGraphicImport(); diff -Nru libreoffice-7.5.1~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx libreoffice-7.5.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx --- libreoffice-7.5.1~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -906,6 +906,13 @@ { // Data binding has a value for us, prefer that over the in-document value. xCursor->setString(*oData); + + // Such value is always a plain text string, remove the char style of the placeholder. + uno::Reference xPropertyState(xCursor, uno::UNO_QUERY); + if (xPropertyState.is()) + { + xPropertyState->setPropertyToDefault("CharStyleName"); + } } uno::Reference xContentControl( @@ -2302,11 +2309,14 @@ uno::Reference xCurrentNumberingRules(itNumberingRules->Value, uno::UNO_QUERY); if (xCurrentNumberingRules.is()) aCurrentNumberingName = xCurrentNumberingRules->getName(); - if (m_xPreviousParagraph.is()) + try + { + uno::Reference xPreviousNumberingRules(m_xPreviousParagraph->getPropertyValue("NumberingRules"), uno::UNO_QUERY_THROW); + aPreviousNumberingName = xPreviousNumberingRules->getName(); + } + catch (const uno::Exception&) { - uno::Reference xPreviousNumberingRules(m_xPreviousParagraph->getPropertyValue("NumberingRules"), uno::UNO_QUERY); - if (xPreviousNumberingRules.is()) - aPreviousNumberingName = xPreviousNumberingRules->getName(); + TOOLS_WARN_EXCEPTION("writerfilter", "DomainMapper_Impl::finishParagraph NumberingRules"); } } else if ( m_xPreviousParagraph->getPropertySetInfo()->hasPropertyByName("NumberingStyleName") && @@ -3706,15 +3716,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(); } @@ -8188,10 +8206,12 @@ m_aAnnotationPositions[ nAnnotationId ] = aAnnotationPosition; } -GraphicImportPtr const & DomainMapper_Impl::GetGraphicImport(GraphicImportType eGraphicImportType) +GraphicImportPtr const & DomainMapper_Impl::GetGraphicImport() { if(!m_pGraphicImport) - m_pGraphicImport = new GraphicImport( m_xComponentContext, m_xTextFactory, m_rDMapper, eGraphicImportType, m_aPositionOffsets, m_aAligns, m_aPositivePercentages ); + { + m_pGraphicImport = new GraphicImport(m_xComponentContext, m_xTextFactory, m_rDMapper, m_eGraphicImportType, m_aPositionOffsets, m_aAligns, m_aPositivePercentages); + } return m_pGraphicImport; } /*------------------------------------------------------------------------- @@ -8203,11 +8223,11 @@ } -void DomainMapper_Impl::ImportGraphic(const writerfilter::Reference< Properties >::Pointer_t& ref, GraphicImportType eGraphicImportType) +void DomainMapper_Impl::ImportGraphic(const writerfilter::Reference::Pointer_t& ref) { - GetGraphicImport(eGraphicImportType); - if( eGraphicImportType != IMPORT_AS_DETECTED_INLINE && eGraphicImportType != IMPORT_AS_DETECTED_ANCHOR ) - { + GetGraphicImport(); + if (m_eGraphicImportType != IMPORT_AS_DETECTED_INLINE && m_eGraphicImportType != IMPORT_AS_DETECTED_ANCHOR) + { // this appears impossible? //create the graphic ref->resolve( *m_pGraphicImport ); } @@ -8258,7 +8278,7 @@ uno::Reference xShape = m_pGraphicImport->GetXShapeObject(); UpdateEmbeddedShapeProps(xShape); - if (eGraphicImportType == IMPORT_AS_DETECTED_ANCHOR) + if (m_eGraphicImportType == IMPORT_AS_DETECTED_ANCHOR) { uno::Reference xEmbeddedProps(m_xEmbedded, uno::UNO_QUERY); xEmbeddedProps->setPropertyValue("AnchorType", uno::Any(text::TextContentAnchorType_AT_CHARACTER)); @@ -8283,7 +8303,7 @@ { bool bAppend = true; // workaround for images anchored to characters: add ZWSPs around the anchoring point - if ( eGraphicImportType != IMPORT_AS_DETECTED_INLINE && !m_aRedlines.top().empty() ) + if (m_eGraphicImportType != IMPORT_AS_DETECTED_INLINE && !m_aRedlines.top().empty()) { uno::Reference< text::XTextAppend > xTextAppend = m_aTextAppendStack.top().xTextAppend; if(xTextAppend.is()) @@ -8312,7 +8332,7 @@ if ( bAppend ) appendTextContent( xTextContent, uno::Sequence< beans::PropertyValue >() ); - if (eGraphicImportType == IMPORT_AS_DETECTED_ANCHOR && !m_aTextAppendStack.empty()) + if (m_eGraphicImportType == IMPORT_AS_DETECTED_ANCHOR && !m_aTextAppendStack.empty()) { // Remember this object is anchored to the current paragraph. AnchoredObjectInfo aInfo; @@ -8325,7 +8345,7 @@ } m_aTextAppendStack.top().m_aAnchoredObjects.push_back(aInfo); } - else if (eGraphicImportType == IMPORT_AS_DETECTED_INLINE) + else if (m_eGraphicImportType == IMPORT_AS_DETECTED_INLINE) { m_bParaWithInlineObject = true; diff -Nru libreoffice-7.5.1~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx libreoffice-7.5.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx --- libreoffice-7.5.1~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -820,10 +820,10 @@ return m_pSettingsTable; } - GraphicImportPtr const & GetGraphicImport( GraphicImportType eGraphicImportType ); + GraphicImportPtr const & GetGraphicImport(); void ResetGraphicImport(); // this method deletes the current m_pGraphicImport after import - void ImportGraphic(const writerfilter::Reference< Properties>::Pointer_t&, GraphicImportType eGraphicImportType ); + void ImportGraphic(const writerfilter::Reference::Pointer_t&); void InitTabStopFromStyle(const css::uno::Sequence& rInitTabStops); void IncorporateTabStop( const DeletableTabStop &aTabStop ); @@ -1154,6 +1154,7 @@ std::pair m_aAligns; /// ST_PositivePercentage values we received std::queue m_aPositivePercentages; + enum GraphicImportType m_eGraphicImportType = {}; bool isInIndexContext() const { return m_bStartIndex;} bool isInBibliographyContext() const { return m_bStartBibliography;} SmartTagHandler& getSmartTagHandler() { return m_aSmartTagHandler; } diff -Nru libreoffice-7.5.1~rc2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx libreoffice-7.5.2~rc2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx --- libreoffice-7.5.1~rc2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -1426,7 +1426,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.5.1~rc2/writerfilter/source/dmapper/GraphicImport.cxx libreoffice-7.5.2~rc2/writerfilter/source/dmapper/GraphicImport.cxx --- libreoffice-7.5.1~rc2/writerfilter/source/dmapper/GraphicImport.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/writerfilter/source/dmapper/GraphicImport.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -204,7 +204,7 @@ bool bYSizeValid; public: - GraphicImportType eGraphicImportType; + GraphicImportType & m_rGraphicImportType; DomainMapper& rDomainMapper; sal_Int32 nLeftPosition; @@ -272,12 +272,12 @@ std::optional m_oEffectExtentRight; std::optional m_oEffectExtentBottom; - GraphicImport_Impl(GraphicImportType eImportType, DomainMapper& rDMapper, std::pair& rPositionOffsets, std::pair& rAligns, std::queue& rPositivePercentages) : - nXSize(0) + GraphicImport_Impl(GraphicImportType & rImportType, DomainMapper& rDMapper, std::pair& rPositionOffsets, std::pair& rAligns, std::queue& rPositivePercentages) + : nXSize(0) ,bXSizeValid(false) ,nYSize(0) ,bYSizeValid(false) - ,eGraphicImportType( eImportType ) + ,m_rGraphicImportType(rImportType) ,rDomainMapper( rDMapper ) ,nLeftPosition(0) ,nTopPosition(0) @@ -315,11 +315,6 @@ ,m_rAligns(rAligns) ,m_rPositivePercentages(rPositivePercentages) { - if (eGraphicImportType == GraphicImportType::IMPORT_AS_DETECTED_INLINE - && !rDMapper.IsInShape()) - { - zOrder = 0; - } } void setXSize(sal_Int32 _nXSize) @@ -388,14 +383,19 @@ void applyZOrder(uno::Reference const & xGraphicObjectProperties) const { - if (zOrder >= 0) + sal_Int32 nZOrder = zOrder; + if (m_rGraphicImportType == GraphicImportType::IMPORT_AS_DETECTED_INLINE + && !rDomainMapper.IsInShape()) + { + nZOrder = 0; + } + if (nZOrder >= 0) { // tdf#120760 Send objects with behinddoc=true to the back. - sal_Int32 nZOrder = zOrder; if (bBehindDoc && rDomainMapper.IsInHeaderFooter()) nZOrder -= SAL_MAX_INT32; GraphicZOrderHelper* pZOrderHelper = rDomainMapper.graphicZOrderHelper(); - bool bOldStyle = eGraphicImportType == GraphicImportType::IMPORT_AS_DETECTED_INLINE; + bool const bOldStyle(m_rGraphicImportType == GraphicImportType::IMPORT_AS_DETECTED_INLINE); xGraphicObjectProperties->setPropertyValue(getPropertyName(PROP_Z_ORDER), uno::Any(pZOrderHelper->findZOrder(nZOrder, bOldStyle))); pZOrderHelper->addItem(xGraphicObjectProperties, nZOrder); @@ -456,14 +456,14 @@ GraphicImport::GraphicImport(uno::Reference xComponentContext, uno::Reference xTextFactory, DomainMapper& rDMapper, - GraphicImportType eImportType, + GraphicImportType & rImportType, std::pair& rPositionOffsets, std::pair& rAligns, std::queue& rPositivePercentages) : LoggedProperties("GraphicImport") , LoggedTable("GraphicImport") , LoggedStream("GraphicImport") -, m_pImpl(new GraphicImport_Impl(eImportType, rDMapper, rPositionOffsets, rAligns, rPositivePercentages)) +, m_pImpl(new GraphicImport_Impl(rImportType, rDMapper, rPositionOffsets, rAligns, rPositivePercentages)) , m_xComponentContext(std::move(xComponentContext)) , m_xTextFactory(std::move(xTextFactory)) { @@ -1015,7 +1015,7 @@ lcl_correctWord2007EffectExtent(nOOXAngle); } - if (m_pImpl->eGraphicImportType == IMPORT_AS_DETECTED_INLINE) + if (m_pImpl->m_rGraphicImportType == IMPORT_AS_DETECTED_INLINE) { if (nOOXAngle == 0) { @@ -1235,7 +1235,7 @@ m_pImpl->nBottomMargin = 0; } - if (bUseShape && m_pImpl->eGraphicImportType == IMPORT_AS_DETECTED_ANCHOR) + if (bUseShape && m_pImpl->m_rGraphicImportType == IMPORT_AS_DETECTED_ANCHOR) { // If we are here, this is a drawingML shape. For those, only dmapper (and not oox) knows the anchoring infos (just like for Writer pictures). // But they aren't Writer pictures, either (which are already handled above). @@ -1342,7 +1342,7 @@ aInteropGrabBag.update(m_pImpl->getInteropGrabBag()); xShapeProps->setPropertyValue("InteropGrabBag", uno::Any(aInteropGrabBag.getAsConstPropertyValueList())); } - else if (bUseShape && m_pImpl->eGraphicImportType == IMPORT_AS_DETECTED_INLINE) + else if (bUseShape && m_pImpl->m_rGraphicImportType == IMPORT_AS_DETECTED_INLINE) { uno::Reference< beans::XPropertySet > xShapeProps(m_xShape, uno::UNO_QUERY_THROW); m_pImpl->applyMargins(xShapeProps); @@ -1718,7 +1718,7 @@ uno::UNO_QUERY_THROW); xGraphicObjectProperties->setPropertyValue(getPropertyName(PROP_GRAPHIC), uno::Any(rxGraphic)); xGraphicObjectProperties->setPropertyValue(getPropertyName(PROP_ANCHOR_TYPE), - uno::Any( m_pImpl->eGraphicImportType == IMPORT_AS_DETECTED_ANCHOR ? + uno::Any( m_pImpl->m_rGraphicImportType == IMPORT_AS_DETECTED_ANCHOR ? text::TextContentAnchorType_AT_CHARACTER : text::TextContentAnchorType_AS_CHARACTER )); xGraphicObject.set( xGraphicObjectProperties, uno::UNO_QUERY_THROW ); @@ -1792,10 +1792,10 @@ xGraphicObjectProperties->setPropertyValue(getPropertyName( PROP_SIZE_PROTECTED ), uno::Any(true)); + xGraphicObjectProperties->setPropertyValue(getPropertyName(PROP_DECORATIVE), uno::Any(m_pImpl->bDecorative)); sal_Int32 nWidth = - m_pImpl->nLeftPosition; - if (m_pImpl->eGraphicImportType == IMPORT_AS_DETECTED_ANCHOR) + if (m_pImpl->m_rGraphicImportType == IMPORT_AS_DETECTED_ANCHOR) { - xGraphicObjectProperties->setPropertyValue(getPropertyName(PROP_DECORATIVE), uno::Any(m_pImpl->bDecorative)); //adjust margins if( (m_pImpl->nHoriOrient == text::HoriOrientation::LEFT && (m_pImpl->nHoriRelation == text::RelOrientation::PAGE_PRINT_AREA || @@ -1917,7 +1917,8 @@ } - if(m_pImpl->eGraphicImportType == IMPORT_AS_DETECTED_INLINE || m_pImpl->eGraphicImportType == IMPORT_AS_DETECTED_ANCHOR) + if (m_pImpl->m_rGraphicImportType == IMPORT_AS_DETECTED_INLINE + || m_pImpl->m_rGraphicImportType == IMPORT_AS_DETECTED_ANCHOR) { if( m_pImpl->getXSize() && m_pImpl->getYSize() ) xGraphicObjectProperties->setPropertyValue(getPropertyName(PROP_SIZE), diff -Nru libreoffice-7.5.1~rc2/writerfilter/source/dmapper/GraphicImport.hxx libreoffice-7.5.2~rc2/writerfilter/source/dmapper/GraphicImport.hxx --- libreoffice-7.5.1~rc2/writerfilter/source/dmapper/GraphicImport.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/writerfilter/source/dmapper/GraphicImport.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -84,7 +84,7 @@ explicit GraphicImport( css::uno::Reference xComponentContext, css::uno::Reference xTextFactory, DomainMapper& rDomainMapper, - GraphicImportType eGraphicImportType, + GraphicImportType & rGraphicImportType, std::pair& rPositionOffsets, std::pair& rAligns, std::queue& rPositivePercentages); diff -Nru libreoffice-7.5.1~rc2/xmloff/inc/xmlprop.hxx libreoffice-7.5.2~rc2/xmloff/inc/xmlprop.hxx --- libreoffice-7.5.1~rc2/xmloff/inc/xmlprop.hxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/xmloff/inc/xmlprop.hxx 2023-03-24 16:53:38.000000000 +0000 @@ -167,6 +167,7 @@ inline constexpr OUStringLiteral PROP_DataTableHBorder = u"DataTableHBorder"; inline constexpr OUStringLiteral PROP_DataTableOutline = u"DataTableOutline"; inline constexpr OUStringLiteral PROP_DataTableVBorder = u"DataTableVBorder"; +inline constexpr OUStringLiteral PROP_Decorative = u"Decorative"; inline constexpr OUStringLiteral PROP_Deep = u"Deep"; inline constexpr OUStringLiteral PROP_DefaultOutlineLevel = u"DefaultOutlineLevel"; inline constexpr OUStringLiteral PROP_Dim3D = u"Dim3D"; diff -Nru libreoffice-7.5.1~rc2/xmloff/source/draw/shapeexport.cxx libreoffice-7.5.2~rc2/xmloff/source/draw/shapeexport.cxx --- libreoffice-7.5.1~rc2/xmloff/source/draw/shapeexport.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/xmloff/source/draw/shapeexport.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -3011,6 +3011,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; + } + } } } diff -Nru libreoffice-7.5.1~rc2/xmloff/source/text/txtparae.cxx libreoffice-7.5.2~rc2/xmloff/source/text/txtparae.cxx --- libreoffice-7.5.1~rc2/xmloff/source/text/txtparae.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/xmloff/source/text/txtparae.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -3010,6 +3010,7 @@ } } + // TODO remove if (xPropSetInfo->hasPropertyByName("Decorative") && rPropSet->getPropertyValue("Decorative").get()) { diff -Nru libreoffice-7.5.1~rc2/xmloff/source/text/txtprmap.cxx libreoffice-7.5.2~rc2/xmloff/source/text/txtprmap.cxx --- libreoffice-7.5.1~rc2/xmloff/source/text/txtprmap.cxx 2023-02-22 19:52:27.000000000 +0000 +++ libreoffice-7.5.2~rc2/xmloff/source/text/txtprmap.cxx 2023-03-24 16:53:38.000000000 +0000 @@ -891,6 +891,7 @@ MAP_EXT( PROP_RelativeWidthRelation, XML_NAMESPACE_LO_EXT, XML_REL_WIDTH_REL, XML_TYPE_TEXT_HORIZONTAL_REL|XML_TYPE_PROP_GRAPHIC, CTF_RELWIDTHREL), MAP_EXT( PROP_RelativeHeightRelation, XML_NAMESPACE_LO_EXT, XML_REL_HEIGHT_REL, XML_TYPE_TEXT_VERTICAL_REL|XML_TYPE_PROP_GRAPHIC, CTF_RELHEIGHTREL), MG_E(PROP_TextVerticalAdjust, DRAW, TEXTAREA_VERTICAL_ALIGN, XML_TYPE_VERTICAL_ALIGN, 0), + MAP_EXT(PROP_Decorative, XML_NAMESPACE_LO_EXT, XML_DECORATIVE, XML_TYPE_BOOL|XML_TYPE_PROP_GRAPHIC, 0), M_END() };